summaryrefslogtreecommitdiff
path: root/libopie/odevice.h
authorsandman <sandman>2002-09-05 21:23:09 (UTC)
committer sandman <sandman>2002-09-05 21:23:09 (UTC)
commitbaea6aaf4f0c9672a4383470a9389bca1a20bdba (patch) (unidiff)
treedef42730d45a0aa47eeb4f637cf140633b8d2c7c /libopie/odevice.h
parent930e178bf07eb5685852f56a3ecb05b8b823f42c (diff)
downloadopie-baea6aaf4f0c9672a4383470a9389bca1a20bdba.zip
opie-baea6aaf4f0c9672a4383470a9389bca1a20bdba.tar.gz
opie-baea6aaf4f0c9672a4383470a9389bca1a20bdba.tar.bz2
- added a setPowerButtonHandler() for iPAQs and Zs
(-> disableAPM() in launcher can be removed) - another try to fix the OZ suspend code
Diffstat (limited to 'libopie/odevice.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libopie/odevice.h b/libopie/odevice.h
index 5009b91..ee01f0f 100644
--- a/libopie/odevice.h
+++ b/libopie/odevice.h
@@ -46,48 +46,54 @@ enum OVendor {
46enum OSystem { 46enum OSystem {
47 OSYSTEM_Unknown, 47 OSYSTEM_Unknown,
48 48
49 OSYSTEM_Familiar, 49 OSYSTEM_Familiar,
50 OSYSTEM_Zaurus, 50 OSYSTEM_Zaurus,
51 OSYSTEM_OpenZaurus 51 OSYSTEM_OpenZaurus
52}; 52};
53 53
54enum OLedState { 54enum OLedState {
55 OLED_Off, 55 OLED_Off,
56 OLED_On, 56 OLED_On,
57 OLED_BlinkSlow, 57 OLED_BlinkSlow,
58 OLED_BlinkFast 58 OLED_BlinkFast
59}; 59};
60 60
61 61
62class ODevice 62class ODevice
63{ 63{
64public: 64public:
65 65
66public: 66public:
67 static ODevice *inst ( ); 67 static ODevice *inst ( );
68 68
69 // system 69 // system
70 enum PowerButtonHandler {
71 KERNEL,
72 OPIE
73 };
74
75 virtual bool setPowerButtonHandler ( PowerButtonHandler h );
70 virtual bool suspend ( ); 76 virtual bool suspend ( );
71 77
72// information 78// information
73 79
74 QString modelString ( ); 80 QString modelString ( );
75 OModel model ( ); 81 OModel model ( );
76 82
77 QString vendorString ( ); 83 QString vendorString ( );
78 OVendor vendor ( ); 84 OVendor vendor ( );
79 85
80 QString systemString ( ); 86 QString systemString ( );
81 OSystem system ( ); 87 OSystem system ( );
82 88
83 QString systemVersionString ( ); 89 QString systemVersionString ( );
84 90
85// input / output 91// input / output
86 92
87 virtual void alarmSound ( ); 93 virtual void alarmSound ( );
88 virtual void keySound ( ); 94 virtual void keySound ( );
89 virtual void touchSound ( ); 95 virtual void touchSound ( );
90 96
91 virtual uint hasLeds ( ) const; 97 virtual uint hasLeds ( ) const;
92 virtual OLedState led ( uint which ) const; 98 virtual OLedState led ( uint which ) const;
93 virtual bool setLed ( uint which, OLedState st ); 99 virtual bool setLed ( uint which, OLedState st );