summaryrefslogtreecommitdiff
path: root/core/pim/today/todayconfig.h
Unidiff
Diffstat (limited to 'core/pim/today/todayconfig.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/todayconfig.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/pim/today/todayconfig.h b/core/pim/today/todayconfig.h
index d5bdb4b..49cd10f 100644
--- a/core/pim/today/todayconfig.h
+++ b/core/pim/today/todayconfig.h
@@ -1,61 +1,62 @@
1/* 1/*
2 * todayconfig.h 2 * todayconfig.h
3 * 3 *
4 * copyright : (c) 2002 by Maximilian Reiß 4 * copyright : (c) 2002 by Maximilian Reiß
5 * email : harlekin@handhelds.org 5 * email : harlekin@handhelds.org
6 * 6 *
7 */ 7 */
8/*************************************************************************** 8/***************************************************************************
9 * * 9 * *
10 * This program is free software; you can redistribute it and/or modify * 10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by * 11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or * 12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. * 13 * (at your option) any later version. *
14 * * 14 * *
15 ***************************************************************************/ 15 ***************************************************************************/
16 16
17#ifndef TODAYCONFIG_H 17#ifndef TODAYCONFIG_H
18#define TODAYCONFIG_H 18#define TODAYCONFIG_H
19 19
20#include <qvariant.h> 20#include <qvariant.h>
21#include <qdialog.h> 21#include <qdialog.h>
22#include <qlistview.h> 22#include <qlistview.h>
23#include <opie/otabwidget.h>
23 24
24class QCheckBox; 25class QCheckBox;
25class QLabel; 26class QLabel;
26class QSpinBox; 27class QSpinBox;
27class QTabWidget; 28class QTabWidget;
28 29
29class TodayConfig : public QDialog { 30class TodayConfig : public QDialog {
30 31
31 Q_OBJECT 32 Q_OBJECT
32 33
33public: 34public:
34 TodayConfig( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); 35 TodayConfig( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
35 ~TodayConfig(); 36 ~TodayConfig();
36 37
37 QTabWidget* TabWidget3; 38 OTabWidget* TabWidget3;
38 39
39 void writeConfig(); 40 void writeConfig();
40 void pluginManagement( QString libName, QString name, QPixmap icon ); 41 void pluginManagement( QString libName, QString name, QPixmap icon );
41 42
42protected slots: 43protected slots:
43 void appletChanged(); 44 void appletChanged();
44 void moveSelectedUp(); 45 void moveSelectedUp();
45 void moveSelectedDown(); 46 void moveSelectedDown();
46 47
47private: 48private:
48 void setAutoStart(); 49 void setAutoStart();
49 void readConfig(); 50 void readConfig();
50 51
51 QListView* m_appletListView; 52 QListView* m_appletListView;
52 QMap<QString,QCheckListItem*> m_applets; 53 QMap<QString,QCheckListItem*> m_applets;
53 54
54 int m_autoStart; 55 int m_autoStart;
55 QString m_autoStartTimer; 56 QString m_autoStartTimer;
56 QStringList m_excludeApplets; 57 QStringList m_excludeApplets;
57 bool m_applets_changed; 58 bool m_applets_changed;
58 59
59 QLabel* TextLabel2; 60 QLabel* TextLabel2;
60 QCheckBox* CheckBoxAuto; 61 QCheckBox* CheckBoxAuto;
61 QWidget* tab_2; 62 QWidget* tab_2;