summaryrefslogtreecommitdiff
path: root/inputmethods/handwriting/qimpensetup.h
Unidiff
Diffstat (limited to 'inputmethods/handwriting/qimpensetup.h') (more/less context) (show whitespace changes)
-rw-r--r--inputmethods/handwriting/qimpensetup.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/inputmethods/handwriting/qimpensetup.h b/inputmethods/handwriting/qimpensetup.h
index 5d3064b..93b981b 100644
--- a/inputmethods/handwriting/qimpensetup.h
+++ b/inputmethods/handwriting/qimpensetup.h
@@ -79,46 +79,47 @@ protected:
79 79
80class QIMPenEdit : public QWidget 80class QIMPenEdit : public QWidget
81{ 81{
82 Q_OBJECT 82 Q_OBJECT
83public: 83public:
84 QIMPenEdit( QIMPenProfile *p, QWidget *parent=0, 84 QIMPenEdit( QIMPenProfile *p, QWidget *parent=0,
85 const char *name=0 ); 85 const char *name=0 );
86 86
87 void setProfile( QIMPenProfile *p ); 87 void setProfile( QIMPenProfile *p );
88 void selectCharSet( QIMPenCharSet *c ); 88 void selectCharSet( QIMPenCharSet *c );
89 89
90protected: 90protected:
91 void fillCharList(); 91 void fillCharList();
92 void enableButtons(); 92 void enableButtons();
93 QIMPenChar *findPrev(); 93 QIMPenChar *findPrev();
94 QIMPenChar *findNext(); 94 QIMPenChar *findNext();
95 void setCurrentChar( QIMPenChar * ); 95 void setCurrentChar( QIMPenChar * );
96 96
97protected slots: 97protected slots:
98 void prevChar(); 98 void prevChar();
99 void nextChar(); 99 void nextChar();
100 void clearChar(); 100 void clearChar();
101 void selectChar( int ); 101 void selectChar( int );
102 void selectCharSet( int ); 102 void selectCharSet( int );
103 void selectCharSetVisible( int );
103 void addChar(); 104 void addChar();
104 void addNewChar(); 105 void addNewChar();
105 void removeChar(); 106 void removeChar();
106 void defaultChars(); 107 void defaultChars();
107 void newStroke( QIMPenStroke * ); 108 void newStroke( QIMPenStroke * );
108 109
109protected: 110protected:
110 QIMPenWidget *pw; 111 QIMPenWidget *pw;
111 QComboBox *charSetCombo; 112 QComboBox *charSetCombo;
112 QListBox *charList; 113 QListBox *charList;
113 QPushButton *newBtn; 114 QPushButton *newBtn;
114 QPushButton *addBtn; 115 QPushButton *addBtn;
115 QPushButton *removeBtn; 116 QPushButton *removeBtn;
116 QPushButton *prevBtn; 117 QPushButton *prevBtn;
117 QPushButton *nextBtn; 118 QPushButton *nextBtn;
118 uint currentCode; 119 uint currentCode;
119 QIMPenChar *currentChar; 120 QIMPenChar *currentChar;
120 QIMPenChar *inputChar; 121 QIMPenChar *inputChar;
121 QIMPenCharSet *currentSet; 122 QIMPenCharSet *currentSet;
122 QIMPenProfile *profile; 123 QIMPenProfile *profile;
123}; 124};
124 125