summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--libopie/odevice.cpp16
-rw-r--r--libopie/odevice.h1
2 files changed, 16 insertions, 1 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp
index 9931684..bc8014a 100644
--- a/libopie/odevice.cpp
+++ b/libopie/odevice.cpp
@@ -28,24 +28,26 @@
28 28
29class ODeviceData { 29class ODeviceData {
30public: 30public:
31 QString m_vendorstr; 31 QString m_vendorstr;
32 OVendor m_vendor; 32 OVendor m_vendor;
33 33
34 QString m_modelstr; 34 QString m_modelstr;
35 OModel m_model; 35 OModel m_model;
36 36
37 QString m_systemstr; 37 QString m_systemstr;
38 OSystem m_system; 38 OSystem m_system;
39 39
40 QString m_sysverstr;
41
40 OLedState m_leds [4]; // just for convenience ... 42 OLedState m_leds [4]; // just for convenience ...
41}; 43};
42 44
43class ODeviceIPAQ : public ODevice { 45class ODeviceIPAQ : public ODevice {
44protected: 46protected:
45 virtual void init ( ); 47 virtual void init ( );
46 48
47public: 49public:
48 virtual void alarmSound ( ); 50 virtual void alarmSound ( );
49 51
50 virtual uint hasLeds ( ) const; 52 virtual uint hasLeds ( ) const;
51 virtual OLedState led ( uint which ) const; 53 virtual OLedState led ( uint which ) const;
@@ -90,24 +92,25 @@ ODevice *ODevice::inst ( )
90} 92}
91 93
92ODevice::ODevice ( ) 94ODevice::ODevice ( )
93{ 95{
94 d = new ODeviceData; 96 d = new ODeviceData;
95 97
96 d-> m_modelstr = "Unknown"; 98 d-> m_modelstr = "Unknown";
97 d-> m_model = OMODEL_Unknown; 99 d-> m_model = OMODEL_Unknown;
98 d-> m_vendorstr = "Unkown"; 100 d-> m_vendorstr = "Unkown";
99 d-> m_vendor = OVENDOR_Unknown; 101 d-> m_vendor = OVENDOR_Unknown;
100 d-> m_systemstr = "Unkown"; 102 d-> m_systemstr = "Unkown";
101 d-> m_system = OSYSTEM_Unknown; 103 d-> m_system = OSYSTEM_Unknown;
104 d-> m_sysverstr = "0.0";
102} 105}
103 106
104void ODevice::init ( ) 107void ODevice::init ( )
105{ 108{
106} 109}
107 110
108ODevice::~ODevice ( ) 111ODevice::~ODevice ( )
109{ 112{
110 delete d; 113 delete d;
111} 114}
112 115
113QString ODevice::vendorString ( ) 116QString ODevice::vendorString ( )
@@ -131,24 +134,29 @@ OModel ODevice::model ( )
131} 134}
132 135
133QString ODevice::systemString ( ) 136QString ODevice::systemString ( )
134{ 137{
135 return d-> m_systemstr; 138 return d-> m_systemstr;
136} 139}
137 140
138OSystem ODevice::system ( ) 141OSystem ODevice::system ( )
139{ 142{
140 return d-> m_system; 143 return d-> m_system;
141} 144}
142 145
146QString ODevice::systemVersionString ( )
147{
148 return d-> m_sysverstr;
149}
150
143void ODevice::alarmSound ( ) 151void ODevice::alarmSound ( )
144{ 152{
145#ifndef QT_QWS_EBX 153#ifndef QT_QWS_EBX
146#ifndef QT_NO_SOUND 154#ifndef QT_NO_SOUND
147 static Sound snd ( "alarm" ); 155 static Sound snd ( "alarm" );
148 156
149 if ( snd. isFinished ( )) 157 if ( snd. isFinished ( ))
150 snd. play ( ); 158 snd. play ( );
151#endif 159#endif
152#endif 160#endif
153} 161}
154 162
@@ -217,27 +225,33 @@ void ODeviceIPAQ::init ( )
217 else if ( d-> m_modelstr == "H3600" ) 225 else if ( d-> m_modelstr == "H3600" )
218 d-> m_model = OMODEL_iPAQ_H36xx; 226 d-> m_model = OMODEL_iPAQ_H36xx;
219 else if ( d-> m_modelstr == "H3700" ) 227 else if ( d-> m_modelstr == "H3700" )
220 d-> m_model = OMODEL_iPAQ_H37xx; 228 d-> m_model = OMODEL_iPAQ_H37xx;
221 else if ( d-> m_modelstr == "H3800" ) 229 else if ( d-> m_modelstr == "H3800" )
222 d-> m_model = OMODEL_iPAQ_H38xx; 230 d-> m_model = OMODEL_iPAQ_H38xx;
223 else 231 else
224 d-> m_model = OMODEL_Unknown; 232 d-> m_model = OMODEL_Unknown;
225 233
226 f. close ( ); 234 f. close ( );
227 } 235 }
228 236
229 if ( QFile::exists ( "/etc/familiar-version" )) { 237 f. setName ( "/etc/familiar-version" );
238 if ( f. open ( IO_ReadOnly )) {
230 d-> m_systemstr = "Familiar"; 239 d-> m_systemstr = "Familiar";
231 d-> m_system = OSYSTEM_Familiar; 240 d-> m_system = OSYSTEM_Familiar;
241
242 QTextStream ts ( &f );
243 d-> m_sysverstr = ts. readLine ( ). mid ( 10 );
244
245 f. close ( );
232 } 246 }
233 247
234 d-> m_leds [0] = OLED_Off; 248 d-> m_leds [0] = OLED_Off;
235} 249}
236 250
237#include <unistd.h> 251#include <unistd.h>
238#include <fcntl.h> 252#include <fcntl.h>
239#include <sys/ioctl.h> 253#include <sys/ioctl.h>
240#include <linux/soundcard.h> 254#include <linux/soundcard.h>
241#include <qapplication.h> 255#include <qapplication.h>
242#include <qpe/config.h> 256#include <qpe/config.h>
243 257
diff --git a/libopie/odevice.h b/libopie/odevice.h
index b40abe7..b54e576 100644
--- a/libopie/odevice.h
+++ b/libopie/odevice.h
@@ -69,24 +69,25 @@ public:
69 69
70// information 70// information
71 71
72 QString modelString ( ); 72 QString modelString ( );
73 OModel model ( ); 73 OModel model ( );
74 74
75 QString vendorString ( ); 75 QString vendorString ( );
76 OVendor vendor ( ); 76 OVendor vendor ( );
77 77
78 QString systemString ( ); 78 QString systemString ( );
79 OSystem system ( ); 79 OSystem system ( );
80 80
81 QString systemVersionString ( );
81 82
82// input / output 83// input / output
83 84
84 virtual void alarmSound ( ); 85 virtual void alarmSound ( );
85 virtual void keySound ( ); 86 virtual void keySound ( );
86 virtual void touchSound ( ); 87 virtual void touchSound ( );
87 88
88 virtual uint hasLeds ( ) const; 89 virtual uint hasLeds ( ) const;
89 virtual OLedState led ( uint which ) const; 90 virtual OLedState led ( uint which ) const;
90 virtual bool setLed ( uint which, OLedState st ); 91 virtual bool setLed ( uint which, OLedState st );
91 92
92 virtual ~ODevice ( ); 93 virtual ~ODevice ( );