author | hrw <hrw> | 2005-09-16 20:31:28 (UTC) |
---|---|---|
committer | hrw <hrw> | 2005-09-16 20:31:28 (UTC) |
commit | 6fb2ee0976a4b6c67b9f0c59cfd5d85143208bd4 (patch) (unidiff) | |
tree | 3817ebb22724f7135d144ccede9891d7b07dee2e | |
parent | 12c40601c1abc01640a1d058b4ed781390eae372 (diff) | |
download | opie-6fb2ee0976a4b6c67b9f0c59cfd5d85143208bd4.zip opie-6fb2ee0976a4b6c67b9f0c59cfd5d85143208bd4.tar.gz opie-6fb2ee0976a4b6c67b9f0c59cfd5d85143208bd4.tar.bz2 |
removed hardcoded font size from wellenreiter
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/packetview.cpp | 7 |
2 files changed, 6 insertions, 2 deletions
@@ -7,8 +7,9 @@ | |||
7 | 7 | ||
8 | Fixed Bugs | 8 | Fixed Bugs |
9 | ---------- | 9 | ---------- |
10 | * #1695 - Date selector use too small fontsize on VGA screen (hrw) | 10 | * #1695 - Date selector use too small fontsize on VGA screen (hrw) |
11 | * n.a. - remove hardcoded font size from wellenreiter (hrw) | ||
11 | 12 | ||
12 | 2005-09-11Opie 1.2.1 | 13 | 2005-09-11Opie 1.2.1 |
13 | 14 | ||
14 | 15 | ||
diff --git a/noncore/net/wellenreiter/gui/packetview.cpp b/noncore/net/wellenreiter/gui/packetview.cpp index d71111f..ffe2f01 100644 --- a/noncore/net/wellenreiter/gui/packetview.cpp +++ b/noncore/net/wellenreiter/gui/packetview.cpp | |||
@@ -19,8 +19,9 @@ | |||
19 | #include <opie2/opcap.h> | 19 | #include <opie2/opcap.h> |
20 | #include <opie2/odebug.h> | 20 | #include <opie2/odebug.h> |
21 | #include <opie2/olistview.h> | 21 | #include <opie2/olistview.h> |
22 | #include <opie2/oapplication.h> | 22 | #include <opie2/oapplication.h> |
23 | #include <qpe/config.h> | ||
23 | 24 | ||
24 | /* QT */ | 25 | /* QT */ |
25 | #include <qfont.h> | 26 | #include <qfont.h> |
26 | #include <qlabel.h> | 27 | #include <qlabel.h> |
@@ -37,8 +38,11 @@ using namespace Opie::Ui; | |||
37 | 38 | ||
38 | PacketView::PacketView( QWidget * parent, const char * name, WFlags f ) | 39 | PacketView::PacketView( QWidget * parent, const char * name, WFlags f ) |
39 | :QFrame( parent, name, f ) | 40 | :QFrame( parent, name, f ) |
40 | { | 41 | { |
42 | Config c( "qpe" ); | ||
43 | c.setGroup( "Appearance" ); | ||
44 | |||
41 | _number = new QSpinBox( this ); | 45 | _number = new QSpinBox( this ); |
42 | _number->setPrefix( "Pkt# " ); | 46 | _number->setPrefix( "Pkt# " ); |
43 | _label = new QLabel( this ); | 47 | _label = new QLabel( this ); |
44 | _list = new OListView( this ); | 48 | _list = new OListView( this ); |
@@ -46,13 +50,12 @@ PacketView::PacketView( QWidget * parent, const char * name, WFlags f ) | |||
46 | _list->addColumn( "Packet Type" ); | 50 | _list->addColumn( "Packet Type" ); |
47 | _list->setColumnAlignment( 0, Qt::AlignCenter ); | 51 | _list->setColumnAlignment( 0, Qt::AlignCenter ); |
48 | _list->setColumnAlignment( 1, Qt::AlignLeft ); | 52 | _list->setColumnAlignment( 1, Qt::AlignLeft ); |
49 | _list->setAllColumnsShowFocus( true ); | 53 | _list->setAllColumnsShowFocus( true ); |
50 | _list->setFont( QFont( "Fixed", 8 ) ); | ||
51 | 54 | ||
52 | _hex = new QTextView( this ); | 55 | _hex = new QTextView( this ); |
53 | _hex->setMargin( 0 ); | 56 | _hex->setMargin( 0 ); |
54 | _hex->setFont( QFont( "Fixed", 8 ) ); | 57 | _hex->setFont( QFont( c.readEntry( "FixedFontFamily", "Fixed" ), c.readNumEntry( "FixedFontSize", 8 ) ) ); |
55 | 58 | ||
56 | QVBoxLayout* vb = new QVBoxLayout( this, 2, 2 ); | 59 | QVBoxLayout* vb = new QVBoxLayout( this, 2, 2 ); |
57 | QHBoxLayout* hb = new QHBoxLayout( vb, 2 ); | 60 | QHBoxLayout* hb = new QHBoxLayout( vb, 2 ); |
58 | hb->addWidget( _label, 5 ); | 61 | hb->addWidget( _label, 5 ); |