author | llornkcor <llornkcor> | 2002-10-26 14:55:38 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-10-26 14:55:38 (UTC) |
commit | 49f3af452f5011adb3a9042dc001a1d93da3c2ba (patch) (unidiff) | |
tree | 3d094974dfea25454f982d1ffa26f74962ca4431 | |
parent | a4a1722ba3a2874adef57e0c04093814c0dc4f8f (diff) | |
download | opie-49f3af452f5011adb3a9042dc001a1d93da3c2ba.zip opie-49f3af452f5011adb3a9042dc001a1d93da3c2ba.tar.gz opie-49f3af452f5011adb3a9042dc001a1d93da3c2ba.tar.bz2 |
moved large text to context help, so controls fit into window. may need more context help for individual controls
-rw-r--r-- | noncore/settings/mediummount/mainwindow.cc | 4 | ||||
-rw-r--r-- | noncore/settings/mediummount/mainwindow.h | 2 | ||||
-rw-r--r-- | noncore/settings/mediummount/mediumglobal.cc | 31 |
3 files changed, 20 insertions, 17 deletions
diff --git a/noncore/settings/mediummount/mainwindow.cc b/noncore/settings/mediummount/mainwindow.cc index 88f7c61..cf8ad6c 100644 --- a/noncore/settings/mediummount/mainwindow.cc +++ b/noncore/settings/mediummount/mainwindow.cc | |||
@@ -13,8 +13,8 @@ | |||
13 | using namespace MediumMountSetting; | 13 | using namespace MediumMountSetting; |
14 | 14 | ||
15 | 15 | ||
16 | MainWindow::MainWindow( QWidget *parent, const char *name ) | 16 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags ) |
17 | : QMainWindow( parent, name ) | 17 | : QMainWindow( parent, name, WStyle_ContextHelp ) |
18 | 18 | ||
19 | { | 19 | { |
20 | // m_lay = new QVBoxLayout( this ); | 20 | // m_lay = new QVBoxLayout( this ); |
diff --git a/noncore/settings/mediummount/mainwindow.h b/noncore/settings/mediummount/mainwindow.h index 1e60e12..ce54674 100644 --- a/noncore/settings/mediummount/mainwindow.h +++ b/noncore/settings/mediummount/mainwindow.h | |||
@@ -15,7 +15,7 @@ namespace MediumMountSetting { | |||
15 | class MainWindow : public QMainWindow { | 15 | class MainWindow : public QMainWindow { |
16 | Q_OBJECT | 16 | Q_OBJECT |
17 | public: | 17 | public: |
18 | MainWindow(QWidget *parent = 0, const char *name = 0 ); | 18 | MainWindow(QWidget *parent = 0, const char *name = 0 , WFlags = 0); |
19 | ~MainWindow(); | 19 | ~MainWindow(); |
20 | 20 | ||
21 | private slots: | 21 | private slots: |
diff --git a/noncore/settings/mediummount/mediumglobal.cc b/noncore/settings/mediummount/mediumglobal.cc index 921fcd1..c1ad415 100644 --- a/noncore/settings/mediummount/mediumglobal.cc +++ b/noncore/settings/mediummount/mediumglobal.cc | |||
@@ -7,6 +7,7 @@ | |||
7 | #include <qlayout.h> | 7 | #include <qlayout.h> |
8 | #include <qframe.h> | 8 | #include <qframe.h> |
9 | #include <qgroupbox.h> | 9 | #include <qgroupbox.h> |
10 | #include <qwhatsthis.h> | ||
10 | 11 | ||
11 | #include <qpe/config.h> | 12 | #include <qpe/config.h> |
12 | 13 | ||
@@ -31,18 +32,20 @@ void MediumGlobalWidget::initGUI() | |||
31 | 32 | ||
32 | m_label = new QLabel( this ); | 33 | m_label = new QLabel( this ); |
33 | m_label->setTextFormat( Qt::RichText ); | 34 | m_label->setTextFormat( Qt::RichText ); |
34 | m_label->setText( tr("If a medium gets inserted into this device Opie " | 35 | m_label->setText( tr("") ); |
35 | "tries to search the medium for Dcouments. On " | 36 | QWhatsThis::add( this, ("If a medium gets inserted into this device Opie " |
36 | "large mediums this can take some time. You can choose " | 37 | "tries to search the medium for Dcouments. On " |
37 | "if Opie should scan for Documents globally or on a " | 38 | "large mediums this can take some time. You can choose " |
38 | "per medium level. You're also able to reconfigure " | 39 | "if Opie should scan for Documents globally or on a " |
39 | "each medium." | 40 | "per medium level. You're also able to reconfigure " |
40 | ) ); | 41 | "each medium." |
42 | ) ); | ||
43 | |||
41 | m_layout->addWidget( m_label ); | 44 | m_layout->addWidget( m_label ); |
42 | 45 | ||
43 | m_check = new QCheckBox( tr("Enable medium checking" ), this ); | 46 | m_check = new QCheckBox( tr("Enable medium checking" ), this ); |
44 | connect( m_check, SIGNAL(stateChanged(int) ), | 47 | connect( m_check, SIGNAL(stateChanged(int) ), |
45 | this, SLOT(slotEnableChecking() ) ); | 48 | this, SLOT(slotEnableChecking() ) ); |
46 | m_layout->addWidget(m_check ); | 49 | m_layout->addWidget(m_check ); |
47 | 50 | ||
48 | m_frame = new QFrame(this, "Frame" ); | 51 | m_frame = new QFrame(this, "Frame" ); |
@@ -53,7 +56,7 @@ void MediumGlobalWidget::initGUI() | |||
53 | m_box->setMargin( 5 ); | 56 | m_box->setMargin( 5 ); |
54 | m_useglobal = new QCheckBox( tr("Use global settings"), m_frame ); | 57 | m_useglobal = new QCheckBox( tr("Use global settings"), m_frame ); |
55 | connect( m_useglobal, SIGNAL( stateChanged(int) ), | 58 | connect( m_useglobal, SIGNAL( stateChanged(int) ), |
56 | this, SLOT( slotGlobalChanged() ) ); | 59 | this, SLOT( slotGlobalChanged() ) ); |
57 | 60 | ||
58 | m_box->addWidget( m_useglobal ); | 61 | m_box->addWidget( m_useglobal ); |
59 | 62 | ||
@@ -62,8 +65,8 @@ void MediumGlobalWidget::initGUI() | |||
62 | m_frameLay->setMargin( 12 ); | 65 | m_frameLay->setMargin( 12 ); |
63 | 66 | ||
64 | QSpacerItem *item2 = new QSpacerItem( 5, 8, | 67 | QSpacerItem *item2 = new QSpacerItem( 5, 8, |
65 | QSizePolicy::Fixed, | 68 | QSizePolicy::Fixed, |
66 | QSizePolicy::Fixed ); | 69 | QSizePolicy::Fixed ); |
67 | m_audio = new QCheckBox( tr("Audio"), m_global ); | 70 | m_audio = new QCheckBox( tr("Audio"), m_global ); |
68 | m_all = new QCheckBox( tr("All") , m_global ); | 71 | m_all = new QCheckBox( tr("All") , m_global ); |
69 | m_image = new QCheckBox( tr("Image"), m_global ); | 72 | m_image = new QCheckBox( tr("Image"), m_global ); |
@@ -71,7 +74,7 @@ void MediumGlobalWidget::initGUI() | |||
71 | m_video = new QCheckBox( tr("Video"), m_global ); | 74 | m_video = new QCheckBox( tr("Video"), m_global ); |
72 | 75 | ||
73 | connect(m_all, SIGNAL(stateChanged(int) ), | 76 | connect(m_all, SIGNAL(stateChanged(int) ), |
74 | this, SLOT(slotAllChanged() ) ); | 77 | this, SLOT(slotAllChanged() ) ); |
75 | 78 | ||
76 | m_frameLay->addItem( item2, 0, 0 ); | 79 | m_frameLay->addItem( item2, 0, 0 ); |
77 | 80 | ||
@@ -91,8 +94,8 @@ void MediumGlobalWidget::initGUI() | |||
91 | m_layout->addWidget( m_frame ); | 94 | m_layout->addWidget( m_frame ); |
92 | 95 | ||
93 | QSpacerItem *item1 = new QSpacerItem( 1, 24, | 96 | QSpacerItem *item1 = new QSpacerItem( 1, 24, |
94 | QSizePolicy::Fixed, | 97 | QSizePolicy::Fixed, |
95 | QSizePolicy::Expanding ); | 98 | QSizePolicy::Expanding ); |
96 | m_layout->addItem( item1 ); | 99 | m_layout->addItem( item1 ); |
97 | } | 100 | } |
98 | void MediumGlobalWidget::readConfig() | 101 | void MediumGlobalWidget::readConfig() |