summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/versioninfo.cpp
authorllornkcor <llornkcor>2002-11-10 01:03:50 (UTC)
committer llornkcor <llornkcor>2002-11-10 01:03:50 (UTC)
commit12aa2d36cdd22cbde571716db4da302159c718fd (patch) (side-by-side diff)
treeeda27fb33bf0ca3491e8194cd56153ac74957314 /noncore/settings/sysinfo/versioninfo.cpp
parentdc4e5e557d8a506eb1461ff97e1fdcc7a9a91264 (diff)
downloadopie-12aa2d36cdd22cbde571716db4da302159c718fd.zip
opie-12aa2d36cdd22cbde571716db4da302159c718fd.tar.gz
opie-12aa2d36cdd22cbde571716db4da302159c718fd.tar.bz2
added system,system version,model,and vendor strings
Diffstat (limited to 'noncore/settings/sysinfo/versioninfo.cpp') (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
@@ -21,6 +21,7 @@
#include <qpe/resource.h>
#include <qpe/version.h>
+
#include <qlabel.h>
#include <qpixmap.h>
#include <qpainter.h>
@@ -31,6 +32,9 @@
#include <qlayout.h>
#include "versioninfo.h"
+#include <opie/odevice.h>
+using namespace Opie;
+
VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f )
: QWidget( parent, name, f )
{
@@ -41,14 +45,14 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f )
QString kernelVersionString;
QFile file( "/proc/version" );
if ( file.open( IO_ReadOnly ) ) {
- QTextStream t( &file );
- QString v;
- t >> v; t >> v; t >> v;
- v = v.left( 20 );
- kernelVersionString = tr( "<b>Linux Kernel</b><p>Version: " ) + v + "<p>";
- t >> v;
- kernelVersionString += tr( "Compiled by: " ) + v;
- file.close();
+ QTextStream t( &file );
+ QString v;
+ t >> v; t >> v; t >> v;
+ v = v.left( 20 );
+ kernelVersionString = tr( "<b>Linux Kernel</b><p>Version: " ) + v + "<p>";
+ t >> v;
+ kernelVersionString += tr( "Compiled by: " ) + v;
+ file.close();
}
QString palmtopVersionString;
@@ -94,6 +98,29 @@ VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f )
QLabel *kernelVersion = new QLabel( this );
kernelVersion->setText( kernelVersionString );
hb2->addWidget( kernelVersion, 1, Qt::AlignTop + Qt::AlignLeft );
+
+
+ QHBoxLayout *hb3 = new QHBoxLayout( vb );
+ hb3->setSpacing( 2 );
+
+ QLabel *palmtopLogo3 = new QLabel( this );
+ QImage logo3 = Resource::loadImage( "SystemInfo" );
+ logo3 = logo3.smoothScale( 50, 55 );
+ QPixmap logo3Pixmap;
+ logo3Pixmap.convertFromImage( logo3 );
+ palmtopLogo3->setPixmap( logo3Pixmap );
+ palmtopLogo3->setFixedSize( 60, 60 );
+ hb3->addWidget( palmtopLogo3, 0, Qt::AlignTop + Qt::AlignLeft );
+
+ systemString = tr( "<b>System</b><p>System: ") + ODevice::inst()->modelString()
+ +tr("<p>Version: " ) + ODevice::inst()->vendorString()
+ +tr("<p>Model: ") + ODevice::inst()->systemString()
+ +tr("<p>Vendor: ") + ODevice::inst()->systemVersionString();
+
+ QLabel *systemVersion = new QLabel( this );
+ systemVersion->setText( systemString );
+ hb3->addWidget( systemVersion, 1, Qt::AlignTop + Qt::AlignLeft );
+
}
VersionInfo::~VersionInfo()