-rw-r--r-- | noncore/settings/doctab/doctab.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/noncore/settings/doctab/doctab.cpp b/noncore/settings/doctab/doctab.cpp index 72eda6b..1cf3e2d 100644 --- a/noncore/settings/doctab/doctab.cpp +++ b/noncore/settings/doctab/doctab.cpp | |||
@@ -1,94 +1,101 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "doctab.h" | 21 | #include "doctab.h" |
22 | 22 | ||
23 | #include <qpe/global.h> | 23 | #include <qpe/global.h> |
24 | #include <qpe/fontmanager.h> | 24 | #include <qpe/fontmanager.h> |
25 | #include <qpe/config.h> | 25 | #include <qpe/config.h> |
26 | #include <qpe/applnk.h> | 26 | #include <qpe/applnk.h> |
27 | #include <qpe/qpedialog.h> | 27 | #include <qpe/qpedialog.h> |
28 | #include <qpe/qpeapplication.h> | 28 | #include <qpe/qpeapplication.h> |
29 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) | 29 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) |
30 | #include <qpe/qcopenvelope_qws.h> | 30 | #include <qpe/qcopenvelope_qws.h> |
31 | #endif | 31 | #endif |
32 | 32 | ||
33 | #include <qlabel.h> | 33 | #include <qlabel.h> |
34 | #include <qcheckbox.h> | 34 | #include <qcheckbox.h> |
35 | #include <qradiobutton.h> | 35 | #include <qradiobutton.h> |
36 | #include <qtabwidget.h> | 36 | #include <qtabwidget.h> |
37 | #include <qslider.h> | 37 | #include <qslider.h> |
38 | #include <qfile.h> | 38 | #include <qfile.h> |
39 | #include <qtextstream.h> | 39 | #include <qtextstream.h> |
40 | #include <qdatastream.h> | 40 | #include <qdatastream.h> |
41 | #include <qmessagebox.h> | 41 | #include <qmessagebox.h> |
42 | #include <qcombobox.h> | 42 | #include <qcombobox.h> |
43 | #include <qspinbox.h> | 43 | #include <qspinbox.h> |
44 | #include <qlistbox.h> | 44 | #include <qlistbox.h> |
45 | #include <qdir.h> | 45 | #include <qdir.h> |
46 | #if QT_VERSION >= 0x030000 | 46 | #if QT_VERSION >= 0x030000 |
47 | #include <qstylefactory.h> | 47 | #include <qstylefactory.h> |
48 | #endif | 48 | #endif |
49 | 49 | ||
50 | #include <stdlib.h> | 50 | #include <stdlib.h> |
51 | 51 | ||
52 | 52 | ||
53 | DocTabSettings::DocTabSettings( QWidget* parent, const char* name, WFlags fl ) | 53 | DocTabSettings::DocTabSettings( QWidget* parent, const char* name, WFlags fl ) |
54 | : DocTabSettingsBase( parent, name, TRUE, fl ) | 54 | : DocTabSettingsBase( parent, name, TRUE, fl ) |
55 | { | 55 | { |
56 | dl = new QPEDialogListener(this); | 56 | dl = new QPEDialogListener(this); |
57 | reset(); | 57 | reset(); |
58 | |||
59 | Config cfg( "Launcher" ); | ||
60 | cfg.setGroup( "DocTab" ); | ||
61 | if(cfg.readBoolEntry( "Enable", true )) | ||
62 | yes->setChecked(true); | ||
63 | else | ||
64 | no->setChecked(true); | ||
58 | } | 65 | } |
59 | 66 | ||
60 | DocTabSettings::~DocTabSettings() | 67 | DocTabSettings::~DocTabSettings() |
61 | {} | 68 | {} |
62 | 69 | ||
63 | void DocTabSettings::accept() | 70 | void DocTabSettings::accept() |
64 | { | 71 | { |
65 | applyDocTab(); | 72 | applyDocTab(); |
66 | QDialog::accept(); | 73 | QDialog::accept(); |
67 | } | 74 | } |
68 | 75 | ||
69 | void DocTabSettings::applyDocTab() | 76 | void DocTabSettings::applyDocTab() |
70 | { | 77 | { |
71 | Config cfg( "Launcher" ); | 78 | Config cfg( "Launcher" ); |
72 | cfg.setGroup( "DocTab" ); | 79 | cfg.setGroup( "DocTab" ); |
73 | cfg.writeEntry( "Enable", yes->isChecked() ); | 80 | cfg.writeEntry( "Enable", yes->isChecked() ); |
74 | cfg.write(); | 81 | cfg.write(); |
75 | } | 82 | } |
76 | 83 | ||
77 | 84 | ||
78 | void DocTabSettings::reject() | 85 | void DocTabSettings::reject() |
79 | { | 86 | { |
80 | reset(); | 87 | reset(); |
81 | QDialog::reject(); | 88 | QDialog::reject(); |
82 | } | 89 | } |
83 | 90 | ||
84 | void DocTabSettings::reset() | 91 | void DocTabSettings::reset() |
85 | { | 92 | { |
86 | } | 93 | } |
87 | 94 | ||
88 | QString DocTabSettings::actualDocTab; | 95 | QString DocTabSettings::actualDocTab; |
89 | 96 | ||
90 | void DocTabSettings::done(int r) | 97 | void DocTabSettings::done(int r) |
91 | { | 98 | { |
92 | QDialog::done(r); | 99 | QDialog::done(r); |
93 | close(); | 100 | close(); |
94 | } | 101 | } |