blob: e93a35d5017d15350c4c5cfe5f55a8ee050d203d (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#ifndef LOCKOUT_H
#define LOCKOUT_H
#include <tqevent.h>
#include <tqstring.h>
#include <kpanelapplet.h>
#include "simplebutton.h"
class TQBoxLayout;
class TQToolButton;
class Lockout : public KPanelApplet
{
Q_OBJECT
public:
Lockout( const TQString& configFile,
TQWidget *parent = 0, const char *name = 0 );
~Lockout();
int widthForHeight(int height) const;
int heightForWidth(int width) const;
protected:
virtual void mousePressEvent( TQMouseEvent * );
virtual void mouseMoveEvent( TQMouseEvent * );
virtual void mouseReleaseEvent( TQMouseEvent * );
virtual void mouseDoubleClickEvent( TQMouseEvent * );
virtual bool eventFilter( TQObject *, TQEvent * );
private slots:
void lock();
void logout();
void slotLockPrefs();
void slotLogoutPrefs();
void slotTransparent();
void slotIconChanged();
private:
void propagateMouseEvent( TQMouseEvent * );
void checkLayout( int height ) const;
SimpleButton *lockButton, *logoutButton;
TQBoxLayout *tqlayout;
bool bTransparent;
};
#endif // LOCKOUT_H
|