summaryrefslogtreecommitdiff
path: root/core/opie-login/loginwindowimpl.h
blob: 2e2ba0d97d87b330e74b4697095fd5e198630af3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef __OPIE_LOGINWINDOW_IMPL_H__
#define __OPIE_LOGINWINDOW_IMPL_H__

#include "loginwindow.h"

class InputMethods;

class LoginWindowImpl : public LoginWindow {
	Q_OBJECT
	
public:
	LoginWindowImpl ( );
	virtual ~LoginWindowImpl ( );	

protected slots:
	void restart ( );
	void quit ( );
	void showIM ( );
	void suspend ( );
	void backlight ( );
	void login ( );
	void toggleEchoMode ( bool );

protected:
	virtual void keyPressEvent ( QKeyEvent *e );

	QStringList getAllUsers ( );
	bool changeIdentity ( const char *user );

private:
	InputMethods *m_input;
};

#endif