author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Mon, 03 May 2010 13:20:16 +0300 | |
changeset 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