diff -r 318c4eab2439 -r 8957df7b0072 securitydialogs/AutolockSrv/src/keycapturingapplication.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/securitydialogs/AutolockSrv/src/keycapturingapplication.h Mon May 03 13:20:16 2010 +0300 @@ -0,0 +1,28 @@ +#ifndef KEYCAPTURINGAPPLICATION_H +#define KEYCAPTURINGAPPLICATION_H + +#include + +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