-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/packetview.cpp | 7 |
2 files changed, 6 insertions, 2 deletions
@@ -5,12 +5,13 @@ | |||
5 | ------------ | 5 | ------------ |
6 | 6 | ||
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 | ||
15 | New Features | 16 | New Features |
16 | ------------ | 17 | ------------ |
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 | |||
@@ -17,12 +17,13 @@ | |||
17 | 17 | ||
18 | /* OPIE */ | 18 | /* OPIE */ |
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> |
27 | #include <qlayout.h> | 28 | #include <qlayout.h> |
28 | #include <qlist.h> | 29 | #include <qlist.h> |
@@ -35,26 +36,28 @@ using namespace Opie::Net; | |||
35 | using namespace Opie::Core; | 36 | using namespace Opie::Core; |
36 | using namespace Opie::Ui; | 37 | 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 ); |
45 | _list->addColumn( "#" ); | 49 | _list->addColumn( "#" ); |
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 ); |
59 | hb->addWidget( _number, 2 ); | 62 | hb->addWidget( _number, 2 ); |
60 | vb->addWidget( _list, 3 ); | 63 | vb->addWidget( _list, 3 ); |