summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/sysloginfo.cpp
Unidiff
Diffstat (limited to 'noncore/settings/sysinfo/sysloginfo.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/sysloginfo.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/noncore/settings/sysinfo/sysloginfo.cpp b/noncore/settings/sysinfo/sysloginfo.cpp
index 89c04e0..a9e98e3 100644
--- a/noncore/settings/sysinfo/sysloginfo.cpp
+++ b/noncore/settings/sysinfo/sysloginfo.cpp
@@ -13,25 +13,26 @@
13** packaging of this file. 13** packaging of this file.
14** 14**
15** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 15** 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. 16** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17** 17**
18**********************************************************************/ 18**********************************************************************/
19 19
20#include "sysloginfo.h" 20#include "sysloginfo.h"
21#include "detail.h" 21#include "detail.h"
22 22
23/* OPIE */ 23/* OPIE */
24#include <opie2/olistview.h> 24#include <opie2/olistview.h>
25#include <qpe/qpeapplication.h> 25#include <opie2/oconfig.h>
26using namespace Opie::Core;
26using namespace Opie::Ui; 27using namespace Opie::Ui;
27 28
28/* QT */ 29/* QT */
29#include <qcombobox.h> 30#include <qcombobox.h>
30#include <qfile.h> 31#include <qfile.h>
31#include <qlayout.h> 32#include <qlayout.h>
32#include <qmessagebox.h> 33#include <qmessagebox.h>
33#include <qpushbutton.h> 34#include <qpushbutton.h>
34#include <qsocketnotifier.h> 35#include <qsocketnotifier.h>
35#include <qtextbrowser.h> 36#include <qtextbrowser.h>
36#include <qtimer.h> 37#include <qtimer.h>
37#include <qwhatsthis.h> 38#include <qwhatsthis.h>
@@ -57,25 +58,27 @@ using namespace Opie::Ui;
57const unsigned int bufsize = 16384; 58const unsigned int bufsize = 16384;
58char buf[bufsize]; 59char buf[bufsize];
59 60
60SyslogInfo::SyslogInfo( QWidget* parent, const char* name, WFlags fl ) 61SyslogInfo::SyslogInfo( QWidget* parent, const char* name, WFlags fl )
61 : QWidget( parent, name, fl ) 62 : QWidget( parent, name, fl )
62{ 63{
63 QGridLayout *layout = new QGridLayout( this ); 64 QGridLayout *layout = new QGridLayout( this );
64 layout->setSpacing( 4 ); 65 layout->setSpacing( 4 );
65 layout->setMargin( 4 ); 66 layout->setMargin( 4 );
66 67
67 syslogview = new QTextView( this ); 68 syslogview = new QTextView( this );
68 syslogview->setTextFormat( PlainText ); 69 syslogview->setTextFormat( PlainText );
69 syslogview->setFont( QFont( "Fixed" ) ); 70 OConfig cfg( "qpe" );
71 cfg.setGroup( "Appearance" );
72 syslogview->setFont( QFont( "Fixed", cfg.readNumEntry( "FontSize", 10 ) ) );
70 layout->addWidget( syslogview, 0, 0 ); 73 layout->addWidget( syslogview, 0, 0 );
71 syslogview->setText( "..." ); 74 syslogview->setText( "..." );
72 75
73 memset( buf, 0, bufsize ); 76 memset( buf, 0, bufsize );
74 ::klogctl( SYSLOG_READ_ALL, buf, bufsize ); 77 ::klogctl( SYSLOG_READ_ALL, buf, bufsize );
75 syslogview->setText( buf ); 78 syslogview->setText( buf );
76 79
77#ifdef APPEND 80#ifdef APPEND
78 fd = ::open( "/proc/kmsg", O_RDONLY|O_SYNC ); 81 fd = ::open( "/proc/kmsg", O_RDONLY|O_SYNC );
79 if ( fd == -1 ) 82 if ( fd == -1 )
80 { 83 {
81 syslogview->setText( "Couldn't open /proc/kmsg: " + QString( strerror( errno ) ) ); 84 syslogview->setText( "Couldn't open /proc/kmsg: " + QString( strerror( errno ) ) );