-rw-r--r-- | noncore/settings/sysinfo/versioninfo.cpp | 43 |
1 files changed, 35 insertions, 8 deletions
diff --git a/noncore/settings/sysinfo/versioninfo.cpp b/noncore/settings/sysinfo/versioninfo.cpp index 1f5739a..e92b36c 100644 --- a/noncore/settings/sysinfo/versioninfo.cpp +++ b/noncore/settings/sysinfo/versioninfo.cpp | |||
@@ -20,8 +20,9 @@ | |||
20 | 20 | ||
21 | #include <qpe/resource.h> | 21 | #include <qpe/resource.h> |
22 | #include <qpe/version.h> | 22 | #include <qpe/version.h> |
23 | 23 | ||
24 | |||
24 | #include <qlabel.h> | 25 | #include <qlabel.h> |
25 | #include <qpixmap.h> | 26 | #include <qpixmap.h> |
26 | #include <qpainter.h> | 27 | #include <qpainter.h> |
27 | #include <qimage.h> | 28 | #include <qimage.h> |
@@ -30,8 +31,11 @@ | |||
30 | #include <qtextstream.h> | 31 | #include <qtextstream.h> |
31 | #include <qlayout.h> | 32 | #include <qlayout.h> |
32 | #include "versioninfo.h" | 33 | #include "versioninfo.h" |
33 | 34 | ||
35 | #include <opie/odevice.h> | ||
36 | using namespace Opie; | ||
37 | |||
34 | VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) | 38 | VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) |
35 | : QWidget( parent, name, f ) | 39 | : QWidget( parent, name, f ) |
36 | { | 40 | { |
37 | setMinimumSize( 200, 150 ); | 41 | setMinimumSize( 200, 150 ); |
@@ -40,16 +44,16 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) | |||
40 | 44 | ||
41 | QString kernelVersionString; | 45 | QString kernelVersionString; |
42 | QFile file( "/proc/version" ); | 46 | QFile file( "/proc/version" ); |
43 | if ( file.open( IO_ReadOnly ) ) { | 47 | if ( file.open( IO_ReadOnly ) ) { |
44 | QTextStream t( &file ); | 48 | QTextStream t( &file ); |
45 | QString v; | 49 | QString v; |
46 | t >> v; t >> v; t >> v; | 50 | t >> v; t >> v; t >> v; |
47 | v = v.left( 20 ); | 51 | v = v.left( 20 ); |
48 | kernelVersionString = tr( "<b>Linux Kernel</b><p>Version: " ) + v + "<p>"; | 52 | kernelVersionString = tr( "<b>Linux Kernel</b><p>Version: " ) + v + "<p>"; |
49 | t >> v; | 53 | t >> v; |
50 | kernelVersionString += tr( "Compiled by: " ) + v; | 54 | kernelVersionString += tr( "Compiled by: " ) + v; |
51 | file.close(); | 55 | file.close(); |
52 | } | 56 | } |
53 | 57 | ||
54 | QString palmtopVersionString; | 58 | QString palmtopVersionString; |
55 | palmtopVersionString = tr( "<b>Opie</b><p>Version: " ) + QPE_VERSION + "<p>"; | 59 | palmtopVersionString = tr( "<b>Opie</b><p>Version: " ) + QPE_VERSION + "<p>"; |
@@ -93,8 +97,31 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) | |||
93 | 97 | ||
94 | QLabel *kernelVersion = new QLabel( this ); | 98 | QLabel *kernelVersion = new QLabel( this ); |
95 | kernelVersion->setText( kernelVersionString ); | 99 | kernelVersion->setText( kernelVersionString ); |
96 | hb2->addWidget( kernelVersion, 1, Qt::AlignTop + Qt::AlignLeft ); | 100 | hb2->addWidget( kernelVersion, 1, Qt::AlignTop + Qt::AlignLeft ); |
101 | |||
102 | |||
103 | QHBoxLayout *hb3 = new QHBoxLayout( vb ); | ||
104 | hb3->setSpacing( 2 ); | ||
105 | |||
106 | QLabel *palmtopLogo3 = new QLabel( this ); | ||
107 | QImage logo3 = Resource::loadImage( "SystemInfo" ); | ||
108 | logo3 = logo3.smoothScale( 50, 55 ); | ||
109 | QPixmap logo3Pixmap; | ||
110 | logo3Pixmap.convertFromImage( logo3 ); | ||
111 | palmtopLogo3->setPixmap( logo3Pixmap ); | ||
112 | palmtopLogo3->setFixedSize( 60, 60 ); | ||
113 | hb3->addWidget( palmtopLogo3, 0, Qt::AlignTop + Qt::AlignLeft ); | ||
114 | |||
115 | systemString = tr( "<b>System</b><p>System: ") + ODevice::inst()->modelString() | ||
116 | +tr("<p>Version: " ) + ODevice::inst()->vendorString() | ||
117 | +tr("<p>Model: ") + ODevice::inst()->systemString() | ||
118 | +tr("<p>Vendor: ") + ODevice::inst()->systemVersionString(); | ||
119 | |||
120 | QLabel *systemVersion = new QLabel( this ); | ||
121 | systemVersion->setText( systemString ); | ||
122 | hb3->addWidget( systemVersion, 1, Qt::AlignTop + Qt::AlignLeft ); | ||
123 | |||
97 | } | 124 | } |
98 | 125 | ||
99 | VersionInfo::~VersionInfo() | 126 | VersionInfo::~VersionInfo() |
100 | { | 127 | { |