summaryrefslogtreecommitdiffstats
path: root/kttsd/app-plugins/kate/katekttsd.h
diff options
context:
space:
mode:
Diffstat (limited to 'kttsd/app-plugins/kate/katekttsd.h')
-rw-r--r--kttsd/app-plugins/kate/katekttsd.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/kttsd/app-plugins/kate/katekttsd.h b/kttsd/app-plugins/kate/katekttsd.h
new file mode 100644
index 0000000..cbab720
--- /dev/null
+++ b/kttsd/app-plugins/kate/katekttsd.h
@@ -0,0 +1,57 @@
+/***************************************************************************
+ 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_