summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/encoders.h
diff options
context:
space:
mode:
authorDominik Wenger <domonoky@googlemail.com>2007-12-15 13:13:57 +0000
committerDominik Wenger <domonoky@googlemail.com>2007-12-15 13:13:57 +0000
commitbebddd42c265bf63845f42bb29f48de5ed263f69 (patch)
treeb5dbb6e711d4d71034c4ee19ddfa7e0af043971b /rbutil/rbutilqt/encoders.h
parent1e489e53b8d0807fc52423ae7453d4b1d047d370 (diff)
downloadrockbox-bebddd42c265bf63845f42bb29f48de5ed263f69.tar.gz
rockbox-bebddd42c265bf63845f42bb29f48de5ed263f69.zip
rbutil: reworked configuration of TTS engines to the new Style.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15932 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/encoders.h')
-rw-r--r--rbutil/rbutilqt/encoders.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/rbutil/rbutilqt/encoders.h b/rbutil/rbutilqt/encoders.h
index f69c3ba611..688ffbcd25 100644
--- a/rbutil/rbutilqt/encoders.h
+++ b/rbutil/rbutilqt/encoders.h
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2007 by Dominik Wenger 9 * Copyright (C) 2007 by Dominik Wenger
10 * $Id: talkfile.h 15212 2007-10-19 21:49:07Z domonoky $ 10 * $Id: encoders.h 15212 2007-10-19 21:49:07Z domonoky $
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
@@ -45,19 +45,19 @@ class EncBase : public QDialog
45 Q_OBJECT 45 Q_OBJECT
46public: 46public:
47 EncBase(QWidget *parent ); 47 EncBase(QWidget *parent );
48 virtual ~EncBase(){} 48
49 virtual bool encode(QString input,QString output) = 0; 49 virtual bool encode(QString input,QString output){return false;}
50 virtual bool start() = 0; 50 virtual bool start(){return false;}
51 virtual bool stop() = 0; 51 virtual bool stop(){return false;}
52 virtual void showCfg() = 0; 52 virtual void showCfg(){}
53 virtual bool configOk()=0; 53 virtual bool configOk(){return false;}
54 54
55 void setUserCfg(QSettings *uSettings){userSettings = uSettings;} 55 void setUserCfg(QSettings *uSettings){userSettings = uSettings;}
56 56
57public slots: 57public slots:
58 virtual void accept(void)=0; 58 virtual void accept(void){}
59 virtual void reject(void)=0; 59 virtual void reject(void){}
60 virtual void reset(void)=0; 60 virtual void reset(void){}
61 61
62protected: 62protected:
63 63