summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/versioninfo.cpp43
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
@@ -23,2 +23,3 @@
23 23
24
24#include <qlabel.h> 25#include <qlabel.h>
@@ -33,2 +34,5 @@
33 34
35#include <opie/odevice.h>
36using namespace Opie;
37
34VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) 38VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f )
@@ -43,10 +47,10 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f )
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 }
@@ -96,2 +100,25 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f )
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}