From 12aa2d36cdd22cbde571716db4da302159c718fd Mon Sep 17 00:00:00 2001 From: llornkcor Date: Sun, 10 Nov 2002 01:03:50 +0000 Subject: added system,system version,model,and vendor strings --- 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 #include + #include #include #include @@ -31,6 +32,9 @@ #include #include "versioninfo.h" +#include +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( "Linux Kernel

Version: " ) + v + "

"; - 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( "Linux Kernel

Version: " ) + v + "

"; + 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( "System

System: ") + ODevice::inst()->modelString() + +tr("

Version: " ) + ODevice::inst()->vendorString() + +tr("

Model: ") + ODevice::inst()->systemString() + +tr("

Vendor: ") + ODevice::inst()->systemVersionString(); + + QLabel *systemVersion = new QLabel( this ); + systemVersion->setText( systemString ); + hb3->addWidget( systemVersion, 1, Qt::AlignTop + Qt::AlignLeft ); + } VersionInfo::~VersionInfo() -- cgit v0.9.0.2