summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/device/odevice_simpad.h
Unidiff
Diffstat (limited to 'libopie2/opiecore/device/odevice_simpad.h') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_simpad.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/libopie2/opiecore/device/odevice_simpad.h b/libopie2/opiecore/device/odevice_simpad.h
index 6c42be7..dbcbbb4 100644
--- a/libopie2/opiecore/device/odevice_simpad.h
+++ b/libopie2/opiecore/device/odevice_simpad.h
@@ -30,47 +30,45 @@
30#ifndef ODEVICE_SIMPAD 30#ifndef ODEVICE_SIMPAD
31#define ODEVICE_SIMPAD 31#define ODEVICE_SIMPAD
32 32
33#include <opie2/odevice.h> 33#include <opie2/odevice.h>
34 34
35/* QT */ 35/* QT */
36#include <qwindowsystem_qws.h> 36#include <qwindowsystem_qws.h>
37 37
38namespace Opie { 38namespace Opie {
39namespace Core { 39namespace Core {
40namespace Internal { 40namespace Internal {
41 41
42class SIMpad : public ODevice, public QWSServer::KeyboardFilter 42class SIMpad : public ODevice
43{ 43{
44 protected: 44 protected:
45 virtual void init(const QString&); 45 virtual void init(const QString&);
46 virtual void initButtons(); 46 virtual void initButtons();
47 47
48 public: 48 public:
49 virtual bool setSoftSuspend( bool soft );
50 virtual bool suspend(); 49 virtual bool suspend();
51 50
52 virtual bool setDisplayStatus( bool on ); 51 virtual bool setDisplayStatus( bool on );
53 virtual bool setDisplayBrightness( int b ); 52 virtual bool setDisplayBrightness( int b );
54 virtual int displayBrightnessResolution() const; 53 virtual int displayBrightnessResolution() const;
55 54
56 virtual void playAlarmSound(); 55 virtual void playAlarmSound();
57 56
58 virtual QValueList <OLed> ledList() const; 57 virtual QValueList <OLed> ledList() const;
59 virtual QValueList <OLedState> ledStateList( OLed led ) const; 58 virtual QValueList <OLedState> ledStateList( OLed led ) const;
60 virtual OLedState ledState( OLed led ) const; 59 virtual OLedState ledState( OLed led ) const;
61 virtual bool setLedState( OLed led, OLedState st ); 60 virtual bool setLedState( OLed led, OLedState st );
62 61
63 protected: 62 protected:
64 virtual bool filter( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat );
65 virtual void timerEvent( QTimerEvent *te ); 63 virtual void timerEvent( QTimerEvent *te );
66 64
67 int m_power_timer; 65 int m_power_timer;
68 66
69 OLedState m_leds [2]; 67 OLedState m_leds [2];
70}; 68};
71 69
72struct s_button { 70struct s_button {
73 uint model; 71 uint model;
74 Qt::Key code; 72 Qt::Key code;
75 char *utext; 73 char *utext;
76 char *pix; 74 char *pix;