author | sandman <sandman> | 2002-09-05 21:23:09 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-09-05 21:23:09 (UTC) |
commit | baea6aaf4f0c9672a4383470a9389bca1a20bdba (patch) (unidiff) | |
tree | def42730d45a0aa47eeb4f637cf140633b8d2c7c /libopie/odevice.h | |
parent | 930e178bf07eb5685852f56a3ecb05b8b823f42c (diff) | |
download | opie-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
-rw-r--r-- | libopie/odevice.h | 6 |
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 | |||
@@ -38,64 +38,70 @@ enum OModel { | |||
38 | 38 | ||
39 | enum OVendor { | 39 | enum OVendor { |
40 | OVENDOR_Unknown, | 40 | OVENDOR_Unknown, |
41 | 41 | ||
42 | OVENDOR_HP, | 42 | OVENDOR_HP, |
43 | OVENDOR_Sharp | 43 | OVENDOR_Sharp |
44 | }; | 44 | }; |
45 | 45 | ||
46 | enum OSystem { | 46 | enum 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 | ||
54 | enum OLedState { | 54 | enum 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 | ||
62 | class ODevice | 62 | class ODevice |
63 | { | 63 | { |
64 | public: | 64 | public: |
65 | 65 | ||
66 | public: | 66 | public: |
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 ); |
94 | 100 | ||
95 | virtual ~ODevice ( ); | 101 | virtual ~ODevice ( ); |
96 | 102 | ||
97 | protected: | 103 | protected: |
98 | ODevice ( ); | 104 | ODevice ( ); |
99 | virtual void init ( ); | 105 | virtual void init ( ); |
100 | 106 | ||
101 | ODeviceData *d; | 107 | ODeviceData *d; |