-rw-r--r-- | noncore/settings/sysinfo/devicesinfo.cpp | 79 | ||||
-rw-r--r-- | noncore/settings/sysinfo/devicesinfo.h | 6 | ||||
-rw-r--r-- | noncore/settings/sysinfo/sysinfo.pro | 2 | ||||
-rw-r--r-- | noncore/settings/sysinfo/sysloginfo.cpp | 6 | ||||
-rw-r--r-- | noncore/settings/sysinfo/sysloginfo.h | 4 |
5 files changed, 81 insertions, 16 deletions
diff --git a/noncore/settings/sysinfo/devicesinfo.cpp b/noncore/settings/sysinfo/devicesinfo.cpp index 4940286..76c9b79 100644 --- a/noncore/settings/sysinfo/devicesinfo.cpp +++ b/noncore/settings/sysinfo/devicesinfo.cpp | |||
@@ -34,24 +34,25 @@ _;:, .> :=|. This program is free software; you can | |||
34 | #include <opie2/olayout.h> | 34 | #include <opie2/olayout.h> |
35 | #include <opie2/olistview.h> | 35 | #include <opie2/olistview.h> |
36 | #include <qpe/qpeapplication.h> | 36 | #include <qpe/qpeapplication.h> |
37 | using namespace Opie::Core; | 37 | using namespace Opie::Core; |
38 | using namespace Opie::Ui; | 38 | using namespace Opie::Ui; |
39 | 39 | ||
40 | /* QT */ | 40 | /* QT */ |
41 | #include <qobjectlist.h> | 41 | #include <qobjectlist.h> |
42 | #include <qlistview.h> | 42 | #include <qlistview.h> |
43 | #include <qcombobox.h> | 43 | #include <qcombobox.h> |
44 | #include <qfile.h> | 44 | #include <qfile.h> |
45 | #include <qpushbutton.h> | 45 | #include <qpushbutton.h> |
46 | #include <qstringlist.h> | ||
46 | #include <qtextstream.h> | 47 | #include <qtextstream.h> |
47 | #include <qtextview.h> | 48 | #include <qtextview.h> |
48 | #include <qtimer.h> | 49 | #include <qtimer.h> |
49 | #include <qwhatsthis.h> | 50 | #include <qwhatsthis.h> |
50 | 51 | ||
51 | //================================================================================================= | 52 | //================================================================================================= |
52 | DevicesView::DevicesView( QWidget* parent, const char* name, WFlags fl ) | 53 | DevicesView::DevicesView( QWidget* parent, const char* name, WFlags fl ) |
53 | :Opie::Ui::OListView( parent, name, fl ) | 54 | :Opie::Ui::OListView( parent, name, fl ) |
54 | { | 55 | { |
55 | addColumn( tr( "My Computer" ) ); | 56 | addColumn( tr( "My Computer" ) ); |
56 | setAllColumnsShowFocus( true ); | 57 | setAllColumnsShowFocus( true ); |
57 | setRootIsDecorated( true ); | 58 | setRootIsDecorated( true ); |
@@ -87,25 +88,25 @@ void DevicesView::selectionChanged( QListViewItem* item ) | |||
87 | 88 | ||
88 | 89 | ||
89 | //================================================================================================= | 90 | //================================================================================================= |
90 | DevicesInfo::DevicesInfo( QWidget* parent, const char* name, WFlags fl ) | 91 | DevicesInfo::DevicesInfo( QWidget* parent, const char* name, WFlags fl ) |
91 | :QWidget( parent, name, fl ), details( 0 ) | 92 | :QWidget( parent, name, fl ), details( 0 ) |
92 | { | 93 | { |
93 | layout = new OAutoBoxLayout( this ); | 94 | layout = new OAutoBoxLayout( this ); |
94 | layout->setSpacing( 2 ); | 95 | layout->setSpacing( 2 ); |
95 | layout->setMargin( 2 ); | 96 | layout->setMargin( 2 ); |
96 | view = new DevicesView( this ); | 97 | view = new DevicesView( this ); |
97 | layout->addWidget( view, 100 ); | 98 | layout->addWidget( view, 100 ); |
98 | stack = new QWidgetStack( this ); | 99 | stack = new QWidgetStack( this ); |
99 | layout->addWidget( stack, 70 ); | 100 | layout->addWidget( stack, 80 ); |
100 | } | 101 | } |
101 | 102 | ||
102 | 103 | ||
103 | DevicesInfo::~DevicesInfo() | 104 | DevicesInfo::~DevicesInfo() |
104 | { | 105 | { |
105 | } | 106 | } |
106 | 107 | ||
107 | 108 | ||
108 | void DevicesInfo::setDetailsWidget( QWidget* w ) | 109 | void DevicesInfo::setDetailsWidget( QWidget* w ) |
109 | { | 110 | { |
110 | if ( details ) | 111 | if ( details ) |
111 | { | 112 | { |
@@ -177,47 +178,49 @@ InputCategory::InputCategory( DevicesView* parent ) | |||
177 | 178 | ||
178 | InputCategory::~InputCategory() | 179 | InputCategory::~InputCategory() |
179 | { | 180 | { |
180 | } | 181 | } |
181 | 182 | ||
182 | void InputCategory::populate() | 183 | void InputCategory::populate() |
183 | { | 184 | { |
184 | odebug << "InputCategory::populate()" << oendl; | 185 | odebug << "InputCategory::populate()" << oendl; |
185 | OInputSystem* sys = OInputSystem::instance(); | 186 | OInputSystem* sys = OInputSystem::instance(); |
186 | OInputSystem::DeviceIterator it = sys->iterator(); | 187 | OInputSystem::DeviceIterator it = sys->iterator(); |
187 | while ( it.current() ) | 188 | while ( it.current() ) |
188 | { | 189 | { |
189 | new InputDevice( this, it.current()->identity() ); | 190 | InputDevice* dev = new InputDevice( this, it.current()->identity() ); |
191 | dev->setInfo( it.current() ); | ||
190 | ++it; | 192 | ++it; |
191 | } | 193 | } |
192 | } | 194 | } |
193 | 195 | ||
194 | //================================================================================================= | 196 | //================================================================================================= |
195 | CardsCategory::CardsCategory( DevicesView* parent ) | 197 | CardsCategory::CardsCategory( DevicesView* parent ) |
196 | :Category( parent, "3. Removable Cards" ) | 198 | :Category( parent, "3. Removable Cards" ) |
197 | { | 199 | { |
198 | } | 200 | } |
199 | 201 | ||
200 | CardsCategory::~CardsCategory() | 202 | CardsCategory::~CardsCategory() |
201 | { | 203 | { |
202 | } | 204 | } |
203 | 205 | ||
204 | void CardsCategory::populate() | 206 | void CardsCategory::populate() |
205 | { | 207 | { |
206 | odebug << "CardsCategory::populate()" << oendl; | 208 | odebug << "CardsCategory::populate()" << oendl; |
207 | OPcmciaSystem* sys = OPcmciaSystem::instance(); | 209 | OPcmciaSystem* sys = OPcmciaSystem::instance(); |
208 | OPcmciaSystem::CardIterator it = sys->iterator(); | 210 | OPcmciaSystem::CardIterator it = sys->iterator(); |
209 | while ( it.current() ) | 211 | while ( it.current() ) |
210 | { | 212 | { |
211 | new CardDevice( this, it.current()->identity() ); | 213 | CardDevice *dev = new CardDevice( this, it.current()->identity() ); |
214 | dev->setInfo( it.current() ); | ||
212 | ++it; | 215 | ++it; |
213 | } | 216 | } |
214 | } | 217 | } |
215 | 218 | ||
216 | //================================================================================================= | 219 | //================================================================================================= |
217 | UsbCategory::UsbCategory( DevicesView* parent ) | 220 | UsbCategory::UsbCategory( DevicesView* parent ) |
218 | :Category( parent, "4. Universal Serial Bus" ) | 221 | :Category( parent, "4. Universal Serial Bus" ) |
219 | { | 222 | { |
220 | } | 223 | } |
221 | 224 | ||
222 | UsbCategory::~UsbCategory() | 225 | UsbCategory::~UsbCategory() |
223 | { | 226 | { |
@@ -317,38 +320,100 @@ void CpuDevice::addInfo( const QString& info ) | |||
317 | { | 320 | { |
318 | int dp = info.find( ':' ); | 321 | int dp = info.find( ':' ); |
319 | if ( dp != -1 ) | 322 | if ( dp != -1 ) |
320 | { | 323 | { |
321 | new OListViewItem( (OListView*) details, info.left( dp ), info.right( info.length()-dp ) ); | 324 | new OListViewItem( (OListView*) details, info.left( dp ), info.right( info.length()-dp ) ); |
322 | } | 325 | } |
323 | } | 326 | } |
324 | 327 | ||
325 | //================================================================================================= | 328 | //================================================================================================= |
326 | CardDevice::CardDevice( Category* parent, const QString& name ) | 329 | CardDevice::CardDevice( Category* parent, const QString& name ) |
327 | :Device( parent, name ) | 330 | :Device( parent, name ) |
328 | { | 331 | { |
329 | details = new QPushButton( name, devinfo ); | 332 | OListView* w = new OListView( devinfo ); |
330 | details->hide(); | 333 | details = w; |
334 | w->addColumn( "Info" ); | ||
335 | w->addColumn( "Value" ); | ||
336 | w->hide(); | ||
337 | } | ||
338 | |||
339 | void CardDevice::setInfo( const OPcmciaSocket* card ) | ||
340 | { | ||
341 | QStringList vendorlst = card->productIdentityVector(); | ||
342 | for( QStringList::Iterator it = vendorlst.begin(); it != vendorlst.end(); ++it ) | ||
343 | { | ||
344 | new OListViewItem( (OListView*) details, "VendorID", *it ); | ||
345 | } | ||
346 | new OListViewItem( (OListView*) details, "Manufacturer", card->manufacturerIdentity() ); | ||
347 | new OListViewItem( (OListView*) details, "Function", card->function() ); | ||
348 | |||
349 | QStringList text; | ||
350 | OPcmciaSocket::OPcmciaSocketCardStatus status = card->status(); | ||
351 | if ( status ) | ||
352 | { | ||
353 | if ( status & OPcmciaSocket::Occupied ) text += "Occupied"; | ||
354 | if ( status & OPcmciaSocket::OccupiedCardBus ) text += "CardBus"; | ||
355 | if ( status & OPcmciaSocket::WriteProtected ) text += "WriteProtected"; | ||
356 | if ( status & OPcmciaSocket::BatteryLow ) text += "BatteryLow"; | ||
357 | if ( status & OPcmciaSocket::BatteryDead ) text += "BatteryDead"; | ||
358 | if ( status & OPcmciaSocket::Ready ) text += "Ready"; | ||
359 | if ( status & OPcmciaSocket::Suspended ) text += "Suspended"; | ||
360 | if ( status & OPcmciaSocket::Attention ) text += "Attention"; | ||
361 | if ( status & OPcmciaSocket::InsertionInProgress ) text += "InsertionInProgress"; | ||
362 | if ( status & OPcmciaSocket::RemovalInProgress ) text += "RemovalInProgress"; | ||
363 | if ( status & OPcmciaSocket::ThreeVolts ) text += "3V"; | ||
364 | if ( status & OPcmciaSocket::SupportsVoltage ) text += "SupportsVoltage"; | ||
365 | } | ||
366 | else | ||
367 | { | ||
368 | text += "<unknown>"; | ||
369 | } | ||
370 | new OListViewItem( (OListView*) details, "Status", text.join( ", " ) ); | ||
331 | } | 371 | } |
332 | 372 | ||
333 | CardDevice::~CardDevice() | 373 | CardDevice::~CardDevice() |
334 | { | 374 | { |
335 | } | 375 | } |
336 | 376 | ||
337 | //================================================================================================= | 377 | //================================================================================================= |
338 | InputDevice::InputDevice( Category* parent, const QString& name ) | 378 | InputDevice::InputDevice( Category* parent, const QString& name ) |
339 | :Device( parent, name ) | 379 | :Device( parent, name ) |
340 | { | 380 | { |
341 | details = new QPushButton( name, devinfo ); | 381 | OListView* w = new OListView( devinfo ); |
342 | details->hide(); | 382 | details = w; |
383 | w->addColumn( "Info" ); | ||
384 | w->addColumn( "Value" ); | ||
385 | w->hide(); | ||
386 | } | ||
387 | |||
388 | void InputDevice::setInfo( const OInputDevice* dev ) | ||
389 | { | ||
390 | new OListViewItem( (OListView*) details, "Identity", dev->identity() ); | ||
391 | new OListViewItem( (OListView*) details, "Path", dev->path() ); | ||
392 | new OListViewItem( (OListView*) details, "Unique", dev->uniq() ); | ||
393 | |||
394 | QStringList text; | ||
395 | if ( dev->hasFeature( OInputDevice::Synchronous ) ) text += "Synchronous"; | ||
396 | if ( dev->hasFeature( OInputDevice::Keys ) ) text += "Keys"; | ||
397 | if ( dev->hasFeature( OInputDevice::Relative ) ) text += "Relative"; | ||
398 | if ( dev->hasFeature( OInputDevice::Absolute ) ) text += "Absolute"; | ||
399 | if ( dev->hasFeature( OInputDevice::Miscellaneous ) ) text += "Miscellaneous"; | ||
400 | if ( dev->hasFeature( OInputDevice::Leds ) ) text += "Leds"; | ||
401 | if ( dev->hasFeature( OInputDevice::Sound ) ) text += "Sound"; | ||
402 | if ( dev->hasFeature( OInputDevice::AutoRepeat ) ) text += "AutoRepeat"; | ||
403 | if ( dev->hasFeature( OInputDevice::ForceFeedback ) ) text += "ForceFeedback"; | ||
404 | if ( dev->hasFeature( OInputDevice::PowerManagement ) ) text += "PowerManagement"; | ||
405 | if ( dev->hasFeature( OInputDevice::ForceFeedbackStatus ) ) text += "ForceFeedbackStatus"; | ||
406 | new OListViewItem( (OListView*) details, "Features", text.join( ", " ) ); | ||
407 | |||
343 | } | 408 | } |
344 | 409 | ||
345 | InputDevice::~InputDevice() | 410 | InputDevice::~InputDevice() |
346 | { | 411 | { |
347 | } | 412 | } |
348 | 413 | ||
349 | //================================================================================================= | 414 | //================================================================================================= |
350 | UsbDevice::UsbDevice( Category* parent, const QString& name ) | 415 | UsbDevice::UsbDevice( Category* parent, const QString& name ) |
351 | :Device( parent, name ) | 416 | :Device( parent, name ) |
352 | { | 417 | { |
353 | details = new QPushButton( name, devinfo ); | 418 | details = new QPushButton( name, devinfo ); |
354 | details->hide(); | 419 | details->hide(); |
diff --git a/noncore/settings/sysinfo/devicesinfo.h b/noncore/settings/sysinfo/devicesinfo.h index c601a96..c4e3637 100644 --- a/noncore/settings/sysinfo/devicesinfo.h +++ b/noncore/settings/sysinfo/devicesinfo.h | |||
@@ -28,24 +28,26 @@ _;:, .> :=|. This program is free software; you can | |||
28 | 28 | ||
29 | #ifndef DEVICESINFO_H | 29 | #ifndef DEVICESINFO_H |
30 | #define DEVICESINFO_H | 30 | #define DEVICESINFO_H |
31 | 31 | ||
32 | /* OPIE */ | 32 | /* OPIE */ |
33 | #include <opie2/olistview.h> | 33 | #include <opie2/olistview.h> |
34 | #include <opie2/olayout.h> | 34 | #include <opie2/olayout.h> |
35 | 35 | ||
36 | /* QT */ | 36 | /* QT */ |
37 | #include <qwidget.h> | 37 | #include <qwidget.h> |
38 | #include <qwidgetstack.h> | 38 | #include <qwidgetstack.h> |
39 | 39 | ||
40 | namespace Opie { namespace Core { class OPcmciaSocket; class OInputDevice; }; }; | ||
41 | |||
40 | //================================================================================================= | 42 | //================================================================================================= |
41 | class DevicesView : public Opie::Ui::OListView | 43 | class DevicesView : public Opie::Ui::OListView |
42 | { | 44 | { |
43 | Q_OBJECT | 45 | Q_OBJECT |
44 | public: | 46 | public: |
45 | DevicesView( QWidget* parent = 0, const char* name = 0, WFlags f = 0 ); | 47 | DevicesView( QWidget* parent = 0, const char* name = 0, WFlags f = 0 ); |
46 | ~DevicesView(); | 48 | ~DevicesView(); |
47 | public slots: | 49 | public slots: |
48 | void selectionChanged( QListViewItem* item ); | 50 | void selectionChanged( QListViewItem* item ); |
49 | }; | 51 | }; |
50 | 52 | ||
51 | //================================================================================================= | 53 | //================================================================================================= |
@@ -93,25 +95,24 @@ public: | |||
93 | InputCategory( DevicesView* parent ); | 95 | InputCategory( DevicesView* parent ); |
94 | virtual ~InputCategory(); | 96 | virtual ~InputCategory(); |
95 | 97 | ||
96 | virtual void populate(); | 98 | virtual void populate(); |
97 | }; | 99 | }; |
98 | 100 | ||
99 | //================================================================================================= | 101 | //================================================================================================= |
100 | class CardsCategory : public Category | 102 | class CardsCategory : public Category |
101 | { | 103 | { |
102 | public: | 104 | public: |
103 | CardsCategory( DevicesView* parent ); | 105 | CardsCategory( DevicesView* parent ); |
104 | virtual ~CardsCategory(); | 106 | virtual ~CardsCategory(); |
105 | |||
106 | virtual void populate(); | 107 | virtual void populate(); |
107 | }; | 108 | }; |
108 | 109 | ||
109 | //================================================================================================= | 110 | //================================================================================================= |
110 | class UsbCategory : public Category | 111 | class UsbCategory : public Category |
111 | { | 112 | { |
112 | public: | 113 | public: |
113 | UsbCategory( DevicesView* parent ); | 114 | UsbCategory( DevicesView* parent ); |
114 | virtual ~UsbCategory(); | 115 | virtual ~UsbCategory(); |
115 | 116 | ||
116 | virtual void populate(); | 117 | virtual void populate(); |
117 | }; | 118 | }; |
@@ -140,33 +141,36 @@ public: | |||
140 | void addInfo( const QString& line ); | 141 | void addInfo( const QString& line ); |
141 | 142 | ||
142 | // virtual QWidget* detailsWidget(); | 143 | // virtual QWidget* detailsWidget(); |
143 | }; | 144 | }; |
144 | 145 | ||
145 | //================================================================================================= | 146 | //================================================================================================= |
146 | class InputDevice : public Device | 147 | class InputDevice : public Device |
147 | { | 148 | { |
148 | public: | 149 | public: |
149 | InputDevice( Category* parent, const QString& name ); | 150 | InputDevice( Category* parent, const QString& name ); |
150 | ~InputDevice(); | 151 | ~InputDevice(); |
151 | 152 | ||
153 | void setInfo( const Opie::Core::OInputDevice* dev ); | ||
154 | |||
152 | // virtual QWidget* detailsWidget(); | 155 | // virtual QWidget* detailsWidget(); |
153 | }; | 156 | }; |
154 | 157 | ||
155 | //================================================================================================= | 158 | //================================================================================================= |
156 | class CardDevice : public Device | 159 | class CardDevice : public Device |
157 | { | 160 | { |
158 | public: | 161 | public: |
159 | CardDevice( Category* parent, const QString& name ); | 162 | CardDevice( Category* parent, const QString& name ); |
160 | ~CardDevice(); | 163 | ~CardDevice(); |
164 | void setInfo( const Opie::Core::OPcmciaSocket* card ); | ||
161 | 165 | ||
162 | // virtual QWidget* detailsWidget(); | 166 | // virtual QWidget* detailsWidget(); |
163 | }; | 167 | }; |
164 | 168 | ||
165 | //================================================================================================= | 169 | //================================================================================================= |
166 | class UsbDevice : public Device | 170 | class UsbDevice : public Device |
167 | { | 171 | { |
168 | public: | 172 | public: |
169 | UsbDevice( Category* parent, const QString& name ); | 173 | UsbDevice( Category* parent, const QString& name ); |
170 | UsbDevice( UsbDevice* parent, const QString& name ); | 174 | UsbDevice( UsbDevice* parent, const QString& name ); |
171 | ~UsbDevice(); | 175 | ~UsbDevice(); |
172 | 176 | ||
diff --git a/noncore/settings/sysinfo/sysinfo.pro b/noncore/settings/sysinfo/sysinfo.pro index 8b23a57..ed9bc0e 100644 --- a/noncore/settings/sysinfo/sysinfo.pro +++ b/noncore/settings/sysinfo/sysinfo.pro | |||
@@ -25,15 +25,15 @@ SOURCES = \ | |||
25 | detail.cpp \ | 25 | detail.cpp \ |
26 | contrib/dhry.c contrib/fft.c \ | 26 | contrib/dhry.c contrib/fft.c \ |
27 | benchmarkinfo.cpp \ | 27 | benchmarkinfo.cpp \ |
28 | sysloginfo.cpp \ | 28 | sysloginfo.cpp \ |
29 | versioninfo.cpp \ | 29 | versioninfo.cpp \ |
30 | sysinfo.cpp | 30 | sysinfo.cpp |
31 | 31 | ||
32 | INCLUDEPATH += $(OPIEDIR)/include | 32 | INCLUDEPATH += $(OPIEDIR)/include |
33 | DEPENDPATH += $(OPIEDIR)/include | 33 | DEPENDPATH += $(OPIEDIR)/include |
34 | LIBS += -lqpe -lopiecore2 -lopieui2 | 34 | LIBS += -lqpe -lopiecore2 -lopieui2 |
35 | DEFINES += UNIX | 35 | DEFINES += UNIX |
36 | TARGET = sysinfo | 36 | TARGET = sysinfo |
37 | VERSION = 1.3.0 | 37 | VERSION = 1.3.1 |
38 | 38 | ||
39 | include( $(OPIEDIR)/include.pro ) | 39 | include( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/settings/sysinfo/sysloginfo.cpp b/noncore/settings/sysinfo/sysloginfo.cpp index 21427f4..279c335 100644 --- a/noncore/settings/sysinfo/sysloginfo.cpp +++ b/noncore/settings/sysinfo/sysloginfo.cpp | |||
@@ -1,20 +1,18 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** SyslogInfo | 2 | ** SyslogInfo |
3 | ** | 3 | ** |
4 | ** Display Syslog information | 4 | ** Display Syslog information |
5 | ** | 5 | ** |
6 | ** Copyright (C) 2004, Michael Lauer | 6 | ** Copyright (C) 2004-2005 Michael 'Mickey' Lauer <mickey@Vanille.de> |
7 | ** mickey@tm.informatik.uni-frankfurt.de | ||
8 | ** http://www.Vanille.de | ||
9 | ** | 7 | ** |
10 | ** This file may be distributed and/or modified under the terms of the | 8 | ** This file may be distributed and/or modified under the terms of the |
11 | ** GNU General Public License version 2 as published by the Free Software | 9 | ** GNU General Public License version 2 as published by the Free Software |
12 | ** Foundation and appearing in the file LICENSE.GPL included in the | 10 | ** Foundation and appearing in the file LICENSE.GPL included in the |
13 | ** packaging of this file. | 11 | ** packaging of this file. |
14 | ** | 12 | ** |
15 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 13 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
16 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 14 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
17 | ** | 15 | ** |
18 | **********************************************************************/ | 16 | **********************************************************************/ |
19 | 17 | ||
20 | #include "sysloginfo.h" | 18 | #include "sysloginfo.h" |
@@ -60,25 +58,25 @@ char buf[bufsize]; | |||
60 | 58 | ||
61 | SyslogInfo::SyslogInfo( QWidget* parent, const char* name, WFlags fl ) | 59 | SyslogInfo::SyslogInfo( QWidget* parent, const char* name, WFlags fl ) |
62 | : QWidget( parent, name, fl ) | 60 | : QWidget( parent, name, fl ) |
63 | { | 61 | { |
64 | QGridLayout *layout = new QGridLayout( this ); | 62 | QGridLayout *layout = new QGridLayout( this ); |
65 | layout->setSpacing( 2 ); | 63 | layout->setSpacing( 2 ); |
66 | layout->setMargin( 0 ); | 64 | layout->setMargin( 0 ); |
67 | 65 | ||
68 | syslogview = new QTextView( this ); | 66 | syslogview = new QTextView( this ); |
69 | syslogview->setTextFormat( PlainText ); | 67 | syslogview->setTextFormat( PlainText ); |
70 | OConfig cfg( "qpe" ); | 68 | OConfig cfg( "qpe" ); |
71 | cfg.setGroup( "Appearance" ); | 69 | cfg.setGroup( "Appearance" ); |
72 | syslogview->setFont( QFont( "Fixed", cfg.readNumEntry( "FontSize", 10 ) ) ); | 70 | syslogview->setFont( QFont( cfg.readEntry( "FixedFontFamily", "Fixed" ), cfg.readNumEntry( "FixedFontSize", 10 ) ) ); |
73 | layout->addWidget( syslogview, 0, 0 ); | 71 | layout->addWidget( syslogview, 0, 0 ); |
74 | syslogview->setText( "..." ); | 72 | syslogview->setText( "..." ); |
75 | 73 | ||
76 | memset( buf, 0, bufsize ); | 74 | memset( buf, 0, bufsize ); |
77 | ::klogctl( SYSLOG_READ_ALL, buf, bufsize ); | 75 | ::klogctl( SYSLOG_READ_ALL, buf, bufsize ); |
78 | syslogview->setText( buf ); | 76 | syslogview->setText( buf ); |
79 | 77 | ||
80 | #ifdef APPEND | 78 | #ifdef APPEND |
81 | fd = ::open( "/proc/kmsg", O_RDONLY|O_SYNC ); | 79 | fd = ::open( "/proc/kmsg", O_RDONLY|O_SYNC ); |
82 | if ( fd == -1 ) | 80 | if ( fd == -1 ) |
83 | { | 81 | { |
84 | syslogview->setText( "Couldn't open /proc/kmsg: " + QString( strerror( errno ) ) ); | 82 | syslogview->setText( "Couldn't open /proc/kmsg: " + QString( strerror( errno ) ) ); |
diff --git a/noncore/settings/sysinfo/sysloginfo.h b/noncore/settings/sysinfo/sysloginfo.h index 7bf8d17..f9e522a 100644 --- a/noncore/settings/sysinfo/sysloginfo.h +++ b/noncore/settings/sysinfo/sysloginfo.h | |||
@@ -1,20 +1,18 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** SyslogInfo | 2 | ** SyslogInfo |
3 | ** | 3 | ** |
4 | ** Display Syslog information | 4 | ** Display Syslog information |
5 | ** | 5 | ** |
6 | ** Copyright (C) 2004, Michael Lauer | 6 | ** Copyright (C) 2004-2005, Michael 'Mickey' Lauer <mickey@Vanille.de> |
7 | ** mickey@tm.informatik.uni-frankfurt.de | ||
8 | ** http://www.Vanille.de | ||
9 | ** | 7 | ** |
10 | ** This file may be distributed and/or modified under the terms of the | 8 | ** This file may be distributed and/or modified under the terms of the |
11 | ** GNU General Public License version 2 as published by the Free Software | 9 | ** GNU General Public License version 2 as published by the Free Software |
12 | ** Foundation and appearing in the file LICENSE.GPL included in the | 10 | ** Foundation and appearing in the file LICENSE.GPL included in the |
13 | ** packaging of this file. | 11 | ** packaging of this file. |
14 | ** | 12 | ** |
15 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 13 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
16 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 14 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
17 | ** | 15 | ** |
18 | **********************************************************************/ | 16 | **********************************************************************/ |
19 | 17 | ||
20 | #ifndef SYSLOGINFO_H | 18 | #ifndef SYSLOGINFO_H |