summaryrefslogtreecommitdiff
path: root/noncore/settings/doctab/doctab.cpp
Unidiff
Diffstat (limited to 'noncore/settings/doctab/doctab.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/doctab/doctab.cpp94
1 files changed, 94 insertions, 0 deletions
diff --git a/noncore/settings/doctab/doctab.cpp b/noncore/settings/doctab/doctab.cpp
new file mode 100644
index 0000000..feaf538
--- a/dev/null
+++ b/noncore/settings/doctab/doctab.cpp
@@ -0,0 +1,94 @@
1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3**
4** This file is part of Qtopia Environment.
5**
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
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
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.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20
21#include "doctab.h"
22
23#include <qpe/global.h>
24#include <qpe/fontmanager.h>
25#include <qpe/config.h>
26#include <qpe/applnk.h>
27#include <qpe/qpedialog.h>
28#include <qpe/qpeapplication.h>
29#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
30#include <qpe/qcopenvelope_qws.h>
31#endif
32
33#include <qlabel.h>
34#include <qcheckbox.h>
35#include <qradiobutton.h>
36#include <qtabwidget.h>
37#include <qslider.h>
38#include <qfile.h>
39#include <qtextstream.h>
40#include <qdatastream.h>
41#include <qmessagebox.h>
42#include <qcombobox.h>
43#include <qspinbox.h>
44#include <qlistbox.h>
45#include <qdir.h>
46#if QT_VERSION >= 300
47#include <qstylefactory.h>
48#endif
49
50#include <stdlib.h>
51
52
53DocTabSettings::DocTabSettings( QWidget* parent, const char* name, WFlags fl )
54 : DocTabSettingsBase( parent, name, TRUE, fl )
55{
56 dl = new QPEDialogListener(this);
57 reset();
58}
59
60DocTabSettings::~DocTabSettings()
61{}
62
63void DocTabSettings::accept()
64{
65 applyDocTab();
66 QDialog::accept();
67}
68
69void DocTabSettings::applyDocTab()
70{
71 Config cfg( "Launcher" );
72 cfg.setGroup( "DocTab" );
73 cfg.writeEntry( "Enable", yes->isChecked() );
74 cfg.write();
75}
76
77
78void DocTabSettings::reject()
79{
80 reset();
81 QDialog::reject();
82}
83
84void DocTabSettings::reset()
85{
86}
87
88QString DocTabSettings::actualDocTab;
89
90void DocTabSettings::done(int r)
91{
92 QDialog::done(r);
93 close();
94}