summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/storage.cpp
authordrw <drw>2002-11-17 02:14:03 (UTC)
committer drw <drw>2002-11-17 02:14:03 (UTC)
commit9ed0a6022d4c3bcd8428096cdf28cad1e0355ab2 (patch) (unidiff)
treef84b36548fa91496c0c100c96a3fa1512ec8b108 /noncore/settings/sysinfo/storage.cpp
parent5a1f5ba99dfb754f1be4500dd55dca42b36413b8 (diff)
downloadopie-9ed0a6022d4c3bcd8428096cdf28cad1e0355ab2.zip
opie-9ed0a6022d4c3bcd8428096cdf28cad1e0355ab2.tar.gz
opie-9ed0a6022d4c3bcd8428096cdf28cad1e0355ab2.tar.bz2
Start of What's This for Sysinfo, plus some code tweaks
Diffstat (limited to 'noncore/settings/sysinfo/storage.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/storage.cpp39
1 files changed, 28 insertions, 11 deletions
diff --git a/noncore/settings/sysinfo/storage.cpp b/noncore/settings/sysinfo/storage.cpp
index b369ff1..c33663e 100644
--- a/noncore/settings/sysinfo/storage.cpp
+++ b/noncore/settings/sysinfo/storage.cpp
@@ -1,48 +1,49 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20// additions copyright 2002 by L.J. Potter 20// additions copyright 2002 by L.J. Potter
21#include <qlabel.h> 21#include <qlabel.h>
22#include <qlayout.h> 22#include <qlayout.h>
23#include <qtimer.h> 23#include <qtimer.h>
24#include <qlayout.h> 24#include <qwhatsthis.h>
25
25#include "graph.h" 26#include "graph.h"
26#include "storage.h" 27#include "storage.h"
27 28
28#include <stdio.h> 29#include <stdio.h>
29 #if defined(_OS_LINUX_) || defined(Q_OS_LINUX) 30 #if defined(_OS_LINUX_) || defined(Q_OS_LINUX)
30#include <sys/vfs.h> 31#include <sys/vfs.h>
31#include <mntent.h> 32#include <mntent.h>
32 #endif 33 #endif
33 34
34StorageInfo::StorageInfo( QWidget *parent, const char *name ) 35StorageInfo::StorageInfo( QWidget *parent, const char *name )
35 : QWidget( parent, name ) 36 : QWidget( parent, name )
36{ 37{
37 vb = 0; 38 vb = 0;
38 disks.setAutoDelete(TRUE); 39 disks.setAutoDelete(TRUE);
39 lines.setAutoDelete(TRUE); 40 lines.setAutoDelete(TRUE);
40 updateMounts(); 41 updateMounts();
41 startTimer( 5000 ); 42 startTimer( 5000 );
42} 43}
43 44
44void StorageInfo::timerEvent(QTimerEvent*) 45void StorageInfo::timerEvent(QTimerEvent*)
45{ 46{
46 updateMounts(); 47 updateMounts();
47} 48}
48 49
@@ -102,71 +103,87 @@ void StorageInfo::updateMounts()
102 endmntent( mntfp ); 103 endmntent( mntfp );
103 } 104 }
104 if ( rebuild || n != (int)disks.count() ) { 105 if ( rebuild || n != (int)disks.count() ) {
105 disks.clear(); 106 disks.clear();
106 lines.clear(); 107 lines.clear();
107 delete vb; 108 delete vb;
108 vb = new QVBoxLayout( this, n > 3 ? 1 : 5 ); 109 vb = new QVBoxLayout( this, n > 3 ? 1 : 5 );
109 bool frst=TRUE; 110 bool frst=TRUE;
110 QStringList::ConstIterator it=curdisks.begin(); 111 QStringList::ConstIterator it=curdisks.begin();
111 QStringList::ConstIterator fsit=curfs.begin(); 112 QStringList::ConstIterator fsit=curfs.begin();
112 QStringList::ConstIterator fsmount=mountList.begin(); 113 QStringList::ConstIterator fsmount=mountList.begin();
113 QStringList::ConstIterator fsTit=fsT.begin(); 114 QStringList::ConstIterator fsTit=fsT.begin();
114 115
115 for (; it!=curdisks.end(); ++it, ++fsit) { 116 for (; it!=curdisks.end(); ++it, ++fsit) {
116 if ( !frst ) { 117 if ( !frst ) {
117 QFrame *f = new QFrame( this ); 118 QFrame *f = new QFrame( this );
118 vb->addWidget(f); 119 vb->addWidget(f);
119 f->setFrameStyle( QFrame::HLine | QFrame::Sunken ); 120 f->setFrameStyle( QFrame::HLine | QFrame::Sunken );
120 lines.append(f); 121 lines.append(f);
121 f->show(); 122 f->show();
122 } frst=FALSE; 123 } frst=FALSE;
123 QString humanname=*it; 124 QString humanname=*it;
124// qDebug(humanname); 125// qDebug(humanname);
125 if ( isCF(humanname) ) 126 if ( isCF(humanname) )
126 humanname = tr("CF Card: "+*fsmount+" "+*fsTit+" "); 127 humanname = tr( "CF Card: " );
127 else if ( humanname == "/dev/hda1" ) 128 else if ( humanname == "/dev/hda1" )
128 humanname = tr("Hard Disk "+*fsmount+" "+*fsTit+" "); 129 humanname = tr( "Hard Disk " );
129 else if ( humanname.left(9) == "/dev/mmcd" ) 130 else if ( humanname.left(9) == "/dev/mmcd" )
130 humanname = tr("SD Card "+*fsmount+" "+*fsTit+" "); 131 humanname = tr( "SD Card " );
131 else if ( humanname.left(7) == "/dev/hd" ) 132 else if ( humanname.left(7) == "/dev/hd" )
132 humanname = tr("Hard Disk") + " " + humanname.mid(7)+" "+*fsmount+" "+*fsTit+" "; 133 humanname = tr( "Hard Disk /dev/hd " );
133 else if ( humanname.left(7) == "/dev/sd" ) 134 else if ( humanname.left(7) == "/dev/sd" )
134 humanname = tr("SCSI Hard Disk") + " " + humanname.mid(7)+" "+*fsmount+" "+*fsTit+" "; 135 humanname = tr( "SCSI Hard Disk /dev/sd " );
135 else if ( humanname == "/dev/mtdblock1" || humanname == "/dev/mtdblock/1" ) 136 else if ( humanname == "/dev/mtdblock1" || humanname == "/dev/mtdblock/1" )
136 humanname = tr("Int. Storage "+*fsmount+" "+*fsTit+"\n"); 137 humanname = tr( "Int. Storage " );
137 else if ( humanname.left(14) == "/dev/mtdblock/" ) 138 else if ( humanname.left(14) == "/dev/mtdblock/" )
138 humanname = tr("Int. Storage") + " " + humanname.mid(14)+" "+*fsmount+" "+*fsTit+" "; 139 humanname = tr( "Int. Storage /dev/mtdblock/ " );
139 else if ( humanname.left(13) == "/dev/mtdblock" ) 140 else if ( humanname.left(13) == "/dev/mtdblock" )
140 humanname = tr("Int. Storage") + " " + humanname.mid(13)+" "+*fsmount+" "+*fsTit+" "; 141 humanname = tr( "Int. Storage /dev/mtdblock " );
141 else if ( humanname.left(9) == "/dev/root" ) 142 else if ( humanname.left(9) == "/dev/root" )
142 humanname = tr("Int. Storage "+*fsmount+" "+*fsTit+" "); 143 humanname = tr( "Int. Storage " );
143 // etc. 144 // etc.
145 humanname.append( *fsmount );
146 humanname.append( " " );
147 humanname.append( *fsTit );
148 humanname.append( " " );
149
144 MountInfo* mi = new MountInfo( *fsit, humanname, this ); 150 MountInfo* mi = new MountInfo( *fsit, humanname, this );
145 vb->addWidget(mi); 151 vb->addWidget(mi);
146 disks.insert(*fsit,mi); 152 disks.insert(*fsit,mi);
147 mi->show(); 153 mi->show();
148 fsmount++;fsTit++; 154 fsmount++;fsTit++;
155 QString tempstr = humanname.left( 2 );
156 if ( tempstr == tr( "CF" ) )
157 QWhatsThis::add( mi, tr( "This graph represents how much memory is currently used on this Compact Flash memory card." ) );
158 else if ( tempstr == tr( "Ha" ) )
159 QWhatsThis::add( mi, tr( "This graph represents how much storage is currently used on this hard drive." ) );
160 else if ( tempstr == tr( "SD" ) )
161 QWhatsThis::add( mi, tr( "This graph represents how much memory is currently used on this Secure Digital memory card." ) );
162 else if ( tempstr == tr( "SC" ) )
163 QWhatsThis::add( mi, tr( "This graph represents how much storage is currently used on this hard drive." ) );
164 else if ( tempstr == tr( "In" ) )
165 QWhatsThis::add( mi, tr( "This graph represents how much memory is currently used of the built-in memory (i.e. Flash memory) on this handheld device." ) );
149 } 166 }
150 vb->addStretch(); 167 vb->addStretch();
151 } else { 168 } else {
152 // just update them 169 // just update them
153 for (QDictIterator<MountInfo> i(disks); i.current(); ++i) 170 for (QDictIterator<MountInfo> i(disks); i.current(); ++i)
154 i.current()->updateData(); 171 i.current()->updateData();
155 } 172 }
156#endif 173#endif
157} 174}
158 175
159 176
160MountInfo::MountInfo( const QString &path, const QString &ttl, QWidget *parent, const char *name ) 177MountInfo::MountInfo( const QString &path, const QString &ttl, QWidget *parent, const char *name )
161 : QWidget( parent, name ), title(ttl) 178 : QWidget( parent, name ), title(ttl)
162{ 179{
163 qDebug("new path is "+path); 180 qDebug("new path is "+path);
164 fs = new FileSystem( path ); 181 fs = new FileSystem( path );
165 QVBoxLayout *vb = new QVBoxLayout( this, 3 ); 182 QVBoxLayout *vb = new QVBoxLayout( this, 3 );
166 183
167 totalSize = new QLabel( this ); 184 totalSize = new QLabel( this );
168 vb->addWidget( totalSize ); 185 vb->addWidget( totalSize );
169 186
170 data = new GraphData(); 187 data = new GraphData();
171 graph = new BarGraph( this ); 188 graph = new BarGraph( this );
172 graph->setFrameStyle( QFrame::Panel | QFrame::Sunken ); 189 graph->setFrameStyle( QFrame::Panel | QFrame::Sunken );