summaryrefslogtreecommitdiff
path: root/libopie2
Unidiff
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libopie2/opiecore/device/odevice.h b/libopie2/opiecore/device/odevice.h
index f4b3e0e..6f0d036 100644
--- a/libopie2/opiecore/device/odevice.h
+++ b/libopie2/opiecore/device/odevice.h
@@ -72,48 +72,49 @@ enum OModel {
72 Model_Jornada = ( 6 << 24 ), 72 Model_Jornada = ( 6 << 24 ),
73 Model_Jornada_56x = ( Model_Jornada | 0x000001 ), 73 Model_Jornada_56x = ( Model_Jornada | 0x000001 ),
74 74
75 Model_Zaurus = ( 2 << 24 ), 75 Model_Zaurus = ( 2 << 24 ),
76 76
77 Model_Zaurus_SL5000 = ( Model_Zaurus | 0x000001 ), 77 Model_Zaurus_SL5000 = ( Model_Zaurus | 0x000001 ),
78 Model_Zaurus_SL5500 = ( Model_Zaurus | 0x000002 ), 78 Model_Zaurus_SL5500 = ( Model_Zaurus | 0x000002 ),
79 Model_Zaurus_SLA300 = ( Model_Zaurus | 0x000003 ), 79 Model_Zaurus_SLA300 = ( Model_Zaurus | 0x000003 ),
80 Model_Zaurus_SLB600 = ( Model_Zaurus | 0x000004 ), 80 Model_Zaurus_SLB600 = ( Model_Zaurus | 0x000004 ),
81 Model_Zaurus_SLC7x0 = ( Model_Zaurus | 0x000005 ), 81 Model_Zaurus_SLC7x0 = ( Model_Zaurus | 0x000005 ),
82 Model_Zaurus_SL6000 = ( Model_Zaurus | 0x000006 ), 82 Model_Zaurus_SL6000 = ( Model_Zaurus | 0x000006 ),
83 83
84 Model_SIMpad = ( 3 << 24 ), 84 Model_SIMpad = ( 3 << 24 ),
85 85
86 Model_SIMpad_All = ( Model_SIMpad | 0xffffff ), 86 Model_SIMpad_All = ( Model_SIMpad | 0xffffff ),
87 Model_SIMpad_CL4 = ( Model_SIMpad | 0x000001 ), 87 Model_SIMpad_CL4 = ( Model_SIMpad | 0x000001 ),
88 Model_SIMpad_SL4 = ( Model_SIMpad | 0x000002 ), 88 Model_SIMpad_SL4 = ( Model_SIMpad | 0x000002 ),
89 Model_SIMpad_SLC = ( Model_SIMpad | 0x000004 ), 89 Model_SIMpad_SLC = ( Model_SIMpad | 0x000004 ),
90 Model_SIMpad_TSinus = ( Model_SIMpad | 0x000008 ), 90 Model_SIMpad_TSinus = ( Model_SIMpad | 0x000008 ),
91 91
92 Model_Ramses = ( 4 << 24 ), 92 Model_Ramses = ( 4 << 24 ),
93 93
94 Model_Ramses_All = ( Model_Ramses | 0xffffff ), 94 Model_Ramses_All = ( Model_Ramses | 0xffffff ),
95 Model_Ramses_MNCI = ( Model_Ramses | 0x000001 ), 95 Model_Ramses_MNCI = ( Model_Ramses | 0x000001 ),
96 Model_Ramses_MNCIRX = ( Model_Ramses | 0x000002 ),
96 97
97 Model_Yopy = ( 5 << 24 ), 98 Model_Yopy = ( 5 << 24 ),
98 99
99 Model_Yopy_All = ( Model_Yopy | 0xffffff ), 100 Model_Yopy_All = ( Model_Yopy | 0xffffff ),
100 Model_Yopy_3000 = ( Model_Yopy | 0x000001 ), 101 Model_Yopy_3000 = ( Model_Yopy | 0x000001 ),
101 Model_Yopy_3500 = ( Model_Yopy | 0x000002 ), 102 Model_Yopy_3500 = ( Model_Yopy | 0x000002 ),
102 Model_Yopy_3700 = ( Model_Yopy | 0x000003 ), 103 Model_Yopy_3700 = ( Model_Yopy | 0x000003 ),
103 104
104 Model_Beagle = ( 6 << 24 ), 105 Model_Beagle = ( 6 << 24 ),
105 106
106 Model_Beagle_All = ( Model_Beagle | 0xffffff ), 107 Model_Beagle_All = ( Model_Beagle | 0xffffff ),
107 Model_Beagle_PA100 = ( Model_Beagle | 0x000001 ), 108 Model_Beagle_PA100 = ( Model_Beagle | 0x000001 ),
108 109
109}; 110};
110 111
111/** 112/**
112 * The vendor of the device 113 * The vendor of the device
113 */ 114 */
114enum OVendor { 115enum OVendor {
115 Vendor_Unknown, 116 Vendor_Unknown,
116 117
117 Vendor_HP, 118 Vendor_HP,
118 Vendor_Sharp, 119 Vendor_Sharp,
119 Vendor_SIEMENS, 120 Vendor_SIEMENS,
@@ -240,49 +241,49 @@ public:
240 QString vendorString() const; 241 QString vendorString() const;
241 OVendor vendor() const; 242 OVendor vendor() const;
242 243
243 QString systemString() const; 244 QString systemString() const;
244 OSystem system() const; 245 OSystem system() const;
245 246
246 QString systemVersionString() const; 247 QString systemVersionString() const;
247 248
248 virtual Transformation rotation() const; 249 virtual Transformation rotation() const;
249 virtual ODirection direction() const; 250 virtual ODirection direction() const;
250 251
251 // system 252 // system
252 253
253 virtual bool setSoftSuspend ( bool on ); 254 virtual bool setSoftSuspend ( bool on );
254 virtual bool suspend(); 255 virtual bool suspend();
255 256
256 virtual bool setDisplayStatus ( bool on ); 257 virtual bool setDisplayStatus ( bool on );
257 virtual bool setDisplayBrightness ( int brightness ); 258 virtual bool setDisplayBrightness ( int brightness );
258 virtual int displayBrightnessResolution() const; 259 virtual int displayBrightnessResolution() const;
259 virtual bool setDisplayContrast ( int contrast ); 260 virtual bool setDisplayContrast ( int contrast );
260 virtual int displayContrastResolution() const; 261 virtual int displayContrastResolution() const;
261 262
262 // don't add new virtual methods, use this: 263 // don't add new virtual methods, use this:
263 // /*virtual */ void boo(int i ) { return virtual_hook(1,&i); }; 264 // /*virtual */ void boo(int i ) { return virtual_hook(1,&i); };
264 // and in your subclass do do overwrite 265 // and in your subclass do overwrite
265 // protected virtual int virtual_hook(int, void *) 266 // protected virtual int virtual_hook(int, void *)
266 // which is defined below 267 // which is defined below
267 268
268 // input / output 269 // input / output
269 virtual void playAlarmSound(); 270 virtual void playAlarmSound();
270 virtual void playKeySound(); 271 virtual void playKeySound();
271 virtual void playTouchSound(); 272 virtual void playTouchSound();
272 273
273 virtual QValueList <OLed> ledList() const; 274 virtual QValueList <OLed> ledList() const;
274 virtual QValueList <OLedState> ledStateList ( OLed led ) const; 275 virtual QValueList <OLedState> ledStateList ( OLed led ) const;
275 virtual OLedState ledState ( OLed led ) const; 276 virtual OLedState ledState ( OLed led ) const;
276 virtual bool setLedState ( OLed led, OLedState st ); 277 virtual bool setLedState ( OLed led, OLedState st );
277 278
278 virtual bool hasLightSensor() const; 279 virtual bool hasLightSensor() const;
279 virtual int readLightSensor(); 280 virtual int readLightSensor();
280 virtual int lightSensorResolution() const; 281 virtual int lightSensorResolution() const;
281 282
282 virtual bool hasHingeSensor() const; 283 virtual bool hasHingeSensor() const;
283 virtual OHingeStatus readHingeSensor(); 284 virtual OHingeStatus readHingeSensor();
284 285
285 const QStrList &allowedCpuFrequencies() const; 286 const QStrList &allowedCpuFrequencies() const;
286 bool setCurrentCpuFrequency(uint index); 287 bool setCurrentCpuFrequency(uint index);
287 288
288 /** 289 /**