summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/Prefs.cpp
Unidiff
Diffstat (limited to 'noncore/apps/opie-reader/Prefs.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-reader/Prefs.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/apps/opie-reader/Prefs.cpp b/noncore/apps/opie-reader/Prefs.cpp
index e5320d9..5150ca5 100644
--- a/noncore/apps/opie-reader/Prefs.cpp
+++ b/noncore/apps/opie-reader/Prefs.cpp
@@ -18,24 +18,26 @@
18#include <qtooltip.h> 18#include <qtooltip.h>
19#include <qwhatsthis.h> 19#include <qwhatsthis.h>
20#include <qcombobox.h> 20#include <qcombobox.h>
21#include <qbuttongroup.h> 21#include <qbuttongroup.h>
22#include <qlineedit.h> 22#include <qlineedit.h>
23#ifdef USEQPE 23#ifdef USEQPE
24#include <qpe/menubutton.h> 24#include <qpe/menubutton.h>
25#include <qpe/fontdatabase.h> 25#include <qpe/fontdatabase.h>
26#else 26#else
27#include <qfontdatabase.h> 27#include <qfontdatabase.h>
28#endif 28#endif
29 29
30#include <qpe/qpeapplication.h>
31
30CLayoutPrefs::CLayoutPrefs( QWidget* parent, const char* name, WFlags fl ) 32CLayoutPrefs::CLayoutPrefs( QWidget* parent, const char* name, WFlags fl )
31 : QWidget( parent, name, fl ) 33 : QWidget( parent, name, fl )
32{ 34{
33 QHBoxLayout* hb = new QHBoxLayout(this); 35 QHBoxLayout* hb = new QHBoxLayout(this);
34 QButtonGroup* bg = new QButtonGroup(2, Qt::Horizontal, tr("Text"), this); 36 QButtonGroup* bg = new QButtonGroup(2, Qt::Horizontal, tr("Text"), this);
35 hb->addWidget(bg); 37 hb->addWidget(bg);
36 38
37 StripCR = new QCheckBox( bg ); 39 StripCR = new QCheckBox( bg );
38 StripCR->setText( tr( "Strip CR" ) ); 40 StripCR->setText( tr( "Strip CR" ) );
39 41
40 Dehyphen = new QCheckBox( bg ); 42 Dehyphen = new QCheckBox( bg );
41 Dehyphen->setText( tr( "Dehyphen" ) ); 43 Dehyphen->setText( tr( "Dehyphen" ) );
@@ -418,25 +420,26 @@ CPrefs::CPrefs(bool fs, QWidget* parent, const char* name) : QDialog(parent, nam
418 layout2 = new CLayoutPrefs2(this); 420 layout2 = new CLayoutPrefs2(this);
419 misc = new CMiscPrefs(this); 421 misc = new CMiscPrefs(this);
420 button = new CButtonPrefs(this); 422 button = new CButtonPrefs(this);
421 inter = new CInterPrefs(this); 423 inter = new CInterPrefs(this);
422 td->addTab(layout, tr("Layout")); 424 td->addTab(layout, tr("Layout"));
423 td->addTab(layout2, tr("Layout(2)")); 425 td->addTab(layout2, tr("Layout(2)"));
424 td->addTab(inter, tr("Locale")); 426 td->addTab(inter, tr("Locale"));
425 td->addTab(misc, tr("Misc")); 427 td->addTab(misc, tr("Misc"));
426 td->addTab(button, tr("Buttons")); 428 td->addTab(button, tr("Buttons"));
427 QVBoxLayout* v = new QVBoxLayout(this); 429 QVBoxLayout* v = new QVBoxLayout(this);
428 v->addWidget(td); 430 v->addWidget(td);
429 431
430 if (fs) showMaximized(); 432 if (fs)
433 QPEApplication::showDialog( this );
431} 434}
432 435
433 436
434/* 437/*
435 438
436Unicode 439Unicode
437 Ideo/Word 440 Ideo/Word
438 Width 441 Width
439 Encoding 442 Encoding
440 443
441*/ 444*/
442 445