diff options
Diffstat (limited to 'ksayit/KTTSD_Lib/kttsdlibtalker2.h')
-rw-r--r-- | ksayit/KTTSD_Lib/kttsdlibtalker2.h | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/ksayit/KTTSD_Lib/kttsdlibtalker2.h b/ksayit/KTTSD_Lib/kttsdlibtalker2.h new file mode 100644 index 0000000..e39f1c8 --- /dev/null +++ b/ksayit/KTTSD_Lib/kttsdlibtalker2.h @@ -0,0 +1,101 @@ +// +// C++ Interface: kttsdlibtalker2 +// +// Description: +// +// +// Author: Robert Vogl <voglrobe@lapislazuli>, (C) 2004 +// +// Copyright: See COPYING file that comes with this distribution +// +// +#ifndef KTTSDLIBTALKER2_H +#define KTTSDLIBTALKER2_H + +// Qt includes +#include <qobject.h> +#include <qcstring.h> + +#include <kspeech_stub.h> +#include <kspeechsink.h> + +// KDE includes +#include <kapplication.h> +#include <dcopclient.h> + +/** +@author Robert Vogl +*/ +class kttsdlibtalker2 : public QObject, public KSpeech_stub, virtual public KSpeechSink +{ +Q_OBJECT + +signals: + void signalTextStarted(const uint); + void signalTextFinished(const uint); + void signalTextStopped(const uint); + +public: + kttsdlibtalker2(QObject *parent = 0, const char *name = 0); + + ~kttsdlibtalker2(); + + /** Intializes the DCOP interface. + */ + void KTTSD_init(KApplication *Appl); + + /** See \p KSpeech Class Reference. Returns the job number. + */ + uint KTTSD_setText(const QString &text, QString lang); + + /** See \p KSpeech Class Reference. + */ + void KTTSD_startText(uint jobNum); + + /** See \p KSpeech Class Reference. + */ + void KTTSD_stopText(uint jobNum); + + /** See \p KSpeech Class Reference. + */ + void KTTSD_pauseText(uint jobNum); + + /** See \p KSpeech Class Reference. + */ + void KTTSD_resumeText(uint jobNum); + + /** See \p KSpeech Class Reference. + */ + uint KTTSD_moveRelTextSentence(const int n, const uint jobNum = 0); + + /** See \p KSpeech Class Reference. + */ + int KTTSD_getTextJobState(uint jobNum); + + /** See \p KSpeech Class Reference. + */ + void KTTSD_removeText(uint jobNum); + + /** See \p KSpeech Class Reference. + */ + int KTTSD_getCurrentTextJob(); + + +protected: + //////////////////////////////////////////// + // Slots for DCOP signals + //////////////////////////////////////////// + ASYNC textStarted(const QCString &appID, const uint jobNum); + ASYNC textFinished(const QCString &appID, const uint jobNum); + ASYNC textStopped(const QCString &appID, const uint jobNum); + +private: + QCString m_objID; + KApplication *m_Appl; + DCOPClient *m_client; + uint m_jobNum; + + +}; + +#endif |