author | ulf69 <ulf69> | 2004-08-06 20:30:16 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-06 20:30:16 (UTC) |
commit | 26697d027609149853b984874190e2624749b7e3 (patch) (unidiff) | |
tree | 84b4392b20d1572645cb3d9ff5b6057da52ce970 | |
parent | 38d84409bcca83516eb816461c8b79b4cf6cbf57 (diff) | |
download | kdepimpi-26697d027609149853b984874190e2624749b7e3.zip kdepimpi-26697d027609149853b984874190e2624749b7e3.tar.gz kdepimpi-26697d027609149853b984874190e2624749b7e3.tar.bz2 |
moved pim related parameters into kpimprefs. (email, phone parameters)
-rw-r--r-- | libkdepim/kpimprefs.cpp | 4 | ||||
-rw-r--r-- | libkdepim/kpimprefs.h | 18 | ||||
-rw-r--r-- | libkdepim/libkdepim.pro | 12 | ||||
-rw-r--r-- | libkdepim/libkdepimE.pro | 13 |
4 files changed, 35 insertions, 12 deletions
diff --git a/libkdepim/kpimprefs.cpp b/libkdepim/kpimprefs.cpp index ce4c540..15531c7 100644 --- a/libkdepim/kpimprefs.cpp +++ b/libkdepim/kpimprefs.cpp | |||
@@ -18,32 +18,36 @@ | |||
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <kglobal.h> | 24 | #include <kglobal.h> |
25 | #include <kconfig.h> | 25 | #include <kconfig.h> |
26 | #include <klocale.h> | 26 | #include <klocale.h> |
27 | #include <kdebug.h> | 27 | #include <kdebug.h> |
28 | 28 | ||
29 | #include "kpimprefs.h" | 29 | #include "kpimprefs.h" |
30 | 30 | ||
31 | KPimPrefs::KPimPrefs( const QString &name ) : | 31 | KPimPrefs::KPimPrefs( const QString &name ) : |
32 | KPrefs( name ) | 32 | KPrefs( name ) |
33 | { | 33 | { |
34 | KPrefs::setCurrentGroup( "ExternalApplications" ); | ||
35 | addItemInt( "EmailChannelType", &mEmailClient, OMPI ); | ||
36 | addItemString( "EmailChannelOther", &mEmailChannel, "" ); | ||
37 | |||
34 | } | 38 | } |
35 | 39 | ||
36 | KPimPrefs::~KPimPrefs() | 40 | KPimPrefs::~KPimPrefs() |
37 | { | 41 | { |
38 | } | 42 | } |
39 | 43 | ||
40 | void KPimPrefs::usrSetDefaults() | 44 | void KPimPrefs::usrSetDefaults() |
41 | { | 45 | { |
42 | setCategoryDefaults(); | 46 | setCategoryDefaults(); |
43 | } | 47 | } |
44 | 48 | ||
45 | void KPimPrefs::usrReadConfig() | 49 | void KPimPrefs::usrReadConfig() |
46 | { | 50 | { |
47 | kdDebug(5300) << "KPimPrefs::usrReadConfig()" << endl; | 51 | kdDebug(5300) << "KPimPrefs::usrReadConfig()" << endl; |
48 | 52 | ||
49 | config()->setGroup("General"); | 53 | config()->setGroup("General"); |
diff --git a/libkdepim/kpimprefs.h b/libkdepim/kpimprefs.h index 05a564c..5186315 100644 --- a/libkdepim/kpimprefs.h +++ b/libkdepim/kpimprefs.h | |||
@@ -17,37 +17,51 @@ | |||
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | #ifndef KPIMPREFS_H | 23 | #ifndef KPIMPREFS_H |
24 | #define KPIMPREFS_H | 24 | #define KPIMPREFS_H |
25 | 25 | ||
26 | #include <qstringlist.h> | 26 | #include <qstringlist.h> |
27 | 27 | ||
28 | #include "kprefs.h" | 28 | #include "kprefs.h" |
29 | 29 | ||
30 | class KPimPrefs : public KPrefs | 30 | class KPimPrefs : public KPrefs |
31 | { | 31 | { |
32 | public: | 32 | public: |
33 | |||
33 | KPimPrefs( const QString &name = QString::null ); | 34 | KPimPrefs( const QString &name = QString::null ); |
34 | 35 | ||
35 | virtual ~KPimPrefs(); | 36 | virtual ~KPimPrefs(); |
36 | 37 | ||
37 | /** Set preferences to default values */ | 38 | /** Set preferences to default values */ |
38 | void usrSetDefaults(); | 39 | void usrSetDefaults(); |
39 | 40 | ||
40 | /** Read preferences from config file */ | 41 | /** Read preferences from config file */ |
41 | void usrReadConfig(); | 42 | void usrReadConfig(); |
42 | 43 | ||
43 | /** Write preferences to config file */ | 44 | /** Write preferences to config file */ |
44 | void usrWriteConfig(); | 45 | void usrWriteConfig(); |
45 | 46 | ||
47 | enum EMailClients { | ||
48 | OMPI = 0, | ||
49 | QTOPIA = 1, | ||
50 | OPIE = 2, | ||
51 | OTHER = 3 | ||
52 | }; | ||
53 | |||
54 | |||
46 | public: | 55 | public: |
47 | QStringList mCustomCategories; | 56 | QStringList mCustomCategories; |
48 | 57 | ||
58 | int mEmailClient; | ||
59 | QString mEmailChannel; | ||
60 | |||
61 | |||
62 | |||
49 | protected: | 63 | protected: |
50 | virtual void setCategoryDefaults() = 0; | 64 | virtual void setCategoryDefaults() = 0; |
51 | }; | 65 | }; |
52 | 66 | ||
53 | #endif | 67 | #endif |
diff --git a/libkdepim/libkdepim.pro b/libkdepim/libkdepim.pro index a2fae0b..902f049 100644 --- a/libkdepim/libkdepim.pro +++ b/libkdepim/libkdepim.pro | |||
@@ -1,53 +1,55 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG = qt warn_on | 2 | CONFIG = qt warn_on |
3 | DEFINES +=KORG_NOKABC | 3 | DEFINES +=KORG_NOKABC |
4 | TARGET = microkdepim | 4 | TARGET = microkdepim |
5 | INCLUDEPATH += ../microkde ../libkabcwrap ../microkde/kdecore . .. | 5 | INCLUDEPATH += ../microkde ../libkabcwrap ../microkde/kdecore ../microkde/kdeui . .. |
6 | DESTDIR=../bin | 6 | DESTDIR=../bin |
7 | 7 | ||
8 | DEFINES += DESKTOP_VERSION | 8 | DEFINES += DESKTOP_VERSION |
9 | include( ../variables.pri ) | 9 | include( ../variables.pri ) |
10 | unix : { | 10 | unix : { |
11 | OBJECTS_DIR = obj/unix | 11 | OBJECTS_DIR = obj/unix |
12 | MOC_DIR = moc/unix | 12 | MOC_DIR = moc/unix |
13 | } | 13 | } |
14 | win32: { | 14 | win32: { |
15 | DEFINES += _WIN32_ | 15 | DEFINES += _WIN32_ |
16 | OBJECTS_DIR = obj/win | 16 | OBJECTS_DIR = obj/win |
17 | MOC_DIR = moc/win | 17 | MOC_DIR = moc/win |
18 | } | 18 | } |
19 | INTERFACES = \ | 19 | INTERFACES = \ |
20 | 20 | ||
21 | HEADERS = \ | 21 | HEADERS = \ |
22 | categoryeditdialog.h \ | 22 | categoryeditdialog.h \ |
23 | categoryeditdialog_base.h \ | 23 | categoryeditdialog_base.h \ |
24 | categoryselectdialog.h \ | 24 | categoryselectdialog.h \ |
25 | categoryselectdialog_base.h \ | 25 | categoryselectdialog_base.h \ |
26 | kdateedit.h \ | 26 | kdateedit.h \ |
27 | kdatepicker.h \ | 27 | kdatepicker.h \ |
28 | kinputdialog.h \ | 28 | kinputdialog.h \ |
29 | kincidenceformatter.h \ | 29 | kincidenceformatter.h \ |
30 | kpimprefs.h \ | 30 | kpimprefs.h \ |
31 | kprefs.h \ | ||
32 | kprefsdialog.h \ | 31 | kprefsdialog.h \ |
33 | addresseeview.h \ | 32 | addresseeview.h \ |
34 | ksyncprofile.h \ | 33 | ksyncprofile.h \ |
35 | ksyncprefsdialog.h | 34 | ksyncprefsdialog.h \ |
35 | kcmconfigs/kcmkdepimconfig.h \ | ||
36 | kcmconfigs/kdepimconfigwidget.h | ||
36 | 37 | ||
37 | SOURCES = \ | 38 | SOURCES = \ |
38 | categoryeditdialog.cpp \ | 39 | categoryeditdialog.cpp \ |
39 | categoryeditdialog_base.cpp \ | 40 | categoryeditdialog_base.cpp \ |
40 | categoryselectdialog.cpp \ | 41 | categoryselectdialog.cpp \ |
41 | categoryselectdialog_base.cpp \ | 42 | categoryselectdialog_base.cpp \ |
42 | kdateedit.cpp \ | 43 | kdateedit.cpp \ |
43 | kdatepicker.cpp \ | 44 | kdatepicker.cpp \ |
44 | kinputdialog.cpp \ | 45 | kinputdialog.cpp \ |
45 | kincidenceformatter.cpp \ | 46 | kincidenceformatter.cpp \ |
46 | kpimprefs.cpp \ | 47 | kpimprefs.cpp \ |
47 | kprefs.cpp \ | ||
48 | kprefsdialog.cpp \ | 48 | kprefsdialog.cpp \ |
49 | addresseeview.cpp \ | 49 | addresseeview.cpp \ |
50 | ksyncprofile.cpp \ | 50 | ksyncprofile.cpp \ |
51 | ksyncprefsdialog.cpp | 51 | ksyncprefsdialog.cpp \ |
52 | kcmconfigs/kcmkdepimconfig.cpp \ | ||
53 | kcmconfigs/kdepimconfigwidget.cpp | ||
52 | 54 | ||
53 | 55 | ||
diff --git a/libkdepim/libkdepimE.pro b/libkdepim/libkdepimE.pro index 36a789d..fc8abe1 100644 --- a/libkdepim/libkdepimE.pro +++ b/libkdepim/libkdepimE.pro | |||
@@ -1,46 +1,49 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on | 2 | CONFIG += qt warn_on |
3 | TARGET = microkdepim | 3 | TARGET = microkdepim |
4 | INCLUDEPATH += ../microkde ../qtcompat ../libkabcwrap ../microkde/kdecore $(QPEDIR)/include | 4 | INCLUDEPATH += ../microkde ../qtcompat ../libkabcwrap ../microkde/kdecore ../microkde/kdeui $(QPEDIR)/include |
5 | INCLUDEPATH += . .. | 5 | INCLUDEPATH += . .. |
6 | LIBS += -lmicrokde | 6 | LIBS += -lmicrokde |
7 | LIBS += -L$(QPEDIR)/lib | 7 | LIBS += -L$(QPEDIR)/lib |
8 | OBJECTS_DIR = obj/$(PLATFORM) | 8 | OBJECTS_DIR = obj/$(PLATFORM) |
9 | MOC_DIR = moc/$(PLATFORM) | 9 | MOC_DIR = moc/$(PLATFORM) |
10 | DESTDIR=$(QPEDIR)/lib | 10 | DESTDIR=$(QPEDIR)/lib |
11 | 11 | ||
12 | 12 | ||
13 | INTERFACES = \ | 13 | INTERFACES = \ |
14 | 14 | ||
15 | HEADERS = \ | 15 | HEADERS = \ |
16 | categoryeditdialog.h \ | 16 | categoryeditdialog.h \ |
17 | categoryeditdialog_base.h \ | 17 | categoryeditdialog_base.h \ |
18 | categoryselectdialog.h \ | 18 | categoryselectdialog.h \ |
19 | categoryselectdialog_base.h \ | 19 | categoryselectdialog_base.h \ |
20 | kdateedit.h \ | 20 | kdateedit.h \ |
21 | kdatepicker.h \ | 21 | kdatepicker.h \ |
22 | kinputdialog.h \ | 22 | kinputdialog.h \ |
23 | kincidenceformatter.h \ | 23 | kincidenceformatter.h \ |
24 | kpimprefs.h \ | 24 | kpimprefs.h \ |
25 | kprefs.h \ | ||
26 | kprefsdialog.h \ | 25 | kprefsdialog.h \ |
27 | addresseeview.h \ | 26 | addresseeview.h \ |
28 | ksyncprofile.h \ | 27 | ksyncprofile.h \ |
29 | ksyncprefsdialog.h | 28 | ksyncprefsdialog.h \ |
29 | kcmconfigs/kcmkdepimconfig.h \ | ||
30 | kcmconfigs/kdepimconfigwidget.h | ||
31 | |||
30 | 32 | ||
31 | 33 | ||
32 | SOURCES = \ | 34 | SOURCES = \ |
33 | categoryeditdialog.cpp \ | 35 | categoryeditdialog.cpp \ |
34 | categoryeditdialog_base.cpp \ | 36 | categoryeditdialog_base.cpp \ |
35 | categoryselectdialog.cpp \ | 37 | categoryselectdialog.cpp \ |
36 | categoryselectdialog_base.cpp \ | 38 | categoryselectdialog_base.cpp \ |
37 | kdateedit.cpp \ | 39 | kdateedit.cpp \ |
38 | kinputdialog.cpp \ | 40 | kinputdialog.cpp \ |
39 | kdatepicker.cpp \ | 41 | kdatepicker.cpp \ |
40 | kincidenceformatter.cpp \ | 42 | kincidenceformatter.cpp \ |
41 | kpimprefs.cpp \ | 43 | kpimprefs.cpp \ |
42 | kprefs.cpp \ | ||
43 | kprefsdialog.cpp \ | 44 | kprefsdialog.cpp \ |
44 | addresseeview.cpp \ | 45 | addresseeview.cpp \ |
45 | ksyncprofile.cpp \ | 46 | ksyncprofile.cpp \ |
46 | ksyncprefsdialog.cpp | 47 | ksyncprefsdialog.cpp \ |
48 | kcmconfigs/kcmkdepimconfig.cpp \ | ||
49 | kcmconfigs/kdepimconfigwidget.cpp | ||