author | zecke <zecke> | 2004-05-10 21:08:55 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-05-10 21:08:55 (UTC) |
commit | 613e0a6b246d8dcfd808089b2b6a1dc0501732da (patch) (unidiff) | |
tree | f08854dc0b7121777badeb6cef1007ae8c53a1e1 /libopie2 | |
parent | 0e1086dfe7238cbee8553828afaf32aae4cee70d (diff) | |
download | opie-613e0a6b246d8dcfd808089b2b6a1dc0501732da.zip opie-613e0a6b246d8dcfd808089b2b6a1dc0501732da.tar.gz opie-613e0a6b246d8dcfd808089b2b6a1dc0501732da.tar.bz2 |
Some virtuals which we discussed some time back...
-rw-r--r-- | libopie2/opiecore/okeyconfigmanager.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/libopie2/opiecore/okeyconfigmanager.h b/libopie2/opiecore/okeyconfigmanager.h index b861675..d0a6247 100644 --- a/libopie2/opiecore/okeyconfigmanager.h +++ b/libopie2/opiecore/okeyconfigmanager.h | |||
@@ -131,33 +131,40 @@ private: | |||
131 | * You can even pass this manager to a Widget to do the configuration for you. | 131 | * You can even pass this manager to a Widget to do the configuration for you. |
132 | * You need to add OKeyConfigItem for your keys and then issue a load() to | 132 | * You need to add OKeyConfigItem for your keys and then issue a load() to |
133 | * read the Key information. | 133 | * read the Key information. |
134 | * You can either handle the QKeyEvent yourself and ask this class if it is | 134 | * You can either handle the QKeyEvent yourself and ask this class if it is |
135 | * handled by your action and let give you the action. Or you can install | 135 | * handled by your action and let give you the action. Or you can install |
136 | * the event filter and get a signal. | 136 | * the event filter and get a signal. |
137 | * You need to load and save yourself! | 137 | * You need to load and save yourself! |
138 | * | 138 | * |
139 | * Again if you want to extend it and I missed a virtual, tell me so I can improve (zecke@handhelds.org) | ||
140 | * | ||
139 | * @since 1.1.2 | 141 | * @since 1.1.2 |
140 | */ | 142 | */ |
141 | class OKeyConfigManager : public QObject { | 143 | class OKeyConfigManager : public QObject { |
142 | Q_OBJECT | 144 | Q_OBJECT |
143 | typedef QMap<int, OKeyConfigItem::List> OKeyMapConfigPrivate; | 145 | typedef QMap<int, OKeyConfigItem::List> OKeyMapConfigPrivate; |
144 | public: | 146 | public: |
147 | enum EventMask { | ||
148 | MaskPressed = 0x1, | ||
149 | MaskReleased = 0x2, | ||
150 | }; | ||
151 | |||
145 | OKeyConfigManager(Opie::Core::OConfig *conf = 0, | 152 | OKeyConfigManager(Opie::Core::OConfig *conf = 0, |
146 | const QString& group = QString::null, | 153 | const QString& group = QString::null, |
147 | const OKeyPair::List &block = OKeyPair::List(), | 154 | const OKeyPair::List &block = OKeyPair::List(), |
148 | bool grabkeyboard = false, QObject * par = 0, | 155 | bool grabkeyboard = false, QObject * par = 0, |
149 | const char* name = 0 ); | 156 | const char* name = 0 ); |
150 | ~OKeyConfigManager(); | 157 | virtual ~OKeyConfigManager(); |
151 | 158 | ||
152 | void load(); | 159 | virtual void load(); |
153 | void save(); | 160 | virtual void save(); |
154 | 161 | ||
155 | OKeyConfigItem handleKeyEvent( QKeyEvent* ); | 162 | virtual OKeyConfigItem handleKeyEvent( QKeyEvent* ); |
156 | int handleKeyEventId( QKeyEvent* ); | 163 | int handleKeyEventId( QKeyEvent* ); |
157 | 164 | ||
158 | void addKeyConfig( const OKeyConfigItem& ); | 165 | void addKeyConfig( const OKeyConfigItem& ); |
159 | void removeKeyConfig( const OKeyConfigItem& ); | 166 | void removeKeyConfig( const OKeyConfigItem& ); |
160 | void clearKeyConfig(); | 167 | void clearKeyConfig(); |
161 | 168 | ||
162 | void addToBlackList( const OKeyPair& ); | 169 | void addToBlackList( const OKeyPair& ); |
163 | void removeFromBlackList( const OKeyPair& ); | 170 | void removeFromBlackList( const OKeyPair& ); |
@@ -206,20 +213,16 @@ public: | |||
206 | * @param aMask is one of OKeyConfigManager::EventMask | 213 | * @param aMask is one of OKeyConfigManager::EventMask |
207 | * | 214 | * |
208 | * @see eventMask(), testEventMask(), addEventMask(), setEventMask() | 215 | * @see eventMask(), testEventMask(), addEventMask(), setEventMask() |
209 | */ | 216 | */ |
210 | void clearEventMask(uint aMask); | 217 | void clearEventMask(uint aMask); |
211 | 218 | ||
212 | OKeyConfigItem::List keyConfigList()const; | 219 | OKeyConfigItem::List keyConfigList()const; |
213 | 220 | ||
214 | enum EventMask { | ||
215 | MaskPressed = 0x1, | ||
216 | MaskReleased = 0x2, | ||
217 | }; | ||
218 | signals: | 221 | signals: |
219 | /** | 222 | /** |
220 | * The Signals are triggered on KeyPress and KeyRelease! | 223 | * The Signals are triggered on KeyPress and KeyRelease! |
221 | * You can check the isDown of the QKeyEvent | 224 | * You can check the isDown of the QKeyEvent |
222 | * @see QKeyEvent | 225 | * @see QKeyEvent |
223 | */ | 226 | */ |
224 | void actionActivated( QWidget*, QKeyEvent*, const Opie::Core::OKeyConfigItem& ); | 227 | void actionActivated( QWidget*, QKeyEvent*, const Opie::Core::OKeyConfigItem& ); |
225 | 228 | ||