summaryrefslogtreecommitdiff
path: root/inputmethods/dasher/QtDasherPlugin.h
Unidiff
Diffstat (limited to 'inputmethods/dasher/QtDasherPlugin.h') (more/less context) (show whitespace changes)
-rw-r--r--inputmethods/dasher/QtDasherPlugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inputmethods/dasher/QtDasherPlugin.h b/inputmethods/dasher/QtDasherPlugin.h
index 5f70acf..c979a2f 100644
--- a/inputmethods/dasher/QtDasherPlugin.h
+++ b/inputmethods/dasher/QtDasherPlugin.h
@@ -1,42 +1,42 @@
1#include <qutfcodec.h> 1#include <qutfcodec.h>
2#include <qframe.h> 2#include <qframe.h>
3#include "QtDasherScreen.h" 3#include "QtDasherScreen.h"
4#include "DasherInterface.h" 4#include "DasherInterface.h"
5#include "DashEdit.h" 5#include "DashEdit.h"
6 6
7class QtDasherPlugin : public QFrame, public CDashEditbox 7class QtDasherPlugin : public QFrame, public CDashEditbox
8{ 8{
9 Q_OBJECT 9 Q_OBJECT
10public: 10public:
11 QtDasherPlugin(QWidget* parent=0, const char* name=0, WFlags f=0); 11 QtDasherPlugin(QWidget* parent=0, const char* name=0, WFlags f=0);
12 ~QtDasherPlugin(); 12 ~QtDasherPlugin();
13 13
14 void resetState(); 14 void resetState();
15 QSize sizeHint() const; 15 QSize sizeHint() const;
16 16
17 void write_to_file() {}; 17 void write_to_file() {};
18 void get_new_context(std::string&, int) {}; 18 void get_new_context(std::string&, int) {};
19 void unflush(); 19 void unflush();
20 void output(int); 20 void output(int);
21 void deletetext(); 21 void deletetext();
22 void flush(int); 22 void flush(int);
23 void Clear() {}; 23 void Clear() {};
24 void SetEncoding(Dasher::Opts::FileEncodingFormats) {}; 24 void SetEncoding(Dasher::Opts::FileEncodingFormats) {};
25 void SetFont(std::string Name, long Size) {}; 25 void SetFont(std::string , long ) {};
26 26
27 signals: 27 signals:
28 void key( ushort, ushort, ushort, bool, bool); 28 void key( ushort, ushort, ushort, bool, bool);
29 29
30 private: 30 private:
31 QtDasherScreen *d; 31 QtDasherScreen *d;
32 CDasherInterface *interface; 32 CDasherInterface *interface;
33 int flushcount; 33 int flushcount;
34 QUtf8Codec *utf8_codec; 34 QUtf8Codec *utf8_codec;
35}; 35};
36 36
37 37
38 38
39 39
40 40
41 41
42 42