You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.9 KiB
58 lines
1.9 KiB
15 years ago
|
/***************************************************************************
|
||
|
A KTextEditor (Kate Part) plugin for speaking text.
|
||
|
|
||
|
Copyright:
|
||
|
(C) 2003-2004 by Olaf Schmidt <ojschmidt@kde.org>
|
||
|
(C) 2005 by Gary Cramblitt <garycramblitt@comcast.net>
|
||
|
|
||
|
Original Author: Olaf Schmidt <ojschmidt@kde.org>
|
||
|
***************************************************************************/
|
||
|
|
||
|
/***************************************************************************
|
||
|
* *
|
||
|
* This program is free software; you can redistribute it and/or modify *
|
||
|
* it under the terms of the GNU General Public License as published by *
|
||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||
|
* (at your option) any later version. *
|
||
|
* *
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef _KATEKTTSD_H_
|
||
|
#define _KATEKTTSD_H_
|
||
|
|
||
|
#include <ktexteditor/plugin.h>
|
||
|
#include <ktexteditor/view.h>
|
||
|
#include <kxmlguiclient.h>
|
||
|
#include <qobject.h>
|
||
|
|
||
|
class KateKttsdPlugin : public KTextEditor::Plugin, public KTextEditor::PluginViewInterface
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
KateKttsdPlugin( QObject *parent = 0,
|
||
|
const char* name = 0,
|
||
|
const QStringList &args = QStringList() );
|
||
|
virtual ~KateKttsdPlugin();
|
||
|
|
||
|
void addView (KTextEditor::View *view);
|
||
|
void removeView (KTextEditor::View *view);
|
||
|
|
||
|
private:
|
||
|
QPtrList<class KateKttsdPluginView> m_views;
|
||
|
};
|
||
|
|
||
|
class KateKttsdPluginView : public QObject, public KXMLGUIClient
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
KateKttsdPluginView( KTextEditor::View *view, const char *name=0 );
|
||
|
~KateKttsdPluginView() {};
|
||
|
|
||
|
public slots:
|
||
|
void slotReadOut();
|
||
|
};
|
||
|
|
||
|
#endif // _KATEKTTSD_H_
|