From 28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:20:30 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaccessibility@1157633 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksayit/src/ksayit_ttsplugin.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'ksayit/src/ksayit_ttsplugin.h') diff --git a/ksayit/src/ksayit_ttsplugin.h b/ksayit/src/ksayit_ttsplugin.h index 1035993..e0f8d31 100644 --- a/ksayit/src/ksayit_ttsplugin.h +++ b/ksayit/src/ksayit_ttsplugin.h @@ -14,10 +14,10 @@ #define KSAYIT_TTSPLUGIN // QT includes -#include -#include -#include -#include +#include +#include +#include +#include // KDE includes @@ -65,7 +65,7 @@ class TTSPlugin : public QObject { protected: - TTSPlugin(QObject *parent, const char *name) : QObject(parent, name){}; + TTSPlugin(TQObject *parent, const char *name) : TQObject(parent, name){}; public: /** Returns the name of the plugin. This name is the unique identifier @@ -74,12 +74,12 @@ public: * The PluginHandler internally references to each TTS plugin by this name.\n * Has to be reimplemented by the plugin implementation. */ - virtual QString getName_KS() const = 0; + virtual TQString getName_KS() const = 0; /** Returns the description of the plugin.\n * Has to be reimplemented by the plugin implementation. */ - virtual QString getDescription_KS() const = 0; + virtual TQString getDescription_KS() const = 0; /** Returns the supported control actions of the plugin. * It is represented as an OR'ed value of enum \pACTIONS. @@ -88,10 +88,10 @@ public: /** Returnes a pointer to the GUI widget to configure the plugin.\n * Will be deleted by the PluginHandler.\n - * \param frame A pointer to the QFrame object in which the dialog will + * \param frame A pointer to the TQFrame object in which the dialog will * be embedded. */ - virtual const QWidget* getGUI_KS(QFrame *frame) = 0; + virtual const TQWidget* getGUI_KS(TQFrame *frame) = 0; /** Let the plugin (re)load its configuration */ @@ -109,14 +109,14 @@ public: * In this case, KSayIt uses a built-in audio player to play back * the file via aRts.\n * If this plugin provides its own audio output mechanisms, then return - * \p QString::null.\n + * \p TQString::null.\n * The TTS processing shall be implemented non-blocking, i.e. this function has * to return a valid string as soon as possible, before the typically time * consuming TTS processing starts. The synchronization with KSayIt shall * be performed by the status flags (see \p getStatus_KS()). * \param text The text to speach. */ - virtual QString sayText_KS(const QString &text) = 0; + virtual TQString sayText_KS(const TQString &text) = 0; /** Returns an OR'ed value of status bits of the plugin.\n * Currently only \p TTS::AUDIOFILE is defined.\n This -- cgit v1.2.1