author | zautrix <zautrix> | 2005-01-25 15:12:21 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-25 15:12:21 (UTC) |
commit | fe4e6e85abc2ec90cc80108fc7434899b6e13048 (patch) (unidiff) | |
tree | 9a3cf83ecf8796d0020076e4e8e275d193fb2584 /korganizer | |
parent | 165d969ce6ac38c5e3d7b5c629af0b00d0fff017 (diff) | |
download | kdepimpi-fe4e6e85abc2ec90cc80108fc7434899b6e13048.zip kdepimpi-fe4e6e85abc2ec90cc80108fc7434899b6e13048.tar.gz kdepimpi-fe4e6e85abc2ec90cc80108fc7434899b6e13048.tar.bz2 |
small fixes
-rw-r--r-- | korganizer/koprefsdialog.cpp | 2 | ||||
-rw-r--r-- | korganizer/korganizer.pro | 32 | ||||
-rw-r--r-- | korganizer/main.cpp | 29 | ||||
-rw-r--r-- | korganizer/mainwindow.cpp | 8 |
4 files changed, 37 insertions, 34 deletions
diff --git a/korganizer/koprefsdialog.cpp b/korganizer/koprefsdialog.cpp index 8aa24ee..ea73fd0 100644 --- a/korganizer/koprefsdialog.cpp +++ b/korganizer/koprefsdialog.cpp | |||
@@ -73,50 +73,52 @@ | |||
73 | KOPrefsDialog::KOPrefsDialog(QWidget *parent, char *name, bool modal) : | 73 | KOPrefsDialog::KOPrefsDialog(QWidget *parent, char *name, bool modal) : |
74 | KPrefsDialog(KOPrefs::instance(),parent,name,true) | 74 | KPrefsDialog(KOPrefs::instance(),parent,name,true) |
75 | { | 75 | { |
76 | 76 | ||
77 | setCaption( i18n("Preferences - some settings need a restart (nr)")); | 77 | setCaption( i18n("Preferences - some settings need a restart (nr)")); |
78 | mCategoryDict.setAutoDelete(true); | 78 | mCategoryDict.setAutoDelete(true); |
79 | 79 | ||
80 | KGlobal::locale()->insertCatalogue("timezones"); | 80 | KGlobal::locale()->insertCatalogue("timezones"); |
81 | 81 | ||
82 | setupGlobalTab(); | 82 | setupGlobalTab(); |
83 | setupMainTab(); | 83 | setupMainTab(); |
84 | // setupLocaleTab(); | 84 | // setupLocaleTab(); |
85 | //setupTimeZoneTab(); | 85 | //setupTimeZoneTab(); |
86 | setupTimeTab(); | 86 | setupTimeTab(); |
87 | //setupLocaleDateTab(); | 87 | //setupLocaleDateTab(); |
88 | setupFontsTab(); | 88 | setupFontsTab(); |
89 | setupColorsTab(); | 89 | setupColorsTab(); |
90 | setupViewsTab(); | 90 | setupViewsTab(); |
91 | //setupSyncTab(); | 91 | //setupSyncTab(); |
92 | //setupSyncAlgTab(); | 92 | //setupSyncAlgTab(); |
93 | //setupPrinterTab(); | 93 | //setupPrinterTab(); |
94 | //setupGroupSchedulingTab(); | 94 | //setupGroupSchedulingTab(); |
95 | //setupGroupAutomationTab(); | 95 | //setupGroupAutomationTab(); |
96 | 96 | ||
97 | #ifndef DESKTOP_VERSION | ||
97 | if ( QApplication::desktop()->height() == 480 ) | 98 | if ( QApplication::desktop()->height() == 480 ) |
98 | hideButtons(); | 99 | hideButtons(); |
100 | #endif | ||
99 | } | 101 | } |
100 | 102 | ||
101 | 103 | ||
102 | KOPrefsDialog::~KOPrefsDialog() | 104 | KOPrefsDialog::~KOPrefsDialog() |
103 | { | 105 | { |
104 | } | 106 | } |
105 | void KOPrefsDialog::setupGlobalTab() | 107 | void KOPrefsDialog::setupGlobalTab() |
106 | { | 108 | { |
107 | QFrame *topFrame = addPage(i18n("Global"),0,0); | 109 | QFrame *topFrame = addPage(i18n("Global"),0,0); |
108 | kdelibcfg = new KDEPIMConfigWidget( KPimGlobalPrefs::instance(), topFrame, "KCMKdeLibConfig" ); | 110 | kdelibcfg = new KDEPIMConfigWidget( KPimGlobalPrefs::instance(), topFrame, "KCMKdeLibConfig" ); |
109 | QVBoxLayout *topLayout = new QVBoxLayout(topFrame); | 111 | QVBoxLayout *topLayout = new QVBoxLayout(topFrame); |
110 | topLayout->addWidget( kdelibcfg ); | 112 | topLayout->addWidget( kdelibcfg ); |
111 | 113 | ||
112 | 114 | ||
113 | } | 115 | } |
114 | void KOPrefsDialog::setupLocaleDateTab() | 116 | void KOPrefsDialog::setupLocaleDateTab() |
115 | { | 117 | { |
116 | #if 0 | 118 | #if 0 |
117 | QFrame *topFrame = addPage(i18n("Date Format"),0,0); | 119 | QFrame *topFrame = addPage(i18n("Date Format"),0,0); |
118 | QGridLayout *topLayout = new QGridLayout(topFrame,3,2); | 120 | QGridLayout *topLayout = new QGridLayout(topFrame,3,2); |
119 | topLayout->setSpacing(spacingHint()); | 121 | topLayout->setSpacing(spacingHint()); |
120 | topLayout->setMargin(marginHint()); | 122 | topLayout->setMargin(marginHint()); |
121 | int iii = 0; | 123 | int iii = 0; |
122 | 124 | ||
diff --git a/korganizer/korganizer.pro b/korganizer/korganizer.pro index c2602b2..4d67dca 100644 --- a/korganizer/korganizer.pro +++ b/korganizer/korganizer.pro | |||
@@ -1,77 +1,88 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on | 2 | CONFIG += qt warn_off |
3 | TARGET = kopi | 3 | TARGET = kopi |
4 | OBJECTS_DIR = _obj/ | 4 | OBJECTS_DIR = _obj/ |
5 | MOC_DIR = _moc | 5 | MOC_DIR = _moc |
6 | DESTDIR= ../bin | 6 | DESTDIR= ../bin |
7 | 7 | ||
8 | include( ../variables.pri ) | 8 | include( ../variables.pri ) |
9 | 9 | ||
10 | INCLUDEPATH += ../microkde ../ interfaces ../microkde/kdecore ../microkde/kdeui ../microkde/kio/kfile ../microkde/kio/kio ../libkdepim | 10 | INCLUDEPATH += ../microkde ../ interfaces ../microkde/kdecore ../microkde/kdeui ../microkde/kio/kfile ../microkde/kio/kio ../libkdepim |
11 | #../qtcompat | 11 | #../qtcompat |
12 | DEFINES += KORG_NODND KORG_NOPLUGINS KORG_NOARCHIVE KORG_NOMAIL | 12 | DEFINES += KORG_NODND KORG_NOPLUGINS KORG_NOARCHIVE KORG_NOMAIL |
13 | DEFINES += KORG_NODCOP KORG_NOKALARMD KORG_NORESOURCEVIEW KORG_NOSPLITTER | 13 | DEFINES += KORG_NODCOP KORG_NOKALARMD KORG_NORESOURCEVIEW KORG_NOSPLITTER |
14 | #KORG_NOPRINTER KORG_NOKABC | 14 | #KORG_NOPRINTER KORG_NOKABC |
15 | DEFINES += KORG_NOLVALTERNATION | 15 | DEFINES += KORG_NOLVALTERNATION |
16 | DEFINES += DESKTOP_VERSION | 16 | DEFINES += DESKTOP_VERSION |
17 | unix : { | 17 | unix : { |
18 | LIBS += ../bin/libmicrokdepim.so | 18 | LIBS += ../bin/libmicrokdepim.so |
19 | LIBS += ../bin/libmicrokcal.so | 19 | LIBS += ../bin/libmicrokcal.so |
20 | LIBS += ../bin/libmicrokde.so | 20 | LIBS += ../bin/libmicrokde.so |
21 | LIBS += ../bin/libmicrokabc.so | 21 | LIBS += ../bin/libmicrokabc.so |
22 | #LIBS += -lbluetooth | 22 | #LIBS += -lbluetooth |
23 | #LIBS += -lsdp | 23 | #LIBS += -lsdp |
24 | 24 | ||
25 | #LIBS += -lldap | 25 | #LIBS += -lldap |
26 | OBJECTS_DIR = obj/unix | 26 | OBJECTS_DIR = obj/unix |
27 | MOC_DIR = moc/unix | 27 | MOC_DIR = moc/unix |
28 | } | 28 | } |
29 | win32: { | 29 | win32: { |
30 | RC_FILE = winicons.rc | 30 | RC_FILE = winicons.rc |
31 | DEFINES += _WIN32_ | 31 | DEFINES += _WIN32_ |
32 | LIBS += ../bin/microkdepim.lib | 32 | LIBS += ../bin/microkdepim.lib |
33 | LIBS += ../bin/microkcal.lib | 33 | LIBS += ../bin/microkcal.lib |
34 | LIBS += ../bin/microkde.lib | 34 | LIBS += ../bin/microkde.lib |
35 | LIBS += ../bin/microkabc.lib | 35 | LIBS += ../bin/microkabc.lib |
36 | LIBS += ../libical/lib/ical.lib | 36 | LIBS += ../libical/lib/ical.lib |
37 | LIBS += ../libical/lib/icalss.lib | 37 | LIBS += ../libical/lib/icalss.lib |
38 | #LIBS += atls.lib | 38 | #LIBS += atls.lib |
39 | LIBS += mfc71u.lib | ||
40 | QMAKE_LINK += /NODEFAULTLIB:LIBC | 39 | QMAKE_LINK += /NODEFAULTLIB:LIBC |
41 | #QMAKE_LINK += /NODEFAULTLIB:MSVCRT | 40 | #QMAKE_LINK += /NODEFAULTLIB:MSVCRT |
42 | #QMAKE_LINK += /NODEFAULTLIB:uafxcw.lib | 41 | #QMAKE_LINK += /NODEFAULTLIB:uafxcw.lib |
43 | OBJECTS_DIR = obj/win | 42 | OBJECTS_DIR = obj/win |
44 | MOC_DIR = moc/win | 43 | MOC_DIR = moc/win |
44 | #olimport section | ||
45 | #blabla: { | ||
46 | LIBS += mfc71u.lib | ||
47 | DEFINES += _OL_IMPORT_ | ||
48 | |||
49 | HEADERS += ../outport/msoutl9.h \ | ||
50 | koimportoldialog.h | ||
51 | SOURCES += ../outport/msoutl9.cpp \ | ||
52 | koimportoldialog.cpp | ||
53 | #} | ||
54 | #olimport section end | ||
55 | |||
45 | } | 56 | } |
46 | 57 | ||
47 | 58 | ||
48 | INTERFACES = kofilterview_base.ui | 59 | INTERFACES = kofilterview_base.ui |
49 | #filteredit_base.ui | 60 | #filteredit_base.ui |
50 | 61 | ||
51 | # kdateedit.h \ | 62 | # kdateedit.h \ |
52 | 63 | ||
53 | HEADERS = \ | 64 | HEADERS += \ |
54 | filteredit_base.h \ | 65 | filteredit_base.h \ |
55 | alarmclient.h \ | 66 | alarmclient.h \ |
56 | calendarview.h \ | 67 | calendarview.h \ |
57 | customlistviewitem.h \ | 68 | customlistviewitem.h \ |
58 | datenavigator.h \ | 69 | datenavigator.h \ |
59 | docprefs.h \ | 70 | docprefs.h \ |
60 | filtereditdialog.h \ | 71 | filtereditdialog.h \ |
61 | incomingdialog.h \ | 72 | incomingdialog.h \ |
62 | incomingdialog_base.h \ | 73 | incomingdialog_base.h \ |
63 | interfaces/korganizer/baseview.h \ | 74 | interfaces/korganizer/baseview.h \ |
64 | interfaces/korganizer/calendarviewbase.h \ | 75 | interfaces/korganizer/calendarviewbase.h \ |
65 | journalentry.h \ | 76 | journalentry.h \ |
66 | kdatenavigator.h \ | 77 | kdatenavigator.h \ |
67 | koagenda.h \ | 78 | koagenda.h \ |
68 | koagendaitem.h \ | 79 | koagendaitem.h \ |
69 | koagendaview.h \ | 80 | koagendaview.h \ |
70 | kocounterdialog.h \ | 81 | kocounterdialog.h \ |
71 | kodaymatrix.h \ | 82 | kodaymatrix.h \ |
72 | kodialogmanager.h \ | 83 | kodialogmanager.h \ |
73 | koeditordetails.h \ | 84 | koeditordetails.h \ |
74 | koeditorgeneral.h \ | 85 | koeditorgeneral.h \ |
75 | koeditorgeneralevent.h \ | 86 | koeditorgeneralevent.h \ |
76 | koeditorgeneraltodo.h \ | 87 | koeditorgeneraltodo.h \ |
77 | koeditorrecurrence.h \ | 88 | koeditorrecurrence.h \ |
@@ -92,49 +103,49 @@ HEADERS = \ | |||
92 | kotimespanview.h \ | 103 | kotimespanview.h \ |
93 | kotodoeditor.h \ | 104 | kotodoeditor.h \ |
94 | kotodoview.h \ | 105 | kotodoview.h \ |
95 | kotodoviewitem.h \ | 106 | kotodoviewitem.h \ |
96 | koviewmanager.h \ | 107 | koviewmanager.h \ |
97 | kowhatsnextview.h \ | 108 | kowhatsnextview.h \ |
98 | ktimeedit.h \ | 109 | ktimeedit.h \ |
99 | lineview.h \ | 110 | lineview.h \ |
100 | mainwindow.h \ | 111 | mainwindow.h \ |
101 | navigatorbar.h \ | 112 | navigatorbar.h \ |
102 | outgoingdialog.h \ | 113 | outgoingdialog.h \ |
103 | outgoingdialog_base.h \ | 114 | outgoingdialog_base.h \ |
104 | publishdialog.h \ | 115 | publishdialog.h \ |
105 | publishdialog_base.h \ | 116 | publishdialog_base.h \ |
106 | savetemplatedialog.h \ | 117 | savetemplatedialog.h \ |
107 | searchdialog.h \ | 118 | searchdialog.h \ |
108 | simplealarmclient.h \ | 119 | simplealarmclient.h \ |
109 | statusdialog.h \ | 120 | statusdialog.h \ |
110 | timeline.h \ | 121 | timeline.h \ |
111 | timespanview.h \ | 122 | timespanview.h \ |
112 | version.h \ | 123 | version.h \ |
113 | ../kalarmd/alarmdialog.h \ | 124 | ../kalarmd/alarmdialog.h \ |
114 | 125 | ||
115 | 126 | ||
116 | SOURCES = \ | 127 | SOURCES += \ |
117 | filteredit_base.cpp \ | 128 | filteredit_base.cpp \ |
118 | calendarview.cpp \ | 129 | calendarview.cpp \ |
119 | datenavigator.cpp \ | 130 | datenavigator.cpp \ |
120 | docprefs.cpp \ | 131 | docprefs.cpp \ |
121 | filtereditdialog.cpp \ | 132 | filtereditdialog.cpp \ |
122 | incomingdialog.cpp \ | 133 | incomingdialog.cpp \ |
123 | incomingdialog_base.cpp \ | 134 | incomingdialog_base.cpp \ |
124 | journalentry.cpp \ | 135 | journalentry.cpp \ |
125 | kdatenavigator.cpp \ | 136 | kdatenavigator.cpp \ |
126 | koagenda.cpp \ | 137 | koagenda.cpp \ |
127 | koagendaitem.cpp \ | 138 | koagendaitem.cpp \ |
128 | koagendaview.cpp \ | 139 | koagendaview.cpp \ |
129 | kocounterdialog.cpp \ | 140 | kocounterdialog.cpp \ |
130 | kodaymatrix.cpp \ | 141 | kodaymatrix.cpp \ |
131 | kodialogmanager.cpp \ | 142 | kodialogmanager.cpp \ |
132 | koeditordetails.cpp \ | 143 | koeditordetails.cpp \ |
133 | koeditorgeneral.cpp \ | 144 | koeditorgeneral.cpp \ |
134 | koeditorgeneralevent.cpp \ | 145 | koeditorgeneralevent.cpp \ |
135 | koeditorgeneraltodo.cpp \ | 146 | koeditorgeneraltodo.cpp \ |
136 | koeditorrecurrence.cpp \ | 147 | koeditorrecurrence.cpp \ |
137 | koeventeditor.cpp \ | 148 | koeventeditor.cpp \ |
138 | koeventpopupmenu.cpp \ | 149 | koeventpopupmenu.cpp \ |
139 | koeventview.cpp \ | 150 | koeventview.cpp \ |
140 | koeventviewer.cpp \ | 151 | koeventviewer.cpp \ |
@@ -157,37 +168,24 @@ filteredit_base.cpp \ | |||
157 | ktimeedit.cpp \ | 168 | ktimeedit.cpp \ |
158 | lineview.cpp \ | 169 | lineview.cpp \ |
159 | main.cpp \ | 170 | main.cpp \ |
160 | mainwindow.cpp \ | 171 | mainwindow.cpp \ |
161 | navigatorbar.cpp \ | 172 | navigatorbar.cpp \ |
162 | outgoingdialog.cpp \ | 173 | outgoingdialog.cpp \ |
163 | outgoingdialog_base.cpp \ | 174 | outgoingdialog_base.cpp \ |
164 | publishdialog.cpp \ | 175 | publishdialog.cpp \ |
165 | publishdialog_base.cpp \ | 176 | publishdialog_base.cpp \ |
166 | savetemplatedialog.cpp \ | 177 | savetemplatedialog.cpp \ |
167 | searchdialog.cpp \ | 178 | searchdialog.cpp \ |
168 | simplealarmclient.cpp \ | 179 | simplealarmclient.cpp \ |
169 | statusdialog.cpp \ | 180 | statusdialog.cpp \ |
170 | timeline.cpp \ | 181 | timeline.cpp \ |
171 | timespanview.cpp \ | 182 | timespanview.cpp \ |
172 | ../kalarmd/alarmdialog.cpp | 183 | ../kalarmd/alarmdialog.cpp |
173 | 184 | ||
174 | HEADERS += calprintbase.h calprinter.h calprintplugins.h cellitem.h | 185 | HEADERS += calprintbase.h calprinter.h calprintplugins.h cellitem.h |
175 | INTERFACES += calprintdayconfig_base.ui \ | 186 | INTERFACES += calprintdayconfig_base.ui \ |
176 | calprintmonthconfig_base.ui \ | 187 | calprintmonthconfig_base.ui \ |
177 | calprinttodoconfig_base.ui \ | 188 | calprinttodoconfig_base.ui \ |
178 | calprintweekconfig_base.ui | 189 | calprintweekconfig_base.ui |
179 | SOURCES += calprintbase.cpp calprinter.cpp calprintplugins.cpp cellitem.cpp | 190 | SOURCES += calprintbase.cpp calprinter.cpp calprintplugins.cpp cellitem.cpp |
180 | 191 | ||
181 | |||
182 | |||
183 | win32: { | ||
184 | HEADERS += ../outport/msoutl9.h \ | ||
185 | koimportoldialog.h | ||
186 | |||
187 | |||
188 | SOURCES += ../outport/msoutl9.cpp \ | ||
189 | koimportoldialog.cpp | ||
190 | |||
191 | |||
192 | } | ||
193 | |||
diff --git a/korganizer/main.cpp b/korganizer/main.cpp index 2481ca4..4b207d9 100644 --- a/korganizer/main.cpp +++ b/korganizer/main.cpp | |||
@@ -1,71 +1,72 @@ | |||
1 | 1 | ||
2 | 2 | ||
3 | #ifndef DESKTOP_VERSION | 3 | #ifndef DESKTOP_VERSION |
4 | #include <qpe/qpeapplication.h> | 4 | #include <qpe/qpeapplication.h> |
5 | #include <qcopchannel_qws.h> | 5 | #include <qcopchannel_qws.h> |
6 | #include <qpe/global.h> | 6 | #include <qpe/global.h> |
7 | #include <stdlib.h> | 7 | #include <stdlib.h> |
8 | #else | 8 | #else |
9 | #include <qapplication.h> | 9 | #include <qapplication.h> |
10 | #include <qstring.h> | 10 | #include <qstring.h> |
11 | #include <qwindowsstyle.h> | 11 | #include <qwindowsstyle.h> |
12 | #include <qplatinumstyle.h> | 12 | #include <qplatinumstyle.h> |
13 | #include <qsgistyle.h> | 13 | #include <qsgistyle.h> |
14 | #include <stdlib.h> | ||
14 | #endif | 15 | #endif |
15 | #include <qtextcodec.h> | 16 | #include <qtextcodec.h> |
16 | 17 | ||
17 | #include <qdir.h> | 18 | #include <qdir.h> |
18 | #include <kstandarddirs.h> | 19 | #include <kstandarddirs.h> |
19 | #include <kglobal.h> | 20 | #include <kglobal.h> |
20 | #include <stdio.h> | 21 | #include <stdio.h> |
21 | #include "mainwindow.h" | 22 | #include "mainwindow.h" |
22 | #include <libkdepim/kpimglobalprefs.h> | 23 | #include <libkdepim/kpimglobalprefs.h> |
23 | void dumpMissing(); | 24 | void dumpMissing(); |
24 | int main( int argc, char **argv ) | 25 | int main( int argc, char **argv ) |
25 | { | 26 | { |
26 | #ifndef DESKTOP_VERSION | 27 | #ifndef DESKTOP_VERSION |
27 | QPEApplication a( argc, argv ); | 28 | QPEApplication a( argc, argv ); |
28 | a.setKeepRunning (); | 29 | a.setKeepRunning (); |
29 | #else | 30 | #else |
30 | QApplication a( argc, argv ); | 31 | QApplication a( argc, argv ); |
31 | QApplication::setStyle( new QPlatinumStyle ()); | 32 | QApplication::setStyle( new QPlatinumStyle ()); |
32 | QString hdir = QDir::homeDirPath(); | 33 | #ifdef _WIN32_ |
33 | // there is a bug when creating dirs for WIN 98 | 34 | QString hdir ( getenv( "HOME") ); |
34 | // it is difficult to fix, because we have no WIN 98 runnung | 35 | if ( hdir.isEmpty() ) { |
35 | // such that we try it to create the dirs at startup here | 36 | QString hd ("C:/" ); |
36 | if ( hdir == "C:\\" ) { // win 98 or ME | 37 | //QMessageBox::information(0,"hh",QDir::homeDirPath()+" xx" +hd ); |
37 | QDir app_dir; | 38 | if ( QDir::homeDirPath().lower() == hd.lower() ) { |
38 | if ( !app_dir.exists("C:\\kdepim") ) | 39 | _putenv( "HOME=C:"); |
39 | app_dir.mkdir ("C:\\kdepim"); | 40 | //QMessageBox::information(0,"hh",QString ( getenv( "HOME") ) ); |
40 | if ( !app_dir.exists("C:\\kdepim\\apps") ) | 41 | } |
41 | app_dir.mkdir ("C:\\kdepim\\apps"); | 42 | } else { |
42 | if ( !app_dir.exists("C:\\kdepim\\config") ) | 43 | QDir app_dir; |
43 | app_dir.mkdir ("C:\\kdepim\\config"); | 44 | if ( !app_dir.exists(hdir) ) |
44 | if ( !app_dir.exists("C:\\kdepim\\apps\\korganizer") ) | 45 | app_dir.mkdir (hdir); |
45 | app_dir.mkdir ("C:\\kdepim\\apps\\korganizer"); | ||
46 | } | 46 | } |
47 | #endif | 47 | #endif |
48 | #endif | ||
48 | bool exitHelp = false; | 49 | bool exitHelp = false; |
49 | if ( argc > 1 ) { | 50 | if ( argc > 1 ) { |
50 | QString command = argv[1]; | 51 | QString command = argv[1]; |
51 | if ( command == "-help" ){ | 52 | if ( command == "-help" ){ |
52 | printf("KO/Pi command line commands:\n"); | 53 | printf("KO/Pi command line commands:\n"); |
53 | printf(" no command: Start KO/Pi in usual way\n"); | 54 | printf(" no command: Start KO/Pi in usual way\n"); |
54 | printf(" -help: This output\n"); | 55 | printf(" -help: This output\n"); |
55 | printf("Next Option: Open or Show after start:\n"); | 56 | printf("Next Option: Open or Show after start:\n"); |
56 | printf(" -newTodo: New Todo dialog\n"); | 57 | printf(" -newTodo: New Todo dialog\n"); |
57 | printf(" -newEvent: New Event dialog\n"); | 58 | printf(" -newEvent: New Event dialog\n"); |
58 | printf(" -showList: List view\n"); | 59 | printf(" -showList: List view\n"); |
59 | printf(" -showDay: Day view\n"); | 60 | printf(" -showDay: Day view\n"); |
60 | printf(" -showWWeek: Work Week view\n"); | 61 | printf(" -showWWeek: Work Week view\n"); |
61 | printf(" -showWeek: Week view\n"); | 62 | printf(" -showWeek: Week view\n"); |
62 | printf(" -showTodo: Todo view\n"); | 63 | printf(" -showTodo: Todo view\n"); |
63 | printf(" -showJournal: Journal view\n"); | 64 | printf(" -showJournal: Journal view\n"); |
64 | printf(" -showKO: Next Days view\n"); | 65 | printf(" -showKO: Next Days view\n"); |
65 | printf(" -showWNext: What's Next view\n"); | 66 | printf(" -showWNext: What's Next view\n"); |
66 | printf(" -showNextXView: Next X View\n"); | 67 | printf(" -showNextXView: Next X View\n"); |
67 | printf(" -new[Y] and -show[X] may be used togehther\n"); | 68 | printf(" -new[Y] and -show[X] may be used togehther\n"); |
68 | printf(" KO/Pi is exiting now. Bye!\n"); | 69 | printf(" KO/Pi is exiting now. Bye!\n"); |
69 | exitHelp = true; | 70 | exitHelp = true; |
70 | } | 71 | } |
71 | } | 72 | } |
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index 7b07a2e..26ea1e2 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp | |||
@@ -45,50 +45,52 @@ | |||
45 | 45 | ||
46 | #include "calendarview.h" | 46 | #include "calendarview.h" |
47 | #include "koviewmanager.h" | 47 | #include "koviewmanager.h" |
48 | #include "datenavigator.h" | 48 | #include "datenavigator.h" |
49 | #include "koagendaview.h" | 49 | #include "koagendaview.h" |
50 | #include "koagenda.h" | 50 | #include "koagenda.h" |
51 | #include "kodialogmanager.h" | 51 | #include "kodialogmanager.h" |
52 | #include "kdialogbase.h" | 52 | #include "kdialogbase.h" |
53 | #include "kapplication.h" | 53 | #include "kapplication.h" |
54 | #include "kofilterview.h" | 54 | #include "kofilterview.h" |
55 | #include "kstandarddirs.h" | 55 | #include "kstandarddirs.h" |
56 | #include "koprefs.h" | 56 | #include "koprefs.h" |
57 | #include "kfiledialog.h" | 57 | #include "kfiledialog.h" |
58 | #include "koglobals.h" | 58 | #include "koglobals.h" |
59 | #include "kglobal.h" | 59 | #include "kglobal.h" |
60 | #include "klocale.h" | 60 | #include "klocale.h" |
61 | #include "kconfig.h" | 61 | #include "kconfig.h" |
62 | #include "simplealarmclient.h" | 62 | #include "simplealarmclient.h" |
63 | #include "externalapphandler.h" | 63 | #include "externalapphandler.h" |
64 | 64 | ||
65 | using namespace KCal; | 65 | using namespace KCal; |
66 | #ifndef _WIN32_ | 66 | #ifndef _WIN32_ |
67 | #include <unistd.h> | 67 | #include <unistd.h> |
68 | #else | 68 | #else |
69 | #ifdef _OL_IMPORT_ | ||
69 | #include "koimportoldialog.h" | 70 | #include "koimportoldialog.h" |
70 | #endif | 71 | #endif |
72 | #endif | ||
71 | #include "mainwindow.h" | 73 | #include "mainwindow.h" |
72 | 74 | ||
73 | class KOex2phonePrefs : public QDialog | 75 | class KOex2phonePrefs : public QDialog |
74 | { | 76 | { |
75 | public: | 77 | public: |
76 | KOex2phonePrefs( QWidget *parent=0, const char *name=0 ) : | 78 | KOex2phonePrefs( QWidget *parent=0, const char *name=0 ) : |
77 | QDialog( parent, name, true ) | 79 | QDialog( parent, name, true ) |
78 | { | 80 | { |
79 | setCaption( i18n("Export to phone options") ); | 81 | setCaption( i18n("Export to phone options") ); |
80 | QVBoxLayout* lay = new QVBoxLayout( this ); | 82 | QVBoxLayout* lay = new QVBoxLayout( this ); |
81 | lay->setSpacing( 3 ); | 83 | lay->setSpacing( 3 ); |
82 | lay->setMargin( 3 ); | 84 | lay->setMargin( 3 ); |
83 | QLabel *lab; | 85 | QLabel *lab; |
84 | lay->addWidget(lab = new QLabel( i18n("Please read Help-Sync Howto\nto know what settings to use."), this ) ); | 86 | lay->addWidget(lab = new QLabel( i18n("Please read Help-Sync Howto\nto know what settings to use."), this ) ); |
85 | lab->setAlignment (AlignHCenter ); | 87 | lab->setAlignment (AlignHCenter ); |
86 | QHBox* temphb; | 88 | QHBox* temphb; |
87 | temphb = new QHBox( this ); | 89 | temphb = new QHBox( this ); |
88 | new QLabel( i18n("I/O device: "), temphb ); | 90 | new QLabel( i18n("I/O device: "), temphb ); |
89 | mPhoneDevice = new QLineEdit( temphb); | 91 | mPhoneDevice = new QLineEdit( temphb); |
90 | lay->addWidget( temphb ); | 92 | lay->addWidget( temphb ); |
91 | temphb = new QHBox( this ); | 93 | temphb = new QHBox( this ); |
92 | new QLabel( i18n("Connection: "), temphb ); | 94 | new QLabel( i18n("Connection: "), temphb ); |
93 | mPhoneConnection = new QLineEdit( temphb); | 95 | mPhoneConnection = new QLineEdit( temphb); |
94 | lay->addWidget( temphb ); | 96 | lay->addWidget( temphb ); |
@@ -757,49 +759,49 @@ void MainWindow::initActions() | |||
757 | actionMenu->insertItem( i18n("Configure Toolbar"),configureToolBarMenu ); | 759 | actionMenu->insertItem( i18n("Configure Toolbar"),configureToolBarMenu ); |
758 | 760 | ||
759 | } | 761 | } |
760 | // actionMenu->insertSeparator(); | 762 | // actionMenu->insertSeparator(); |
761 | action = new QAction( "import_qtopia", i18n("Import (*.ics/*.vcs) file"), 0, | 763 | action = new QAction( "import_qtopia", i18n("Import (*.ics/*.vcs) file"), 0, |
762 | this ); | 764 | this ); |
763 | action->addTo( importMenu ); | 765 | action->addTo( importMenu ); |
764 | connect( action, SIGNAL( activated() ), SLOT( importIcal() ) ); | 766 | connect( action, SIGNAL( activated() ), SLOT( importIcal() ) ); |
765 | action = new QAction( "import_quick", i18n("Import last file"), 0, | 767 | action = new QAction( "import_quick", i18n("Import last file"), 0, |
766 | this ); | 768 | this ); |
767 | action->addTo( importMenu ); | 769 | action->addTo( importMenu ); |
768 | connect( action, SIGNAL( activated() ), SLOT( quickImportIcal() ) ); | 770 | connect( action, SIGNAL( activated() ), SLOT( quickImportIcal() ) ); |
769 | importMenu->insertSeparator(); | 771 | importMenu->insertSeparator(); |
770 | action = new QAction( "import_bday", i18n("Import Birthdays (KA/Pi)"), 0, | 772 | action = new QAction( "import_bday", i18n("Import Birthdays (KA/Pi)"), 0, |
771 | this ); | 773 | this ); |
772 | action->addTo( importMenu ); | 774 | action->addTo( importMenu ); |
773 | connect( action, SIGNAL( activated() ), SLOT( importBday() ) ); | 775 | connect( action, SIGNAL( activated() ), SLOT( importBday() ) ); |
774 | #ifndef DESKTOP_VERSION | 776 | #ifndef DESKTOP_VERSION |
775 | importMenu->insertSeparator(); | 777 | importMenu->insertSeparator(); |
776 | action = new QAction( "import_qtopia", i18n("Import Opie/Qtopia Cal."), 0, | 778 | action = new QAction( "import_qtopia", i18n("Import Opie/Qtopia Cal."), 0, |
777 | this ); | 779 | this ); |
778 | action->addTo( importMenu ); | 780 | action->addTo( importMenu ); |
779 | connect( action, SIGNAL( activated() ), SLOT( importQtopia() ) ); | 781 | connect( action, SIGNAL( activated() ), SLOT( importQtopia() ) ); |
780 | #else | 782 | #else |
781 | #ifdef _WIN32_ | 783 | #ifdef _OL_IMPORT_ |
782 | importMenu->insertSeparator(); | 784 | importMenu->insertSeparator(); |
783 | action = new QAction( "import_ol", i18n("Import from OL"), 0, | 785 | action = new QAction( "import_ol", i18n("Import from OL"), 0, |
784 | this ); | 786 | this ); |
785 | action->addTo( importMenu ); | 787 | action->addTo( importMenu ); |
786 | connect( action, SIGNAL( activated() ), SLOT( importOL() ) ); | 788 | connect( action, SIGNAL( activated() ), SLOT( importOL() ) ); |
787 | #endif | 789 | #endif |
788 | #endif | 790 | #endif |
789 | 791 | ||
790 | importMenu->insertSeparator(); | 792 | importMenu->insertSeparator(); |
791 | action = new QAction( "load_cal", i18n("Load Calendar Backup"), 0, | 793 | action = new QAction( "load_cal", i18n("Load Calendar Backup"), 0, |
792 | this ); | 794 | this ); |
793 | action->addTo( importMenu ); | 795 | action->addTo( importMenu ); |
794 | connect( action, SIGNAL( activated() ), SLOT( loadCalendar() ) ); | 796 | connect( action, SIGNAL( activated() ), SLOT( loadCalendar() ) ); |
795 | 797 | ||
796 | action = new QAction( "save_cal", i18n("Save Calendar Backup"), 0, | 798 | action = new QAction( "save_cal", i18n("Save Calendar Backup"), 0, |
797 | this ); | 799 | this ); |
798 | action->addTo( importMenu ); | 800 | action->addTo( importMenu ); |
799 | connect( action, SIGNAL( activated() ), SLOT( saveCalendar() ) ); | 801 | connect( action, SIGNAL( activated() ), SLOT( saveCalendar() ) ); |
800 | 802 | ||
801 | importMenu->insertSeparator(); | 803 | importMenu->insertSeparator(); |
802 | action = new QAction( "import_qtopia", i18n("Export VCalendar"), 0, | 804 | action = new QAction( "import_qtopia", i18n("Export VCalendar"), 0, |
803 | this ); | 805 | this ); |
804 | action->addTo( importMenu ); connect( action, SIGNAL( activated() ), SLOT( exportVCalendar() ) ); | 806 | action->addTo( importMenu ); connect( action, SIGNAL( activated() ), SLOT( exportVCalendar() ) ); |
805 | 807 | ||
@@ -1346,50 +1348,50 @@ void MainWindow::processIncidenceSelection( Incidence *incidence ) | |||
1346 | 1348 | ||
1347 | mNewSubTodoAction->setEnabled( true ); | 1349 | mNewSubTodoAction->setEnabled( true ); |
1348 | } else { | 1350 | } else { |
1349 | mShowAction->setText( i18n("Show...") ); | 1351 | mShowAction->setText( i18n("Show...") ); |
1350 | mShowAction->setText( i18n("Edit...") ); | 1352 | mShowAction->setText( i18n("Edit...") ); |
1351 | mShowAction->setText( i18n("Delete...") ); | 1353 | mShowAction->setText( i18n("Delete...") ); |
1352 | 1354 | ||
1353 | mNewSubTodoAction->setEnabled( false ); | 1355 | mNewSubTodoAction->setEnabled( false ); |
1354 | } | 1356 | } |
1355 | } | 1357 | } |
1356 | 1358 | ||
1357 | void MainWindow::enableIncidenceActions( bool enabled ) | 1359 | void MainWindow::enableIncidenceActions( bool enabled ) |
1358 | { | 1360 | { |
1359 | mShowAction->setEnabled( enabled ); | 1361 | mShowAction->setEnabled( enabled ); |
1360 | mEditAction->setEnabled( enabled ); | 1362 | mEditAction->setEnabled( enabled ); |
1361 | mDeleteAction->setEnabled( enabled ); | 1363 | mDeleteAction->setEnabled( enabled ); |
1362 | 1364 | ||
1363 | mCloneAction->setEnabled( enabled ); | 1365 | mCloneAction->setEnabled( enabled ); |
1364 | mMoveAction->setEnabled( enabled ); | 1366 | mMoveAction->setEnabled( enabled ); |
1365 | mBeamAction->setEnabled( enabled ); | 1367 | mBeamAction->setEnabled( enabled ); |
1366 | mCancelAction->setEnabled( enabled ); | 1368 | mCancelAction->setEnabled( enabled ); |
1367 | } | 1369 | } |
1368 | 1370 | ||
1369 | void MainWindow::importOL() | 1371 | void MainWindow::importOL() |
1370 | { | 1372 | { |
1371 | #ifdef _WIN32_ | 1373 | #ifdef _OL_IMPORT_ |
1372 | KOImportOLdialog *id = new KOImportOLdialog("Import from OL - select folder!" , mView->calendar(),this ); | 1374 | KOImportOLdialog *id = new KOImportOLdialog("Import from OL - select folder!" , mView->calendar(),this ); |
1373 | id->exec(); | 1375 | id->exec(); |
1374 | delete id; | 1376 | delete id; |
1375 | mView->updateView(); | 1377 | mView->updateView(); |
1376 | #endif | 1378 | #endif |
1377 | } | 1379 | } |
1378 | void MainWindow::importBday() | 1380 | void MainWindow::importBday() |
1379 | { | 1381 | { |
1380 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1382 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1381 | i18n("When importing birthdays twice\nduplicated events will be ignored,\nif the event has not been\nchanged in KO/Pi!\n"), | 1383 | i18n("When importing birthdays twice\nduplicated events will be ignored,\nif the event has not been\nchanged in KO/Pi!\n"), |
1382 | i18n("Import!"), i18n("Cancel"), 0, | 1384 | i18n("Import!"), i18n("Cancel"), 0, |
1383 | 0, 1 ); | 1385 | 0, 1 ); |
1384 | if ( result == 0 ) { | 1386 | if ( result == 0 ) { |
1385 | mView->importBday(); | 1387 | mView->importBday(); |
1386 | 1388 | ||
1387 | } | 1389 | } |
1388 | 1390 | ||
1389 | 1391 | ||
1390 | } | 1392 | } |
1391 | void MainWindow::importQtopia() | 1393 | void MainWindow::importQtopia() |
1392 | { | 1394 | { |
1393 | #ifndef DESKTOP_VERSION | 1395 | #ifndef DESKTOP_VERSION |
1394 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1396 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1395 | i18n("When importing a calendar twice\nduplicated events will be ignored!\nYou can create a backup file with\nFile - Save Calendar Backup\nto revert importing"), | 1397 | i18n("When importing a calendar twice\nduplicated events will be ignored!\nYou can create a backup file with\nFile - Save Calendar Backup\nto revert importing"), |