| author | William Roberts <williamr@symbian.org> |
| Thu, 17 Jun 2010 12:11:51 +0100 | |
| branch | GCC_SURGE |
| changeset 29 | b63e8c2d8cff |
| parent 17 | 8957df7b0072 |
| permissions | -rw-r--r-- |
#ifndef KEYCAPTURINGAPPLICATION_H #define KEYCAPTURINGAPPLICATION_H #include <HbApplication> class KeyCapturingApplication : public HbApplication { Q_OBJECT signals: void capturedKeyEvent(); public: KeyCapturingApplication(int &argc, char *argv[], int keyCode); ~KeyCapturingApplication(); virtual bool symbianEventFilter(const QSymbianEvent *event); private: int mKeyCode; int mKeyCaptureHandle; }; #endif // KEYCAPTURINGAPPLICATION_H