summaryrefslogtreecommitdiff
path: root/core/opie-login/loginwindowimpl.h
Unidiff
Diffstat (limited to 'core/opie-login/loginwindowimpl.h') (more/less context) (show whitespace changes)
-rw-r--r--core/opie-login/loginwindowimpl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/opie-login/loginwindowimpl.h b/core/opie-login/loginwindowimpl.h
index 16c42e6..2e2ba0d 100644
--- a/core/opie-login/loginwindowimpl.h
+++ b/core/opie-login/loginwindowimpl.h
@@ -1,33 +1,34 @@
1#ifndef __OPIE_LOGINWINDOW_IMPL_H__ 1#ifndef __OPIE_LOGINWINDOW_IMPL_H__
2#define __OPIE_LOGINWINDOW_IMPL_H__ 2#define __OPIE_LOGINWINDOW_IMPL_H__
3 3
4#include "loginwindow.h" 4#include "loginwindow.h"
5 5
6class InputMethods; 6class InputMethods;
7 7
8class LoginWindowImpl : public LoginWindow { 8class LoginWindowImpl : public LoginWindow {
9 Q_OBJECT 9 Q_OBJECT
10 10
11public: 11public:
12 LoginWindowImpl ( ); 12 LoginWindowImpl ( );
13 virtual ~LoginWindowImpl ( ); 13 virtual ~LoginWindowImpl ( );
14 14
15protected slots: 15protected slots:
16 void restart ( ); 16 void restart ( );
17 void quit ( );
17 void showIM ( ); 18 void showIM ( );
18 void suspend ( ); 19 void suspend ( );
19 void backlight ( ); 20 void backlight ( );
20 void login ( ); 21 void login ( );
21 void toggleEchoMode ( bool ); 22 void toggleEchoMode ( bool );
22 23
23protected: 24protected:
24 virtual void keyPressEvent ( QKeyEvent *e ); 25 virtual void keyPressEvent ( QKeyEvent *e );
25 26
26 QStringList getAllUsers ( ); 27 QStringList getAllUsers ( );
27 bool changeIdentity ( const char *user ); 28 bool changeIdentity ( const char *user );
28 29
29private: 30private:
30 InputMethods *m_input; 31 InputMethods *m_input;
31}; 32};
32 33
33#endif 34#endif