author | mickeyl <mickeyl> | 2004-09-12 14:18:54 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-09-12 14:18:54 (UTC) |
commit | 9b815e534e91b25063448f397dc8c7059d85ce27 (patch) (unidiff) | |
tree | 9c0fefd643e2da9c4d88394fe4551c2a3e8212a0 | |
parent | 16f05a60665f1ba6aa61ac1032f3153578e5aaaf (diff) | |
download | opie-9b815e534e91b25063448f397dc8c7059d85ce27.zip opie-9b815e534e91b25063448f397dc8c7059d85ce27.tar.gz opie-9b815e534e91b25063448f397dc8c7059d85ce27.tar.bz2 |
always disable the scrollbars for the versioninfo tab
-rw-r--r-- | noncore/settings/sysinfo/versioninfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/settings/sysinfo/versioninfo.cpp b/noncore/settings/sysinfo/versioninfo.cpp index 1b811df..2111298 100644 --- a/noncore/settings/sysinfo/versioninfo.cpp +++ b/noncore/settings/sysinfo/versioninfo.cpp | |||
@@ -23,48 +23,50 @@ | |||
23 | /* OPIE */ | 23 | /* OPIE */ |
24 | #include <opie2/odevice.h> | 24 | #include <opie2/odevice.h> |
25 | #include <qpe/resource.h> | 25 | #include <qpe/resource.h> |
26 | #include <qpe/version.h> | 26 | #include <qpe/version.h> |
27 | 27 | ||
28 | /* QT */ | 28 | /* QT */ |
29 | #include <qfile.h> | 29 | #include <qfile.h> |
30 | #include <qlabel.h> | 30 | #include <qlabel.h> |
31 | #include <qlayout.h> | 31 | #include <qlayout.h> |
32 | #include <qscrollview.h> | 32 | #include <qscrollview.h> |
33 | #include <qtextstream.h> | 33 | #include <qtextstream.h> |
34 | #include <qwhatsthis.h> | 34 | #include <qwhatsthis.h> |
35 | 35 | ||
36 | using namespace Opie::Core; | 36 | using namespace Opie::Core; |
37 | 37 | ||
38 | VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) | 38 | VersionInfo::VersionInfo( QWidget *parent, const char *name, WFlags f ) |
39 | : QWidget( parent, name, f ) | 39 | : QWidget( parent, name, f ) |
40 | { | 40 | { |
41 | setMinimumSize( 200, 150 ); | 41 | setMinimumSize( 200, 150 ); |
42 | 42 | ||
43 | QVBoxLayout *tmpvb = new QVBoxLayout( this ); | 43 | QVBoxLayout *tmpvb = new QVBoxLayout( this ); |
44 | QScrollView *sv = new QScrollView( this ); | 44 | QScrollView *sv = new QScrollView( this ); |
45 | tmpvb->addWidget( sv, 0, 0 ); | 45 | tmpvb->addWidget( sv, 0, 0 ); |
46 | sv->setResizePolicy( QScrollView::AutoOneFit ); | 46 | sv->setResizePolicy( QScrollView::AutoOneFit ); |
47 | sv->setHScrollBarMode( QScrollView::AlwaysOff ); | ||
48 | sv->setVScrollBarMode( QScrollView::AlwaysOff ); | ||
47 | sv->setFrameStyle( QFrame::NoFrame ); | 49 | sv->setFrameStyle( QFrame::NoFrame ); |
48 | QWidget *container = new QWidget( sv->viewport() ); | 50 | QWidget *container = new QWidget( sv->viewport() ); |
49 | sv->addChild( container ); | 51 | sv->addChild( container ); |
50 | 52 | ||
51 | QVBoxLayout *vb = new QVBoxLayout( container, 3 ); | 53 | QVBoxLayout *vb = new QVBoxLayout( container, 3 ); |
52 | 54 | ||
53 | QString kernelVersionString; | 55 | QString kernelVersionString; |
54 | QFile file( "/proc/version" ); | 56 | QFile file( "/proc/version" ); |
55 | if ( file.open( IO_ReadOnly ) ) | 57 | if ( file.open( IO_ReadOnly ) ) |
56 | { | 58 | { |
57 | QTextStream t( &file ); | 59 | QTextStream t( &file ); |
58 | QStringList strList; | 60 | QStringList strList; |
59 | 61 | ||
60 | strList = QStringList::split( " " , t.read(), false ); | 62 | strList = QStringList::split( " " , t.read(), false ); |
61 | 63 | ||
62 | kernelVersionString = "<qt>" + tr( "<b>Linux Kernel</b><p>Version: " ); | 64 | kernelVersionString = "<qt>" + tr( "<b>Linux Kernel</b><p>Version: " ); |
63 | kernelVersionString.append( strList[2] ); | 65 | kernelVersionString.append( strList[2] ); |
64 | kernelVersionString.append( "<br>" ); | 66 | kernelVersionString.append( "<br>" ); |
65 | kernelVersionString.append( tr( "Compiled by: " ) ); | 67 | kernelVersionString.append( tr( "Compiled by: " ) ); |
66 | kernelVersionString.append( strList[3] ); | 68 | kernelVersionString.append( strList[3] ); |
67 | kernelVersionString.append("</qt>"); | 69 | kernelVersionString.append("</qt>"); |
68 | file.close(); | 70 | file.close(); |
69 | } | 71 | } |
70 | 72 | ||