summaryrefslogtreecommitdiff
path: root/inputmethods/handwriting
authorzecke <zecke>2002-11-03 11:10:04 (UTC)
committer zecke <zecke>2002-11-03 11:10:04 (UTC)
commiteac6c5d3a22147d78866122c2f5b89d3fdf6bfc6 (patch) (unidiff)
treed096190896794e21fd2194a8ff17edec61b2c64f /inputmethods/handwriting
parent3176ef8fcbaa4716738df7d2e4c0216ccaab604a (diff)
downloadopie-eac6c5d3a22147d78866122c2f5b89d3fdf6bfc6.zip
opie-eac6c5d3a22147d78866122c2f5b89d3fdf6bfc6.tar.gz
opie-eac6c5d3a22147d78866122c2f5b89d3fdf6bfc6.tar.bz2
No default arguments....
Patch by jowenn
Diffstat (limited to 'inputmethods/handwriting') (more/less context) (show whitespace changes)
-rw-r--r--inputmethods/handwriting/qimpeninput.cpp4
-rw-r--r--inputmethods/handwriting/qimpeninput.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/inputmethods/handwriting/qimpeninput.cpp b/inputmethods/handwriting/qimpeninput.cpp
index 3f7a347..db33c9b 100644
--- a/inputmethods/handwriting/qimpeninput.cpp
+++ b/inputmethods/handwriting/qimpeninput.cpp
@@ -125,26 +125,26 @@ static char * help_xpm[] = {
125" .+. ", 125" .+. ",
126" .+. ", 126" .+. ",
127" #.# ", 127" #.# ",
128" .+. ", 128" .+. ",
129" #.# "}; 129" #.# "};
130 130
131 131
132/*! 132/*!
133 \class QIMPenInput qimpeninput.h 133 \class QIMPenInput qimpeninput.h
134 134
135 Pen input widget. 135 Pen input widget.
136*/ 136*/
137QIMPenInput::QIMPenInput( QWidget *parent, const char *name, WFlags f ) 137QIMPenInput::QIMPenInput( QWidget *parent, const char *name, WFlags wf )
138 : QFrame( parent, name, f ), helpDlg(0), profile(0) 138 : QFrame( parent, name, wf ), helpDlg(0), profile(0)
139{ 139{
140 setFrameStyle( Box | Plain ); 140 setFrameStyle( Box | Plain );
141 141
142 profileList.setAutoDelete( true ); 142 profileList.setAutoDelete( true );
143 143
144 matcher = new QIMPenMatch( this ); 144 matcher = new QIMPenMatch( this );
145 connect( matcher, SIGNAL(keypress(uint)), this, SLOT(keypress(uint)) ); 145 connect( matcher, SIGNAL(keypress(uint)), this, SLOT(keypress(uint)) );
146 connect( matcher, SIGNAL(erase()), this, SLOT(erase()) ); 146 connect( matcher, SIGNAL(erase()), this, SLOT(erase()) );
147 147
148 QGridLayout *gl = new QGridLayout( this, 5, 2, 1, 0 ); 148 QGridLayout *gl = new QGridLayout( this, 5, 2, 1, 0 );
149 gl->setColStretch( 0, 1 ); 149 gl->setColStretch( 0, 1 );
150 150
diff --git a/inputmethods/handwriting/qimpeninput.h b/inputmethods/handwriting/qimpeninput.h
index b4e4006..75cf260 100644
--- a/inputmethods/handwriting/qimpeninput.h
+++ b/inputmethods/handwriting/qimpeninput.h
@@ -32,25 +32,25 @@
32class QPushButton; 32class QPushButton;
33class QTimer; 33class QTimer;
34class QIMPenWidget; 34class QIMPenWidget;
35class QIMPenSetup; 35class QIMPenSetup;
36class QIMPenWordPick; 36class QIMPenWordPick;
37class QIMPenMatch; 37class QIMPenMatch;
38class HandwritingHelp; 38class HandwritingHelp;
39 39
40class QIMPenInput : public QFrame 40class QIMPenInput : public QFrame
41{ 41{
42 Q_OBJECT 42 Q_OBJECT
43public: 43public:
44 QIMPenInput( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); 44 QIMPenInput( QWidget *parent = 0, const char *name = 0, WFlags wf = 0 );
45 virtual ~QIMPenInput(); 45 virtual ~QIMPenInput();
46 46
47 void resetState(); 47 void resetState();
48 48
49 QSize sizeHint() const; 49 QSize sizeHint() const;
50 50
51signals: 51signals:
52 void key( ushort, ushort, ushort, bool, bool ); 52 void key( ushort, ushort, ushort, bool, bool );
53 53
54private slots: 54private slots:
55 void wordPicked( const QString & ); 55 void wordPicked( const QString & );
56 void selectCharSet( int ); 56 void selectCharSet( int );