summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/versioninfo.cpp
blob: 0b6883d75f82d9aef4d4bf1f3765ad29e0343030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/**********************************************************************
** Copyright (C) 2000 Trolltech AS.  All rights reserved.
**
** This file is part of Qtopia Environment.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/

#include "versioninfo.h"

/* OPIE */
#include <opie2/odevice.h>
#include <opie2/oresource.h>
#include <qpe/version.h>

/* QT */
#include <qfile.h>
#include <qlabel.h>
#include <qlayout.h>
#include <qscrollview.h>
#include <qtextstream.h>
#include <qwhatsthis.h>

using namespace Opie::Core;

VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f )
    : QWidget( parent, name, f )
{
    setMinimumSize( 200, 150 );

    QVBoxLayout *tmpvb = new QVBoxLayout( this );
    QScrollView *sv = new QScrollView( this );
    tmpvb->addWidget( sv, 0, 0 );
    sv->setResizePolicy( QScrollView::AutoOneFit );
    sv->setHScrollBarMode( QScrollView::AlwaysOff );
    sv->setVScrollBarMode( QScrollView::AlwaysOff );
    sv->setFrameStyle( QFrame::NoFrame );
    QWidget *container = new QWidget( sv->viewport() );
    sv->addChild( container );

    QVBoxLayout *vb = new QVBoxLayout( container, 3 );

    QString kernelVersionString;
    QFile file( "/proc/version" );
    if ( file.open( IO_ReadOnly ) )
    {
        QTextStream t( &file );
  QStringList strList;

  strList = QStringList::split(  " " , t.read(),  false );

        kernelVersionString = "<qt>" + tr( "<b>Linux Kernel</b><p>Version: " );
        kernelVersionString.append( strList[2] );
        kernelVersionString.append( "<br>" );
        kernelVersionString.append( tr( "Compiled by: " ) );
        kernelVersionString.append( strList[3] );
        kernelVersionString.append("</qt>");
        file.close();
    }

    QString palmtopVersionString = "<qt>" + tr( "<b>Opie</b><p>Version: " );
    palmtopVersionString.append( QPE_VERSION );
    palmtopVersionString.append( "<br>" );
#ifdef QPE_VENDOR
    QString builder = QPE_VENDOR;
#else
    QString builder = "Unknown";
#endif
    palmtopVersionString.append( tr( "Built against Qt/E " ) );
    palmtopVersionString.append( QT_VERSION_STR );
    palmtopVersionString.append( "<br>" );
    palmtopVersionString.append( tr( "Built on: " ) );
    palmtopVersionString.append( __DATE__  );
    palmtopVersionString.append( "</qt>" );

    QHBoxLayout *hb1 = new QHBoxLayout( vb );
    hb1->setSpacing( 2 );

    QLabel *palmtopLogo = new QLabel( container );
    QImage logo1 = Opie::Core::OResource::loadImage( "logo/opielogo" );
    logo1 = logo1.smoothScale( 50, 55 );
    QPixmap logo1Pixmap;
    logo1Pixmap.convertFromImage( logo1 );
    palmtopLogo->setPixmap( logo1Pixmap );
    palmtopLogo->setFixedSize( 60, 60 );
    hb1->addWidget( palmtopLogo, 0, Qt::AlignTop + Qt::AlignLeft );

    QLabel *palmtopVersion = new QLabel( container );
    palmtopVersion->setText( palmtopVersionString  );
    hb1->addWidget( palmtopVersion, 1, Qt::AlignTop + Qt::AlignLeft );


    QHBoxLayout *hb2 = new QHBoxLayout( vb );
    hb1->setSpacing( 2 );

    QLabel *linuxLogo = new QLabel( container );
    QImage logo2 = Opie::Core::OResource::loadImage( "logo/tux-logo" );
    logo2 = logo2.smoothScale( 55, 60 );
    QPixmap logo2Pixmap;
    logo2Pixmap.convertFromImage( logo2 );
    linuxLogo->setPixmap( logo2Pixmap );
    linuxLogo->setFixedSize( 60, 60 );
    hb2->addWidget( linuxLogo, 0, Qt::AlignTop + Qt::AlignLeft );

    QLabel *kernelVersion = new QLabel( container );
    kernelVersion->setText( kernelVersionString );
    hb2->addWidget( kernelVersion, 1, Qt::AlignTop + Qt::AlignLeft );


    QHBoxLayout *hb3 = new QHBoxLayout( vb );
    hb3->setSpacing( 2 );

    QLabel *palmtopLogo3 = new QLabel( container );

    OModel model = ODevice::inst()->model();
    OVendor vendor = ODevice::inst()->vendor();
    QString modelPixmap = "sysinfo/";

    switch ( vendor ) {
        /* SHARP */
        case Vendor_Sharp:
        {
            switch ( model ) {
                /* ZAURUS */
                case Model_Zaurus_SLC7x0:
                    modelPixmap += "zaurusc700";
                    break;
                case Model_Zaurus_SL5000:
                case Model_Zaurus_SL5500:
                case Model_Zaurus_SLA300:
                case Model_Zaurus_SLB600:
                    modelPixmap += "zaurus5500";
                    break;
                default:
                    modelPixmap += "pda";
                    break;
            }
            break;
        }
        /* HP */
        case Vendor_HP:
        {
            switch ( model ) {
                /* IPAQ */
                case Model_iPAQ_H31xx:
                case Model_iPAQ_H36xx:
                case Model_iPAQ_H37xx:
                case Model_iPAQ_H38xx:
                case Model_iPAQ_H39xx:
                case Model_iPAQ_H5xxx:
                    modelPixmap += "ipaq3600";
                    break;
                /* JORNADA */
                case Model_Jornada_56x:
                    modelPixmap += "jornada56x";
                    break;
                case Model_Jornada_720:
                    modelPixmap += "jornada720";
                    break;
                default:
                    modelPixmap += "pda";
                    break;
            }
            break;
        }
        /* SIEMENS */    
        case Vendor_SIEMENS:
        {
            switch ( model ) 
            {
                /* SIMPAD */
                case Model_SIMpad_CL4:
                case Model_SIMpad_SL4:
                case Model_SIMpad_SLC:
                case Model_SIMpad_TSinus:
                    modelPixmap += "simpad";
                    break;
                default:
                    modelPixmap += "pda";
                    break;
            }
            break;
        }
        /* HTC */
        case Vendor_HTC:
        {
            switch ( model ) {
                case Model_HTC_Universal:
                    modelPixmap += "htcuniversal";
                    break;
                case Model_HTC_Blueangel:
                    modelPixmap += "htcblueangel";
                    break;
                case Model_HTC_Apache:
                    modelPixmap += "htcapache";
                    break;
                case Model_HTC_Magician:
                    modelPixmap += "htcmagician";
                    break;
                case Model_HTC_Himalaya:
                    modelPixmap += "htchimalaya";
                    break;
                case Model_HTC_Alpine:
                    modelPixmap += "htcalpine";
                    break;
                case Model_HTC_Beetles:
                    modelPixmap += "htcbeetles";
                    break;
                default:
                    modelPixmap += "pda";
                    break;
            }
            break;
        }
        /* PALM */
        case Vendor_Palm:
        {
            switch ( model ) {
                case Model_Palm_TT:
                    modelPixmap += "palmtt";
                    break;
                case Model_Palm_TT2:
                    modelPixmap += "palmtt2";
                    break;
                case Model_Palm_TT3:
                    modelPixmap += "palmtt3";
                    break;
                case Model_Palm_TT5:
                    modelPixmap += "palmtt5";
                    break;
                case Model_Palm_TE:
                    modelPixmap += "palmte";
                    break;
                case Model_Palm_TE2:
                    modelPixmap += "palmte2";
                    break;
                case Model_Palm_TC:
                    modelPixmap += "palmtc";
                    break;
                case Model_Palm_LD:
                    modelPixmap += "palmld";
                    break;
                case Model_Palm_TX:
                    modelPixmap += "palmtx";
                    break;
                case Model_Palm_Z71:
                    modelPixmap += "palmz71";
                    break;
                case Model_Palm_Z72:
                    modelPixmap += "palmz72";
                    break;
                case Model_Palm_T600:
                    modelPixmap += "palmt600";
                    break;
                case Model_Palm_T650:
                    modelPixmap += "palmt650";
                    break;
                case Model_Palm_T680:
                    modelPixmap += "palmt680";
                    break;
                case Model_Palm_T700W:
                    modelPixmap += "palmt700w";
                    break;
                case Model_Palm_T700P:
                    modelPixmap += "palmt700p";
                    break;
                case Model_Palm_T750:
                    modelPixmap += "palmt750";
                    break;
                case Model_Palm_T755P:
                    modelPixmap += "palmt755p";
                    break;
                case Model_Palm_FOLEO:
                    modelPixmap += "palmfoleo";
                    break;
                default:
                    modelPixmap += "pda";
                    break;
            }
            break;
        }
        /* OTHER DEVICES */
        default:
            modelPixmap += "pda";
            break;
    }
    QImage logo3 = Opie::Core::OResource::loadImage( modelPixmap );

    int width = logo3.width();
    int height = logo3.height();
    float aspect = float( height ) / width;
    logo3 = logo3.smoothScale( 50, 50.0 * aspect );

    QPixmap logo3Pixmap;
    logo3Pixmap.convertFromImage( logo3 );
    palmtopLogo3->setPixmap( logo3Pixmap );
    palmtopLogo3->setFixedSize( 60, 100 );
    hb3->addWidget( palmtopLogo3, 0, Qt::AlignTop + Qt::AlignLeft );

    QString systemString = "<qt><b>";
    systemString.append( ODevice::inst()->systemString() );
    systemString.append( "</b>" );
    systemString.append( tr( "<p>Version: " ) );
    systemString.append( ODevice::inst()->systemVersionString() );
    systemString.append( tr( "<br>Model: " ) );
    systemString.append( ODevice::inst()->modelString() );
    systemString.append( tr( "<br>Vendor: " ) );
    systemString.append( ODevice::inst()->vendorString() );
    systemString.append("</qt>");

    QLabel *systemVersion = new QLabel( container );
    systemVersion->setText( systemString );
    hb3->addWidget( systemVersion, 1, Qt::AlignTop + Qt::AlignLeft );

    QWhatsThis::add( this, tr( "This page shows the current versions of Opie, the Linux kernel and distribution running on this handheld device." ) );
}

VersionInfo::~VersionInfo()
{
}