-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 | |||
@@ -1,866 +1,868 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
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 | 23 | ||
24 | #include <qlayout.h> | 24 | #include <qlayout.h> |
25 | #include <qlabel.h> | 25 | #include <qlabel.h> |
26 | #include <qgroupbox.h> | 26 | #include <qgroupbox.h> |
27 | #include <qbuttongroup.h> | 27 | #include <qbuttongroup.h> |
28 | #include <qlineedit.h> | 28 | #include <qlineedit.h> |
29 | #include <qfont.h> | 29 | #include <qfont.h> |
30 | #include <qslider.h> | 30 | #include <qslider.h> |
31 | #include <qfile.h> | 31 | #include <qfile.h> |
32 | #include <qtextstream.h> | 32 | #include <qtextstream.h> |
33 | #include <qcombobox.h> | 33 | #include <qcombobox.h> |
34 | #include <qvbox.h> | 34 | #include <qvbox.h> |
35 | #include <qhbox.h> | 35 | #include <qhbox.h> |
36 | #include <qregexp.h> | 36 | #include <qregexp.h> |
37 | #include <qspinbox.h> | 37 | #include <qspinbox.h> |
38 | #include <qdatetime.h> | 38 | #include <qdatetime.h> |
39 | #include <qcheckbox.h> | 39 | #include <qcheckbox.h> |
40 | #include <qradiobutton.h> | 40 | #include <qradiobutton.h> |
41 | #include <qpushbutton.h> | 41 | #include <qpushbutton.h> |
42 | #include <qstrlist.h> | 42 | #include <qstrlist.h> |
43 | #include <qapplication.h> | 43 | #include <qapplication.h> |
44 | 44 | ||
45 | #include <kcolorbutton.h> | 45 | #include <kcolorbutton.h> |
46 | #include <kdebug.h> | 46 | #include <kdebug.h> |
47 | #include <klocale.h> | 47 | #include <klocale.h> |
48 | #include <kglobal.h> | 48 | #include <kglobal.h> |
49 | #include <kfontdialog.h> | 49 | #include <kfontdialog.h> |
50 | #include <kfiledialog.h> | 50 | #include <kfiledialog.h> |
51 | #include <kmessagebox.h> | 51 | #include <kmessagebox.h> |
52 | #include <kcolordialog.h> | 52 | #include <kcolordialog.h> |
53 | #include <kiconloader.h> | 53 | #include <kiconloader.h> |
54 | #include <kemailsettings.h> | 54 | #include <kemailsettings.h> |
55 | #include <kstandarddirs.h> | 55 | #include <kstandarddirs.h> |
56 | 56 | ||
57 | #include <kurlrequester.h> | 57 | #include <kurlrequester.h> |
58 | #include <klineedit.h> | 58 | #include <klineedit.h> |
59 | 59 | ||
60 | #if defined(USE_SOLARIS) | 60 | #if defined(USE_SOLARIS) |
61 | #include <sys/param.h> | 61 | #include <sys/param.h> |
62 | 62 | ||
63 | #define ZONEINFODIR "/usr/share/lib/zoneinfo" | 63 | #define ZONEINFODIR "/usr/share/lib/zoneinfo" |
64 | #define INITFILE "/etc/default/init" | 64 | #define INITFILE "/etc/default/init" |
65 | #endif | 65 | #endif |
66 | 66 | ||
67 | #include "koprefs.h" | 67 | #include "koprefs.h" |
68 | 68 | ||
69 | #include "koprefsdialog.h" | 69 | #include "koprefsdialog.h" |
70 | #include "kpimglobalprefs.h" | 70 | #include "kpimglobalprefs.h" |
71 | 71 | ||
72 | 72 | ||
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 | ||
123 | 125 | ||
124 | KPrefsDialogWidRadios *syncPrefsGroup = | 126 | KPrefsDialogWidRadios *syncPrefsGroup = |
125 | addWidRadios(i18n("Date Format:"),&(KOPrefs::instance()->mPreferredDate),topFrame); | 127 | addWidRadios(i18n("Date Format:"),&(KOPrefs::instance()->mPreferredDate),topFrame); |
126 | QString format; | 128 | QString format; |
127 | if ( QApplication::desktop()->width() < 480 ) | 129 | if ( QApplication::desktop()->width() < 480 ) |
128 | format = "(%d.%m.%Y)"; | 130 | format = "(%d.%m.%Y)"; |
129 | else | 131 | else |
130 | format = "(%d.%m.%Y|%A %d %B %Y)"; | 132 | format = "(%d.%m.%Y|%A %d %B %Y)"; |
131 | syncPrefsGroup->addRadio(i18n("24.03.2004 "+format)); | 133 | syncPrefsGroup->addRadio(i18n("24.03.2004 "+format)); |
132 | if ( QApplication::desktop()->width() < 480 ) | 134 | if ( QApplication::desktop()->width() < 480 ) |
133 | format = "(%m.%d.%Y)"; | 135 | format = "(%m.%d.%Y)"; |
134 | else | 136 | else |
135 | format = "(%m.%d.%Y|%A %B %d %Y)"; | 137 | format = "(%m.%d.%Y|%A %B %d %Y)"; |
136 | syncPrefsGroup->addRadio(i18n("03.24.2004 "+format)); | 138 | syncPrefsGroup->addRadio(i18n("03.24.2004 "+format)); |
137 | if ( QApplication::desktop()->width() < 480 ) | 139 | if ( QApplication::desktop()->width() < 480 ) |
138 | format = "(%Y-%m-%d)"; | 140 | format = "(%Y-%m-%d)"; |
139 | else | 141 | else |
140 | format = "(%Y-%m-%d|%A %Y %B %d)"; | 142 | format = "(%Y-%m-%d|%A %Y %B %d)"; |
141 | syncPrefsGroup->addRadio(i18n("2004-03-24 "+format)); | 143 | syncPrefsGroup->addRadio(i18n("2004-03-24 "+format)); |
142 | syncPrefsGroup->addRadio(i18n("User defined")); | 144 | syncPrefsGroup->addRadio(i18n("User defined")); |
143 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); | 145 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); |
144 | ++iii; | 146 | ++iii; |
145 | ++iii; | 147 | ++iii; |
146 | QLabel * lab; | 148 | QLabel * lab; |
147 | mUserDateFormatLong = new QLineEdit(topFrame); | 149 | mUserDateFormatLong = new QLineEdit(topFrame); |
148 | lab = new QLabel(mUserDateFormatLong, i18n("User long date:"), topFrame); | 150 | lab = new QLabel(mUserDateFormatLong, i18n("User long date:"), topFrame); |
149 | topLayout->addWidget(lab ,iii,0); | 151 | topLayout->addWidget(lab ,iii,0); |
150 | topLayout->addWidget(mUserDateFormatLong,iii,1); | 152 | topLayout->addWidget(mUserDateFormatLong,iii,1); |
151 | ++iii; | 153 | ++iii; |
152 | mUserDateFormatShort = new QLineEdit(topFrame); | 154 | mUserDateFormatShort = new QLineEdit(topFrame); |
153 | lab = new QLabel(mUserDateFormatShort, i18n("User short date:"), topFrame); | 155 | lab = new QLabel(mUserDateFormatShort, i18n("User short date:"), topFrame); |
154 | topLayout->addWidget(lab ,iii,0); | 156 | topLayout->addWidget(lab ,iii,0); |
155 | topLayout->addWidget(mUserDateFormatShort,iii,1); | 157 | topLayout->addWidget(mUserDateFormatShort,iii,1); |
156 | ++iii; | 158 | ++iii; |
157 | lab = new QLabel( i18n("Monday 19 April 2004: %A %d %B %Y"), topFrame); | 159 | lab = new QLabel( i18n("Monday 19 April 2004: %A %d %B %Y"), topFrame); |
158 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); | 160 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); |
159 | ++iii; | 161 | ++iii; |
160 | lab = new QLabel( i18n("Mon 19.04.04: %a %d.%m.%y"), topFrame); | 162 | lab = new QLabel( i18n("Mon 19.04.04: %a %d.%m.%y"), topFrame); |
161 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); | 163 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); |
162 | ++iii; | 164 | ++iii; |
163 | lab = new QLabel( i18n("Mon, 19.Apr.04: %a, %d.%b.%y"), topFrame); | 165 | lab = new QLabel( i18n("Mon, 19.Apr.04: %a, %d.%b.%y"), topFrame); |
164 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); | 166 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); |
165 | ++iii; | 167 | ++iii; |
166 | #endif | 168 | #endif |
167 | 169 | ||
168 | } | 170 | } |
169 | 171 | ||
170 | void KOPrefsDialog::setupLocaleTab() | 172 | void KOPrefsDialog::setupLocaleTab() |
171 | { | 173 | { |
172 | #if 0 | 174 | #if 0 |
173 | QFrame *topFrame = addPage(i18n("Locale"),0,0); | 175 | QFrame *topFrame = addPage(i18n("Locale"),0,0); |
174 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); | 176 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); |
175 | topLayout->setSpacing(spacingHint()); | 177 | topLayout->setSpacing(spacingHint()); |
176 | topLayout->setMargin(marginHint()); | 178 | topLayout->setMargin(marginHint()); |
177 | int iii = 0; | 179 | int iii = 0; |
178 | KPrefsDialogWidRadios *syncPrefsGroup = | 180 | KPrefsDialogWidRadios *syncPrefsGroup = |
179 | addWidRadios(i18n("Language:(needs restart)"),&(KOPrefs::instance()->mPreferredLanguage),topFrame); | 181 | addWidRadios(i18n("Language:(needs restart)"),&(KOPrefs::instance()->mPreferredLanguage),topFrame); |
180 | syncPrefsGroup->addRadio(i18n("English")); | 182 | syncPrefsGroup->addRadio(i18n("English")); |
181 | syncPrefsGroup->addRadio(i18n("German")); | 183 | syncPrefsGroup->addRadio(i18n("German")); |
182 | syncPrefsGroup->addRadio(i18n("French")); | 184 | syncPrefsGroup->addRadio(i18n("French")); |
183 | syncPrefsGroup->addRadio(i18n("User defined (usertranslation.txt)")); | 185 | syncPrefsGroup->addRadio(i18n("User defined (usertranslation.txt)")); |
184 | if ( QApplication::desktop()->width() < 300 ) | 186 | if ( QApplication::desktop()->width() < 300 ) |
185 | ;// syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); | 187 | ;// syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); |
186 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); | 188 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); |
187 | ++iii; | 189 | ++iii; |
188 | 190 | ||
189 | syncPrefsGroup = | 191 | syncPrefsGroup = |
190 | addWidRadios(i18n("Time Format(nr):"),&(KOPrefs::instance()->mPreferredTime),topFrame); | 192 | addWidRadios(i18n("Time Format(nr):"),&(KOPrefs::instance()->mPreferredTime),topFrame); |
191 | if ( QApplication::desktop()->width() > 300 ) | 193 | if ( QApplication::desktop()->width() > 300 ) |
192 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); | 194 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); |
193 | syncPrefsGroup->addRadio(i18n("24:00")); | 195 | syncPrefsGroup->addRadio(i18n("24:00")); |
194 | syncPrefsGroup->addRadio(i18n("12:00am")); | 196 | syncPrefsGroup->addRadio(i18n("12:00am")); |
195 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); | 197 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); |
196 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); | 198 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); |
197 | ++iii; | 199 | ++iii; |
198 | KPrefsDialogWidBool *sb; | 200 | KPrefsDialogWidBool *sb; |
199 | if ( QApplication::desktop()->width() < 300 ) { | 201 | if ( QApplication::desktop()->width() < 300 ) { |
200 | sb = | 202 | sb = |
201 | addWidBool(i18n("Week starts on Sunday"), | 203 | addWidBool(i18n("Week starts on Sunday"), |
202 | &(KOPrefs::instance()->mWeekStartsOnSunday),topFrame); | 204 | &(KOPrefs::instance()->mWeekStartsOnSunday),topFrame); |
203 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); | 205 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); |
204 | ++iii; | 206 | ++iii; |
205 | sb = | 207 | sb = |
206 | addWidBool(i18n("Use short date in (WN/E) view"), | 208 | addWidBool(i18n("Use short date in (WN/E) view"), |
207 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); | 209 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); |
208 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); | 210 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); |
209 | } | 211 | } |
210 | else { | 212 | else { |
211 | QWidget * hb = new QWidget( topFrame ); | 213 | QWidget * hb = new QWidget( topFrame ); |
212 | QHBoxLayout *hbLayout = new QHBoxLayout(hb); | 214 | QHBoxLayout *hbLayout = new QHBoxLayout(hb); |
213 | sb = | 215 | sb = |
214 | addWidBool(i18n("Week starts on Sunday"), | 216 | addWidBool(i18n("Week starts on Sunday"), |
215 | &(KOPrefs::instance()->mWeekStartsOnSunday),hb); | 217 | &(KOPrefs::instance()->mWeekStartsOnSunday),hb); |
216 | hbLayout->addWidget(sb->checkBox() ); | 218 | hbLayout->addWidget(sb->checkBox() ); |
217 | sb = | 219 | sb = |
218 | addWidBool(i18n("Use short date in (WN/E) view"), | 220 | addWidBool(i18n("Use short date in (WN/E) view"), |
219 | &(KOPrefs::instance()->mShortDateInViewer),hb); | 221 | &(KOPrefs::instance()->mShortDateInViewer),hb); |
220 | hbLayout->addWidget(sb->checkBox() ); | 222 | hbLayout->addWidget(sb->checkBox() ); |
221 | topLayout->addMultiCellWidget(hb, iii,iii,0,1); | 223 | topLayout->addMultiCellWidget(hb, iii,iii,0,1); |
222 | 224 | ||
223 | } | 225 | } |
224 | // KPrefsDialogWidBool *sb; //#ifndef DESKTOP_VERSION | 226 | // KPrefsDialogWidBool *sb; //#ifndef DESKTOP_VERSION |
225 | #if 0 | 227 | #if 0 |
226 | ++iii; | 228 | ++iii; |
227 | sb = | 229 | sb = |
228 | addWidBool(i18n("Quick load/save (w/o Unicode)"), | 230 | addWidBool(i18n("Quick load/save (w/o Unicode)"), |
229 | &(KOPrefs::instance()->mUseQuicksave),topFrame); | 231 | &(KOPrefs::instance()->mUseQuicksave),topFrame); |
230 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); | 232 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); |
231 | #endif | 233 | #endif |
232 | #endif | 234 | #endif |
233 | } | 235 | } |
234 | void KOPrefsDialog::showSyncPage() | 236 | void KOPrefsDialog::showSyncPage() |
235 | { | 237 | { |
236 | showPage ( 0 ) ; | 238 | showPage ( 0 ) ; |
237 | kdelibcfg->showTimeZoneTab() ; | 239 | kdelibcfg->showTimeZoneTab() ; |
238 | 240 | ||
239 | } | 241 | } |
240 | void KOPrefsDialog::setupSyncAlgTab() | 242 | void KOPrefsDialog::setupSyncAlgTab() |
241 | { | 243 | { |
242 | #if 0 | 244 | #if 0 |
243 | QLabel * lab; | 245 | QLabel * lab; |
244 | QFrame *topFrame = addPage(i18n("Sync Prefs"),0,0); | 246 | QFrame *topFrame = addPage(i18n("Sync Prefs"),0,0); |
245 | mSetupSyncAlgTab = topFrame; | 247 | mSetupSyncAlgTab = topFrame; |
246 | QGridLayout *topLayout = new QGridLayout(topFrame,6,2); | 248 | QGridLayout *topLayout = new QGridLayout(topFrame,6,2); |
247 | topLayout->setSpacing(spacingHint()); | 249 | topLayout->setSpacing(spacingHint()); |
248 | topLayout->setMargin(marginHint()); | 250 | topLayout->setMargin(marginHint()); |
249 | int iii = 0; | 251 | int iii = 0; |
250 | 252 | ||
251 | KPrefsDialogWidBool *sb = | 253 | KPrefsDialogWidBool *sb = |
252 | addWidBool(i18n("Ask for preferences before syncing"), | 254 | addWidBool(i18n("Ask for preferences before syncing"), |
253 | &(KOPrefs::instance()->mAskForPreferences),topFrame); | 255 | &(KOPrefs::instance()->mAskForPreferences),topFrame); |
254 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); | 256 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); |
255 | 257 | ||
256 | ++iii; | 258 | ++iii; |
257 | 259 | ||
258 | KPrefsDialogWidRadios *syncPrefsGroup = | 260 | KPrefsDialogWidRadios *syncPrefsGroup = |
259 | addWidRadios(i18n("Sync preferences:"),&(KOPrefs::instance()->mSyncAlgoPrefs), | 261 | addWidRadios(i18n("Sync preferences:"),&(KOPrefs::instance()->mSyncAlgoPrefs), |
260 | topFrame); | 262 | topFrame); |
261 | syncPrefsGroup->addRadio(i18n("Take local entry on conflict")); | 263 | syncPrefsGroup->addRadio(i18n("Take local entry on conflict")); |
262 | syncPrefsGroup->addRadio(i18n("Take remote entry on conflict")); | 264 | syncPrefsGroup->addRadio(i18n("Take remote entry on conflict")); |
263 | syncPrefsGroup->addRadio(i18n("Take newest entry on conflict")); | 265 | syncPrefsGroup->addRadio(i18n("Take newest entry on conflict")); |
264 | syncPrefsGroup->addRadio(i18n("Ask for every entry on conflict")); | 266 | syncPrefsGroup->addRadio(i18n("Ask for every entry on conflict")); |
265 | syncPrefsGroup->addRadio(i18n("Force take local entry always")); | 267 | syncPrefsGroup->addRadio(i18n("Force take local entry always")); |
266 | syncPrefsGroup->addRadio(i18n("Force take remote entry always")); | 268 | syncPrefsGroup->addRadio(i18n("Force take remote entry always")); |
267 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); | 269 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); |
268 | ++iii; | 270 | ++iii; |
269 | sb = | 271 | sb = |
270 | addWidBool(i18n("Show summary after syncing"), | 272 | addWidBool(i18n("Show summary after syncing"), |
271 | &(KOPrefs::instance()->mShowSyncSummary),topFrame); | 273 | &(KOPrefs::instance()->mShowSyncSummary),topFrame); |
272 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); | 274 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); |
273 | 275 | ||
274 | ++iii; | 276 | ++iii; |
275 | #endif | 277 | #endif |
276 | 278 | ||
277 | 279 | ||
278 | 280 | ||
279 | } | 281 | } |
280 | 282 | ||
281 | 283 | ||
282 | void KOPrefsDialog::setupSyncTab() | 284 | void KOPrefsDialog::setupSyncTab() |
283 | { | 285 | { |
284 | #if 0 | 286 | #if 0 |
285 | QLabel * lab; | 287 | QLabel * lab; |
286 | QFrame *topFrame = addPage(i18n("Sync Network"),0,0); | 288 | QFrame *topFrame = addPage(i18n("Sync Network"),0,0); |
287 | QGridLayout *topLayout = new QGridLayout(topFrame,6,2); | 289 | QGridLayout *topLayout = new QGridLayout(topFrame,6,2); |
288 | topLayout->setSpacing(spacingHint()); | 290 | topLayout->setSpacing(spacingHint()); |
289 | topLayout->setMargin(marginHint()); | 291 | topLayout->setMargin(marginHint()); |
290 | lab = new QLabel(i18n("Remote syncing (via ssh/scp)\nnetwork settings "), topFrame); | 292 | lab = new QLabel(i18n("Remote syncing (via ssh/scp)\nnetwork settings "), topFrame); |
291 | int iii = 0; | 293 | int iii = 0; |
292 | topLayout->addMultiCellWidget(lab , iii,iii,0,1); | 294 | topLayout->addMultiCellWidget(lab , iii,iii,0,1); |
293 | ++iii; | 295 | ++iii; |
294 | 296 | ||
295 | mRemoteIPEdit = new QLineEdit(topFrame); | 297 | mRemoteIPEdit = new QLineEdit(topFrame); |
296 | lab = new QLabel(mRemoteIPEdit, i18n("Remote IP:"), topFrame); | 298 | lab = new QLabel(mRemoteIPEdit, i18n("Remote IP:"), topFrame); |
297 | topLayout->addWidget(lab ,iii,0); | 299 | topLayout->addWidget(lab ,iii,0); |
298 | topLayout->addWidget(mRemoteIPEdit,iii,1); | 300 | topLayout->addWidget(mRemoteIPEdit,iii,1); |
299 | ++iii; | 301 | ++iii; |
300 | mRemoteUser = new QLineEdit(topFrame); | 302 | mRemoteUser = new QLineEdit(topFrame); |
301 | lab = new QLabel(mRemoteUser, i18n("Remote user:"), topFrame); | 303 | lab = new QLabel(mRemoteUser, i18n("Remote user:"), topFrame); |
302 | topLayout->addWidget(lab ,iii,0); | 304 | topLayout->addWidget(lab ,iii,0); |
303 | topLayout->addWidget(mRemoteUser, iii,1); | 305 | topLayout->addWidget(mRemoteUser, iii,1); |
304 | ++iii; | 306 | ++iii; |
305 | 307 | ||
306 | mRemoteFile = new QLineEdit(topFrame); | 308 | mRemoteFile = new QLineEdit(topFrame); |
307 | lab = new QLabel(mRemoteFile, i18n("Remote file:"), topFrame); | 309 | lab = new QLabel(mRemoteFile, i18n("Remote file:"), topFrame); |
308 | topLayout->addWidget(lab ,iii,0); | 310 | topLayout->addWidget(lab ,iii,0); |
309 | topLayout->addWidget(mRemoteFile,iii,1); | 311 | topLayout->addWidget(mRemoteFile,iii,1); |
310 | ++iii; | 312 | ++iii; |
311 | 313 | ||
312 | mLocalTempFile = new QLineEdit(topFrame); | 314 | mLocalTempFile = new QLineEdit(topFrame); |
313 | lab = new QLabel(mLocalTempFile, i18n("Local temp file:"), topFrame); | 315 | lab = new QLabel(mLocalTempFile, i18n("Local temp file:"), topFrame); |
314 | topLayout->addWidget(lab ,iii,0); | 316 | topLayout->addWidget(lab ,iii,0); |
315 | topLayout->addWidget(mLocalTempFile,iii,1); | 317 | topLayout->addWidget(mLocalTempFile,iii,1); |
316 | ++iii; | 318 | ++iii; |
317 | 319 | ||
318 | KPrefsDialogWidBool *wb = | 320 | KPrefsDialogWidBool *wb = |
319 | addWidBool(i18n("Write back synced file"), | 321 | addWidBool(i18n("Write back synced file"), |
320 | &(KOPrefs::instance()->mWriteBackFile),topFrame); | 322 | &(KOPrefs::instance()->mWriteBackFile),topFrame); |
321 | topLayout->addMultiCellWidget(wb->checkBox(), iii,iii,0,1); | 323 | topLayout->addMultiCellWidget(wb->checkBox(), iii,iii,0,1); |
322 | ++iii; | 324 | ++iii; |
323 | wb = | 325 | wb = |
324 | addWidBool(i18n("Write back existing entries only"), | 326 | addWidBool(i18n("Write back existing entries only"), |
325 | &(KOPrefs::instance()->mWriteBackExistingOnly),topFrame); | 327 | &(KOPrefs::instance()->mWriteBackExistingOnly),topFrame); |
326 | topLayout->addMultiCellWidget(wb->checkBox(), iii,iii,0,1); | 328 | topLayout->addMultiCellWidget(wb->checkBox(), iii,iii,0,1); |
327 | ++iii; | 329 | ++iii; |
328 | 330 | ||
329 | #endif | 331 | #endif |
330 | } | 332 | } |
331 | 333 | ||
332 | void KOPrefsDialog::setupMainTab() | 334 | void KOPrefsDialog::setupMainTab() |
333 | { | 335 | { |
334 | QFrame *topFrame = addPage(i18n("General"),0,0); | 336 | QFrame *topFrame = addPage(i18n("General"),0,0); |
335 | // DesktopIcon("identity",KIcon::SizeMedium)); | 337 | // DesktopIcon("identity",KIcon::SizeMedium)); |
336 | 338 | ||
337 | QGridLayout *topLayout = new QGridLayout(topFrame,6,2); | 339 | QGridLayout *topLayout = new QGridLayout(topFrame,6,2); |
338 | topLayout->setSpacing(spacingHint()); | 340 | topLayout->setSpacing(spacingHint()); |
339 | topLayout->setMargin(marginHint()); | 341 | topLayout->setMargin(marginHint()); |
340 | 342 | ||
341 | // KPrefsDialogWidBool *emailControlCenter = | 343 | // KPrefsDialogWidBool *emailControlCenter = |
342 | // addWidBool(i18n("&Use email settings from Control Center"), | 344 | // addWidBool(i18n("&Use email settings from Control Center"), |
343 | // &(KOPrefs::instance()->mEmailControlCenter),topFrame); | 345 | // &(KOPrefs::instance()->mEmailControlCenter),topFrame); |
344 | // topLayout->addMultiCellWidget(emailControlCenter->checkBox(),0,0,0,1); | 346 | // topLayout->addMultiCellWidget(emailControlCenter->checkBox(),0,0,0,1); |
345 | // connect(emailControlCenter->checkBox(),SIGNAL(toggled(bool)), | 347 | // connect(emailControlCenter->checkBox(),SIGNAL(toggled(bool)), |
346 | // SLOT(toggleEmailSettings(bool))); | 348 | // SLOT(toggleEmailSettings(bool))); |
347 | 349 | ||
348 | mNameEdit = new QLineEdit(topFrame); | 350 | mNameEdit = new QLineEdit(topFrame); |
349 | mNameLabel = new QLabel(mNameEdit, i18n("Full &name:"), topFrame); | 351 | mNameLabel = new QLabel(mNameEdit, i18n("Full &name:"), topFrame); |
350 | topLayout->addWidget(mNameLabel,0,0); | 352 | topLayout->addWidget(mNameLabel,0,0); |
351 | topLayout->addWidget(mNameEdit,0,1); | 353 | topLayout->addWidget(mNameEdit,0,1); |
352 | 354 | ||
353 | mEmailEdit = new QLineEdit(topFrame); | 355 | mEmailEdit = new QLineEdit(topFrame); |
354 | mEmailLabel = new QLabel(mEmailEdit, i18n("E&mail address:"),topFrame); | 356 | mEmailLabel = new QLabel(mEmailEdit, i18n("E&mail address:"),topFrame); |
355 | topLayout->addWidget(mEmailLabel,1,0); | 357 | topLayout->addWidget(mEmailLabel,1,0); |
356 | topLayout->addWidget(mEmailEdit,1,1); | 358 | topLayout->addWidget(mEmailEdit,1,1); |
357 | KPrefsDialogWidBool *wb; | 359 | KPrefsDialogWidBool *wb; |
358 | QHBox *dummy; | 360 | QHBox *dummy; |
359 | if ( QApplication::desktop()->width() > 480 ) { | 361 | if ( QApplication::desktop()->width() > 480 ) { |
360 | dummy = new QHBox(topFrame); | 362 | dummy = new QHBox(topFrame); |
361 | } else { | 363 | } else { |
362 | dummy = new QVBox(topFrame); | 364 | dummy = new QVBox(topFrame); |
363 | } | 365 | } |
364 | 366 | ||
365 | topLayout->addMultiCellWidget(dummy, 2,2,0,1); | 367 | topLayout->addMultiCellWidget(dummy, 2,2,0,1); |
366 | addWidBool(i18n("Full menu bar(nr)"), | 368 | addWidBool(i18n("Full menu bar(nr)"), |
367 | &(KOPrefs::instance()->mShowFullMenu),dummy); | 369 | &(KOPrefs::instance()->mShowFullMenu),dummy); |
368 | 370 | ||
369 | 371 | ||
370 | addWidBool(i18n("Mini icons in toolbar(nr)"), | 372 | addWidBool(i18n("Mini icons in toolbar(nr)"), |
371 | &(KOPrefs::instance()->mToolBarMiniIcons),dummy); | 373 | &(KOPrefs::instance()->mToolBarMiniIcons),dummy); |
372 | 374 | ||
373 | 375 | ||
374 | dummy = new QHBox(topFrame); | 376 | dummy = new QHBox(topFrame); |
375 | new QLabel(i18n("Days in What's Next:"),dummy); | 377 | new QLabel(i18n("Days in What's Next:"),dummy); |
376 | mWhatsNextSpin = new QSpinBox(1,14,1,dummy); | 378 | mWhatsNextSpin = new QSpinBox(1,14,1,dummy); |
377 | 379 | ||
378 | topLayout->addMultiCellWidget(dummy,3,3,0,1); | 380 | topLayout->addMultiCellWidget(dummy,3,3,0,1); |
379 | 381 | ||
380 | 382 | ||
381 | 383 | ||
382 | dummy = new QHBox(topFrame); | 384 | dummy = new QHBox(topFrame); |
383 | new QLabel(i18n("Days in Next-X-Days:"),dummy); | 385 | new QLabel(i18n("Days in Next-X-Days:"),dummy); |
384 | mNextXDaysSpin = new QSpinBox(2,14,1,dummy); | 386 | mNextXDaysSpin = new QSpinBox(2,14,1,dummy); |
385 | 387 | ||
386 | topLayout->addMultiCellWidget(dummy,4,4,0,1); | 388 | topLayout->addMultiCellWidget(dummy,4,4,0,1); |
387 | 389 | ||
388 | QHBox *prioBox = new QHBox(topFrame); | 390 | QHBox *prioBox = new QHBox(topFrame); |
389 | // intervalBox->setSpacing(spacingHint()); | 391 | // intervalBox->setSpacing(spacingHint()); |
390 | topLayout->addMultiCellWidget(prioBox,5,5,0,1); | 392 | topLayout->addMultiCellWidget(prioBox,5,5,0,1); |
391 | QString messa = i18n("Show topmost todo prios in What's Next:"); | 393 | QString messa = i18n("Show topmost todo prios in What's Next:"); |
392 | 394 | ||
393 | if ( QApplication::desktop()->width() < 300 ) | 395 | if ( QApplication::desktop()->width() < 300 ) |
394 | messa = i18n("Show topmost todo prios in What's N.:"); | 396 | messa = i18n("Show topmost todo prios in What's N.:"); |
395 | QLabel *prioLabel = new QLabel(messa, prioBox); | 397 | QLabel *prioLabel = new QLabel(messa, prioBox); |
396 | mPrioSpin = new QSpinBox(0,5,1,prioBox); | 398 | mPrioSpin = new QSpinBox(0,5,1,prioBox); |
397 | if ( QApplication::desktop()->width() < 300 ) | 399 | if ( QApplication::desktop()->width() < 300 ) |
398 | mPrioSpin->setFixedWidth( 40 ); | 400 | mPrioSpin->setFixedWidth( 40 ); |
399 | 401 | ||
400 | // KPrefsDialogWidBool *bcc = | 402 | // KPrefsDialogWidBool *bcc = |
401 | // addWidBool(i18n("Send copy to owner when mailing events"), | 403 | // addWidBool(i18n("Send copy to owner when mailing events"), |
402 | // &(KOPrefs::instance()->mBcc),topFrame); | 404 | // &(KOPrefs::instance()->mBcc),topFrame); |
403 | // topLayout->addMultiCellWidget(bcc->checkBox(),4,4,0,1); | 405 | // topLayout->addMultiCellWidget(bcc->checkBox(),4,4,0,1); |
404 | 406 | ||
405 | 407 | ||
406 | // QGroupBox *autoSaveGroup = new QGroupBox(1,Horizontal,i18n("Auto-Save"), topFrame); | 408 | // QGroupBox *autoSaveGroup = new QGroupBox(1,Horizontal,i18n("Auto-Save"), topFrame); |
407 | //topLayout->addMultiCellWidget(autoSaveGroup,6,6,0,1); | 409 | //topLayout->addMultiCellWidget(autoSaveGroup,6,6,0,1); |
408 | 410 | ||
409 | // addWidBool(i18n("Enable automatic saving of calendar"), | 411 | // addWidBool(i18n("Enable automatic saving of calendar"), |
410 | // &(KOPrefs::instance()->mAutoSave),autoSaveGroup); | 412 | // &(KOPrefs::instance()->mAutoSave),autoSaveGroup); |
411 | 413 | ||
412 | QHBox *intervalBox = new QHBox(topFrame); | 414 | QHBox *intervalBox = new QHBox(topFrame); |
413 | // intervalBox->setSpacing(spacingHint()); | 415 | // intervalBox->setSpacing(spacingHint()); |
414 | topLayout->addMultiCellWidget(intervalBox,6,6,0,1); | 416 | topLayout->addMultiCellWidget(intervalBox,6,6,0,1); |
415 | QLabel *autoSaveIntervalLabel = new QLabel(i18n("Auto save delay in minutes:"),intervalBox); | 417 | QLabel *autoSaveIntervalLabel = new QLabel(i18n("Auto save delay in minutes:"),intervalBox); |
416 | mAutoSaveIntervalSpin = new QSpinBox(0,500,1,intervalBox); | 418 | mAutoSaveIntervalSpin = new QSpinBox(0,500,1,intervalBox); |
417 | autoSaveIntervalLabel->setBuddy(mAutoSaveIntervalSpin); | 419 | autoSaveIntervalLabel->setBuddy(mAutoSaveIntervalSpin); |
418 | /* | 420 | /* |
419 | QHBox * agendasize = new QHBox ( topFrame ); | 421 | QHBox * agendasize = new QHBox ( topFrame ); |
420 | 422 | ||
421 | new QLabel (i18n("AllDayAgenda Height:"), agendasize ); | 423 | new QLabel (i18n("AllDayAgenda Height:"), agendasize ); |
422 | 424 | ||
423 | 425 | ||
424 | mHourSizeSlider = new QSlider(24,47,1,24,Horizontal,agendasize); | 426 | mHourSizeSlider = new QSlider(24,47,1,24,Horizontal,agendasize); |
425 | topLayout->addMultiCellWidget(agendasize,7,7,0,1); | 427 | topLayout->addMultiCellWidget(agendasize,7,7,0,1); |
426 | */ | 428 | */ |
427 | KPrefsDialogWidBool *verticalScreen = | 429 | KPrefsDialogWidBool *verticalScreen = |
428 | addWidBool(i18n("Show vertical screen (Needs restart)"), | 430 | addWidBool(i18n("Show vertical screen (Needs restart)"), |
429 | &(KOPrefs::instance()->mVerticalScreen),topFrame); | 431 | &(KOPrefs::instance()->mVerticalScreen),topFrame); |
430 | //topLayout->addWidget(verticalScreen->checkBox(),ii++,0); | 432 | //topLayout->addWidget(verticalScreen->checkBox(),ii++,0); |
431 | topLayout->addMultiCellWidget(verticalScreen->checkBox(),7,7,0,1); | 433 | topLayout->addMultiCellWidget(verticalScreen->checkBox(),7,7,0,1); |
432 | 434 | ||
433 | KPrefsDialogWidBool *ask = | 435 | KPrefsDialogWidBool *ask = |
434 | addWidBool(i18n("Ask for quit when closing KO/Pi"), | 436 | addWidBool(i18n("Ask for quit when closing KO/Pi"), |
435 | &(KOPrefs::instance()->mAskForQuit),topFrame); | 437 | &(KOPrefs::instance()->mAskForQuit),topFrame); |
436 | topLayout->addMultiCellWidget(ask->checkBox(),8,8,0,1); | 438 | topLayout->addMultiCellWidget(ask->checkBox(),8,8,0,1); |
437 | 439 | ||
438 | 440 | ||
439 | /* | 441 | /* |
440 | KPrefsDialogWidBool *confirmCheck = | 442 | KPrefsDialogWidBool *confirmCheck = |
441 | addWidBool(i18n("Confirm &deletes"),&(KOPrefs::instance()->mConfirm), | 443 | addWidBool(i18n("Confirm &deletes"),&(KOPrefs::instance()->mConfirm), |
442 | topFrame); | 444 | topFrame); |
443 | topLayout->addMultiCellWidget(confirmCheck->checkBox(),7,7,0,1); | 445 | topLayout->addMultiCellWidget(confirmCheck->checkBox(),7,7,0,1); |
444 | 446 | ||
445 | 447 | ||
446 | mEnableGroupScheduling = | 448 | mEnableGroupScheduling = |
447 | addWidBool(i18n("Enable group scheduling"), | 449 | addWidBool(i18n("Enable group scheduling"), |
448 | &(KOPrefs::instance()->mEnableGroupScheduling),topFrame); | 450 | &(KOPrefs::instance()->mEnableGroupScheduling),topFrame); |
449 | topLayout->addWidget(mEnableGroupScheduling->checkBox(),8,0); | 451 | topLayout->addWidget(mEnableGroupScheduling->checkBox(),8,0); |
450 | connect(mEnableGroupScheduling->checkBox(),SIGNAL(clicked()), | 452 | connect(mEnableGroupScheduling->checkBox(),SIGNAL(clicked()), |
451 | SLOT(warningGroupScheduling())); | 453 | SLOT(warningGroupScheduling())); |
452 | 454 | ||
453 | mEnableProjectView = | 455 | mEnableProjectView = |
454 | addWidBool(i18n("Enable project view"), | 456 | addWidBool(i18n("Enable project view"), |
455 | &(KOPrefs::instance()->mEnableProjectView),topFrame); | 457 | &(KOPrefs::instance()->mEnableProjectView),topFrame); |
456 | topLayout->addWidget(mEnableProjectView->checkBox(),9,0); | 458 | topLayout->addWidget(mEnableProjectView->checkBox(),9,0); |
457 | connect(mEnableProjectView->checkBox(),SIGNAL(clicked()), | 459 | connect(mEnableProjectView->checkBox(),SIGNAL(clicked()), |
458 | SLOT(warningProjectView())); | 460 | SLOT(warningProjectView())); |
459 | 461 | ||
460 | // Can't be disabled anymore | 462 | // Can't be disabled anymore |
461 | mEnableGroupScheduling->checkBox()->hide(); | 463 | mEnableGroupScheduling->checkBox()->hide(); |
462 | 464 | ||
463 | // Disable setting, because this feature now becomes stable | 465 | // Disable setting, because this feature now becomes stable |
464 | mEnableProjectView->checkBox()->hide(); | 466 | mEnableProjectView->checkBox()->hide(); |
465 | 467 | ||
466 | KPrefsDialogWidRadios *defaultFormatGroup = | 468 | KPrefsDialogWidRadios *defaultFormatGroup = |
467 | addWidRadios(i18n("Default Calendar Format"), | 469 | addWidRadios(i18n("Default Calendar Format"), |
468 | &(KOPrefs::instance()->mDefaultFormat),topFrame); | 470 | &(KOPrefs::instance()->mDefaultFormat),topFrame); |
469 | defaultFormatGroup->addRadio(i18n("vCalendar")); | 471 | defaultFormatGroup->addRadio(i18n("vCalendar")); |
470 | defaultFormatGroup->addRadio(i18n("iCalendar")); | 472 | defaultFormatGroup->addRadio(i18n("iCalendar")); |
471 | 473 | ||
472 | topLayout->addMultiCellWidget(defaultFormatGroup->groupBox(),10,10,0,1); | 474 | topLayout->addMultiCellWidget(defaultFormatGroup->groupBox(),10,10,0,1); |
473 | 475 | ||
474 | // Default format unconditionally is iCalendar | 476 | // Default format unconditionally is iCalendar |
475 | defaultFormatGroup->groupBox()->hide(); | 477 | defaultFormatGroup->groupBox()->hide(); |
476 | 478 | ||
477 | KPrefsDialogWidRadios *mailClientGroup = | 479 | KPrefsDialogWidRadios *mailClientGroup = |
478 | addWidRadios(i18n("Mail Client"),&(KOPrefs::instance()->mMailClient), | 480 | addWidRadios(i18n("Mail Client"),&(KOPrefs::instance()->mMailClient), |
479 | topFrame); | 481 | topFrame); |
480 | mailClientGroup->addRadio(i18n("KMail")); | 482 | mailClientGroup->addRadio(i18n("KMail")); |
481 | mailClientGroup->addRadio(i18n("Sendmail")); | 483 | mailClientGroup->addRadio(i18n("Sendmail")); |
482 | topLayout->addMultiCellWidget(mailClientGroup->groupBox(),11,11,0,1); | 484 | topLayout->addMultiCellWidget(mailClientGroup->groupBox(),11,11,0,1); |
483 | 485 | ||
484 | KPrefsDialogWidBool *htmlsave = | 486 | KPrefsDialogWidBool *htmlsave = |
485 | addWidBool(i18n("Export to HTML with every save"),&(KOPrefs::instance()->mHtmlWithSave), | 487 | addWidBool(i18n("Export to HTML with every save"),&(KOPrefs::instance()->mHtmlWithSave), |
486 | topFrame); | 488 | topFrame); |
487 | topLayout->addMultiCellWidget(htmlsave->checkBox(),12,12,0,1); | 489 | topLayout->addMultiCellWidget(htmlsave->checkBox(),12,12,0,1); |
488 | 490 | ||
489 | KPrefsDialogWidRadios *destinationGroup = | 491 | KPrefsDialogWidRadios *destinationGroup = |
490 | addWidRadios(i18n("New Events/Todos should"),&(KOPrefs::instance()->mDestination), | 492 | addWidRadios(i18n("New Events/Todos should"),&(KOPrefs::instance()->mDestination), |
491 | topFrame); | 493 | topFrame); |
492 | destinationGroup->addRadio(i18n("be added to the standard resource")); | 494 | destinationGroup->addRadio(i18n("be added to the standard resource")); |
493 | destinationGroup->addRadio(i18n("be asked which resource to use")); | 495 | destinationGroup->addRadio(i18n("be asked which resource to use")); |
494 | topLayout->addMultiCellWidget(destinationGroup->groupBox(),13,13,0,1); | 496 | topLayout->addMultiCellWidget(destinationGroup->groupBox(),13,13,0,1); |
495 | 497 | ||
496 | topLayout->setRowStretch(14,1); | 498 | topLayout->setRowStretch(14,1); |
497 | */ | 499 | */ |
498 | } | 500 | } |
499 | 501 | ||
500 | 502 | ||
501 | void KOPrefsDialog::setupTimeTab() | 503 | void KOPrefsDialog::setupTimeTab() |
502 | { | 504 | { |
503 | QFrame *topFrame = addPage(i18n("Time"),0,0); | 505 | QFrame *topFrame = addPage(i18n("Time"),0,0); |
504 | // DesktopIcon("clock",KIcon::SizeMedium)); | 506 | // DesktopIcon("clock",KIcon::SizeMedium)); |
505 | 507 | ||
506 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); | 508 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); |
507 | topLayout->setSpacing(spacingHint()); | 509 | topLayout->setSpacing(spacingHint()); |
508 | topLayout->setMargin(marginHint()); | 510 | topLayout->setMargin(marginHint()); |
509 | 511 | ||
510 | QHBox *dummy = new QHBox(topFrame); | 512 | QHBox *dummy = new QHBox(topFrame); |
511 | KPrefsDialogWidTime *dayBegins = | 513 | KPrefsDialogWidTime *dayBegins = |
512 | addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), | 514 | addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), |
513 | dummy); | 515 | dummy); |
514 | //topLayout->addWidget(dayBegins->label(),2,0); | 516 | //topLayout->addWidget(dayBegins->label(),2,0); |
515 | 517 | ||
516 | //topLayout->addWidget(dayBegins->spinBox(),2,1); | 518 | //topLayout->addWidget(dayBegins->spinBox(),2,1); |
517 | topLayout->addMultiCellWidget(dummy,0,0,0,1); | 519 | topLayout->addMultiCellWidget(dummy,0,0,0,1); |
518 | 520 | ||
519 | topLayout->addWidget(new QLabel(i18n("Default appointment time:"), | 521 | topLayout->addWidget(new QLabel(i18n("Default appointment time:"), |
520 | topFrame),1,0); | 522 | topFrame),1,0); |
521 | mStartTimeSpin = new QSpinBox(0,23,1,topFrame); | 523 | mStartTimeSpin = new QSpinBox(0,23,1,topFrame); |
522 | mStartTimeSpin->setSuffix(":00"); | 524 | mStartTimeSpin->setSuffix(":00"); |
523 | topLayout->addWidget(mStartTimeSpin,1,1); | 525 | topLayout->addWidget(mStartTimeSpin,1,1); |
524 | 526 | ||
525 | topLayout->addWidget(new QLabel(i18n("Def. duration of new app.:"), | 527 | topLayout->addWidget(new QLabel(i18n("Def. duration of new app.:"), |
526 | topFrame),2,0); | 528 | topFrame),2,0); |
527 | mDefaultDurationSpin = new QSpinBox(0,23,1,topFrame); | 529 | mDefaultDurationSpin = new QSpinBox(0,23,1,topFrame); |
528 | mDefaultDurationSpin->setSuffix(":00"); | 530 | mDefaultDurationSpin->setSuffix(":00"); |
529 | topLayout->addWidget(mDefaultDurationSpin,2,1); | 531 | topLayout->addWidget(mDefaultDurationSpin,2,1); |
530 | 532 | ||
531 | QStringList alarmList; | 533 | QStringList alarmList; |
532 | alarmList << i18n("1 minute") << i18n("5 minutes") << i18n("10 minutes") | 534 | alarmList << i18n("1 minute") << i18n("5 minutes") << i18n("10 minutes") |
533 | << i18n("15 minutes") << i18n("30 minutes")<< i18n("1 hour")<< i18n("3 hours") << i18n("24 hours") ; | 535 | << i18n("15 minutes") << i18n("30 minutes")<< i18n("1 hour")<< i18n("3 hours") << i18n("24 hours") ; |
534 | topLayout->addWidget(new QLabel(i18n("Default alarm time:"),topFrame), | 536 | topLayout->addWidget(new QLabel(i18n("Default alarm time:"),topFrame), |
535 | 3,0); | 537 | 3,0); |
536 | mAlarmTimeCombo = new QComboBox(topFrame); | 538 | mAlarmTimeCombo = new QComboBox(topFrame); |
537 | mAlarmTimeCombo->insertStringList(alarmList); | 539 | mAlarmTimeCombo->insertStringList(alarmList); |
538 | topLayout->addWidget(mAlarmTimeCombo,3,1); | 540 | topLayout->addWidget(mAlarmTimeCombo,3,1); |
539 | 541 | ||
540 | 542 | ||
541 | QGroupBox *workingHoursGroup = new QGroupBox(1,Horizontal, | 543 | QGroupBox *workingHoursGroup = new QGroupBox(1,Horizontal, |
542 | i18n("Working Hours"), | 544 | i18n("Working Hours"), |
543 | topFrame); | 545 | topFrame); |
544 | topLayout->addMultiCellWidget(workingHoursGroup,4,4,0,1); | 546 | topLayout->addMultiCellWidget(workingHoursGroup,4,4,0,1); |
545 | workingHoursGroup->layout()->setSpacing( 0 ); | 547 | workingHoursGroup->layout()->setSpacing( 0 ); |
546 | workingHoursGroup->layout()->setMargin( 4 ); | 548 | workingHoursGroup->layout()->setMargin( 4 ); |
547 | QHBox *workStartBox = new QHBox(workingHoursGroup); | 549 | QHBox *workStartBox = new QHBox(workingHoursGroup); |
548 | // workStartBox->setMargin( 0 ); | 550 | // workStartBox->setMargin( 0 ); |
549 | addWidTime(i18n("Daily starting hour:"), | 551 | addWidTime(i18n("Daily starting hour:"), |
550 | &(KOPrefs::instance()->mWorkingHoursStart),workStartBox); | 552 | &(KOPrefs::instance()->mWorkingHoursStart),workStartBox); |
551 | 553 | ||
552 | QHBox *workEndBox = new QHBox(workingHoursGroup); | 554 | QHBox *workEndBox = new QHBox(workingHoursGroup); |
553 | //workEndBox->setMargin( 0 ); | 555 | //workEndBox->setMargin( 0 ); |
554 | addWidTime(i18n("Daily ending hour:"), | 556 | addWidTime(i18n("Daily ending hour:"), |
555 | &(KOPrefs::instance()->mWorkingHoursEnd),workEndBox); | 557 | &(KOPrefs::instance()->mWorkingHoursEnd),workEndBox); |
556 | QVBox *excludeBox = new QVBox(workingHoursGroup); | 558 | QVBox *excludeBox = new QVBox(workingHoursGroup); |
557 | //excludeBox->setMargin( 0 ); | 559 | //excludeBox->setMargin( 0 ); |
558 | addWidBool(i18n("Exclude holidays"), | 560 | addWidBool(i18n("Exclude holidays"), |
559 | &(KOPrefs::instance()->mExcludeHolidays),excludeBox); | 561 | &(KOPrefs::instance()->mExcludeHolidays),excludeBox); |
560 | 562 | ||
561 | addWidBool(i18n("Exclude Saturdays"), | 563 | addWidBool(i18n("Exclude Saturdays"), |
562 | &(KOPrefs::instance()->mExcludeSaturdays),excludeBox); | 564 | &(KOPrefs::instance()->mExcludeSaturdays),excludeBox); |
563 | 565 | ||
564 | // KPrefsDialogWidBool *marcusBainsShowSeconds = addWidBool(i18n("Show seconds on Marcus Bains line"), | 566 | // KPrefsDialogWidBool *marcusBainsShowSeconds = addWidBool(i18n("Show seconds on Marcus Bains line"), |
565 | // &(KOPrefs::instance()->mMarcusBainsShowSeconds), | 567 | // &(KOPrefs::instance()->mMarcusBainsShowSeconds), |
566 | // topFrame); | 568 | // topFrame); |
567 | // topLayout->addWidget(marcusBainsShowSeconds->checkBox(),5,0); | 569 | // topLayout->addWidget(marcusBainsShowSeconds->checkBox(),5,0); |
568 | 570 | ||
569 | // topLayout->setRowStretch(6,1); | 571 | // topLayout->setRowStretch(6,1); |
570 | } | 572 | } |
571 | 573 | ||
572 | 574 | ||
573 | void KOPrefsDialog::setupViewsTab() | 575 | void KOPrefsDialog::setupViewsTab() |
574 | { | 576 | { |
575 | 577 | ||
576 | QFrame *topFrame = addPage(i18n("Views"),0,0); | 578 | QFrame *topFrame = addPage(i18n("Views"),0,0); |
577 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 579 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
578 | 580 | ||
579 | QGridLayout *topLayout = new QGridLayout(topFrame,6,1); | 581 | QGridLayout *topLayout = new QGridLayout(topFrame,6,1); |
580 | topLayout->setSpacing(spacingHint()); | 582 | topLayout->setSpacing(spacingHint()); |
581 | topLayout->setMargin(marginHint()); | 583 | topLayout->setMargin(marginHint()); |
582 | 584 | ||
583 | // QBoxLayout *dayBeginsLayout = new QHBoxLayout; | 585 | // QBoxLayout *dayBeginsLayout = new QHBoxLayout; |
584 | // topLayout->addLayout(dayBeginsLayout,0,0); | 586 | // topLayout->addLayout(dayBeginsLayout,0,0); |
585 | 587 | ||
586 | // KPrefsDialogWidTime *dayBegins = | 588 | // KPrefsDialogWidTime *dayBegins = |
587 | // addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), | 589 | // addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), |
588 | // topFrame); | 590 | // topFrame); |
589 | // dayBeginsLayout->addWidget(dayBegins->label()); | 591 | // dayBeginsLayout->addWidget(dayBegins->label()); |
590 | // dayBeginsLayout->addStretch(1); | 592 | // dayBeginsLayout->addStretch(1); |
591 | // dayBeginsLayout->addWidget(dayBegins->spinBox()); | 593 | // dayBeginsLayout->addWidget(dayBegins->spinBox()); |
592 | 594 | ||
593 | // QBoxLayout *nextDaysLayout = new QHBoxLayout; | 595 | // QBoxLayout *nextDaysLayout = new QHBoxLayout; |
594 | // topLayout->addLayout(nextDaysLayout,1,0); | 596 | // topLayout->addLayout(nextDaysLayout,1,0); |
595 | // nextDaysLayout->addWidget(new QLabel(i18n("Days to show in Next-X-Days view:"),topFrame)); | 597 | // nextDaysLayout->addWidget(new QLabel(i18n("Days to show in Next-X-Days view:"),topFrame)); |
596 | // mNextXDaysSpin = new QSpinBox(2,14,1,topFrame); | 598 | // mNextXDaysSpin = new QSpinBox(2,14,1,topFrame); |
597 | // nextDaysLayout->addStretch(1); | 599 | // nextDaysLayout->addStretch(1); |
598 | // nextDaysLayout->addWidget(mNextXDaysSpin); | 600 | // nextDaysLayout->addWidget(mNextXDaysSpin); |
599 | 601 | ||
600 | 602 | ||
601 | int ii = 0; | 603 | int ii = 0; |
602 | KPrefsDialogWidBool *dummy = | 604 | KPrefsDialogWidBool *dummy = |
603 | addWidBool(i18n("Edit item on doubleclick (if not, show)"), | 605 | addWidBool(i18n("Edit item on doubleclick (if not, show)"), |
604 | &(KOPrefs::instance()->mEditOnDoubleClick),topFrame); | 606 | &(KOPrefs::instance()->mEditOnDoubleClick),topFrame); |
605 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 607 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
606 | 608 | ||
607 | dummy = | 609 | dummy = |
608 | addWidBool(i18n("Show time in agenda items"), | 610 | addWidBool(i18n("Show time in agenda items"), |
609 | &(KOPrefs::instance()->mShowTimeInAgenda),topFrame); | 611 | &(KOPrefs::instance()->mShowTimeInAgenda),topFrame); |
610 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 612 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
611 | 613 | ||
612 | dummy = | 614 | dummy = |
613 | addWidBool(i18n("Highlight current day in agenda"), | 615 | addWidBool(i18n("Highlight current day in agenda"), |
614 | &(KOPrefs::instance()->mHighlightCurrentDay),topFrame); | 616 | &(KOPrefs::instance()->mHighlightCurrentDay),topFrame); |
615 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 617 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
616 | 618 | ||
617 | dummy = | 619 | dummy = |
618 | addWidBool(i18n("Use light color for highlight current day"), | 620 | addWidBool(i18n("Use light color for highlight current day"), |
619 | &(KOPrefs::instance()->mUseHighlightLightColor),topFrame); | 621 | &(KOPrefs::instance()->mUseHighlightLightColor),topFrame); |
620 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 622 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
621 | 623 | ||
622 | KPrefsDialogWidBool *dailyRecur = | 624 | KPrefsDialogWidBool *dailyRecur = |
623 | addWidBool(i18n("Show events that recur daily in date nav."), | 625 | addWidBool(i18n("Show events that recur daily in date nav."), |
624 | &(KOPrefs::instance()->mDailyRecur),topFrame); | 626 | &(KOPrefs::instance()->mDailyRecur),topFrame); |
625 | topLayout->addWidget(dailyRecur->checkBox(),ii++,0); | 627 | topLayout->addWidget(dailyRecur->checkBox(),ii++,0); |
626 | 628 | ||
627 | KPrefsDialogWidBool *weeklyRecur = | 629 | KPrefsDialogWidBool *weeklyRecur = |
628 | addWidBool(i18n("Show ev. that recur weekly in date nav."), | 630 | addWidBool(i18n("Show ev. that recur weekly in date nav."), |
629 | &(KOPrefs::instance()->mWeeklyRecur),topFrame); | 631 | &(KOPrefs::instance()->mWeeklyRecur),topFrame); |
630 | topLayout->addWidget(weeklyRecur->checkBox(),ii++,0); | 632 | topLayout->addWidget(weeklyRecur->checkBox(),ii++,0); |
631 | if ( QApplication::desktop()->width() > 640 ) { | 633 | if ( QApplication::desktop()->width() > 640 ) { |
632 | 634 | ||
633 | KPrefsDialogWidBool *enableToolTips = | 635 | KPrefsDialogWidBool *enableToolTips = |
634 | addWidBool(i18n("Enable tooltips displaying summary of ev."), | 636 | addWidBool(i18n("Enable tooltips displaying summary of ev."), |
635 | &(KOPrefs::instance()->mEnableToolTips),topFrame); | 637 | &(KOPrefs::instance()->mEnableToolTips),topFrame); |
636 | topLayout->addWidget(enableToolTips->checkBox(),ii++,0); | 638 | topLayout->addWidget(enableToolTips->checkBox(),ii++,0); |
637 | 639 | ||
638 | } | 640 | } |
639 | 641 | ||
640 | KPrefsDialogWidBool *marcusBainsEnabled = | 642 | KPrefsDialogWidBool *marcusBainsEnabled = |
641 | addWidBool(i18n("Show Marcus Bains line"), | 643 | addWidBool(i18n("Show Marcus Bains line"), |
642 | &(KOPrefs::instance()->mMarcusBainsEnabled),topFrame); | 644 | &(KOPrefs::instance()->mMarcusBainsEnabled),topFrame); |
643 | topLayout->addWidget(marcusBainsEnabled->checkBox(),ii++,0); | 645 | topLayout->addWidget(marcusBainsEnabled->checkBox(),ii++,0); |
644 | 646 | ||
645 | 647 | ||
646 | // topLayout->addWidget(hourSizeGroup,ii++,0); | 648 | // topLayout->addWidget(hourSizeGroup,ii++,0); |
647 | // topLayout->addMultiCellWidget(hourSizeGroup,ii,ii,0,0); | 649 | // topLayout->addMultiCellWidget(hourSizeGroup,ii,ii,0,0); |
648 | //topLayout->setRowStretch(11,1); | 650 | //topLayout->setRowStretch(11,1); |
649 | 651 | ||
650 | 652 | ||
651 | 653 | ||
652 | 654 | ||
653 | 655 | ||
654 | 656 | ||
655 | topFrame = addPage(i18n("ViewChange"),0,0); | 657 | topFrame = addPage(i18n("ViewChange"),0,0); |
656 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 658 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
657 | 659 | ||
658 | topLayout = new QGridLayout(topFrame,6,1); | 660 | topLayout = new QGridLayout(topFrame,6,1); |
659 | topLayout->setSpacing(spacingHint()); | 661 | topLayout->setSpacing(spacingHint()); |
660 | topLayout->setMargin(marginHint()); | 662 | topLayout->setMargin(marginHint()); |
661 | ii = 0; | 663 | ii = 0; |
662 | 664 | ||
663 | 665 | ||
664 | dummy = | 666 | dummy = |
665 | addWidBool(i18n("Hold fullscreen on view change"), | 667 | addWidBool(i18n("Hold fullscreen on view change"), |
666 | &(KOPrefs::instance()->mViewChangeHoldFullscreen),topFrame); | 668 | &(KOPrefs::instance()->mViewChangeHoldFullscreen),topFrame); |
667 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 669 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
668 | 670 | ||
669 | dummy = | 671 | dummy = |
670 | addWidBool(i18n("Hold non-fullscreen on view change"), | 672 | addWidBool(i18n("Hold non-fullscreen on view change"), |
671 | &(KOPrefs::instance()->mViewChangeHoldNonFullscreen),topFrame); | 673 | &(KOPrefs::instance()->mViewChangeHoldNonFullscreen),topFrame); |
672 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 674 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
673 | 675 | ||
674 | 676 | ||
675 | KPrefsDialogWidBool *fullViewTodo = | 677 | KPrefsDialogWidBool *fullViewTodo = |
676 | addWidBool(i18n("Event list view uses full window"), | 678 | addWidBool(i18n("Event list view uses full window"), |
677 | &(KOPrefs::instance()->mFullViewTodo),topFrame); | 679 | &(KOPrefs::instance()->mFullViewTodo),topFrame); |
678 | topLayout->addWidget(fullViewTodo->checkBox(),ii++,0); | 680 | topLayout->addWidget(fullViewTodo->checkBox(),ii++,0); |
679 | 681 | ||
680 | KPrefsDialogWidBool *fullViewMonth = | 682 | KPrefsDialogWidBool *fullViewMonth = |
681 | addWidBool(i18n("Next days view uses full window"), | 683 | addWidBool(i18n("Next days view uses full window"), |
682 | &(KOPrefs::instance()->mFullViewMonth),topFrame); | 684 | &(KOPrefs::instance()->mFullViewMonth),topFrame); |
683 | topLayout->addWidget(fullViewMonth->checkBox(),ii++,0); | 685 | topLayout->addWidget(fullViewMonth->checkBox(),ii++,0); |
684 | 686 | ||
685 | dummy = | 687 | dummy = |
686 | addWidBool(i18n("Set agenda to DayBeginsAt on change"), | 688 | addWidBool(i18n("Set agenda to DayBeginsAt on change"), |
687 | &(KOPrefs::instance()->mSetTimeToDayStartAt),topFrame); | 689 | &(KOPrefs::instance()->mSetTimeToDayStartAt),topFrame); |
688 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 690 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
689 | 691 | ||
690 | dummy = | 692 | dummy = |
691 | addWidBool(i18n("Set agenda to current time on change"), | 693 | addWidBool(i18n("Set agenda to current time on change"), |
692 | &(KOPrefs::instance()->mCenterOnCurrentTime),topFrame); | 694 | &(KOPrefs::instance()->mCenterOnCurrentTime),topFrame); |
693 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 695 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
694 | 696 | ||
695 | dummy = | 697 | dummy = |
696 | addWidBool(i18n("Listview uses monthly timespan"), | 698 | addWidBool(i18n("Listview uses monthly timespan"), |
697 | &(KOPrefs::instance()->mListViewMonthTimespan),topFrame); | 699 | &(KOPrefs::instance()->mListViewMonthTimespan),topFrame); |
698 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 700 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
699 | dummy = | 701 | dummy = |
700 | addWidBool(i18n("Highlight selection in Time Edit"), | 702 | addWidBool(i18n("Highlight selection in Time Edit"), |
701 | &(KOPrefs::instance()->mHightlightDateTimeEdit),topFrame); | 703 | &(KOPrefs::instance()->mHightlightDateTimeEdit),topFrame); |
702 | topLayout->addWidget( dummy->checkBox(), ii++,0); | 704 | topLayout->addWidget( dummy->checkBox(), ii++,0); |
703 | 705 | ||
704 | 706 | ||
705 | 707 | ||
706 | 708 | ||
707 | 709 | ||
708 | topFrame = addPage(i18n("Month View"),0,0); | 710 | topFrame = addPage(i18n("Month View"),0,0); |
709 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 711 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
710 | 712 | ||
711 | topLayout = new QGridLayout(topFrame,5,1); | 713 | topLayout = new QGridLayout(topFrame,5,1); |
712 | topLayout->setSpacing(spacingHint()); | 714 | topLayout->setSpacing(spacingHint()); |
713 | topLayout->setMargin(marginHint()); | 715 | topLayout->setMargin(marginHint()); |
714 | ii = 0; | 716 | ii = 0; |
715 | QLabel *lab; | 717 | QLabel *lab; |
716 | QHBox *habo = new QHBox( topFrame ); | 718 | QHBox *habo = new QHBox( topFrame ); |
717 | if ( QApplication::desktop()->width() < 320 ) { | 719 | if ( QApplication::desktop()->width() < 320 ) { |
718 | lab = new QLabel ( i18n("Show events that recur "), topFrame ); | 720 | lab = new QLabel ( i18n("Show events that recur "), topFrame ); |
719 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); | 721 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); |
720 | ii++; | 722 | ii++; |
721 | 723 | ||
722 | } else { | 724 | } else { |
723 | new QLabel ( i18n("Show events that recur "), habo ); | 725 | new QLabel ( i18n("Show events that recur "), habo ); |
724 | 726 | ||
725 | } | 727 | } |
726 | dailyRecur = | 728 | dailyRecur = |
727 | addWidBool(i18n("daily"), | 729 | addWidBool(i18n("daily"), |
728 | &(KOPrefs::instance()->mMonthDailyRecur),habo); | 730 | &(KOPrefs::instance()->mMonthDailyRecur),habo); |
729 | // topLayout->addWidget(dailyRecur->checkBox(),ii++,0); | 731 | // topLayout->addWidget(dailyRecur->checkBox(),ii++,0); |
730 | 732 | ||
731 | weeklyRecur = | 733 | weeklyRecur = |
732 | addWidBool(i18n("weekly"), | 734 | addWidBool(i18n("weekly"), |
733 | &(KOPrefs::instance()->mMonthWeeklyRecur),habo); | 735 | &(KOPrefs::instance()->mMonthWeeklyRecur),habo); |
734 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); | 736 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); |
735 | ii++; | 737 | ii++; |
736 | 738 | ||
737 | 739 | ||
738 | habo = new QHBox( topFrame ); | 740 | habo = new QHBox( topFrame ); |
739 | if ( QApplication::desktop()->width() < 320 ) { | 741 | if ( QApplication::desktop()->width() < 320 ) { |
740 | lab = new QLabel (i18n("Show in every cell ") , topFrame ); | 742 | lab = new QLabel (i18n("Show in every cell ") , topFrame ); |
741 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); | 743 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); |
742 | ii++; | 744 | ii++; |
743 | 745 | ||
744 | } else { | 746 | } else { |
745 | new QLabel ( i18n("Show in every cell "), habo ); | 747 | new QLabel ( i18n("Show in every cell "), habo ); |
746 | } | 748 | } |
747 | weeklyRecur = | 749 | weeklyRecur = |
748 | addWidBool(i18n("short month"), | 750 | addWidBool(i18n("short month"), |
749 | &(KOPrefs::instance()->mMonthShowShort),habo); | 751 | &(KOPrefs::instance()->mMonthShowShort),habo); |
750 | weeklyRecur = | 752 | weeklyRecur = |
751 | addWidBool(i18n("icons"), | 753 | addWidBool(i18n("icons"), |
752 | &(KOPrefs::instance()->mMonthShowIcons),habo); | 754 | &(KOPrefs::instance()->mMonthShowIcons),habo); |
753 | 755 | ||
754 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); | 756 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); |
755 | ii++; | 757 | ii++; |
756 | #ifdef DESKTOP_VERSION | 758 | #ifdef DESKTOP_VERSION |
757 | KPrefsDialogWidBool *enableMonthScroll = | 759 | KPrefsDialogWidBool *enableMonthScroll = |
758 | addWidBool(i18n("Enable scrollbars in month view cells"), | 760 | addWidBool(i18n("Enable scrollbars in month view cells"), |
759 | &(KOPrefs::instance()->mEnableMonthScroll),topFrame); | 761 | &(KOPrefs::instance()->mEnableMonthScroll),topFrame); |
760 | topLayout->addWidget(enableMonthScroll->checkBox(),ii++,0); | 762 | topLayout->addWidget(enableMonthScroll->checkBox(),ii++,0); |
761 | #endif | 763 | #endif |
762 | 764 | ||
763 | dummy = | 765 | dummy = |
764 | addWidBool(i18n("Show Sat/Sun together"), | 766 | addWidBool(i18n("Show Sat/Sun together"), |
765 | &(KOPrefs::instance()->mMonthViewSatSunTog),topFrame); | 767 | &(KOPrefs::instance()->mMonthViewSatSunTog),topFrame); |
766 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 768 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
767 | 769 | ||
768 | KPrefsDialogWidBool *coloredCategoriesInMonthView = | 770 | KPrefsDialogWidBool *coloredCategoriesInMonthView = |
769 | addWidBool(i18n("Month view uses category colors"), | 771 | addWidBool(i18n("Month view uses category colors"), |
770 | &(KOPrefs::instance()->mMonthViewUsesCategoryColor),topFrame); | 772 | &(KOPrefs::instance()->mMonthViewUsesCategoryColor),topFrame); |
771 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); | 773 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); |
772 | 774 | ||
773 | dummy = | 775 | dummy = |
774 | addWidBool(i18n("Categorie colors are applied to text"), | 776 | addWidBool(i18n("Categorie colors are applied to text"), |
775 | &(KOPrefs::instance()->mMonthViewUsesForegroundColor),topFrame); | 777 | &(KOPrefs::instance()->mMonthViewUsesForegroundColor),topFrame); |
776 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 778 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
777 | coloredCategoriesInMonthView = | 779 | coloredCategoriesInMonthView = |
778 | addWidBool(i18n("Month view uses day colors"), | 780 | addWidBool(i18n("Month view uses day colors"), |
779 | &(KOPrefs::instance()->mMonthViewUsesDayColors),topFrame); | 781 | &(KOPrefs::instance()->mMonthViewUsesDayColors),topFrame); |
780 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); | 782 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); |
781 | 783 | ||
782 | KPrefsDialogWidColor *holidayColor = | 784 | KPrefsDialogWidColor *holidayColor = |
783 | addWidColor(i18n("Day color odd months"), | 785 | addWidColor(i18n("Day color odd months"), |
784 | &(KOPrefs::instance()->mMonthViewOddColor),topFrame); | 786 | &(KOPrefs::instance()->mMonthViewOddColor),topFrame); |
785 | topLayout->addWidget(holidayColor->label(),ii,0); | 787 | topLayout->addWidget(holidayColor->label(),ii,0); |
786 | topLayout->addWidget(holidayColor->button(),ii++,1); | 788 | topLayout->addWidget(holidayColor->button(),ii++,1); |
787 | 789 | ||
788 | holidayColor = | 790 | holidayColor = |
789 | addWidColor(i18n("Day color even months"), | 791 | addWidColor(i18n("Day color even months"), |
790 | &(KOPrefs::instance()->mMonthViewEvenColor),topFrame); | 792 | &(KOPrefs::instance()->mMonthViewEvenColor),topFrame); |
791 | topLayout->addWidget(holidayColor->label(),ii,0); | 793 | topLayout->addWidget(holidayColor->label(),ii,0); |
792 | topLayout->addWidget(holidayColor->button(),ii++,1); | 794 | topLayout->addWidget(holidayColor->button(),ii++,1); |
793 | 795 | ||
794 | 796 | ||
795 | holidayColor = | 797 | holidayColor = |
796 | addWidColor(i18n("Color for Sundays + category \"Holiday\""), | 798 | addWidColor(i18n("Color for Sundays + category \"Holiday\""), |
797 | &(KOPrefs::instance()->mMonthViewHolidayColor),topFrame); | 799 | &(KOPrefs::instance()->mMonthViewHolidayColor),topFrame); |
798 | topLayout->addWidget(holidayColor->label(),ii,0); | 800 | topLayout->addWidget(holidayColor->label(),ii,0); |
799 | topLayout->addWidget(holidayColor->button(),ii++,1); | 801 | topLayout->addWidget(holidayColor->button(),ii++,1); |
800 | // *********************** What'sNext View | 802 | // *********************** What'sNext View |
801 | topFrame = addPage(i18n("What's Next View"),0,0); | 803 | topFrame = addPage(i18n("What's Next View"),0,0); |
802 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 804 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
803 | 805 | ||
804 | topLayout = new QGridLayout(topFrame,4,1); | 806 | topLayout = new QGridLayout(topFrame,4,1); |
805 | topLayout->setSpacing(spacingHint()); | 807 | topLayout->setSpacing(spacingHint()); |
806 | topLayout->setMargin(marginHint()); | 808 | topLayout->setMargin(marginHint()); |
807 | ii = 0; | 809 | ii = 0; |
808 | KPrefsDialogWidBool *passwdk = | 810 | KPrefsDialogWidBool *passwdk = |
809 | 811 | ||
810 | addWidBool(i18n("Show events, that are done in \nWhat's Next view"), | 812 | addWidBool(i18n("Show events, that are done in \nWhat's Next view"), |
811 | &(KOPrefs::instance()->mWNViewShowsPast),topFrame); | 813 | &(KOPrefs::instance()->mWNViewShowsPast),topFrame); |
812 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 814 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
813 | passwdk = | 815 | passwdk = |
814 | addWidBool(i18n("Show parent To-Do's in What's Next view"), | 816 | addWidBool(i18n("Show parent To-Do's in What's Next view"), |
815 | &(KOPrefs::instance()->mWNViewShowsParents),topFrame); | 817 | &(KOPrefs::instance()->mWNViewShowsParents),topFrame); |
816 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 818 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
817 | 819 | ||
818 | passwdk = | 820 | passwdk = |
819 | addWidBool(i18n("Show location in What's Next view"), | 821 | addWidBool(i18n("Show location in What's Next view"), |
820 | &(KOPrefs::instance()->mWNViewShowLocation),topFrame); | 822 | &(KOPrefs::instance()->mWNViewShowLocation),topFrame); |
821 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 823 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
822 | 824 | ||
823 | passwdk = | 825 | passwdk = |
824 | addWidBool(i18n("Show Sync Events in \nWhat's Next/Agenda view"), | 826 | addWidBool(i18n("Show Sync Events in \nWhat's Next/Agenda view"), |
825 | &(KOPrefs::instance()->mShowSyncEvents),topFrame); | 827 | &(KOPrefs::instance()->mShowSyncEvents),topFrame); |
826 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 828 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
827 | passwdk = | 829 | passwdk = |
828 | addWidBool(i18n("Use short date in \nWhat's Next/Event view"), | 830 | addWidBool(i18n("Use short date in \nWhat's Next/Event view"), |
829 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); | 831 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); |
830 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 832 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
831 | 833 | ||
832 | 834 | ||
833 | 835 | ||
834 | 836 | ||
835 | // *********************** Todo View | 837 | // *********************** Todo View |
836 | 838 | ||
837 | topFrame = addPage(i18n("Todo View"),0,0); | 839 | topFrame = addPage(i18n("Todo View"),0,0); |
838 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 840 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
839 | 841 | ||
840 | topLayout = new QGridLayout(topFrame,4,1); | 842 | topLayout = new QGridLayout(topFrame,4,1); |
841 | topLayout->setSpacing(spacingHint()); | 843 | topLayout->setSpacing(spacingHint()); |
842 | topLayout->setMargin(marginHint()); | 844 | topLayout->setMargin(marginHint()); |
843 | ii = 0; | 845 | ii = 0; |
844 | dummy = | 846 | dummy = |
845 | addWidBool(i18n("Hide not running Todos in To-do view"), | 847 | addWidBool(i18n("Hide not running Todos in To-do view"), |
846 | &(KOPrefs::instance()->mHideNonStartedTodos),topFrame); | 848 | &(KOPrefs::instance()->mHideNonStartedTodos),topFrame); |
847 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 849 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
848 | 850 | ||
849 | 851 | ||
850 | KPrefsDialogWidBool *showCompletedTodo = | 852 | KPrefsDialogWidBool *showCompletedTodo = |
851 | addWidBool(i18n("To-do view shows completed Todos"), | 853 | addWidBool(i18n("To-do view shows completed Todos"), |
852 | &(KOPrefs::instance()->mShowCompletedTodo),topFrame); | 854 | &(KOPrefs::instance()->mShowCompletedTodo),topFrame); |
853 | topLayout->addWidget(showCompletedTodo->checkBox(),ii++,0); | 855 | topLayout->addWidget(showCompletedTodo->checkBox(),ii++,0); |
854 | dummy = | 856 | dummy = |
855 | addWidBool(i18n("To-do view shows complete as 'xx %'"), | 857 | addWidBool(i18n("To-do view shows complete as 'xx %'"), |
856 | &(KOPrefs::instance()->mTodoViewShowsPercentage),topFrame); | 858 | &(KOPrefs::instance()->mTodoViewShowsPercentage),topFrame); |
857 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 859 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
858 | 860 | ||
859 | dummy = | 861 | dummy = |
860 | addWidBool(i18n("Small To-do view uses smaller font"), | 862 | addWidBool(i18n("Small To-do view uses smaller font"), |
861 | &(KOPrefs::instance()->mTodoViewUsesSmallFont),topFrame); | 863 | &(KOPrefs::instance()->mTodoViewUsesSmallFont),topFrame); |
862 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 864 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
863 | 865 | ||
864 | 866 | ||
865 | 867 | ||
866 | dummy = | 868 | dummy = |
diff --git a/korganizer/korganizer.pro b/korganizer/korganizer.pro index c2602b2..4d67dca 100644 --- a/korganizer/korganizer.pro +++ b/korganizer/korganizer.pro | |||
@@ -1,193 +1,191 @@ | |||
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 \ |
78 | koeventeditor.h \ | 89 | koeventeditor.h \ |
79 | koeventpopupmenu.h \ | 90 | koeventpopupmenu.h \ |
80 | koeventview.h \ | 91 | koeventview.h \ |
81 | koeventviewer.h \ | 92 | koeventviewer.h \ |
82 | koeventviewerdialog.h \ | 93 | koeventviewerdialog.h \ |
83 | kofilterview.h \ | 94 | kofilterview.h \ |
84 | koglobals.h \ | 95 | koglobals.h \ |
85 | koincidenceeditor.h \ | 96 | koincidenceeditor.h \ |
86 | kojournalview.h \ | 97 | kojournalview.h \ |
87 | kolistview.h \ | 98 | kolistview.h \ |
88 | kolocationbox.h \ | 99 | kolocationbox.h \ |
89 | komonthview.h \ | 100 | komonthview.h \ |
90 | koprefs.h \ | 101 | koprefs.h \ |
91 | koprefsdialog.h \ | 102 | koprefsdialog.h \ |
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 \ |
141 | koeventviewerdialog.cpp \ | 152 | koeventviewerdialog.cpp \ |
142 | kofilterview.cpp \ | 153 | kofilterview.cpp \ |
143 | koglobals.cpp \ | 154 | koglobals.cpp \ |
144 | koincidenceeditor.cpp \ | 155 | koincidenceeditor.cpp \ |
145 | kojournalview.cpp \ | 156 | kojournalview.cpp \ |
146 | kolistview.cpp \ | 157 | kolistview.cpp \ |
147 | kolocationbox.cpp \ | 158 | kolocationbox.cpp \ |
148 | komonthview.cpp \ | 159 | komonthview.cpp \ |
149 | koprefs.cpp \ | 160 | koprefs.cpp \ |
150 | koprefsdialog.cpp \ | 161 | koprefsdialog.cpp \ |
151 | kotimespanview.cpp \ | 162 | kotimespanview.cpp \ |
152 | kotodoeditor.cpp \ | 163 | kotodoeditor.cpp \ |
153 | kotodoview.cpp \ | 164 | kotodoview.cpp \ |
154 | kotodoviewitem.cpp \ | 165 | kotodoviewitem.cpp \ |
155 | koviewmanager.cpp \ | 166 | koviewmanager.cpp \ |
156 | kowhatsnextview.cpp \ | 167 | kowhatsnextview.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,109 +1,110 @@ | |||
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 | } |
72 | if ( ! exitHelp ) { | 73 | if ( ! exitHelp ) { |
73 | KGlobal::setAppName( "korganizer" ); | 74 | KGlobal::setAppName( "korganizer" ); |
74 | QString fileName ; | 75 | QString fileName ; |
75 | #ifndef DESKTOP_VERSION | 76 | #ifndef DESKTOP_VERSION |
76 | fileName = getenv("QPEDIR"); | 77 | fileName = getenv("QPEDIR"); |
77 | KGlobal::iconLoader()->setIconPath( fileName +"/pics/kdepim/korganizer/"); | 78 | KGlobal::iconLoader()->setIconPath( fileName +"/pics/kdepim/korganizer/"); |
78 | #else | 79 | #else |
79 | fileName = qApp->applicationDirPath () + "/kdepim/korganizer/"; | 80 | fileName = qApp->applicationDirPath () + "/kdepim/korganizer/"; |
80 | KGlobal::iconLoader()->setIconPath(QDir::convertSeparators(fileName)); | 81 | KGlobal::iconLoader()->setIconPath(QDir::convertSeparators(fileName)); |
81 | #endif | 82 | #endif |
82 | KStandardDirs::setAppDir( QDir::convertSeparators(locateLocal("data", "korganizer"))); | 83 | KStandardDirs::setAppDir( QDir::convertSeparators(locateLocal("data", "korganizer"))); |
83 | MainWindow m; | 84 | MainWindow m; |
84 | #ifndef DESKTOP_VERSION | 85 | #ifndef DESKTOP_VERSION |
85 | 86 | ||
86 | QObject::connect( &a, SIGNAL (appMessage ( const QCString &, const QByteArray & )),&m, SLOT(recieve( const QCString&, const QByteArray& ))); | 87 | QObject::connect( &a, SIGNAL (appMessage ( const QCString &, const QByteArray & )),&m, SLOT(recieve( const QCString&, const QByteArray& ))); |
87 | a.showMainWidget(&m ); | 88 | a.showMainWidget(&m ); |
88 | #else | 89 | #else |
89 | a.setMainWidget(&m ); | 90 | a.setMainWidget(&m ); |
90 | m.show(); | 91 | m.show(); |
91 | //m.resize( 800, 600 ); | 92 | //m.resize( 800, 600 ); |
92 | QObject::connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit())); | 93 | QObject::connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit())); |
93 | #endif | 94 | #endif |
94 | if ( argc > 1 ) { | 95 | if ( argc > 1 ) { |
95 | QCString command = argv[1]; | 96 | QCString command = argv[1]; |
96 | if ( argc > 2 ) | 97 | if ( argc > 2 ) |
97 | command += argv[2]; | 98 | command += argv[2]; |
98 | qApp->processEvents(); | 99 | qApp->processEvents(); |
99 | m.recieve(command, QByteArray() ); | 100 | m.recieve(command, QByteArray() ); |
100 | 101 | ||
101 | } | 102 | } |
102 | 103 | ||
103 | a.exec(); | 104 | a.exec(); |
104 | dumpMissing(); | 105 | dumpMissing(); |
105 | 106 | ||
106 | KPimGlobalPrefs::instance()->writeConfig(); | 107 | KPimGlobalPrefs::instance()->writeConfig(); |
107 | } | 108 | } |
108 | qDebug("KO: Bye! "); | 109 | qDebug("KO: Bye! "); |
109 | } | 110 | } |
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index 7b07a2e..26ea1e2 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp | |||
@@ -1,1911 +1,1913 @@ | |||
1 | #include <stdlib.h> | 1 | #include <stdlib.h> |
2 | 2 | ||
3 | #include <qaction.h> | 3 | #include <qaction.h> |
4 | #include <qpopupmenu.h> | 4 | #include <qpopupmenu.h> |
5 | #include <qpainter.h> | 5 | #include <qpainter.h> |
6 | #include <qwhatsthis.h> | 6 | #include <qwhatsthis.h> |
7 | #include <qpushbutton.h> | 7 | #include <qpushbutton.h> |
8 | #include <qmessagebox.h> | 8 | #include <qmessagebox.h> |
9 | #include <qlineedit.h> | 9 | #include <qlineedit.h> |
10 | #include <qtextcodec.h> | 10 | #include <qtextcodec.h> |
11 | #include <qfile.h> | 11 | #include <qfile.h> |
12 | #include <qdir.h> | 12 | #include <qdir.h> |
13 | #include <qapp.h> | 13 | #include <qapp.h> |
14 | #include <qfileinfo.h> | 14 | #include <qfileinfo.h> |
15 | #include <qlabel.h> | 15 | #include <qlabel.h> |
16 | #include <qspinbox.h> | 16 | #include <qspinbox.h> |
17 | #include <qcheckbox.h> | 17 | #include <qcheckbox.h> |
18 | #include <qmap.h> | 18 | #include <qmap.h> |
19 | #include <qwmatrix.h> | 19 | #include <qwmatrix.h> |
20 | #include <qtextbrowser.h> | 20 | #include <qtextbrowser.h> |
21 | #include <qtextstream.h> | 21 | #include <qtextstream.h> |
22 | #ifndef DESKTOP_VERSION | 22 | #ifndef DESKTOP_VERSION |
23 | #include <qpe/global.h> | 23 | #include <qpe/global.h> |
24 | #include <qpe/qpemenubar.h> | 24 | #include <qpe/qpemenubar.h> |
25 | #include <qpe/qpetoolbar.h> | 25 | #include <qpe/qpetoolbar.h> |
26 | #include <qpe/resource.h> | 26 | #include <qpe/resource.h> |
27 | #include <qpe/qpeapplication.h> | 27 | #include <qpe/qpeapplication.h> |
28 | #include <qtopia/alarmserver.h> | 28 | #include <qtopia/alarmserver.h> |
29 | #include <qtopia/qcopenvelope_qws.h> | 29 | #include <qtopia/qcopenvelope_qws.h> |
30 | #include <unistd.h> // for sleep | 30 | #include <unistd.h> // for sleep |
31 | #else | 31 | #else |
32 | #include <qmenubar.h> | 32 | #include <qmenubar.h> |
33 | #include <qtoolbar.h> | 33 | #include <qtoolbar.h> |
34 | #include <qapplication.h> | 34 | #include <qapplication.h> |
35 | //#include <resource.h> | 35 | //#include <resource.h> |
36 | 36 | ||
37 | #endif | 37 | #endif |
38 | #include <libkcal/calendarlocal.h> | 38 | #include <libkcal/calendarlocal.h> |
39 | #include <libkcal/todo.h> | 39 | #include <libkcal/todo.h> |
40 | #include <libkcal/phoneformat.h> | 40 | #include <libkcal/phoneformat.h> |
41 | #include <libkdepim/ksyncprofile.h> | 41 | #include <libkdepim/ksyncprofile.h> |
42 | #include <libkdepim/phoneaccess.h> | 42 | #include <libkdepim/phoneaccess.h> |
43 | #include <libkcal/kincidenceformatter.h> | 43 | #include <libkcal/kincidenceformatter.h> |
44 | #include <libkdepim/kpimglobalprefs.h> | 44 | #include <libkdepim/kpimglobalprefs.h> |
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 ); |
95 | temphb = new QHBox( this ); | 97 | temphb = new QHBox( this ); |
96 | new QLabel( i18n("Model(opt.): "), temphb ); | 98 | new QLabel( i18n("Model(opt.): "), temphb ); |
97 | mPhoneModel = new QLineEdit( temphb); | 99 | mPhoneModel = new QLineEdit( temphb); |
98 | lay->addWidget( temphb ); | 100 | lay->addWidget( temphb ); |
99 | mWriteBackFuture= new QCheckBox( i18n("Write back events in future only"), this ); | 101 | mWriteBackFuture= new QCheckBox( i18n("Write back events in future only"), this ); |
100 | mWriteBackFuture->setChecked( true ); | 102 | mWriteBackFuture->setChecked( true ); |
101 | lay->addWidget( mWriteBackFuture ); | 103 | lay->addWidget( mWriteBackFuture ); |
102 | temphb = new QHBox( this ); | 104 | temphb = new QHBox( this ); |
103 | new QLabel( i18n("Max. weeks in future: ") , temphb ); | 105 | new QLabel( i18n("Max. weeks in future: ") , temphb ); |
104 | mWriteBackFutureWeeks= new QSpinBox(1,104, 1, temphb); | 106 | mWriteBackFutureWeeks= new QSpinBox(1,104, 1, temphb); |
105 | mWriteBackFutureWeeks->setValue( 8 ); | 107 | mWriteBackFutureWeeks->setValue( 8 ); |
106 | lay->addWidget( temphb ); | 108 | lay->addWidget( temphb ); |
107 | lay->addWidget(lab = new QLabel( i18n("NOTE: This will remove all old\ntodo/calendar data on phone!"), this ) ); | 109 | lay->addWidget(lab = new QLabel( i18n("NOTE: This will remove all old\ntodo/calendar data on phone!"), this ) ); |
108 | lab->setAlignment (AlignHCenter ); | 110 | lab->setAlignment (AlignHCenter ); |
109 | QPushButton * ok = new QPushButton( i18n("Export to mobile phone!"), this ); | 111 | QPushButton * ok = new QPushButton( i18n("Export to mobile phone!"), this ); |
110 | lay->addWidget( ok ); | 112 | lay->addWidget( ok ); |
111 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); | 113 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); |
112 | lay->addWidget( cancel ); | 114 | lay->addWidget( cancel ); |
113 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); | 115 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); |
114 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); | 116 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); |
115 | resize( 220, 240 ); | 117 | resize( 220, 240 ); |
116 | qApp->processEvents(); | 118 | qApp->processEvents(); |
117 | int dw = QApplication::desktop()->width(); | 119 | int dw = QApplication::desktop()->width(); |
118 | int dh = QApplication::desktop()->height(); | 120 | int dh = QApplication::desktop()->height(); |
119 | move( (dw-width())/2, (dh - height() )/2 ); | 121 | move( (dw-width())/2, (dh - height() )/2 ); |
120 | } | 122 | } |
121 | 123 | ||
122 | public: | 124 | public: |
123 | QLineEdit* mPhoneConnection, *mPhoneDevice, *mPhoneModel; | 125 | QLineEdit* mPhoneConnection, *mPhoneDevice, *mPhoneModel; |
124 | QCheckBox* mWriteBackFuture; | 126 | QCheckBox* mWriteBackFuture; |
125 | QSpinBox* mWriteBackFutureWeeks; | 127 | QSpinBox* mWriteBackFutureWeeks; |
126 | }; | 128 | }; |
127 | 129 | ||
128 | int globalFlagBlockStartup; | 130 | int globalFlagBlockStartup; |
129 | MainWindow::MainWindow( QWidget *parent, const char *name, QString msg) : | 131 | MainWindow::MainWindow( QWidget *parent, const char *name, QString msg) : |
130 | QMainWindow( parent, name ) | 132 | QMainWindow( parent, name ) |
131 | { | 133 | { |
132 | 134 | ||
133 | #ifdef DESKTOP_VERSION | 135 | #ifdef DESKTOP_VERSION |
134 | setFont( QFont("Arial"), 14 ); | 136 | setFont( QFont("Arial"), 14 ); |
135 | #endif | 137 | #endif |
136 | mClosed = false; | 138 | mClosed = false; |
137 | //QString confFile = KStandardDirs::appDir() + "config/korganizerrc"; | 139 | //QString confFile = KStandardDirs::appDir() + "config/korganizerrc"; |
138 | QString confFile = locateLocal("config","korganizerrc"); | 140 | QString confFile = locateLocal("config","korganizerrc"); |
139 | QFileInfo finf ( confFile ); | 141 | QFileInfo finf ( confFile ); |
140 | bool showWarning = !finf.exists(); | 142 | bool showWarning = !finf.exists(); |
141 | setIcon(SmallIcon( "ko24" ) ); | 143 | setIcon(SmallIcon( "ko24" ) ); |
142 | mBlockAtStartup = true; | 144 | mBlockAtStartup = true; |
143 | mFlagKeyPressed = false; | 145 | mFlagKeyPressed = false; |
144 | setCaption("KOrganizer/Pi"); | 146 | setCaption("KOrganizer/Pi"); |
145 | KOPrefs *p = KOPrefs::instance(); | 147 | KOPrefs *p = KOPrefs::instance(); |
146 | KPimGlobalPrefs::instance()->setGlobalConfig(); | 148 | KPimGlobalPrefs::instance()->setGlobalConfig(); |
147 | if ( p->mHourSize > 18 ) | 149 | if ( p->mHourSize > 18 ) |
148 | p->mHourSize = 18; | 150 | p->mHourSize = 18; |
149 | QMainWindow::ToolBarDock tbd; | 151 | QMainWindow::ToolBarDock tbd; |
150 | if ( p->mToolBarHor ) { | 152 | if ( p->mToolBarHor ) { |
151 | if ( p->mToolBarUp ) | 153 | if ( p->mToolBarUp ) |
152 | tbd = Bottom; | 154 | tbd = Bottom; |
153 | else | 155 | else |
154 | tbd = Top; | 156 | tbd = Top; |
155 | } | 157 | } |
156 | else { | 158 | else { |
157 | if ( p->mToolBarUp ) | 159 | if ( p->mToolBarUp ) |
158 | tbd = Right; | 160 | tbd = Right; |
159 | else | 161 | else |
160 | tbd = Left; | 162 | tbd = Left; |
161 | } | 163 | } |
162 | if ( KOPrefs::instance()->mUseAppColors ) | 164 | if ( KOPrefs::instance()->mUseAppColors ) |
163 | QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); | 165 | QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); |
164 | globalFlagBlockStartup = 1; | 166 | globalFlagBlockStartup = 1; |
165 | iconToolBar = new QPEToolBar( this ); | 167 | iconToolBar = new QPEToolBar( this ); |
166 | addToolBar (iconToolBar , tbd ); | 168 | addToolBar (iconToolBar , tbd ); |
167 | mCalendarModifiedFlag = false; | 169 | mCalendarModifiedFlag = false; |
168 | 170 | ||
169 | QLabel* splash = new QLabel(i18n("KO/Pi is starting ... "), this ); | 171 | QLabel* splash = new QLabel(i18n("KO/Pi is starting ... "), this ); |
170 | splash->setAlignment ( AlignCenter ); | 172 | splash->setAlignment ( AlignCenter ); |
171 | setCentralWidget( splash ); | 173 | setCentralWidget( splash ); |
172 | #ifndef DESKTOP_VERSION | 174 | #ifndef DESKTOP_VERSION |
173 | showMaximized(); | 175 | showMaximized(); |
174 | #endif | 176 | #endif |
175 | //qDebug("Mainwidget x %d y %d w %d h %d", x(), y(), width(), height ()); | 177 | //qDebug("Mainwidget x %d y %d w %d h %d", x(), y(), width(), height ()); |
176 | setDefaultPreferences(); | 178 | setDefaultPreferences(); |
177 | mCalendar = new CalendarLocal(); | 179 | mCalendar = new CalendarLocal(); |
178 | mView = new CalendarView( mCalendar, this,"mCalendar " ); | 180 | mView = new CalendarView( mCalendar, this,"mCalendar " ); |
179 | mView->hide(); | 181 | mView->hide(); |
180 | //mView->resize(splash->size() ); | 182 | //mView->resize(splash->size() ); |
181 | initActions(); | 183 | initActions(); |
182 | mSyncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)mView, KSyncManager::KOPI, KOPrefs::instance(), syncMenu); | 184 | mSyncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)mView, KSyncManager::KOPI, KOPrefs::instance(), syncMenu); |
183 | mSyncManager->setBlockSave(false); | 185 | mSyncManager->setBlockSave(false); |
184 | mView->setSyncManager(mSyncManager); | 186 | mView->setSyncManager(mSyncManager); |
185 | #ifndef DESKTOP_VERSION | 187 | #ifndef DESKTOP_VERSION |
186 | iconToolBar->show(); | 188 | iconToolBar->show(); |
187 | qApp->processEvents(); | 189 | qApp->processEvents(); |
188 | #endif | 190 | #endif |
189 | //qDebug("Splashwidget x %d y %d w %d h %d", splash-> x(), splash->y(), splash->width(),splash-> height ()); | 191 | //qDebug("Splashwidget x %d y %d w %d h %d", splash-> x(), splash->y(), splash->width(),splash-> height ()); |
190 | int vh = height() ; | 192 | int vh = height() ; |
191 | int vw = width(); | 193 | int vw = width(); |
192 | //qDebug("Toolbar hei %d ",iconToolBar->height() ); | 194 | //qDebug("Toolbar hei %d ",iconToolBar->height() ); |
193 | if ( iconToolBar->orientation () == Qt:: Horizontal ) { | 195 | if ( iconToolBar->orientation () == Qt:: Horizontal ) { |
194 | vh -= iconToolBar->height(); | 196 | vh -= iconToolBar->height(); |
195 | } else { | 197 | } else { |
196 | vw -= iconToolBar->height(); | 198 | vw -= iconToolBar->height(); |
197 | } | 199 | } |
198 | //mView->setMaximumSize( splash->size() ); | 200 | //mView->setMaximumSize( splash->size() ); |
199 | //mView->resize( splash->size() ); | 201 | //mView->resize( splash->size() ); |
200 | //qDebug("MainView x %d y %d w %d h %d", mView->x(),mView-> y(), mView->width(), mView->height ()); | 202 | //qDebug("MainView x %d y %d w %d h %d", mView->x(),mView-> y(), mView->width(), mView->height ()); |
201 | mView->readSettings(); | 203 | mView->readSettings(); |
202 | bool newFile = false; | 204 | bool newFile = false; |
203 | if( !QFile::exists( defaultFileName() ) ) { | 205 | if( !QFile::exists( defaultFileName() ) ) { |
204 | QFileInfo finfo ( defaultFileName() ); | 206 | QFileInfo finfo ( defaultFileName() ); |
205 | QString oldFile = QDir::convertSeparators( QDir::homeDirPath()+"/Applications/korganizer/mycalendar.ics"); | 207 | QString oldFile = QDir::convertSeparators( QDir::homeDirPath()+"/Applications/korganizer/mycalendar.ics"); |
206 | qDebug("oldfile %s ", oldFile.latin1()); | 208 | qDebug("oldfile %s ", oldFile.latin1()); |
207 | QString message = "You are starting KO/Pi for the\nfirst time after updating to a\nversion >= 1.9.1. The location of the\ndefault calendar file has changed.\nA mycalendar.ics file was detected\nat the old location.\nThis file will be loaded now\nand stored at the new location!\n(Config file location has changed, too!)\nPlease read menu Help-What's New!\n"; | 209 | QString message = "You are starting KO/Pi for the\nfirst time after updating to a\nversion >= 1.9.1. The location of the\ndefault calendar file has changed.\nA mycalendar.ics file was detected\nat the old location.\nThis file will be loaded now\nand stored at the new location!\n(Config file location has changed, too!)\nPlease read menu Help-What's New!\n"; |
208 | finfo.setFile( oldFile ); | 210 | finfo.setFile( oldFile ); |
209 | if (finfo.exists() ) { | 211 | if (finfo.exists() ) { |
210 | KMessageBox::information( this, message); | 212 | KMessageBox::information( this, message); |
211 | mView->openCalendar( oldFile ); | 213 | mView->openCalendar( oldFile ); |
212 | qApp->processEvents(); | 214 | qApp->processEvents(); |
213 | } else { | 215 | } else { |
214 | oldFile = QDir::convertSeparators( QDir::homeDirPath()+"/korganizer/mycalendar.ics"); | 216 | oldFile = QDir::convertSeparators( QDir::homeDirPath()+"/korganizer/mycalendar.ics"); |
215 | finfo.setFile( oldFile ); | 217 | finfo.setFile( oldFile ); |
216 | if (finfo.exists() ) { | 218 | if (finfo.exists() ) { |
217 | KMessageBox::information( this, message); | 219 | KMessageBox::information( this, message); |
218 | mView->openCalendar( oldFile ); | 220 | mView->openCalendar( oldFile ); |
219 | qApp->processEvents(); | 221 | qApp->processEvents(); |
220 | } | 222 | } |
221 | } | 223 | } |
222 | mView->saveCalendar( defaultFileName() ); | 224 | mView->saveCalendar( defaultFileName() ); |
223 | newFile = true; | 225 | newFile = true; |
224 | } | 226 | } |
225 | 227 | ||
226 | QTime neededSaveTime = QDateTime::currentDateTime().time(); | 228 | QTime neededSaveTime = QDateTime::currentDateTime().time(); |
227 | mView->openCalendar( defaultFileName() ); | 229 | mView->openCalendar( defaultFileName() ); |
228 | int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); | 230 | int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); |
229 | qDebug("KO: Calendar loading time: %d ms",msNeeded ); | 231 | qDebug("KO: Calendar loading time: %d ms",msNeeded ); |
230 | 232 | ||
231 | if ( KPimGlobalPrefs::instance()->mPreferredLanguage != KOPrefs::instance()->mOldLoadedLanguage ) { | 233 | if ( KPimGlobalPrefs::instance()->mPreferredLanguage != KOPrefs::instance()->mOldLoadedLanguage ) { |
232 | KOPrefs::instance()->setCategoryDefaults(); | 234 | KOPrefs::instance()->setCategoryDefaults(); |
233 | int count = mView->addCategories(); | 235 | int count = mView->addCategories(); |
234 | } | 236 | } |
235 | processIncidenceSelection( 0 ); | 237 | processIncidenceSelection( 0 ); |
236 | connect( mView, SIGNAL( incidenceSelected( Incidence * ) ), | 238 | connect( mView, SIGNAL( incidenceSelected( Incidence * ) ), |
237 | SLOT( processIncidenceSelection( Incidence * ) ) ); | 239 | SLOT( processIncidenceSelection( Incidence * ) ) ); |
238 | connect( mView, SIGNAL( modifiedChanged( bool ) ), | 240 | connect( mView, SIGNAL( modifiedChanged( bool ) ), |
239 | SLOT( slotModifiedChanged( bool ) ) ); | 241 | SLOT( slotModifiedChanged( bool ) ) ); |
240 | 242 | ||
241 | 243 | ||
242 | connect( mView, SIGNAL( tempDisableBR(bool) ), | 244 | connect( mView, SIGNAL( tempDisableBR(bool) ), |
243 | SLOT( disableBR(bool) ) ); | 245 | SLOT( disableBR(bool) ) ); |
244 | connect( &mSaveTimer, SIGNAL( timeout() ), SLOT( save() ) ); | 246 | connect( &mSaveTimer, SIGNAL( timeout() ), SLOT( save() ) ); |
245 | mView->setModified( false ); | 247 | mView->setModified( false ); |
246 | mBlockAtStartup = false; | 248 | mBlockAtStartup = false; |
247 | mView->setModified( false ); | 249 | mView->setModified( false ); |
248 | setCentralWidget( mView ); | 250 | setCentralWidget( mView ); |
249 | globalFlagBlockStartup = 0; | 251 | globalFlagBlockStartup = 0; |
250 | mView->show(); | 252 | mView->show(); |
251 | delete splash; | 253 | delete splash; |
252 | if ( newFile ) | 254 | if ( newFile ) |
253 | mView->updateConfig(); | 255 | mView->updateConfig(); |
254 | // qApp->processEvents(); | 256 | // qApp->processEvents(); |
255 | //qDebug("MainView x %d y %d w %d h %d", mView->x(),mView-> y(), mView->width(), mView->height ()); | 257 | //qDebug("MainView x %d y %d w %d h %d", mView->x(),mView-> y(), mView->width(), mView->height ()); |
256 | //fillSyncMenu(); | 258 | //fillSyncMenu(); |
257 | 259 | ||
258 | 260 | ||
259 | connect(mSyncManager , SIGNAL( save() ), this, SLOT( save() ) ); | 261 | connect(mSyncManager , SIGNAL( save() ), this, SLOT( save() ) ); |
260 | connect(mSyncManager , SIGNAL( request_file() ), this, SLOT( syncFileRequest() ) ); | 262 | connect(mSyncManager , SIGNAL( request_file() ), this, SLOT( syncFileRequest() ) ); |
261 | connect(mSyncManager , SIGNAL( getFile( bool )), this, SLOT(getFile( bool ) ) ); | 263 | connect(mSyncManager , SIGNAL( getFile( bool )), this, SLOT(getFile( bool ) ) ); |
262 | mSyncManager->setDefaultFileName( defaultFileName()); | 264 | mSyncManager->setDefaultFileName( defaultFileName()); |
263 | connect ( syncMenu, SIGNAL( activated ( int ) ), mSyncManager, SLOT (slotSyncMenu( int ) ) ); | 265 | connect ( syncMenu, SIGNAL( activated ( int ) ), mSyncManager, SLOT (slotSyncMenu( int ) ) ); |
264 | mSyncManager->fillSyncMenu(); | 266 | mSyncManager->fillSyncMenu(); |
265 | 267 | ||
266 | 268 | ||
267 | 269 | ||
268 | mView->viewManager()->agendaView()->setStartHour( KOPrefs::instance()->mDayBegins ); | 270 | mView->viewManager()->agendaView()->setStartHour( KOPrefs::instance()->mDayBegins ); |
269 | if ( showWarning ) { | 271 | if ( showWarning ) { |
270 | KMessageBox::information( this, | 272 | KMessageBox::information( this, |
271 | "You are starting KO/Pi for the first time.\nPlease read menu: Help-What's New,\nif you did an update!\nPlease choose your timezone in the \nConfigure Dialog TAB Time Zone!\nPlease choose your language\nin the TAB Locale!\nYou get the Configure Dialog\nvia Menu: Actions - Configure....\nClick OK to show the Configure Dialog!\n", "KO/Pi information"); | 273 | "You are starting KO/Pi for the first time.\nPlease read menu: Help-What's New,\nif you did an update!\nPlease choose your timezone in the \nConfigure Dialog TAB Time Zone!\nPlease choose your language\nin the TAB Locale!\nYou get the Configure Dialog\nvia Menu: Actions - Configure....\nClick OK to show the Configure Dialog!\n", "KO/Pi information"); |
272 | qApp->processEvents(); | 274 | qApp->processEvents(); |
273 | mView->dialogManager()->showSyncOptions(); | 275 | mView->dialogManager()->showSyncOptions(); |
274 | } | 276 | } |
275 | 277 | ||
276 | //US listen for result adressed from Ka/Pi | 278 | //US listen for result adressed from Ka/Pi |
277 | #ifndef DESKTOP_VERSION | 279 | #ifndef DESKTOP_VERSION |
278 | connect(qApp, SIGNAL (appMessage ( const QCString &, const QByteArray & )), ExternalAppHandler::instance(), SLOT (appMessage ( const QCString &, const QByteArray & ))); | 280 | connect(qApp, SIGNAL (appMessage ( const QCString &, const QByteArray & )), ExternalAppHandler::instance(), SLOT (appMessage ( const QCString &, const QByteArray & ))); |
279 | #endif | 281 | #endif |
280 | #ifndef DESKTOP_VERSION | 282 | #ifndef DESKTOP_VERSION |
281 | infrared = 0; | 283 | infrared = 0; |
282 | #endif | 284 | #endif |
283 | 285 | ||
284 | mBRdisabled = false; | 286 | mBRdisabled = false; |
285 | //toggleBeamReceive(); | 287 | //toggleBeamReceive(); |
286 | } | 288 | } |
287 | MainWindow::~MainWindow() | 289 | MainWindow::~MainWindow() |
288 | { | 290 | { |
289 | //qDebug("MainWindow::~MainWindow() "); | 291 | //qDebug("MainWindow::~MainWindow() "); |
290 | //save toolbar location | 292 | //save toolbar location |
291 | delete mCalendar; | 293 | delete mCalendar; |
292 | delete mSyncManager; | 294 | delete mSyncManager; |
293 | #ifndef DESKTOP_VERSION | 295 | #ifndef DESKTOP_VERSION |
294 | if ( infrared ) | 296 | if ( infrared ) |
295 | delete infrared; | 297 | delete infrared; |
296 | #endif | 298 | #endif |
297 | 299 | ||
298 | 300 | ||
299 | } | 301 | } |
300 | 302 | ||
301 | void MainWindow::disableBR(bool b) | 303 | void MainWindow::disableBR(bool b) |
302 | { | 304 | { |
303 | #ifndef DESKTOP_VERSION | 305 | #ifndef DESKTOP_VERSION |
304 | if ( b ) { | 306 | if ( b ) { |
305 | if ( infrared ) { | 307 | if ( infrared ) { |
306 | toggleBeamReceive(); | 308 | toggleBeamReceive(); |
307 | mBRdisabled = true; | 309 | mBRdisabled = true; |
308 | } | 310 | } |
309 | mBRdisabled = true; | 311 | mBRdisabled = true; |
310 | } else { | 312 | } else { |
311 | if ( mBRdisabled ) { | 313 | if ( mBRdisabled ) { |
312 | mBRdisabled = false; | 314 | mBRdisabled = false; |
313 | //makes no sense,because other cal ap is probably running | 315 | //makes no sense,because other cal ap is probably running |
314 | // toggleBeamReceive(); | 316 | // toggleBeamReceive(); |
315 | } | 317 | } |
316 | } | 318 | } |
317 | #endif | 319 | #endif |
318 | 320 | ||
319 | } | 321 | } |
320 | bool MainWindow::beamReceiveEnabled() | 322 | bool MainWindow::beamReceiveEnabled() |
321 | { | 323 | { |
322 | #ifndef DESKTOP_VERSION | 324 | #ifndef DESKTOP_VERSION |
323 | return ( infrared != 0 ); | 325 | return ( infrared != 0 ); |
324 | #endif | 326 | #endif |
325 | return false; | 327 | return false; |
326 | } | 328 | } |
327 | 329 | ||
328 | void MainWindow::toggleBeamReceive() | 330 | void MainWindow::toggleBeamReceive() |
329 | { | 331 | { |
330 | if ( mBRdisabled ) | 332 | if ( mBRdisabled ) |
331 | return; | 333 | return; |
332 | #ifndef DESKTOP_VERSION | 334 | #ifndef DESKTOP_VERSION |
333 | if ( infrared ) { | 335 | if ( infrared ) { |
334 | qDebug("disable BeamReceive "); | 336 | qDebug("disable BeamReceive "); |
335 | delete infrared; | 337 | delete infrared; |
336 | infrared = 0; | 338 | infrared = 0; |
337 | brAction->setOn(false); | 339 | brAction->setOn(false); |
338 | return; | 340 | return; |
339 | } | 341 | } |
340 | qDebug("enable BeamReceive "); | 342 | qDebug("enable BeamReceive "); |
341 | brAction->setOn(true); | 343 | brAction->setOn(true); |
342 | infrared = new QCopChannel("QPE/Application/datebook",this, "channel" ) ; | 344 | infrared = new QCopChannel("QPE/Application/datebook",this, "channel" ) ; |
343 | QObject::connect( infrared, SIGNAL (received ( const QCString &, const QByteArray & )),this, SLOT(recieve( const QCString&, const QByteArray& ))); | 345 | QObject::connect( infrared, SIGNAL (received ( const QCString &, const QByteArray & )),this, SLOT(recieve( const QCString&, const QByteArray& ))); |
344 | #endif | 346 | #endif |
345 | } | 347 | } |
346 | void MainWindow::showMaximized () | 348 | void MainWindow::showMaximized () |
347 | { | 349 | { |
348 | #ifndef DESKTOP_VERSION | 350 | #ifndef DESKTOP_VERSION |
349 | if ( ! globalFlagBlockStartup ) | 351 | if ( ! globalFlagBlockStartup ) |
350 | if ( mClosed ) | 352 | if ( mClosed ) |
351 | mView->goToday(); | 353 | mView->goToday(); |
352 | #endif | 354 | #endif |
353 | QWidget::showMaximized () ; | 355 | QWidget::showMaximized () ; |
354 | mClosed = false; | 356 | mClosed = false; |
355 | } | 357 | } |
356 | void MainWindow::closeEvent( QCloseEvent* ce ) | 358 | void MainWindow::closeEvent( QCloseEvent* ce ) |
357 | { | 359 | { |
358 | 360 | ||
359 | 361 | ||
360 | 362 | ||
361 | if ( ! KOPrefs::instance()->mAskForQuit ) { | 363 | if ( ! KOPrefs::instance()->mAskForQuit ) { |
362 | saveOnClose(); | 364 | saveOnClose(); |
363 | mClosed = true; | 365 | mClosed = true; |
364 | ce->accept(); | 366 | ce->accept(); |
365 | return; | 367 | return; |
366 | 368 | ||
367 | } | 369 | } |
368 | 370 | ||
369 | switch( QMessageBox::information( this, "KO/Pi", | 371 | switch( QMessageBox::information( this, "KO/Pi", |
370 | i18n("Do you really want\nto close KO/Pi?"), | 372 | i18n("Do you really want\nto close KO/Pi?"), |
371 | i18n("Close"), i18n("No"), | 373 | i18n("Close"), i18n("No"), |
372 | 0, 0 ) ) { | 374 | 0, 0 ) ) { |
373 | case 0: | 375 | case 0: |
374 | saveOnClose(); | 376 | saveOnClose(); |
375 | mClosed = true; | 377 | mClosed = true; |
376 | ce->accept(); | 378 | ce->accept(); |
377 | break; | 379 | break; |
378 | case 1: | 380 | case 1: |
379 | ce->ignore(); | 381 | ce->ignore(); |
380 | break; | 382 | break; |
381 | case 2: | 383 | case 2: |
382 | 384 | ||
383 | default: | 385 | default: |
384 | break; | 386 | break; |
385 | } | 387 | } |
386 | 388 | ||
387 | 389 | ||
388 | } | 390 | } |
389 | 391 | ||
390 | void MainWindow::recieve( const QCString& cmsg, const QByteArray& data ) | 392 | void MainWindow::recieve( const QCString& cmsg, const QByteArray& data ) |
391 | { | 393 | { |
392 | QDataStream stream( data, IO_ReadOnly ); | 394 | QDataStream stream( data, IO_ReadOnly ); |
393 | // QMessageBox::about( this, "About KOrganizer/Pi", "*" +msg +"*" ); | 395 | // QMessageBox::about( this, "About KOrganizer/Pi", "*" +msg +"*" ); |
394 | //QString datamess; | 396 | //QString datamess; |
395 | //qDebug("message "); | 397 | //qDebug("message "); |
396 | qDebug("KO: QCOP message received: %s ", cmsg.data() ); | 398 | qDebug("KO: QCOP message received: %s ", cmsg.data() ); |
397 | 399 | ||
398 | if ( cmsg == "setDocument(QString)" ) { | 400 | if ( cmsg == "setDocument(QString)" ) { |
399 | QDataStream stream( data, IO_ReadOnly ); | 401 | QDataStream stream( data, IO_ReadOnly ); |
400 | QString fileName; | 402 | QString fileName; |
401 | stream >> fileName; | 403 | stream >> fileName; |
402 | //qDebug("filename %s ", fileName.latin1()); | 404 | //qDebug("filename %s ", fileName.latin1()); |
403 | showMaximized(); | 405 | showMaximized(); |
404 | raise(); | 406 | raise(); |
405 | KOPrefs::instance()->mLastSyncedLocalFile = fileName ; | 407 | KOPrefs::instance()->mLastSyncedLocalFile = fileName ; |
406 | mSyncManager->slotSyncMenu( 1002 ); | 408 | mSyncManager->slotSyncMenu( 1002 ); |
407 | return; | 409 | return; |
408 | } | 410 | } |
409 | 411 | ||
410 | if ( cmsg == "-writeFile" ) { | 412 | if ( cmsg == "-writeFile" ) { |
411 | // I made from the "-writeFile" an "-writeAlarm" | 413 | // I made from the "-writeFile" an "-writeAlarm" |
412 | mView->viewManager()->showWhatsNextView(); | 414 | mView->viewManager()->showWhatsNextView(); |
413 | mCalendar->checkAlarmForIncidence( 0, true); | 415 | mCalendar->checkAlarmForIncidence( 0, true); |
414 | showMaximized(); | 416 | showMaximized(); |
415 | raise(); | 417 | raise(); |
416 | return; | 418 | return; |
417 | 419 | ||
418 | } | 420 | } |
419 | if ( cmsg == "-writeFileSilent" ) { | 421 | if ( cmsg == "-writeFileSilent" ) { |
420 | // I made from the "-writeFile" an "-writeAlarm" | 422 | // I made from the "-writeFile" an "-writeAlarm" |
421 | // mView->viewManager()->showWhatsNextView(); | 423 | // mView->viewManager()->showWhatsNextView(); |
422 | mCalendar->checkAlarmForIncidence( 0, true); | 424 | mCalendar->checkAlarmForIncidence( 0, true); |
423 | //showMaximized(); | 425 | //showMaximized(); |
424 | //raise(); | 426 | //raise(); |
425 | hide(); | 427 | hide(); |
426 | return; | 428 | return; |
427 | } | 429 | } |
428 | if ( cmsg == "-newCountdown" ) { | 430 | if ( cmsg == "-newCountdown" ) { |
429 | qDebug("newCountdown "); | 431 | qDebug("newCountdown "); |
430 | 432 | ||
431 | } | 433 | } |
432 | QString msg ; | 434 | QString msg ; |
433 | QString allmsg = cmsg; | 435 | QString allmsg = cmsg; |
434 | while ( allmsg.length() > 0 ) { | 436 | while ( allmsg.length() > 0 ) { |
435 | int nextC = allmsg.find( "-", 1 ); | 437 | int nextC = allmsg.find( "-", 1 ); |
436 | if ( nextC == -1 ) { | 438 | if ( nextC == -1 ) { |
437 | msg = allmsg; | 439 | msg = allmsg; |
438 | allmsg = ""; | 440 | allmsg = ""; |
439 | } else{ | 441 | } else{ |
440 | msg = allmsg.left( nextC ); | 442 | msg = allmsg.left( nextC ); |
441 | allmsg = allmsg.mid( nextC, allmsg.length()-nextC ); | 443 | allmsg = allmsg.mid( nextC, allmsg.length()-nextC ); |
442 | } | 444 | } |
443 | //qDebug("msg: %s all: %s ", msg.latin1(), allmsg.latin1() ); | 445 | //qDebug("msg: %s all: %s ", msg.latin1(), allmsg.latin1() ); |
444 | if ( msg == "-newEvent" ) { | 446 | if ( msg == "-newEvent" ) { |
445 | mView->newEvent(); | 447 | mView->newEvent(); |
446 | } | 448 | } |
447 | if ( msg == "-newTodo" ) { | 449 | if ( msg == "-newTodo" ) { |
448 | mView->newTodo(); | 450 | mView->newTodo(); |
449 | 451 | ||
450 | } | 452 | } |
451 | if ( msg == "-showWN" ) { | 453 | if ( msg == "-showWN" ) { |
452 | mView->viewManager()->showWhatsNextView(); | 454 | mView->viewManager()->showWhatsNextView(); |
453 | } | 455 | } |
454 | if ( msg == "-showTodo" ) { | 456 | if ( msg == "-showTodo" ) { |
455 | mView->viewManager()->showTodoView(); | 457 | mView->viewManager()->showTodoView(); |
456 | } | 458 | } |
457 | if ( msg == "-showList" ) { | 459 | if ( msg == "-showList" ) { |
458 | mView->viewManager()->showListView(); | 460 | mView->viewManager()->showListView(); |
459 | } | 461 | } |
460 | else if ( msg == "-showDay" ) { | 462 | else if ( msg == "-showDay" ) { |
461 | mView->viewManager()->showDayView(); | 463 | mView->viewManager()->showDayView(); |
462 | } | 464 | } |
463 | else if ( msg == "-showWWeek" ) { | 465 | else if ( msg == "-showWWeek" ) { |
464 | mView->viewManager()->showWorkWeekView(); | 466 | mView->viewManager()->showWorkWeekView(); |
465 | } | 467 | } |
466 | else if ( msg == "-ringSync" ) { | 468 | else if ( msg == "-ringSync" ) { |
467 | mSyncManager->multiSync( false ); | 469 | mSyncManager->multiSync( false ); |
468 | } | 470 | } |
469 | else if ( msg == "-showWeek" ) { | 471 | else if ( msg == "-showWeek" ) { |
470 | mView->viewManager()->showWeekView(); | 472 | mView->viewManager()->showWeekView(); |
471 | } | 473 | } |
472 | else if ( msg == "-showTodo" ) { | 474 | else if ( msg == "-showTodo" ) { |
473 | mView->viewManager()->showTodoView(); | 475 | mView->viewManager()->showTodoView(); |
474 | } | 476 | } |
475 | else if ( msg == "-showJournal" ) { | 477 | else if ( msg == "-showJournal" ) { |
476 | mView->dateNavigator()->selectDates( 1 ); | 478 | mView->dateNavigator()->selectDates( 1 ); |
477 | mView->dateNavigator()->selectToday(); | 479 | mView->dateNavigator()->selectToday(); |
478 | mView->viewManager()->showJournalView(); | 480 | mView->viewManager()->showJournalView(); |
479 | } | 481 | } |
480 | else if ( msg == "-showKO" ) { | 482 | else if ( msg == "-showKO" ) { |
481 | mView->viewManager()->showNextXView(); | 483 | mView->viewManager()->showNextXView(); |
482 | } | 484 | } |
483 | else if ( msg == "-showWNext" || msg == "nextView()" ) { | 485 | else if ( msg == "-showWNext" || msg == "nextView()" ) { |
484 | mView->viewManager()->showWhatsNextView(); | 486 | mView->viewManager()->showWhatsNextView(); |
485 | } | 487 | } |
486 | else if ( msg == "-showNextXView" ) { | 488 | else if ( msg == "-showNextXView" ) { |
487 | mView->viewManager()->showNextXView(); | 489 | mView->viewManager()->showNextXView(); |
488 | } | 490 | } |
489 | 491 | ||
490 | 492 | ||
491 | } | 493 | } |
492 | 494 | ||
493 | showMaximized(); | 495 | showMaximized(); |
494 | raise(); | 496 | raise(); |
495 | } | 497 | } |
496 | 498 | ||
497 | QPixmap MainWindow::loadPixmap( QString name ) | 499 | QPixmap MainWindow::loadPixmap( QString name ) |
498 | { | 500 | { |
499 | return SmallIcon( name ); | 501 | return SmallIcon( name ); |
500 | 502 | ||
501 | } | 503 | } |
502 | void MainWindow::initActions() | 504 | void MainWindow::initActions() |
503 | { | 505 | { |
504 | //KOPrefs::instance()->mShowFullMenu | 506 | //KOPrefs::instance()->mShowFullMenu |
505 | iconToolBar->clear(); | 507 | iconToolBar->clear(); |
506 | KOPrefs *p = KOPrefs::instance(); | 508 | KOPrefs *p = KOPrefs::instance(); |
507 | //QPEMenuBar *menuBar1;// = new QPEMenuBar( iconToolBar ); | 509 | //QPEMenuBar *menuBar1;// = new QPEMenuBar( iconToolBar ); |
508 | 510 | ||
509 | QPopupMenu *viewMenu = new QPopupMenu( this ); | 511 | QPopupMenu *viewMenu = new QPopupMenu( this ); |
510 | QPopupMenu *actionMenu = new QPopupMenu( this ); | 512 | QPopupMenu *actionMenu = new QPopupMenu( this ); |
511 | QPopupMenu *importMenu = new QPopupMenu( this ); | 513 | QPopupMenu *importMenu = new QPopupMenu( this ); |
512 | selectFilterMenu = new QPopupMenu( this ); | 514 | selectFilterMenu = new QPopupMenu( this ); |
513 | selectFilterMenu->setCheckable( true ); | 515 | selectFilterMenu->setCheckable( true ); |
514 | syncMenu = new QPopupMenu( this ); | 516 | syncMenu = new QPopupMenu( this ); |
515 | configureAgendaMenu = new QPopupMenu( this ); | 517 | configureAgendaMenu = new QPopupMenu( this ); |
516 | configureToolBarMenu = new QPopupMenu( this ); | 518 | configureToolBarMenu = new QPopupMenu( this ); |
517 | QPopupMenu *helpMenu = new QPopupMenu( this ); | 519 | QPopupMenu *helpMenu = new QPopupMenu( this ); |
518 | if ( KOPrefs::instance()->mShowFullMenu ) { | 520 | if ( KOPrefs::instance()->mShowFullMenu ) { |
519 | QMenuBar *menuBar1; | 521 | QMenuBar *menuBar1; |
520 | menuBar1 = menuBar(); | 522 | menuBar1 = menuBar(); |
521 | menuBar1->insertItem( i18n("File"), importMenu ); | 523 | menuBar1->insertItem( i18n("File"), importMenu ); |
522 | menuBar1->insertItem( i18n("View"), viewMenu ); | 524 | menuBar1->insertItem( i18n("View"), viewMenu ); |
523 | menuBar1->insertItem( i18n("Actions"), actionMenu ); | 525 | menuBar1->insertItem( i18n("Actions"), actionMenu ); |
524 | menuBar1->insertItem( i18n("Synchronize"), syncMenu ); | 526 | menuBar1->insertItem( i18n("Synchronize"), syncMenu ); |
525 | menuBar1->insertItem( i18n("AgendaSize"),configureAgendaMenu ); | 527 | menuBar1->insertItem( i18n("AgendaSize"),configureAgendaMenu ); |
526 | //menuBar1->insertItem( i18n("Toolbar"),configureToolBarMenu ); | 528 | //menuBar1->insertItem( i18n("Toolbar"),configureToolBarMenu ); |
527 | menuBar1->insertItem( i18n("Filter"),selectFilterMenu ); | 529 | menuBar1->insertItem( i18n("Filter"),selectFilterMenu ); |
528 | menuBar1->insertItem( i18n("Help"), helpMenu ); | 530 | menuBar1->insertItem( i18n("Help"), helpMenu ); |
529 | } else { | 531 | } else { |
530 | QPEMenuBar *menuBar1; | 532 | QPEMenuBar *menuBar1; |
531 | menuBar1 = new QPEMenuBar( iconToolBar ); | 533 | menuBar1 = new QPEMenuBar( iconToolBar ); |
532 | QPopupMenu *menuBar = new QPopupMenu( this ); | 534 | QPopupMenu *menuBar = new QPopupMenu( this ); |
533 | menuBar1->insertItem( i18n("ME"), menuBar); | 535 | menuBar1->insertItem( i18n("ME"), menuBar); |
534 | menuBar->insertItem( i18n("File"), importMenu ); | 536 | menuBar->insertItem( i18n("File"), importMenu ); |
535 | menuBar->insertItem( i18n("View"), viewMenu ); | 537 | menuBar->insertItem( i18n("View"), viewMenu ); |
536 | menuBar->insertItem( i18n("Actions"), actionMenu ); | 538 | menuBar->insertItem( i18n("Actions"), actionMenu ); |
537 | menuBar->insertItem( i18n("Synchronize"), syncMenu ); | 539 | menuBar->insertItem( i18n("Synchronize"), syncMenu ); |
538 | menuBar->insertItem( i18n("AgendaSize"),configureAgendaMenu ); | 540 | menuBar->insertItem( i18n("AgendaSize"),configureAgendaMenu ); |
539 | menuBar->insertItem( i18n("Toolbar"),configureToolBarMenu ); | 541 | menuBar->insertItem( i18n("Toolbar"),configureToolBarMenu ); |
540 | menuBar->insertItem( i18n("Filter"),selectFilterMenu ); | 542 | menuBar->insertItem( i18n("Filter"),selectFilterMenu ); |
541 | menuBar->insertItem( i18n("Help"), helpMenu ); | 543 | menuBar->insertItem( i18n("Help"), helpMenu ); |
542 | //menuBar1->setMaximumWidth( menuBar1->sizeHint().width() ); | 544 | //menuBar1->setMaximumWidth( menuBar1->sizeHint().width() ); |
543 | menuBar1->setMaximumSize( menuBar1->sizeHint( )); | 545 | menuBar1->setMaximumSize( menuBar1->sizeHint( )); |
544 | } | 546 | } |
545 | connect ( selectFilterMenu, SIGNAL( activated ( int ) ), this, SLOT (selectFilter( int ) ) ); | 547 | connect ( selectFilterMenu, SIGNAL( activated ( int ) ), this, SLOT (selectFilter( int ) ) ); |
546 | connect ( selectFilterMenu, SIGNAL( aboutToShow () ), this, SLOT (fillFilterMenu() ) ); | 548 | connect ( selectFilterMenu, SIGNAL( aboutToShow () ), this, SLOT (fillFilterMenu() ) ); |
547 | 549 | ||
548 | // ****************** | 550 | // ****************** |
549 | QAction *action; | 551 | QAction *action; |
550 | QIconSet icon; | 552 | QIconSet icon; |
551 | // QPopupMenu *configureMenu= new QPopupMenu( menuBar ); | 553 | // QPopupMenu *configureMenu= new QPopupMenu( menuBar ); |
552 | configureToolBarMenu->setCheckable( true ); | 554 | configureToolBarMenu->setCheckable( true ); |
553 | 555 | ||
554 | QString pathString = ""; | 556 | QString pathString = ""; |
555 | if ( !p->mToolBarMiniIcons ) { | 557 | if ( !p->mToolBarMiniIcons ) { |
556 | if ( QApplication::desktop()->width() < 480 ) | 558 | if ( QApplication::desktop()->width() < 480 ) |
557 | pathString += "icons16/"; | 559 | pathString += "icons16/"; |
558 | } else | 560 | } else |
559 | pathString += "iconsmini/"; | 561 | pathString += "iconsmini/"; |
560 | configureAgendaMenu->setCheckable( true ); | 562 | configureAgendaMenu->setCheckable( true ); |
561 | configureAgendaMenu->insertItem(i18n("Tiny"), 4 ); | 563 | configureAgendaMenu->insertItem(i18n("Tiny"), 4 ); |
562 | configureAgendaMenu->insertItem(i18n("Small"), 6 ); | 564 | configureAgendaMenu->insertItem(i18n("Small"), 6 ); |
563 | configureAgendaMenu->insertItem(i18n("Medium"), 8 ); | 565 | configureAgendaMenu->insertItem(i18n("Medium"), 8 ); |
564 | configureAgendaMenu->insertItem(i18n("Normal"), 10 ); | 566 | configureAgendaMenu->insertItem(i18n("Normal"), 10 ); |
565 | configureAgendaMenu->insertItem(i18n("Large"), 12 ); | 567 | configureAgendaMenu->insertItem(i18n("Large"), 12 ); |
566 | configureAgendaMenu->insertItem(i18n("Big"), 14 ); | 568 | configureAgendaMenu->insertItem(i18n("Big"), 14 ); |
567 | configureAgendaMenu->insertItem(i18n("Bigger"), 16 ); | 569 | configureAgendaMenu->insertItem(i18n("Bigger"), 16 ); |
568 | configureAgendaMenu->insertItem(i18n("Biggest"), 18 ); | 570 | configureAgendaMenu->insertItem(i18n("Biggest"), 18 ); |
569 | //configureMenu->insertItem( "AgendaSize",configureAgendaMenu ); | 571 | //configureMenu->insertItem( "AgendaSize",configureAgendaMenu ); |
570 | 572 | ||
571 | icon = loadPixmap( pathString + "configure" ); | 573 | icon = loadPixmap( pathString + "configure" ); |
572 | action = new QAction( i18n("Configure"),icon, i18n("Configure..."), 0, this ); | 574 | action = new QAction( i18n("Configure"),icon, i18n("Configure..."), 0, this ); |
573 | action->addTo( actionMenu ); | 575 | action->addTo( actionMenu ); |
574 | connect( action, SIGNAL( activated() ), | 576 | connect( action, SIGNAL( activated() ), |
575 | mView, SLOT( edit_options() ) ); | 577 | mView, SLOT( edit_options() ) ); |
576 | actionMenu->insertSeparator(); | 578 | actionMenu->insertSeparator(); |
577 | 579 | ||
578 | action = new QAction( i18n("Undo Delete"), i18n("Undo Delete..."), 0, this ); | 580 | action = new QAction( i18n("Undo Delete"), i18n("Undo Delete..."), 0, this ); |
579 | action->addTo( actionMenu ); | 581 | action->addTo( actionMenu ); |
580 | connect( action, SIGNAL( activated() ), | 582 | connect( action, SIGNAL( activated() ), |
581 | mView, SLOT( undo_delete() ) ); | 583 | mView, SLOT( undo_delete() ) ); |
582 | actionMenu->insertSeparator(); | 584 | actionMenu->insertSeparator(); |
583 | 585 | ||
584 | icon = loadPixmap( pathString + "newevent" ); | 586 | icon = loadPixmap( pathString + "newevent" ); |
585 | configureToolBarMenu->insertItem(i18n("Stretched TB"), 5 ); | 587 | configureToolBarMenu->insertItem(i18n("Stretched TB"), 5 ); |
586 | configureToolBarMenu->insertSeparator(); | 588 | configureToolBarMenu->insertSeparator(); |
587 | configureToolBarMenu->insertItem(icon, i18n("New Event..."), 10 ); | 589 | configureToolBarMenu->insertItem(icon, i18n("New Event..."), 10 ); |
588 | QAction* ne_action = new QAction( i18n("New Event..."), icon, i18n("New Event..."), 0, this ); | 590 | QAction* ne_action = new QAction( i18n("New Event..."), icon, i18n("New Event..."), 0, this ); |
589 | ne_action->addTo( actionMenu ); | 591 | ne_action->addTo( actionMenu ); |
590 | connect( ne_action, SIGNAL( activated() ), | 592 | connect( ne_action, SIGNAL( activated() ), |
591 | mView, SLOT( newEvent() ) ); | 593 | mView, SLOT( newEvent() ) ); |
592 | icon = loadPixmap( pathString + "newtodo" ); | 594 | icon = loadPixmap( pathString + "newtodo" ); |
593 | configureToolBarMenu->insertItem(icon, i18n("New Todo..."), 20 ); | 595 | configureToolBarMenu->insertItem(icon, i18n("New Todo..."), 20 ); |
594 | QAction* nt_action = new QAction( i18n("New Todo..."), icon, i18n("New Todo..."), 0, this ); | 596 | QAction* nt_action = new QAction( i18n("New Todo..."), icon, i18n("New Todo..."), 0, this ); |
595 | nt_action->addTo( actionMenu ); | 597 | nt_action->addTo( actionMenu ); |
596 | connect( nt_action, SIGNAL( activated() ), | 598 | connect( nt_action, SIGNAL( activated() ), |
597 | mView, SLOT( newTodo() ) ); | 599 | mView, SLOT( newTodo() ) ); |
598 | icon = loadPixmap( pathString + "navi" ); | 600 | icon = loadPixmap( pathString + "navi" ); |
599 | action = new QAction( i18n("Toggle DateNavigator"), icon, i18n("Toggle DateNavigator"), 0, this ); | 601 | action = new QAction( i18n("Toggle DateNavigator"), icon, i18n("Toggle DateNavigator"), 0, this ); |
600 | action->addTo( viewMenu ); | 602 | action->addTo( viewMenu ); |
601 | connect( action, SIGNAL( activated() ), | 603 | connect( action, SIGNAL( activated() ), |
602 | mView, SLOT( toggleDateNavigatorWidget() ) ); | 604 | mView, SLOT( toggleDateNavigatorWidget() ) ); |
603 | icon = loadPixmap( pathString + "filter" ); | 605 | icon = loadPixmap( pathString + "filter" ); |
604 | action = new QAction( i18n("Toggle FilterView"), icon, i18n("Toggle FilterView"), 0, this ); | 606 | action = new QAction( i18n("Toggle FilterView"), icon, i18n("Toggle FilterView"), 0, this ); |
605 | action->addTo( viewMenu ); | 607 | action->addTo( viewMenu ); |
606 | connect( action, SIGNAL( activated() ), | 608 | connect( action, SIGNAL( activated() ), |
607 | mView, SLOT( toggleFilter() ) ); | 609 | mView, SLOT( toggleFilter() ) ); |
608 | action = new QAction( i18n("Toggle Allday"), i18n("Toggle Allday"), 0, this ); | 610 | action = new QAction( i18n("Toggle Allday"), i18n("Toggle Allday"), 0, this ); |
609 | action->addTo( viewMenu ); | 611 | action->addTo( viewMenu ); |
610 | connect( action, SIGNAL( activated() ), | 612 | connect( action, SIGNAL( activated() ), |
611 | mView, SLOT( toggleAllDaySize() ) ); | 613 | mView, SLOT( toggleAllDaySize() ) ); |
612 | 614 | ||
613 | viewMenu->insertSeparator(); | 615 | viewMenu->insertSeparator(); |
614 | icon = loadPixmap( pathString + "picker" ); | 616 | icon = loadPixmap( pathString + "picker" ); |
615 | action = new QAction( i18n("Date Picker"), icon, i18n("Date Picker"), 0, this ); | 617 | action = new QAction( i18n("Date Picker"), icon, i18n("Date Picker"), 0, this ); |
616 | action->addTo( viewMenu ); | 618 | action->addTo( viewMenu ); |
617 | connect( action, SIGNAL( activated() ), | 619 | connect( action, SIGNAL( activated() ), |
618 | mView, SLOT( showDatePicker() ) ); | 620 | mView, SLOT( showDatePicker() ) ); |
619 | action->addTo( iconToolBar ); | 621 | action->addTo( iconToolBar ); |
620 | viewMenu->insertSeparator(); | 622 | viewMenu->insertSeparator(); |
621 | icon = loadPixmap( pathString + "list" ); | 623 | icon = loadPixmap( pathString + "list" ); |
622 | configureToolBarMenu->insertItem(icon, i18n("List View"), 30 ); | 624 | configureToolBarMenu->insertItem(icon, i18n("List View"), 30 ); |
623 | QAction* showlist_action = new QAction( i18n("List View"), icon, i18n("List View"), 0, this ); | 625 | QAction* showlist_action = new QAction( i18n("List View"), icon, i18n("List View"), 0, this ); |
624 | showlist_action->addTo( viewMenu ); | 626 | showlist_action->addTo( viewMenu ); |
625 | connect( showlist_action, SIGNAL( activated() ), | 627 | connect( showlist_action, SIGNAL( activated() ), |
626 | mView->viewManager(), SLOT( showListView() ) ); | 628 | mView->viewManager(), SLOT( showListView() ) ); |
627 | 629 | ||
628 | 630 | ||
629 | icon = loadPixmap( pathString + "day" ); | 631 | icon = loadPixmap( pathString + "day" ); |
630 | configureToolBarMenu->insertItem(icon, i18n("Day View"), 40 ); | 632 | configureToolBarMenu->insertItem(icon, i18n("Day View"), 40 ); |
631 | QAction* day1_action = new QAction( i18n("Day View"), icon, i18n("Day View"), 0, this ); | 633 | QAction* day1_action = new QAction( i18n("Day View"), icon, i18n("Day View"), 0, this ); |
632 | day1_action->addTo( viewMenu ); | 634 | day1_action->addTo( viewMenu ); |
633 | // action->addTo( toolBar ); | 635 | // action->addTo( toolBar ); |
634 | connect( day1_action, SIGNAL( activated() ), | 636 | connect( day1_action, SIGNAL( activated() ), |
635 | mView->viewManager(), SLOT( showDayView() ) ); | 637 | mView->viewManager(), SLOT( showDayView() ) ); |
636 | 638 | ||
637 | icon = loadPixmap( pathString + "workweek" ); | 639 | icon = loadPixmap( pathString + "workweek" ); |
638 | configureToolBarMenu->insertItem(icon, i18n("Work Week"), 50 ); | 640 | configureToolBarMenu->insertItem(icon, i18n("Work Week"), 50 ); |
639 | QAction* day5_action = new QAction( i18n("Work Week"), icon, i18n("Work Week"), 0, this ); | 641 | QAction* day5_action = new QAction( i18n("Work Week"), icon, i18n("Work Week"), 0, this ); |
640 | day5_action->addTo( viewMenu ); | 642 | day5_action->addTo( viewMenu ); |
641 | connect( day5_action, SIGNAL( activated() ), | 643 | connect( day5_action, SIGNAL( activated() ), |
642 | mView->viewManager(), SLOT( showWorkWeekView() ) ); | 644 | mView->viewManager(), SLOT( showWorkWeekView() ) ); |
643 | 645 | ||
644 | icon = loadPixmap( pathString + "week" ); | 646 | icon = loadPixmap( pathString + "week" ); |
645 | configureToolBarMenu->insertItem(icon, i18n("Week"), 60 ); | 647 | configureToolBarMenu->insertItem(icon, i18n("Week"), 60 ); |
646 | QAction* day7_action = new QAction( i18n("Week"), icon, i18n("Week"), 0, this ); | 648 | QAction* day7_action = new QAction( i18n("Week"), icon, i18n("Week"), 0, this ); |
647 | day7_action->addTo( viewMenu ); | 649 | day7_action->addTo( viewMenu ); |
648 | connect( day7_action, SIGNAL( activated() ), | 650 | connect( day7_action, SIGNAL( activated() ), |
649 | mView->viewManager(), SLOT( showWeekView() ) ); | 651 | mView->viewManager(), SLOT( showWeekView() ) ); |
650 | 652 | ||
651 | icon = loadPixmap( pathString + "month" ); | 653 | icon = loadPixmap( pathString + "month" ); |
652 | configureToolBarMenu->insertItem(icon, i18n("Month"), 70 ); | 654 | configureToolBarMenu->insertItem(icon, i18n("Month"), 70 ); |
653 | QAction* month_action = new QAction( i18n("Month"), icon, i18n("Month"), 0, this ); | 655 | QAction* month_action = new QAction( i18n("Month"), icon, i18n("Month"), 0, this ); |
654 | month_action->addTo( viewMenu ); | 656 | month_action->addTo( viewMenu ); |
655 | connect( month_action, SIGNAL( activated() ), | 657 | connect( month_action, SIGNAL( activated() ), |
656 | mView->viewManager(), SLOT( showMonthView() ) ); | 658 | mView->viewManager(), SLOT( showMonthView() ) ); |
657 | 659 | ||
658 | icon = loadPixmap( pathString + "todo" ); | 660 | icon = loadPixmap( pathString + "todo" ); |
659 | configureToolBarMenu->insertItem(icon, i18n("Todo View"), 80 ); | 661 | configureToolBarMenu->insertItem(icon, i18n("Todo View"), 80 ); |
660 | QAction* todoview_action = new QAction( i18n("Todo View"), icon, i18n("Todo View"), 0, this ); | 662 | QAction* todoview_action = new QAction( i18n("Todo View"), icon, i18n("Todo View"), 0, this ); |
661 | todoview_action->addTo( viewMenu ); | 663 | todoview_action->addTo( viewMenu ); |
662 | connect( todoview_action, SIGNAL( activated() ), | 664 | connect( todoview_action, SIGNAL( activated() ), |
663 | mView->viewManager(), SLOT( showTodoView() ) ); | 665 | mView->viewManager(), SLOT( showTodoView() ) ); |
664 | 666 | ||
665 | icon = loadPixmap( pathString + "journal" ); | 667 | icon = loadPixmap( pathString + "journal" ); |
666 | configureToolBarMenu->insertItem(icon, i18n("Journal"), 90 ); | 668 | configureToolBarMenu->insertItem(icon, i18n("Journal"), 90 ); |
667 | QAction* viewjournal_action = new QAction( i18n("Journal"), icon, i18n("Journal"), 0, this ); | 669 | QAction* viewjournal_action = new QAction( i18n("Journal"), icon, i18n("Journal"), 0, this ); |
668 | viewjournal_action->addTo( viewMenu ); | 670 | viewjournal_action->addTo( viewMenu ); |
669 | connect( viewjournal_action, SIGNAL( activated() ), | 671 | connect( viewjournal_action, SIGNAL( activated() ), |
670 | mView->viewManager(), SLOT( showJournalView() ) ); | 672 | mView->viewManager(), SLOT( showJournalView() ) ); |
671 | 673 | ||
672 | icon = loadPixmap( pathString + "xdays" ); | 674 | icon = loadPixmap( pathString + "xdays" ); |
673 | configureToolBarMenu->insertItem(icon, i18n("Next days"), 100,4 ); | 675 | configureToolBarMenu->insertItem(icon, i18n("Next days"), 100,4 ); |
674 | QAction* xdays_action = new QAction( i18n("Next days"), icon, i18n("Next days"), 0, this ); | 676 | QAction* xdays_action = new QAction( i18n("Next days"), icon, i18n("Next days"), 0, this ); |
675 | xdays_action->addTo( viewMenu ); | 677 | xdays_action->addTo( viewMenu ); |
676 | connect( xdays_action, SIGNAL( activated() ), | 678 | connect( xdays_action, SIGNAL( activated() ), |
677 | mView->viewManager(), SLOT( showNextXView() ) ); | 679 | mView->viewManager(), SLOT( showNextXView() ) ); |
678 | 680 | ||
679 | icon = loadPixmap( pathString + "whatsnext" ); | 681 | icon = loadPixmap( pathString + "whatsnext" ); |
680 | configureToolBarMenu->insertItem(icon, i18n("What's Next"), 110, 4 ); | 682 | configureToolBarMenu->insertItem(icon, i18n("What's Next"), 110, 4 ); |
681 | QAction* whatsnext_action = new QAction( i18n("What's Next"), icon, i18n("What's Next"), 0, this ); | 683 | QAction* whatsnext_action = new QAction( i18n("What's Next"), icon, i18n("What's Next"), 0, this ); |
682 | whatsnext_action->addTo( viewMenu ); | 684 | whatsnext_action->addTo( viewMenu ); |
683 | connect( whatsnext_action, SIGNAL( activated() ), | 685 | connect( whatsnext_action, SIGNAL( activated() ), |
684 | mView->viewManager(), SLOT( showWhatsNextView() ) ); | 686 | mView->viewManager(), SLOT( showWhatsNextView() ) ); |
685 | 687 | ||
686 | #if 0 | 688 | #if 0 |
687 | action = new QAction( "view_timespan", "Time Span", 0, this ); | 689 | action = new QAction( "view_timespan", "Time Span", 0, this ); |
688 | action->addTo( viewMenu ); | 690 | action->addTo( viewMenu ); |
689 | connect( action, SIGNAL( activated() ), | 691 | connect( action, SIGNAL( activated() ), |
690 | mView->viewManager(), SLOT( showTimeSpanView() ) ); | 692 | mView->viewManager(), SLOT( showTimeSpanView() ) ); |
691 | #endif | 693 | #endif |
692 | 694 | ||
693 | mNewSubTodoAction = new QAction( "new_subtodo", i18n("New Sub-Todo..."), 0, | 695 | mNewSubTodoAction = new QAction( "new_subtodo", i18n("New Sub-Todo..."), 0, |
694 | this ); | 696 | this ); |
695 | mNewSubTodoAction->addTo( actionMenu ); | 697 | mNewSubTodoAction->addTo( actionMenu ); |
696 | connect( mNewSubTodoAction, SIGNAL( activated() ), | 698 | connect( mNewSubTodoAction, SIGNAL( activated() ), |
697 | mView, SLOT( newSubTodo() ) ); | 699 | mView, SLOT( newSubTodo() ) ); |
698 | 700 | ||
699 | actionMenu->insertSeparator(); | 701 | actionMenu->insertSeparator(); |
700 | 702 | ||
701 | mShowAction = new QAction( "show_incidence", i18n("Show..."), 0, this ); | 703 | mShowAction = new QAction( "show_incidence", i18n("Show..."), 0, this ); |
702 | mShowAction->addTo( actionMenu ); | 704 | mShowAction->addTo( actionMenu ); |
703 | connect( mShowAction, SIGNAL( activated() ), | 705 | connect( mShowAction, SIGNAL( activated() ), |
704 | mView, SLOT( showIncidence() ) ); | 706 | mView, SLOT( showIncidence() ) ); |
705 | 707 | ||
706 | mEditAction = new QAction( "edit_incidence", i18n("Edit..."), 0, this ); | 708 | mEditAction = new QAction( "edit_incidence", i18n("Edit..."), 0, this ); |
707 | mEditAction->addTo( actionMenu ); | 709 | mEditAction->addTo( actionMenu ); |
708 | connect( mEditAction, SIGNAL( activated() ), | 710 | connect( mEditAction, SIGNAL( activated() ), |
709 | mView, SLOT( editIncidence() ) ); | 711 | mView, SLOT( editIncidence() ) ); |
710 | 712 | ||
711 | mDeleteAction = new QAction( "delete_incidence", i18n("Delete..."), 0, this ); | 713 | mDeleteAction = new QAction( "delete_incidence", i18n("Delete..."), 0, this ); |
712 | mDeleteAction->addTo( actionMenu ); | 714 | mDeleteAction->addTo( actionMenu ); |
713 | connect( mDeleteAction, SIGNAL( activated() ), | 715 | connect( mDeleteAction, SIGNAL( activated() ), |
714 | mView, SLOT( deleteIncidence() ) ); | 716 | mView, SLOT( deleteIncidence() ) ); |
715 | 717 | ||
716 | 718 | ||
717 | mCloneAction = new QAction( "clone_incidence", i18n("Clone..."), 0, this ); | 719 | mCloneAction = new QAction( "clone_incidence", i18n("Clone..."), 0, this ); |
718 | mCloneAction->addTo( actionMenu ); | 720 | mCloneAction->addTo( actionMenu ); |
719 | connect( mCloneAction, SIGNAL( activated() ), | 721 | connect( mCloneAction, SIGNAL( activated() ), |
720 | mView, SLOT( cloneIncidence() ) ); | 722 | mView, SLOT( cloneIncidence() ) ); |
721 | mMoveAction = new QAction( "Move_incidence", i18n("Move..."), 0, this ); | 723 | mMoveAction = new QAction( "Move_incidence", i18n("Move..."), 0, this ); |
722 | mMoveAction->addTo( actionMenu ); | 724 | mMoveAction->addTo( actionMenu ); |
723 | connect( mMoveAction, SIGNAL( activated() ), | 725 | connect( mMoveAction, SIGNAL( activated() ), |
724 | mView, SLOT( moveIncidence() ) ); | 726 | mView, SLOT( moveIncidence() ) ); |
725 | mBeamAction = new QAction( "Beam_incidence", i18n("Beam..."), 0, this ); | 727 | mBeamAction = new QAction( "Beam_incidence", i18n("Beam..."), 0, this ); |
726 | mBeamAction->addTo( actionMenu ); | 728 | mBeamAction->addTo( actionMenu ); |
727 | connect( mBeamAction, SIGNAL( activated() ), | 729 | connect( mBeamAction, SIGNAL( activated() ), |
728 | mView, SLOT( beamIncidence() ) ); | 730 | mView, SLOT( beamIncidence() ) ); |
729 | mCancelAction = new QAction( "Cancel_incidence", i18n("Toggle Cancel"), 0, this ); | 731 | mCancelAction = new QAction( "Cancel_incidence", i18n("Toggle Cancel"), 0, this ); |
730 | mCancelAction->addTo( actionMenu ); | 732 | mCancelAction->addTo( actionMenu ); |
731 | connect( mCancelAction, SIGNAL( activated() ), | 733 | connect( mCancelAction, SIGNAL( activated() ), |
732 | mView, SLOT( toggleCancelIncidence() ) ); | 734 | mView, SLOT( toggleCancelIncidence() ) ); |
733 | 735 | ||
734 | actionMenu->insertSeparator(); | 736 | actionMenu->insertSeparator(); |
735 | 737 | ||
736 | action = new QAction( "purge_completed", i18n("Purge Completed"), 0, | 738 | action = new QAction( "purge_completed", i18n("Purge Completed"), 0, |
737 | this ); | 739 | this ); |
738 | action->addTo( actionMenu ); | 740 | action->addTo( actionMenu ); |
739 | connect( action, SIGNAL( activated() ), mView, SLOT( purgeCompleted() ) ); | 741 | connect( action, SIGNAL( activated() ), mView, SLOT( purgeCompleted() ) ); |
740 | 742 | ||
741 | icon = loadPixmap( pathString + "search" ); | 743 | icon = loadPixmap( pathString + "search" ); |
742 | QAction* search_action = new QAction( i18n("Search"), icon, i18n("Search..."), 0, this ); | 744 | QAction* search_action = new QAction( i18n("Search"), icon, i18n("Search..."), 0, this ); |
743 | configureToolBarMenu->insertItem(icon, i18n("Search"), 120 , 4); | 745 | configureToolBarMenu->insertItem(icon, i18n("Search"), 120 , 4); |
744 | search_action->addTo( actionMenu ); | 746 | search_action->addTo( actionMenu ); |
745 | connect( search_action, SIGNAL( activated() ), | 747 | connect( search_action, SIGNAL( activated() ), |
746 | mView->dialogManager(), SLOT( showSearchDialog() ) ); | 748 | mView->dialogManager(), SLOT( showSearchDialog() ) ); |
747 | 749 | ||
748 | icon = loadPixmap( pathString + "today" ); | 750 | icon = loadPixmap( pathString + "today" ); |
749 | configureToolBarMenu->insertItem(icon, i18n("Go to Today"), 130); | 751 | configureToolBarMenu->insertItem(icon, i18n("Go to Today"), 130); |
750 | QAction* today_action = new QAction( i18n("Go to Today"), icon, i18n("Go to Today"), 0, this ); | 752 | QAction* today_action = new QAction( i18n("Go to Today"), icon, i18n("Go to Today"), 0, this ); |
751 | today_action->addTo( actionMenu ); | 753 | today_action->addTo( actionMenu ); |
752 | connect( today_action, SIGNAL( activated() ), | 754 | connect( today_action, SIGNAL( activated() ), |
753 | mView, SLOT( goToday() ) ); | 755 | mView, SLOT( goToday() ) ); |
754 | 756 | ||
755 | if ( KOPrefs::instance()->mShowFullMenu ) { | 757 | if ( KOPrefs::instance()->mShowFullMenu ) { |
756 | actionMenu->insertSeparator(); | 758 | actionMenu->insertSeparator(); |
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 | ||
806 | 808 | ||
807 | //LR | 809 | //LR |
808 | QPopupMenu *ex2phone = new QPopupMenu( this ); | 810 | QPopupMenu *ex2phone = new QPopupMenu( this ); |
809 | ex2phone->insertItem(i18n("Complete calendar..."), 1 ); | 811 | ex2phone->insertItem(i18n("Complete calendar..."), 1 ); |
810 | ex2phone->insertItem(i18n("Filtered calendar..."), 2 ); | 812 | ex2phone->insertItem(i18n("Filtered calendar..."), 2 ); |
811 | connect( ex2phone, SIGNAL( activated(int) ), this, SLOT( exportToPhone( int)) ); | 813 | connect( ex2phone, SIGNAL( activated(int) ), this, SLOT( exportToPhone( int)) ); |
812 | importMenu->insertItem( i18n("Export to phone"), ex2phone ); | 814 | importMenu->insertItem( i18n("Export to phone"), ex2phone ); |
813 | 815 | ||
814 | importMenu->insertSeparator(); | 816 | importMenu->insertSeparator(); |
815 | action = new QAction( "manage cat", i18n("Manage new categories..."), 0, | 817 | action = new QAction( "manage cat", i18n("Manage new categories..."), 0, |
816 | this ); | 818 | this ); |
817 | action->addTo( importMenu ); | 819 | action->addTo( importMenu ); |
818 | connect( action, SIGNAL( activated() ), mView, SLOT( manageCategories() ) ); | 820 | connect( action, SIGNAL( activated() ), mView, SLOT( manageCategories() ) ); |
819 | #ifndef DESKTOP_VERSION | 821 | #ifndef DESKTOP_VERSION |
820 | importMenu->insertSeparator(); | 822 | importMenu->insertSeparator(); |
821 | brAction = new QAction( "beam toggle", i18n("Beam receive enabled"), 0, | 823 | brAction = new QAction( "beam toggle", i18n("Beam receive enabled"), 0, |
822 | this ); | 824 | this ); |
823 | brAction->addTo( importMenu ); | 825 | brAction->addTo( importMenu ); |
824 | brAction->setToggleAction (true ) ; | 826 | brAction->setToggleAction (true ) ; |
825 | connect( brAction, SIGNAL( activated() ), this, SLOT( toggleBeamReceive() ) ); | 827 | connect( brAction, SIGNAL( activated() ), this, SLOT( toggleBeamReceive() ) ); |
826 | 828 | ||
827 | action = new QAction( "beam all", i18n("Beam complete calendar..."), 0, | 829 | action = new QAction( "beam all", i18n("Beam complete calendar..."), 0, |
828 | this ); | 830 | this ); |
829 | action->addTo( importMenu ); | 831 | action->addTo( importMenu ); |
830 | connect( action, SIGNAL( activated() ), mView, SLOT( beamCalendar() ) ); | 832 | connect( action, SIGNAL( activated() ), mView, SLOT( beamCalendar() ) ); |
831 | 833 | ||
832 | action = new QAction( "beam all", i18n("Beam filtered calendar..."), 0, | 834 | action = new QAction( "beam all", i18n("Beam filtered calendar..."), 0, |
833 | this ); | 835 | this ); |
834 | action->addTo( importMenu ); | 836 | action->addTo( importMenu ); |
835 | connect( action, SIGNAL( activated() ), mView, SLOT( beamFilteredCalendar()) ); | 837 | connect( action, SIGNAL( activated() ), mView, SLOT( beamFilteredCalendar()) ); |
836 | #else | 838 | #else |
837 | importMenu->insertSeparator(); | 839 | importMenu->insertSeparator(); |
838 | icon = loadPixmap( pathString + "print" ); | 840 | icon = loadPixmap( pathString + "print" ); |
839 | action = new QAction( i18n("Print calendar..."),icon,i18n("Print calendar..."), 0, this ); | 841 | action = new QAction( i18n("Print calendar..."),icon,i18n("Print calendar..."), 0, this ); |
840 | action->addTo( importMenu ); | 842 | action->addTo( importMenu ); |
841 | connect( action, SIGNAL( activated() ), | 843 | connect( action, SIGNAL( activated() ), |
842 | this, SLOT( printCal() ) ); | 844 | this, SLOT( printCal() ) ); |
843 | 845 | ||
844 | icon = loadPixmap( pathString + "print" ); | 846 | icon = loadPixmap( pathString + "print" ); |
845 | action = new QAction( i18n("Print agenda selection..."),icon,i18n("Print agenda selection..."), 0, this ); | 847 | action = new QAction( i18n("Print agenda selection..."),icon,i18n("Print agenda selection..."), 0, this ); |
846 | action->addTo( importMenu ); | 848 | action->addTo( importMenu ); |
847 | connect( action, SIGNAL( activated() ), | 849 | connect( action, SIGNAL( activated() ), |
848 | this, SLOT( printSel() ) ); | 850 | this, SLOT( printSel() ) ); |
849 | action = new QAction( i18n("Print What's Next View..."),icon,i18n("Print What's Next View..."), 0, this ); | 851 | action = new QAction( i18n("Print What's Next View..."),icon,i18n("Print What's Next View..."), 0, this ); |
850 | action->addTo( importMenu ); | 852 | action->addTo( importMenu ); |
851 | connect( action, SIGNAL( activated() ), | 853 | connect( action, SIGNAL( activated() ), |
852 | mView->viewManager(), SIGNAL( printWNV() ) ); | 854 | mView->viewManager(), SIGNAL( printWNV() ) ); |
853 | #endif | 855 | #endif |
854 | importMenu->insertSeparator(); | 856 | importMenu->insertSeparator(); |
855 | action = new QAction( "beam all", i18n("Save"), 0, | 857 | action = new QAction( "beam all", i18n("Save"), 0, |
856 | this ); | 858 | this ); |
857 | action->addTo( importMenu ); | 859 | action->addTo( importMenu ); |
858 | connect( action, SIGNAL( activated() ), this, SLOT( save() ) ); | 860 | connect( action, SIGNAL( activated() ), this, SLOT( save() ) ); |
859 | action = new QAction( "beam all", i18n("Exit (+save)"), 0, | 861 | action = new QAction( "beam all", i18n("Exit (+save)"), 0, |
860 | this ); | 862 | this ); |
861 | action->addTo( importMenu ); | 863 | action->addTo( importMenu ); |
862 | connect( action, SIGNAL( activated() ), this, SLOT( close() ) ); | 864 | connect( action, SIGNAL( activated() ), this, SLOT( close() ) ); |
863 | 865 | ||
864 | //menuBar->insertItem( "Configure",configureMenu ); | 866 | //menuBar->insertItem( "Configure",configureMenu ); |
865 | //configureMenu->insertItem( "Toolbar",configureToolBarMenu ); | 867 | //configureMenu->insertItem( "Toolbar",configureToolBarMenu ); |
866 | icon = loadPixmap( "korganizer/korganizer" ); | 868 | icon = loadPixmap( "korganizer/korganizer" ); |
867 | 869 | ||
868 | action = new QAction( "Whats New", i18n("What's new?"), 0,this ); | 870 | action = new QAction( "Whats New", i18n("What's new?"), 0,this ); |
869 | action->addTo( helpMenu ); | 871 | action->addTo( helpMenu ); |
870 | connect( action, SIGNAL( activated() ), | 872 | connect( action, SIGNAL( activated() ), |
871 | SLOT( whatsNew() ) ); | 873 | SLOT( whatsNew() ) ); |
872 | action = new QAction( "featureHowto", i18n("Features + hints..."), 0,this ); | 874 | action = new QAction( "featureHowto", i18n("Features + hints..."), 0,this ); |
873 | action->addTo( helpMenu ); | 875 | action->addTo( helpMenu ); |
874 | connect( action, SIGNAL( activated() ), | 876 | connect( action, SIGNAL( activated() ), |
875 | SLOT( features() ) ); | 877 | SLOT( features() ) ); |
876 | action = new QAction( "Keys + Colors", i18n("Keys + Colors..."), 0, this ); | 878 | action = new QAction( "Keys + Colors", i18n("Keys + Colors..."), 0, this ); |
877 | action->addTo( helpMenu ); | 879 | action->addTo( helpMenu ); |
878 | connect( action, SIGNAL( activated() ), | 880 | connect( action, SIGNAL( activated() ), |
879 | SLOT( keyBindings() ) ); | 881 | SLOT( keyBindings() ) ); |
880 | action = new QAction( "Sync Howto", i18n("Sync HowTo..."), 0,this ); | 882 | action = new QAction( "Sync Howto", i18n("Sync HowTo..."), 0,this ); |
881 | action->addTo( helpMenu ); | 883 | action->addTo( helpMenu ); |
882 | connect( action, SIGNAL( activated() ), | 884 | connect( action, SIGNAL( activated() ), |
883 | SLOT( synchowto() ) ); | 885 | SLOT( synchowto() ) ); |
884 | action = new QAction( "KDE Sync Howto", i18n("KDE Sync HowTo..."), 0,this ); | 886 | action = new QAction( "KDE Sync Howto", i18n("KDE Sync HowTo..."), 0,this ); |
885 | action->addTo( helpMenu ); | 887 | action->addTo( helpMenu ); |
886 | connect( action, SIGNAL( activated() ), | 888 | connect( action, SIGNAL( activated() ), |
887 | SLOT( kdesynchowto() ) ); | 889 | SLOT( kdesynchowto() ) ); |
888 | action = new QAction( "Multi Sync Howto", i18n("Multi Sync HowTo..."), 0,this ); | 890 | action = new QAction( "Multi Sync Howto", i18n("Multi Sync HowTo..."), 0,this ); |
889 | action->addTo( helpMenu ); | 891 | action->addTo( helpMenu ); |
890 | connect( action, SIGNAL( activated() ), | 892 | connect( action, SIGNAL( activated() ), |
891 | SLOT( multisynchowto() ) ); | 893 | SLOT( multisynchowto() ) ); |
892 | action = new QAction( "Auto saving", i18n("Auto saving..."), 0, this ); | 894 | action = new QAction( "Auto saving", i18n("Auto saving..."), 0, this ); |
893 | action->addTo( helpMenu ); | 895 | action->addTo( helpMenu ); |
894 | connect( action, SIGNAL( activated() ), | 896 | connect( action, SIGNAL( activated() ), |
895 | SLOT( aboutAutoSaving() ) ); | 897 | SLOT( aboutAutoSaving() ) ); |
896 | action = new QAction( "Problemd", i18n("Known Problems..."), 0,this ); | 898 | action = new QAction( "Problemd", i18n("Known Problems..."), 0,this ); |
897 | action->addTo( helpMenu ); | 899 | action->addTo( helpMenu ); |
898 | connect( action, SIGNAL( activated() ), | 900 | connect( action, SIGNAL( activated() ), |
899 | SLOT( aboutKnownBugs() ) ); | 901 | SLOT( aboutKnownBugs() ) ); |
900 | action = new QAction( "Translate Howto", i18n("User translation..."), 0,this ); | 902 | action = new QAction( "Translate Howto", i18n("User translation..."), 0,this ); |
901 | action->addTo( helpMenu ); | 903 | action->addTo( helpMenu ); |
902 | connect( action, SIGNAL( activated() ), | 904 | connect( action, SIGNAL( activated() ), |
903 | SLOT( usertrans() ) ); | 905 | SLOT( usertrans() ) ); |
904 | action = new QAction( "Frequently asked questions", i18n("FAQ..."), 0,this ); | 906 | action = new QAction( "Frequently asked questions", i18n("FAQ..."), 0,this ); |
905 | action->addTo( helpMenu ); | 907 | action->addTo( helpMenu ); |
906 | connect( action, SIGNAL( activated() ), | 908 | connect( action, SIGNAL( activated() ), |
907 | SLOT( faq() ) ); | 909 | SLOT( faq() ) ); |
908 | action = new QAction( "licence", i18n("Licence..."), 0, this ); | 910 | action = new QAction( "licence", i18n("Licence..."), 0, this ); |
909 | action->addTo( helpMenu ); | 911 | action->addTo( helpMenu ); |
910 | connect( action, SIGNAL( activated() ), | 912 | connect( action, SIGNAL( activated() ), |
911 | SLOT( licence() ) ); | 913 | SLOT( licence() ) ); |
912 | action = new QAction( "about", i18n("About..."), 0, this ); | 914 | action = new QAction( "about", i18n("About..."), 0, this ); |
913 | action->addTo( helpMenu ); | 915 | action->addTo( helpMenu ); |
914 | connect( action, SIGNAL( activated() ), | 916 | connect( action, SIGNAL( activated() ), |
915 | SLOT( about() ) ); | 917 | SLOT( about() ) ); |
916 | //menuBar->insertSeparator(); | 918 | //menuBar->insertSeparator(); |
917 | 919 | ||
918 | // ****************************************************** | 920 | // ****************************************************** |
919 | // menubar icons | 921 | // menubar icons |
920 | 922 | ||
921 | 923 | ||
922 | iconToolBar->setHorizontalStretchable (true ); | 924 | iconToolBar->setHorizontalStretchable (true ); |
923 | //menuBar->insertItem( iconToolBar ); | 925 | //menuBar->insertItem( iconToolBar ); |
924 | //xdays_action | 926 | //xdays_action |
925 | if (p-> mShowIconNewEvent) | 927 | if (p-> mShowIconNewEvent) |
926 | ne_action->addTo( iconToolBar ); | 928 | ne_action->addTo( iconToolBar ); |
927 | if (p->mShowIconNewTodo ) | 929 | if (p->mShowIconNewTodo ) |
928 | nt_action->addTo( iconToolBar ); | 930 | nt_action->addTo( iconToolBar ); |
929 | if (p-> mShowIconSearch) | 931 | if (p-> mShowIconSearch) |
930 | search_action->addTo( iconToolBar ); | 932 | search_action->addTo( iconToolBar ); |
931 | if (p-> mShowIconNext) | 933 | if (p-> mShowIconNext) |
932 | whatsnext_action->addTo( iconToolBar ); | 934 | whatsnext_action->addTo( iconToolBar ); |
933 | if (p-> mShowIconNextDays) | 935 | if (p-> mShowIconNextDays) |
934 | xdays_action->addTo( iconToolBar ); | 936 | xdays_action->addTo( iconToolBar ); |
935 | if (p-> mShowIconList) | 937 | if (p-> mShowIconList) |
936 | showlist_action->addTo( iconToolBar ); | 938 | showlist_action->addTo( iconToolBar ); |
937 | if (p-> mShowIconDay1) | 939 | if (p-> mShowIconDay1) |
938 | day1_action->addTo( iconToolBar ); | 940 | day1_action->addTo( iconToolBar ); |
939 | if (p-> mShowIconDay5) | 941 | if (p-> mShowIconDay5) |
940 | day5_action->addTo( iconToolBar ); | 942 | day5_action->addTo( iconToolBar ); |
941 | if (p-> mShowIconDay7) | 943 | if (p-> mShowIconDay7) |
942 | day7_action->addTo( iconToolBar ); | 944 | day7_action->addTo( iconToolBar ); |
943 | if (p-> mShowIconMonth) | 945 | if (p-> mShowIconMonth) |
944 | month_action->addTo( iconToolBar ); | 946 | month_action->addTo( iconToolBar ); |
945 | if (p-> mShowIconTodoview) | 947 | if (p-> mShowIconTodoview) |
946 | todoview_action->addTo( iconToolBar ); | 948 | todoview_action->addTo( iconToolBar ); |
947 | if (p-> mShowIconJournal) | 949 | if (p-> mShowIconJournal) |
948 | viewjournal_action->addTo( iconToolBar ); | 950 | viewjournal_action->addTo( iconToolBar ); |
949 | icon = loadPixmap( pathString + "2leftarrowB" ); | 951 | icon = loadPixmap( pathString + "2leftarrowB" ); |
950 | configureToolBarMenu->insertItem(icon, i18n("Prev. month"), 200, 14); | 952 | configureToolBarMenu->insertItem(icon, i18n("Prev. month"), 200, 14); |
951 | if (p-> mShowIconBackFast) { | 953 | if (p-> mShowIconBackFast) { |
952 | action = new QAction( i18n("Prev. month"), icon, i18n("Prev. month"),0 , this ); | 954 | action = new QAction( i18n("Prev. month"), icon, i18n("Prev. month"),0 , this ); |
953 | connect( action, SIGNAL( activated() ), | 955 | connect( action, SIGNAL( activated() ), |
954 | mView, SLOT( goPreviousMonth() ) ); | 956 | mView, SLOT( goPreviousMonth() ) ); |
955 | action->addTo( iconToolBar ); | 957 | action->addTo( iconToolBar ); |
956 | } | 958 | } |
957 | icon = loadPixmap( pathString + "1leftarrowB" ); | 959 | icon = loadPixmap( pathString + "1leftarrowB" ); |
958 | configureToolBarMenu->insertItem(icon, i18n("Go backward"), 210,15); | 960 | configureToolBarMenu->insertItem(icon, i18n("Go backward"), 210,15); |
959 | if (p-> mShowIconBack) { | 961 | if (p-> mShowIconBack) { |
960 | action = new QAction( i18n("Go backward"), icon, i18n("Go backward"),0 , this ); | 962 | action = new QAction( i18n("Go backward"), icon, i18n("Go backward"),0 , this ); |
961 | connect( action, SIGNAL( activated() ), | 963 | connect( action, SIGNAL( activated() ), |
962 | mView, SLOT( goPrevious() ) ); | 964 | mView, SLOT( goPrevious() ) ); |
963 | action->addTo( iconToolBar ); | 965 | action->addTo( iconToolBar ); |
964 | } | 966 | } |
965 | if (p-> mShowIconToday) | 967 | if (p-> mShowIconToday) |
966 | today_action->addTo( iconToolBar ); | 968 | today_action->addTo( iconToolBar ); |
967 | icon = loadPixmap( pathString + "1rightarrowB" ); | 969 | icon = loadPixmap( pathString + "1rightarrowB" ); |
968 | configureToolBarMenu->insertItem(icon, i18n("Go forward"), 220); | 970 | configureToolBarMenu->insertItem(icon, i18n("Go forward"), 220); |
969 | if (p-> mShowIconForward) { | 971 | if (p-> mShowIconForward) { |
970 | action = new QAction( i18n("Go forward"), icon, i18n("Go forward"),0 , this ); | 972 | action = new QAction( i18n("Go forward"), icon, i18n("Go forward"),0 , this ); |
971 | connect( action, SIGNAL( activated() ), | 973 | connect( action, SIGNAL( activated() ), |
972 | mView, SLOT( goNext() ) ); | 974 | mView, SLOT( goNext() ) ); |
973 | action->addTo( iconToolBar ); | 975 | action->addTo( iconToolBar ); |
974 | } | 976 | } |
975 | icon = loadPixmap( pathString + "2rightarrowB" ); | 977 | icon = loadPixmap( pathString + "2rightarrowB" ); |
976 | configureToolBarMenu->insertItem(icon, i18n("Next month"), 230); | 978 | configureToolBarMenu->insertItem(icon, i18n("Next month"), 230); |
977 | if (p-> mShowIconForwardFast) { | 979 | if (p-> mShowIconForwardFast) { |
978 | action = new QAction( i18n("Next month"), icon, i18n("Next month"),0 , this ); | 980 | action = new QAction( i18n("Next month"), icon, i18n("Next month"),0 , this ); |
979 | connect( action, SIGNAL( activated() ), | 981 | connect( action, SIGNAL( activated() ), |
980 | mView, SLOT( goNextMonth() ) ); | 982 | mView, SLOT( goNextMonth() ) ); |
981 | action->addTo( iconToolBar ); | 983 | action->addTo( iconToolBar ); |
982 | } | 984 | } |
983 | 985 | ||
984 | 986 | ||
985 | configureToolBarMenu->insertItem(i18n("What's This?"), 300); | 987 | configureToolBarMenu->insertItem(i18n("What's This?"), 300); |
986 | 988 | ||
987 | if (p-> mShowIconNewEvent) | 989 | if (p-> mShowIconNewEvent) |
988 | configureToolBarMenu->setItemChecked( 10, true ); | 990 | configureToolBarMenu->setItemChecked( 10, true ); |
989 | if (p->mShowIconNewTodo ) | 991 | if (p->mShowIconNewTodo ) |
990 | configureToolBarMenu->setItemChecked( 20, true ); | 992 | configureToolBarMenu->setItemChecked( 20, true ); |
991 | if (p-> mShowIconSearch) | 993 | if (p-> mShowIconSearch) |
992 | configureToolBarMenu->setItemChecked( 120, true ); | 994 | configureToolBarMenu->setItemChecked( 120, true ); |
993 | if (p-> mShowIconList) | 995 | if (p-> mShowIconList) |
994 | configureToolBarMenu->setItemChecked( 30, true ); | 996 | configureToolBarMenu->setItemChecked( 30, true ); |
995 | if (p-> mShowIconDay1) | 997 | if (p-> mShowIconDay1) |
996 | configureToolBarMenu->setItemChecked( 40, true ); | 998 | configureToolBarMenu->setItemChecked( 40, true ); |
997 | if (p-> mShowIconDay5) | 999 | if (p-> mShowIconDay5) |
998 | configureToolBarMenu->setItemChecked( 50, true ); | 1000 | configureToolBarMenu->setItemChecked( 50, true ); |
999 | if (p-> mShowIconDay7) | 1001 | if (p-> mShowIconDay7) |
1000 | configureToolBarMenu->setItemChecked( 60, true ); | 1002 | configureToolBarMenu->setItemChecked( 60, true ); |
1001 | if (p-> mShowIconMonth) | 1003 | if (p-> mShowIconMonth) |
1002 | configureToolBarMenu->setItemChecked( 70, true ); | 1004 | configureToolBarMenu->setItemChecked( 70, true ); |
1003 | if (p-> mShowIconTodoview) | 1005 | if (p-> mShowIconTodoview) |
1004 | configureToolBarMenu->setItemChecked( 80, true ); | 1006 | configureToolBarMenu->setItemChecked( 80, true ); |
1005 | if (p-> mShowIconBackFast) | 1007 | if (p-> mShowIconBackFast) |
1006 | configureToolBarMenu->setItemChecked( 200, true ); | 1008 | configureToolBarMenu->setItemChecked( 200, true ); |
1007 | if (p-> mShowIconBack) | 1009 | if (p-> mShowIconBack) |
1008 | configureToolBarMenu->setItemChecked( 210, true ); | 1010 | configureToolBarMenu->setItemChecked( 210, true ); |
1009 | if (p-> mShowIconToday) | 1011 | if (p-> mShowIconToday) |
1010 | configureToolBarMenu->setItemChecked( 130, true ); | 1012 | configureToolBarMenu->setItemChecked( 130, true ); |
1011 | if (p-> mShowIconForward) | 1013 | if (p-> mShowIconForward) |
1012 | configureToolBarMenu->setItemChecked( 220, true ); | 1014 | configureToolBarMenu->setItemChecked( 220, true ); |
1013 | if (p-> mShowIconForwardFast) | 1015 | if (p-> mShowIconForwardFast) |
1014 | configureToolBarMenu->setItemChecked( 230, true ); | 1016 | configureToolBarMenu->setItemChecked( 230, true ); |
1015 | if (p-> mShowIconNextDays) | 1017 | if (p-> mShowIconNextDays) |
1016 | configureToolBarMenu->setItemChecked( 100, true ); | 1018 | configureToolBarMenu->setItemChecked( 100, true ); |
1017 | if (p-> mShowIconNext) | 1019 | if (p-> mShowIconNext) |
1018 | configureToolBarMenu->setItemChecked( 110, true ); | 1020 | configureToolBarMenu->setItemChecked( 110, true ); |
1019 | if (p-> mShowIconJournal) | 1021 | if (p-> mShowIconJournal) |
1020 | configureToolBarMenu->setItemChecked( 90, true ); | 1022 | configureToolBarMenu->setItemChecked( 90, true ); |
1021 | if (p-> mShowIconWhatsThis) | 1023 | if (p-> mShowIconWhatsThis) |
1022 | configureToolBarMenu->setItemChecked( 300, true ); | 1024 | configureToolBarMenu->setItemChecked( 300, true ); |
1023 | 1025 | ||
1024 | QLabel* dummy = new QLabel( iconToolBar ); | 1026 | QLabel* dummy = new QLabel( iconToolBar ); |
1025 | dummy->setBackgroundColor( iconToolBar->backgroundColor() ); | 1027 | dummy->setBackgroundColor( iconToolBar->backgroundColor() ); |
1026 | if (!p-> mShowIconStretch) | 1028 | if (!p-> mShowIconStretch) |
1027 | iconToolBar->setStretchableWidget ( dummy ) ; | 1029 | iconToolBar->setStretchableWidget ( dummy ) ; |
1028 | else | 1030 | else |
1029 | configureToolBarMenu->setItemChecked( 5, true ); | 1031 | configureToolBarMenu->setItemChecked( 5, true ); |
1030 | if (p-> mShowIconWhatsThis) | 1032 | if (p-> mShowIconWhatsThis) |
1031 | QWhatsThis::whatsThisButton ( iconToolBar ); | 1033 | QWhatsThis::whatsThisButton ( iconToolBar ); |
1032 | connect( configureToolBarMenu, SIGNAL( activated( int ) ),this, SLOT(configureToolBar( int ) ) ); | 1034 | connect( configureToolBarMenu, SIGNAL( activated( int ) ),this, SLOT(configureToolBar( int ) ) ); |
1033 | configureAgenda( p->mHourSize ); | 1035 | configureAgenda( p->mHourSize ); |
1034 | connect( configureAgendaMenu, SIGNAL( activated( int ) ),this, SLOT(configureAgenda( int ) ) ); | 1036 | connect( configureAgendaMenu, SIGNAL( activated( int ) ),this, SLOT(configureAgenda( int ) ) ); |
1035 | } | 1037 | } |
1036 | 1038 | ||
1037 | void MainWindow::exportToPhone( int mode ) | 1039 | void MainWindow::exportToPhone( int mode ) |
1038 | { | 1040 | { |
1039 | 1041 | ||
1040 | //ex2phone->insertItem(i18n("Complete calendar..."), 1 ); | 1042 | //ex2phone->insertItem(i18n("Complete calendar..."), 1 ); |
1041 | //ex2phone->insertItem(i18n("Filtered calendar..."), 2 ); | 1043 | //ex2phone->insertItem(i18n("Filtered calendar..."), 2 ); |
1042 | KOex2phonePrefs ex2phone; | 1044 | KOex2phonePrefs ex2phone; |
1043 | 1045 | ||
1044 | ex2phone.mPhoneConnection->setText( KPimGlobalPrefs::instance()->mEx2PhoneConnection ); | 1046 | ex2phone.mPhoneConnection->setText( KPimGlobalPrefs::instance()->mEx2PhoneConnection ); |
1045 | ex2phone.mPhoneDevice->setText( KPimGlobalPrefs::instance()->mEx2PhoneDevice ); | 1047 | ex2phone.mPhoneDevice->setText( KPimGlobalPrefs::instance()->mEx2PhoneDevice ); |
1046 | ex2phone.mPhoneModel->setText( KPimGlobalPrefs::instance()->mEx2PhoneModel ); | 1048 | ex2phone.mPhoneModel->setText( KPimGlobalPrefs::instance()->mEx2PhoneModel ); |
1047 | if ( mode == 1 ) | 1049 | if ( mode == 1 ) |
1048 | ex2phone.setCaption(i18n("Export complete calendar")); | 1050 | ex2phone.setCaption(i18n("Export complete calendar")); |
1049 | if ( mode == 2 ) | 1051 | if ( mode == 2 ) |
1050 | ex2phone.setCaption(i18n("Export filtered calendar")); | 1052 | ex2phone.setCaption(i18n("Export filtered calendar")); |
1051 | 1053 | ||
1052 | if ( !ex2phone.exec() ) { | 1054 | if ( !ex2phone.exec() ) { |
1053 | return; | 1055 | return; |
1054 | } | 1056 | } |
1055 | KPimGlobalPrefs::instance()->mEx2PhoneConnection = ex2phone.mPhoneConnection->text(); | 1057 | KPimGlobalPrefs::instance()->mEx2PhoneConnection = ex2phone.mPhoneConnection->text(); |
1056 | KPimGlobalPrefs::instance()->mEx2PhoneDevice = ex2phone.mPhoneDevice->text(); | 1058 | KPimGlobalPrefs::instance()->mEx2PhoneDevice = ex2phone.mPhoneDevice->text(); |
1057 | KPimGlobalPrefs::instance()->mEx2PhoneModel = ex2phone.mPhoneModel->text(); | 1059 | KPimGlobalPrefs::instance()->mEx2PhoneModel = ex2phone.mPhoneModel->text(); |
1058 | 1060 | ||
1059 | int inFuture = 0; | 1061 | int inFuture = 0; |
1060 | if ( ex2phone.mWriteBackFuture->isChecked() ) | 1062 | if ( ex2phone.mWriteBackFuture->isChecked() ) |
1061 | inFuture = ex2phone.mWriteBackFutureWeeks->value(); | 1063 | inFuture = ex2phone.mWriteBackFutureWeeks->value(); |
1062 | QPtrList<Incidence> delSel; | 1064 | QPtrList<Incidence> delSel; |
1063 | if ( mode == 1 ) | 1065 | if ( mode == 1 ) |
1064 | delSel = mCalendar->rawIncidences(); | 1066 | delSel = mCalendar->rawIncidences(); |
1065 | if ( mode == 2 ) | 1067 | if ( mode == 2 ) |
1066 | delSel = mCalendar->incidences(); | 1068 | delSel = mCalendar->incidences(); |
1067 | CalendarLocal* cal = new CalendarLocal(); | 1069 | CalendarLocal* cal = new CalendarLocal(); |
1068 | cal->setLocalTime(); | 1070 | cal->setLocalTime(); |
1069 | Incidence *incidence = delSel.first(); | 1071 | Incidence *incidence = delSel.first(); |
1070 | QDateTime cur = QDateTime::currentDateTime().addDays( -7 ); | 1072 | QDateTime cur = QDateTime::currentDateTime().addDays( -7 ); |
1071 | QDateTime end = cur.addDays( ( inFuture +1 ) *7 ); | 1073 | QDateTime end = cur.addDays( ( inFuture +1 ) *7 ); |
1072 | while ( incidence ) { | 1074 | while ( incidence ) { |
1073 | if ( incidence->type() != "Journal" ) { | 1075 | if ( incidence->type() != "Journal" ) { |
1074 | bool add = true; | 1076 | bool add = true; |
1075 | if ( inFuture ) { | 1077 | if ( inFuture ) { |
1076 | QDateTime dt; | 1078 | QDateTime dt; |
1077 | if ( incidence->type() == "Todo" ) { | 1079 | if ( incidence->type() == "Todo" ) { |
1078 | Todo * t = (Todo*)incidence; | 1080 | Todo * t = (Todo*)incidence; |
1079 | if ( t->hasDueDate() ) | 1081 | if ( t->hasDueDate() ) |
1080 | dt = t->dtDue(); | 1082 | dt = t->dtDue(); |
1081 | else | 1083 | else |
1082 | dt = cur.addSecs( 62 ); | 1084 | dt = cur.addSecs( 62 ); |
1083 | } | 1085 | } |
1084 | else { | 1086 | else { |
1085 | bool ok; | 1087 | bool ok; |
1086 | dt = incidence->getNextOccurence( cur, &ok ); | 1088 | dt = incidence->getNextOccurence( cur, &ok ); |
1087 | if ( !ok ) | 1089 | if ( !ok ) |
1088 | dt = cur.addSecs( -62 ); | 1090 | dt = cur.addSecs( -62 ); |
1089 | } | 1091 | } |
1090 | if ( dt < cur || dt > end ) { | 1092 | if ( dt < cur || dt > end ) { |
1091 | add = false; | 1093 | add = false; |
1092 | } | 1094 | } |
1093 | } | 1095 | } |
1094 | if ( add ) { | 1096 | if ( add ) { |
1095 | Incidence *in = incidence->clone(); | 1097 | Incidence *in = incidence->clone(); |
1096 | cal->addIncidence( in ); | 1098 | cal->addIncidence( in ); |
1097 | } | 1099 | } |
1098 | } | 1100 | } |
1099 | incidence = delSel.next(); | 1101 | incidence = delSel.next(); |
1100 | } | 1102 | } |
1101 | PhoneAccess::writeConfig( KPimGlobalPrefs::instance()->mEx2PhoneDevice, | 1103 | PhoneAccess::writeConfig( KPimGlobalPrefs::instance()->mEx2PhoneDevice, |
1102 | KPimGlobalPrefs::instance()->mEx2PhoneConnection, | 1104 | KPimGlobalPrefs::instance()->mEx2PhoneConnection, |
1103 | KPimGlobalPrefs::instance()->mEx2PhoneModel ); | 1105 | KPimGlobalPrefs::instance()->mEx2PhoneModel ); |
1104 | 1106 | ||
1105 | setCaption( i18n("Writing to phone...")); | 1107 | setCaption( i18n("Writing to phone...")); |
1106 | if ( PhoneFormat::writeToPhone( cal ) ) | 1108 | if ( PhoneFormat::writeToPhone( cal ) ) |
1107 | setCaption( i18n("Export to phone successful!")); | 1109 | setCaption( i18n("Export to phone successful!")); |
1108 | else | 1110 | else |
1109 | setCaption( i18n("Error exporting to phone!")); | 1111 | setCaption( i18n("Error exporting to phone!")); |
1110 | delete cal; | 1112 | delete cal; |
1111 | } | 1113 | } |
1112 | 1114 | ||
1113 | 1115 | ||
1114 | void MainWindow::setDefaultPreferences() | 1116 | void MainWindow::setDefaultPreferences() |
1115 | { | 1117 | { |
1116 | KOPrefs *p = KOPrefs::instance(); | 1118 | KOPrefs *p = KOPrefs::instance(); |
1117 | 1119 | ||
1118 | p->mCompactDialogs = true; | 1120 | p->mCompactDialogs = true; |
1119 | p->mConfirm = true; | 1121 | p->mConfirm = true; |
1120 | // p->mEnableQuickTodo = false; | 1122 | // p->mEnableQuickTodo = false; |
1121 | 1123 | ||
1122 | } | 1124 | } |
1123 | 1125 | ||
1124 | QString MainWindow::resourcePath() | 1126 | QString MainWindow::resourcePath() |
1125 | { | 1127 | { |
1126 | return KGlobal::iconLoader()->iconPath(); | 1128 | return KGlobal::iconLoader()->iconPath(); |
1127 | } | 1129 | } |
1128 | 1130 | ||
1129 | void MainWindow::displayText( QString text ,QString cap ) | 1131 | void MainWindow::displayText( QString text ,QString cap ) |
1130 | { | 1132 | { |
1131 | QDialog dia( this, "name", true ); ; | 1133 | QDialog dia( this, "name", true ); ; |
1132 | dia.setCaption( cap ); | 1134 | dia.setCaption( cap ); |
1133 | QVBoxLayout* lay = new QVBoxLayout( &dia ); | 1135 | QVBoxLayout* lay = new QVBoxLayout( &dia ); |
1134 | lay->setSpacing( 3 ); | 1136 | lay->setSpacing( 3 ); |
1135 | lay->setMargin( 3 ); | 1137 | lay->setMargin( 3 ); |
1136 | QTextBrowser tb ( &dia ); | 1138 | QTextBrowser tb ( &dia ); |
1137 | lay->addWidget( &tb ); | 1139 | lay->addWidget( &tb ); |
1138 | tb.setText( text ); | 1140 | tb.setText( text ); |
1139 | #ifdef DESKTOP_VERSION | 1141 | #ifdef DESKTOP_VERSION |
1140 | dia.resize( 640, 480); | 1142 | dia.resize( 640, 480); |
1141 | #else | 1143 | #else |
1142 | dia.showMaximized(); | 1144 | dia.showMaximized(); |
1143 | #endif | 1145 | #endif |
1144 | dia.exec(); | 1146 | dia.exec(); |
1145 | } | 1147 | } |
1146 | 1148 | ||
1147 | void MainWindow::features() | 1149 | void MainWindow::features() |
1148 | { | 1150 | { |
1149 | 1151 | ||
1150 | KApplication::showFile( i18n("KO/Pi Features and hints"), "kdepim/korganizer/featuresKOPI.txt" ); | 1152 | KApplication::showFile( i18n("KO/Pi Features and hints"), "kdepim/korganizer/featuresKOPI.txt" ); |
1151 | } | 1153 | } |
1152 | 1154 | ||
1153 | void MainWindow::usertrans() | 1155 | void MainWindow::usertrans() |
1154 | { | 1156 | { |
1155 | 1157 | ||
1156 | KApplication::showFile( i18n("KO/Pi User translation HowTo"), "kdepim/korganizer/usertranslationHOWTO.txt" ); | 1158 | KApplication::showFile( i18n("KO/Pi User translation HowTo"), "kdepim/korganizer/usertranslationHOWTO.txt" ); |
1157 | } | 1159 | } |
1158 | 1160 | ||
1159 | void MainWindow::kdesynchowto() | 1161 | void MainWindow::kdesynchowto() |
1160 | { | 1162 | { |
1161 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/Zaurus-KDE_syncHowTo.txt" ); | 1163 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/Zaurus-KDE_syncHowTo.txt" ); |
1162 | } | 1164 | } |
1163 | void MainWindow::multisynchowto() | 1165 | void MainWindow::multisynchowto() |
1164 | { | 1166 | { |
1165 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/MultiSyncHowTo.txt" ); | 1167 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/MultiSyncHowTo.txt" ); |
1166 | } | 1168 | } |
1167 | void MainWindow::synchowto() | 1169 | void MainWindow::synchowto() |
1168 | { | 1170 | { |
1169 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/SyncHowto.txt" ); | 1171 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/SyncHowto.txt" ); |
1170 | } | 1172 | } |
1171 | void MainWindow::faq() | 1173 | void MainWindow::faq() |
1172 | { | 1174 | { |
1173 | KApplication::showFile( i18n("KO/Pi FAQ"), "kdepim/korganizer/kopiFAQ.txt" ); | 1175 | KApplication::showFile( i18n("KO/Pi FAQ"), "kdepim/korganizer/kopiFAQ.txt" ); |
1174 | 1176 | ||
1175 | } | 1177 | } |
1176 | void MainWindow::whatsNew() | 1178 | void MainWindow::whatsNew() |
1177 | { | 1179 | { |
1178 | KApplication::showFile( "KDE-Pim/Pi Version Info", "kdepim/WhatsNew.txt" ); | 1180 | KApplication::showFile( "KDE-Pim/Pi Version Info", "kdepim/WhatsNew.txt" ); |
1179 | 1181 | ||
1180 | } | 1182 | } |
1181 | void MainWindow::licence() | 1183 | void MainWindow::licence() |
1182 | { | 1184 | { |
1183 | KApplication::showLicence(); | 1185 | KApplication::showLicence(); |
1184 | 1186 | ||
1185 | } | 1187 | } |
1186 | void MainWindow::about() | 1188 | void MainWindow::about() |
1187 | { | 1189 | { |
1188 | QString version; | 1190 | QString version; |
1189 | #include <../version> | 1191 | #include <../version> |
1190 | QMessageBox::about( this, i18n("About KOrganizer/Pi"), | 1192 | QMessageBox::about( this, i18n("About KOrganizer/Pi"), |
1191 | i18n("KOrganizer/Platform-independent\n") + | 1193 | i18n("KOrganizer/Platform-independent\n") + |
1192 | "(KO/Pi) " + version + " - " + | 1194 | "(KO/Pi) " + version + " - " + |
1193 | 1195 | ||
1194 | #ifdef DESKTOP_VERSION | 1196 | #ifdef DESKTOP_VERSION |
1195 | i18n("Desktop Edition\n") + | 1197 | i18n("Desktop Edition\n") + |
1196 | #else | 1198 | #else |
1197 | i18n("PDA-Edition\nfor: Zaurus 5x00 / 7x0 / 8x0\n") + | 1199 | i18n("PDA-Edition\nfor: Zaurus 5x00 / 7x0 / 8x0\n") + |
1198 | #endif | 1200 | #endif |
1199 | i18n("(c) 2004 Lutz Rogowski\nEmail:lutz@pi-sync.net\nKO/Pi is based on KOrganizer\n(c) 2002,2003 Cornelius Schumacher\nEmail: schumacher@kde.org\nKOrganizer/Pi is licensed\nunder the GPL.\nKO/Pi can be compiled for\nLinux, Zaurus-PDA and Windows\nwww.korganizer.org\nwww.pi-sync.net\n") ); | 1201 | i18n("(c) 2004 Lutz Rogowski\nEmail:lutz@pi-sync.net\nKO/Pi is based on KOrganizer\n(c) 2002,2003 Cornelius Schumacher\nEmail: schumacher@kde.org\nKOrganizer/Pi is licensed\nunder the GPL.\nKO/Pi can be compiled for\nLinux, Zaurus-PDA and Windows\nwww.korganizer.org\nwww.pi-sync.net\n") ); |
1200 | } | 1202 | } |
1201 | void MainWindow::keyBindings() | 1203 | void MainWindow::keyBindings() |
1202 | { | 1204 | { |
1203 | QString cap = i18n("KO/Pi Keys + Colors"); | 1205 | QString cap = i18n("KO/Pi Keys + Colors"); |
1204 | QString text = i18n("<p><h2>KO/Pi key shortcuts:</h2></p>\n") + | 1206 | QString text = i18n("<p><h2>KO/Pi key shortcuts:</h2></p>\n") + |
1205 | i18n("<p><b>H</b>: This help dialog | <b>S</b>: Search dialog</p>\n")+ | 1207 | i18n("<p><b>H</b>: This help dialog | <b>S</b>: Search dialog</p>\n")+ |
1206 | i18n("<p><b>I</b>: Show info for selected event/todo</p>\n") + | 1208 | i18n("<p><b>I</b>: Show info for selected event/todo</p>\n") + |
1207 | i18n("<p><b>Space</b>: Toggle fullscreen | <b>P</b>: Date picker</p>\n")+ | 1209 | i18n("<p><b>Space</b>: Toggle fullscreen | <b>P</b>: Date picker</p>\n")+ |
1208 | i18n("<p><b>F</b>: Toggle filterview |<b>F+ctrl</b>: Edit filter </p>\n")+ | 1210 | i18n("<p><b>F</b>: Toggle filterview |<b>F+ctrl</b>: Edit filter </p>\n")+ |
1209 | i18n("<p><b>O</b>: Filter On/Off | <b>J</b>: Journal view</p>\n")+ | 1211 | i18n("<p><b>O</b>: Filter On/Off | <b>J</b>: Journal view</p>\n")+ |
1210 | i18n("<p><b>1-0</b> (+<b>ctrl</b>): Select filter 1-10 (11-20)</p>\n")+ | 1212 | i18n("<p><b>1-0</b> (+<b>ctrl</b>): Select filter 1-10 (11-20)</p>\n")+ |
1211 | i18n("<p><b>N</b>: Next days view| <b>W</b>: What's next view\n ")+ | 1213 | i18n("<p><b>N</b>: Next days view| <b>W</b>: What's next view\n ")+ |
1212 | i18n("<p><b>V</b>: Todo view | <b>L</b>: Event list view</p>\n")+ | 1214 | i18n("<p><b>V</b>: Todo view | <b>L</b>: Event list view</p>\n")+ |
1213 | i18n("<p><b>Z,Y</b>: Work week view | <b>U</b>: Week view</p>\n")+ | 1215 | i18n("<p><b>Z,Y</b>: Work week view | <b>U</b>: Week view</p>\n")+ |
1214 | i18n("<p><b>D</b>: One day view | <b>M</b>: Month view</p>\n")+ | 1216 | i18n("<p><b>D</b>: One day view | <b>M</b>: Month view</p>\n")+ |
1215 | i18n("<p><b>E</b>: Edit selected item |<b> E+ctrl</b>: New Event</p>\n")+ | 1217 | i18n("<p><b>E</b>: Edit selected item |<b> E+ctrl</b>: New Event</p>\n")+ |
1216 | i18n("<p><b>T</b>: Goto today | <b>T+ctrl</b>: New Todo</p>\n")+ | 1218 | i18n("<p><b>T</b>: Goto today | <b>T+ctrl</b>: New Todo</p>\n")+ |
1217 | i18n("<p><b>S+ctrl</b>: Add sub-todo | <b>X</b>: Toggle datenavigator</p>\n")+ | 1219 | i18n("<p><b>S+ctrl</b>: Add sub-todo | <b>X</b>: Toggle datenavigator</p>\n")+ |
1218 | i18n("<p><b>+,-</b> : Zoom in/out agenda | <b>A</b>: Toggle allday agenda height</p>\n")+ | 1220 | i18n("<p><b>+,-</b> : Zoom in/out agenda | <b>A</b>: Toggle allday agenda height</p>\n")+ |
1219 | i18n("<p><b>C</b>: Show current time in agenda view</p>\n")+ | 1221 | i18n("<p><b>C</b>: Show current time in agenda view</p>\n")+ |
1220 | i18n("<p><b>B</b>: Edit description (details) of selected item</p>\n")+ | 1222 | i18n("<p><b>B</b>: Edit description (details) of selected item</p>\n")+ |
1221 | i18n("<p><b>right</b>: Next week | <b>right+ctrl</b>: Next month</p>\n")+ | 1223 | i18n("<p><b>right</b>: Next week | <b>right+ctrl</b>: Next month</p>\n")+ |
1222 | i18n("<p><b>left</b>: Prev. week | <b>left+ctrl</b>: Prev. month</p>\n")+ | 1224 | i18n("<p><b>left</b>: Prev. week | <b>left+ctrl</b>: Prev. month</p>\n")+ |
1223 | i18n("<p><b>del,backspace</b>: Delete selected item</p>\n")+ | 1225 | i18n("<p><b>del,backspace</b>: Delete selected item</p>\n")+ |
1224 | i18n("<p><h3>In agenda view:</h3></p>\n") + | 1226 | i18n("<p><h3>In agenda view:</h3></p>\n") + |
1225 | i18n("<p><b>up/down</b>: Scroll agenda view</p>\n")+ | 1227 | i18n("<p><b>up/down</b>: Scroll agenda view</p>\n")+ |
1226 | i18n("<p><b>ctrl+up/down</b>: Scroll small todo view</p>\n")+ | 1228 | i18n("<p><b>ctrl+up/down</b>: Scroll small todo view</p>\n")+ |
1227 | i18n("<p><h3>In todo view:</h3></p>\n") + | 1229 | i18n("<p><h3>In todo view:</h3></p>\n") + |
1228 | i18n("<p><b>shift+U</b>: <b>U</b>nparent todo (make root todo)</p>\n")+ | 1230 | i18n("<p><b>shift+U</b>: <b>U</b>nparent todo (make root todo)</p>\n")+ |
1229 | i18n("<p><b>shift+S</b>: Make <b>S</b>ubtodo (reparent todo)</p>\n")+ | 1231 | i18n("<p><b>shift+S</b>: Make <b>S</b>ubtodo (reparent todo)</p>\n")+ |
1230 | i18n("<p><b>shift+P</b>: Make new <b>P</b>arent for todo selected with shift+S</p>\n")+ | 1232 | i18n("<p><b>shift+P</b>: Make new <b>P</b>arent for todo selected with shift+S</p>\n")+ |
1231 | i18n("<p><b>Q</b>: Toggle quick todo line edit.</p>\n")+ | 1233 | i18n("<p><b>Q</b>: Toggle quick todo line edit.</p>\n")+ |
1232 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ | 1234 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ |
1233 | i18n("<p><b>return</b>: Mark item as completed+one step down.</p>\n")+ | 1235 | i18n("<p><b>return</b>: Mark item as completed+one step down.</p>\n")+ |
1234 | i18n("<p><b>return+shift</b>: Mark item as not completed+one step down</p>\n")+ | 1236 | i18n("<p><b>return+shift</b>: Mark item as not completed+one step down</p>\n")+ |
1235 | i18n("<p><h3>In list view:</h3></p>\n") + | 1237 | i18n("<p><h3>In list view:</h3></p>\n") + |
1236 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ | 1238 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ |
1237 | i18n("<p><b>return</b>: Select item+one step down</p>\n")+ | 1239 | i18n("<p><b>return</b>: Select item+one step down</p>\n")+ |
1238 | i18n("<p><b>return+shift</b>: Deselect item+one step down</p>\n")+ | 1240 | i18n("<p><b>return+shift</b>: Deselect item+one step down</p>\n")+ |
1239 | i18n("<p><b>up/down</b>: Next/prev item</p>\n")+ | 1241 | i18n("<p><b>up/down</b>: Next/prev item</p>\n")+ |
1240 | i18n("<p><b>ctrl+up/down</b>: Goto up/down by 20% of items</p>\n")+ | 1242 | i18n("<p><b>ctrl+up/down</b>: Goto up/down by 20% of items</p>\n")+ |
1241 | i18n("<p><b>shift+up/down</b>: Goto first/last item</p>\n")+ | 1243 | i18n("<p><b>shift+up/down</b>: Goto first/last item</p>\n")+ |
1242 | i18n("<p><h3>In event/todo viewer:</h3></p>\n") + | 1244 | i18n("<p><h3>In event/todo viewer:</h3></p>\n") + |
1243 | i18n("<p><b>I,C</b>: Close dialog.</p>\n")+ | 1245 | i18n("<p><b>I,C</b>: Close dialog.</p>\n")+ |
1244 | i18n("<p><b>A</b>: Show agenda view.</p>\n")+ | 1246 | i18n("<p><b>A</b>: Show agenda view.</p>\n")+ |
1245 | i18n("<p><b>E</b>: Edit item</p>\n") + | 1247 | i18n("<p><b>E</b>: Edit item</p>\n") + |
1246 | i18n("<p><h2>KO/Pi icon colors:</h2></p>\n") + | 1248 | i18n("<p><h2>KO/Pi icon colors:</h2></p>\n") + |
1247 | i18n("<p><b>(for square icons in agenda and month view)</b></p>\n") + | 1249 | i18n("<p><b>(for square icons in agenda and month view)</b></p>\n") + |
1248 | i18n("<p><b>Cross</b>: Item cancelled.([c] in Whats'Next view)</p>\n")+ | 1250 | i18n("<p><b>Cross</b>: Item cancelled.([c] in Whats'Next view)</p>\n")+ |
1249 | i18n("<p><b>Red</b>: Alarm set.([a] in Whats'Next view)</p>\n")+ | 1251 | i18n("<p><b>Red</b>: Alarm set.([a] in Whats'Next view)</p>\n")+ |
1250 | i18n("<p><b>Blue</b>: Recurrent event.([r] in Whats'Next view)</p>\n")+ | 1252 | i18n("<p><b>Blue</b>: Recurrent event.([r] in Whats'Next view)</p>\n")+ |
1251 | i18n("<p><b>Dark green</b>: Information(description) available.([i] in WN view)</p>\n")+ | 1253 | i18n("<p><b>Dark green</b>: Information(description) available.([i] in WN view)</p>\n")+ |
1252 | i18n("<p><b>Black</b>: Event/todo with attendees. You are the organizer!</p>\n")+ | 1254 | i18n("<p><b>Black</b>: Event/todo with attendees. You are the organizer!</p>\n")+ |
1253 | i18n("<p><b>Dark yellow</b>: Event/todo with attendees.</p>\n") + | 1255 | i18n("<p><b>Dark yellow</b>: Event/todo with attendees.</p>\n") + |
1254 | i18n("<p><b>White</b>: Item readonly</p>\n"); | 1256 | i18n("<p><b>White</b>: Item readonly</p>\n"); |
1255 | displayText( text, cap); | 1257 | displayText( text, cap); |
1256 | } | 1258 | } |
1257 | void MainWindow::aboutAutoSaving() | 1259 | void MainWindow::aboutAutoSaving() |
1258 | { | 1260 | { |
1259 | QString text = i18n("After changing something, the data is\nautomatically saved to the file\n~/kdepim/apps/korganizer/mycalendar.ics\nafter (configurable) three minutes.\nFor safety reasons there is one autosaving\nafter 10 minutes (of idle time) again. The \ndata is saved automatically when closing KO/Pi\nYou can create a backup file \nwith: File - Save Calendar Backup\n"); | 1261 | QString text = i18n("After changing something, the data is\nautomatically saved to the file\n~/kdepim/apps/korganizer/mycalendar.ics\nafter (configurable) three minutes.\nFor safety reasons there is one autosaving\nafter 10 minutes (of idle time) again. The \ndata is saved automatically when closing KO/Pi\nYou can create a backup file \nwith: File - Save Calendar Backup\n"); |
1260 | 1262 | ||
1261 | KApplication::showText( i18n("Auto Saving in KOrganizer/Pi"), text); | 1263 | KApplication::showText( i18n("Auto Saving in KOrganizer/Pi"), text); |
1262 | 1264 | ||
1263 | } | 1265 | } |
1264 | void MainWindow::aboutKnownBugs() | 1266 | void MainWindow::aboutKnownBugs() |
1265 | { | 1267 | { |
1266 | QMessageBox* msg; | 1268 | QMessageBox* msg; |
1267 | msg = new QMessageBox( i18n("Known Problems in KOrganizer/Pi"), | 1269 | msg = new QMessageBox( i18n("Known Problems in KOrganizer/Pi"), |
1268 | i18n("1) Importing *.vcs or *.ics files from\nother applications may not work properly,\nif there are events with properties\nKO/Pi does not support.\n")+ | 1270 | i18n("1) Importing *.vcs or *.ics files from\nother applications may not work properly,\nif there are events with properties\nKO/Pi does not support.\n")+ |
1269 | i18n("2) Audio alarm daemon\nfor Zaurus is available!\nas an additional small application\n")+ | 1271 | i18n("2) Audio alarm daemon\nfor Zaurus is available!\nas an additional small application\n")+ |
1270 | i18n("\nPlease report unexpected behaviour to\nlutz@pi-sync.net\n") + | 1272 | i18n("\nPlease report unexpected behaviour to\nlutz@pi-sync.net\n") + |
1271 | i18n("\nor report them in the bugtracker on\n") + | 1273 | i18n("\nor report them in the bugtracker on\n") + |
1272 | i18n("\nhttp://sourceforge.net/projects/kdepimpi\n"), | 1274 | i18n("\nhttp://sourceforge.net/projects/kdepimpi\n"), |
1273 | QMessageBox::NoIcon, | 1275 | QMessageBox::NoIcon, |
1274 | QMessageBox::Ok, | 1276 | QMessageBox::Ok, |
1275 | QMessageBox::NoButton, | 1277 | QMessageBox::NoButton, |
1276 | QMessageBox::NoButton); | 1278 | QMessageBox::NoButton); |
1277 | msg->exec(); | 1279 | msg->exec(); |
1278 | delete msg; | 1280 | delete msg; |
1279 | 1281 | ||
1280 | } | 1282 | } |
1281 | 1283 | ||
1282 | QString MainWindow::defaultFileName() | 1284 | QString MainWindow::defaultFileName() |
1283 | { | 1285 | { |
1284 | return locateLocal( "data", "korganizer/mycalendar.ics" ); | 1286 | return locateLocal( "data", "korganizer/mycalendar.ics" ); |
1285 | } | 1287 | } |
1286 | QString MainWindow::syncFileName() | 1288 | QString MainWindow::syncFileName() |
1287 | { | 1289 | { |
1288 | #ifdef DESKTOP_VERSION | 1290 | #ifdef DESKTOP_VERSION |
1289 | return locateLocal( "tmp", "synccalendar.ics" ); | 1291 | return locateLocal( "tmp", "synccalendar.ics" ); |
1290 | #else | 1292 | #else |
1291 | return QString( "/tmp/synccalendar.ics" ); | 1293 | return QString( "/tmp/synccalendar.ics" ); |
1292 | #endif | 1294 | #endif |
1293 | } | 1295 | } |
1294 | 1296 | ||
1295 | void MainWindow::processIncidenceSelection( Incidence *incidence ) | 1297 | void MainWindow::processIncidenceSelection( Incidence *incidence ) |
1296 | { | 1298 | { |
1297 | if ( !incidence ) { | 1299 | if ( !incidence ) { |
1298 | enableIncidenceActions( false ); | 1300 | enableIncidenceActions( false ); |
1299 | 1301 | ||
1300 | mNewSubTodoAction->setEnabled( false ); | 1302 | mNewSubTodoAction->setEnabled( false ); |
1301 | setCaptionToDates(); | 1303 | setCaptionToDates(); |
1302 | return; | 1304 | return; |
1303 | 1305 | ||
1304 | } | 1306 | } |
1305 | 1307 | ||
1306 | //KGlobal::locale()->formatDateTime(nextA, true); | 1308 | //KGlobal::locale()->formatDateTime(nextA, true); |
1307 | QString startString = ""; | 1309 | QString startString = ""; |
1308 | if ( incidence->type() != "Todo" ) { | 1310 | if ( incidence->type() != "Todo" ) { |
1309 | if ( incidence->dtStart().date() < incidence->dtEnd().date() ) { | 1311 | if ( incidence->dtStart().date() < incidence->dtEnd().date() ) { |
1310 | if ( incidence->doesFloat() ) { | 1312 | if ( incidence->doesFloat() ) { |
1311 | startString += ": "+incidence->dtStartDateStr( true ); | 1313 | startString += ": "+incidence->dtStartDateStr( true ); |
1312 | startString += " --- "+((Event*)incidence)->dtEndDateStr( true ); | 1314 | startString += " --- "+((Event*)incidence)->dtEndDateStr( true ); |
1313 | 1315 | ||
1314 | } else { | 1316 | } else { |
1315 | startString = ": "+incidence->dtStartStr(true); | 1317 | startString = ": "+incidence->dtStartStr(true); |
1316 | startString += " --- "+((Event*)incidence)->dtEndStr(true); | 1318 | startString += " --- "+((Event*)incidence)->dtEndStr(true); |
1317 | 1319 | ||
1318 | } | 1320 | } |
1319 | 1321 | ||
1320 | } else { | 1322 | } else { |
1321 | if ( incidence->dtStart().time() != incidence->dtEnd().time() ) | 1323 | if ( incidence->dtStart().time() != incidence->dtEnd().time() ) |
1322 | startString = ": "+KGlobal::locale()->formatTime(incidence->dtStart().time())+ | 1324 | startString = ": "+KGlobal::locale()->formatTime(incidence->dtStart().time())+ |
1323 | "-"+KGlobal::locale()->formatTime(incidence->dtEnd().time()); | 1325 | "-"+KGlobal::locale()->formatTime(incidence->dtEnd().time()); |
1324 | startString +=" "+KGlobal::locale()->formatDate( incidence->dtStart().date(), true); | 1326 | startString +=" "+KGlobal::locale()->formatDate( incidence->dtStart().date(), true); |
1325 | } | 1327 | } |
1326 | 1328 | ||
1327 | } | 1329 | } |
1328 | else | 1330 | else |
1329 | startString = i18n(": (Prio ") +QString::number( (( KCal::Todo*)incidence)->priority() ) +") "+QString::number( (( KCal::Todo*)incidence)->percentComplete() ) +i18n("\% completed"); | 1331 | startString = i18n(": (Prio ") +QString::number( (( KCal::Todo*)incidence)->priority() ) +") "+QString::number( (( KCal::Todo*)incidence)->percentComplete() ) +i18n("\% completed"); |
1330 | if ( !incidence->location().isEmpty() ) | 1332 | if ( !incidence->location().isEmpty() ) |
1331 | startString += " (" +incidence->location()+")"; | 1333 | startString += " (" +incidence->location()+")"; |
1332 | setCaption( incidence->summary()+startString); | 1334 | setCaption( incidence->summary()+startString); |
1333 | 1335 | ||
1334 | enableIncidenceActions( true ); | 1336 | enableIncidenceActions( true ); |
1335 | 1337 | ||
1336 | if ( incidence->type() == "Event" ) { | 1338 | if ( incidence->type() == "Event" ) { |
1337 | mShowAction->setText( i18n("Show Event...") ); | 1339 | mShowAction->setText( i18n("Show Event...") ); |
1338 | mEditAction->setText( i18n("Edit Event...") ); | 1340 | mEditAction->setText( i18n("Edit Event...") ); |
1339 | mDeleteAction->setText( i18n("Delete Event...") ); | 1341 | mDeleteAction->setText( i18n("Delete Event...") ); |
1340 | 1342 | ||
1341 | mNewSubTodoAction->setEnabled( false ); | 1343 | mNewSubTodoAction->setEnabled( false ); |
1342 | } else if ( incidence->type() == "Todo" ) { | 1344 | } else if ( incidence->type() == "Todo" ) { |
1343 | mShowAction->setText( i18n("Show Todo...") ); | 1345 | mShowAction->setText( i18n("Show Todo...") ); |
1344 | mEditAction->setText( i18n("Edit Todo...") ); | 1346 | mEditAction->setText( i18n("Edit Todo...") ); |
1345 | mDeleteAction->setText( i18n("Delete Todo...") ); | 1347 | mDeleteAction->setText( i18n("Delete Todo...") ); |
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"), |
1396 | i18n("Import!"), i18n("Cancel"), 0, | 1398 | i18n("Import!"), i18n("Cancel"), 0, |
1397 | 0, 1 ); | 1399 | 0, 1 ); |
1398 | if ( result == 0 ) { | 1400 | if ( result == 0 ) { |
1399 | QString datebook = Global::applicationFileName( "datebook", "datebook.xml"); | 1401 | QString datebook = Global::applicationFileName( "datebook", "datebook.xml"); |
1400 | QString todolist = Global::applicationFileName( "todolist", "todolist.xml"); | 1402 | QString todolist = Global::applicationFileName( "todolist", "todolist.xml"); |
1401 | QString categories = QString( getenv( "HOME" ) ) + "/Settings/Categories.xml"; | 1403 | QString categories = QString( getenv( "HOME" ) ) + "/Settings/Categories.xml"; |
1402 | mView->importQtopia( categories, datebook, todolist ); | 1404 | mView->importQtopia( categories, datebook, todolist ); |
1403 | } | 1405 | } |
1404 | #else | 1406 | #else |
1405 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1407 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1406 | i18n("Not supported \non desktop!\n"), | 1408 | i18n("Not supported \non desktop!\n"), |
1407 | i18n("Ok"), i18n("Cancel"), 0, | 1409 | i18n("Ok"), i18n("Cancel"), 0, |
1408 | 0, 1 ); | 1410 | 0, 1 ); |
1409 | 1411 | ||
1410 | #endif | 1412 | #endif |
1411 | } | 1413 | } |
1412 | 1414 | ||
1413 | void MainWindow::saveOnClose() | 1415 | void MainWindow::saveOnClose() |
1414 | { | 1416 | { |
1415 | KOPrefs *p = KOPrefs::instance(); | 1417 | KOPrefs *p = KOPrefs::instance(); |
1416 | p->mToolBarHor = ( iconToolBar->orientation () == Qt:: Horizontal ); | 1418 | p->mToolBarHor = ( iconToolBar->orientation () == Qt:: Horizontal ); |
1417 | p->mToolBarUp = iconToolBar->x() > width()/2 || | 1419 | p->mToolBarUp = iconToolBar->x() > width()/2 || |
1418 | iconToolBar->y() > height()/2; | 1420 | iconToolBar->y() > height()/2; |
1419 | mView->writeSettings(); | 1421 | mView->writeSettings(); |
1420 | if ( mCalendarModifiedFlag || mView->checkFileChanged( defaultFileName())) | 1422 | if ( mCalendarModifiedFlag || mView->checkFileChanged( defaultFileName())) |
1421 | save(); | 1423 | save(); |
1422 | } | 1424 | } |
1423 | void MainWindow::slotModifiedChanged( bool changed ) | 1425 | void MainWindow::slotModifiedChanged( bool changed ) |
1424 | { | 1426 | { |
1425 | if ( mBlockAtStartup ) | 1427 | if ( mBlockAtStartup ) |
1426 | return; | 1428 | return; |
1427 | int msec; | 1429 | int msec; |
1428 | // we store the changes after 1 minute, | 1430 | // we store the changes after 1 minute, |
1429 | // and for safety reasons after 10 minutes again | 1431 | // and for safety reasons after 10 minutes again |
1430 | if ( !mSyncManager->blockSave() ) | 1432 | if ( !mSyncManager->blockSave() ) |
1431 | msec = (1000 * 60*KOPrefs::instance()->mAutoSaveInterval) +1000; | 1433 | msec = (1000 * 60*KOPrefs::instance()->mAutoSaveInterval) +1000; |
1432 | else | 1434 | else |
1433 | msec = 1000 * 600; | 1435 | msec = 1000 * 600; |
1434 | mSaveTimer.start( msec, true ); // 1 minute | 1436 | mSaveTimer.start( msec, true ); // 1 minute |
1435 | qDebug("KO: Saving File in %d secs!", msec/1000); | 1437 | qDebug("KO: Saving File in %d secs!", msec/1000); |
1436 | mCalendarModifiedFlag = true; | 1438 | mCalendarModifiedFlag = true; |
1437 | } | 1439 | } |
1438 | void MainWindow::save() | 1440 | void MainWindow::save() |
1439 | { | 1441 | { |
1440 | if ( mSyncManager->blockSave() ) | 1442 | if ( mSyncManager->blockSave() ) |
1441 | return; | 1443 | return; |
1442 | mSyncManager->setBlockSave(true); | 1444 | mSyncManager->setBlockSave(true); |
1443 | if ( mView->checkFileVersion( defaultFileName()) ) { | 1445 | if ( mView->checkFileVersion( defaultFileName()) ) { |
1444 | 1446 | ||
1445 | QTime neededSaveTime = QDateTime::currentDateTime().time(); | 1447 | QTime neededSaveTime = QDateTime::currentDateTime().time(); |
1446 | setCaption(i18n("KO/Pi:Saving Data to File ..." )); | 1448 | setCaption(i18n("KO/Pi:Saving Data to File ..." )); |
1447 | qDebug("KO: Start saving data to file!"); | 1449 | qDebug("KO: Start saving data to file!"); |
1448 | mView->saveCalendar( defaultFileName() ); | 1450 | mView->saveCalendar( defaultFileName() ); |
1449 | 1451 | ||
1450 | int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); | 1452 | int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); |
1451 | qDebug("KO: Needed %d ms for saving.",msNeeded ); | 1453 | qDebug("KO: Needed %d ms for saving.",msNeeded ); |
1452 | QString savemes; | 1454 | QString savemes; |
1453 | savemes.sprintf(i18n("KO/Pi:File Saved. Needed %d sec, %d ms"),(msNeeded/1000)%100,msNeeded%1000 ); | 1455 | savemes.sprintf(i18n("KO/Pi:File Saved. Needed %d sec, %d ms"),(msNeeded/1000)%100,msNeeded%1000 ); |
1454 | setCaption(savemes); | 1456 | setCaption(savemes); |
1455 | } else | 1457 | } else |
1456 | setCaption(i18n("Saving cancelled!")); | 1458 | setCaption(i18n("Saving cancelled!")); |
1457 | mCalendarModifiedFlag = false; | 1459 | mCalendarModifiedFlag = false; |
1458 | mSyncManager->setBlockSave( false ); | 1460 | mSyncManager->setBlockSave( false ); |
1459 | } | 1461 | } |
1460 | 1462 | ||
1461 | void MainWindow::keyReleaseEvent ( QKeyEvent * e) | 1463 | void MainWindow::keyReleaseEvent ( QKeyEvent * e) |
1462 | { | 1464 | { |
1463 | if ( !e->isAutoRepeat() ) { | 1465 | if ( !e->isAutoRepeat() ) { |
1464 | mFlagKeyPressed = false; | 1466 | mFlagKeyPressed = false; |
1465 | } | 1467 | } |
1466 | } | 1468 | } |
1467 | void MainWindow::keyPressEvent ( QKeyEvent * e ) | 1469 | void MainWindow::keyPressEvent ( QKeyEvent * e ) |
1468 | { | 1470 | { |
1469 | qApp->processEvents(); | 1471 | qApp->processEvents(); |
1470 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { | 1472 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { |
1471 | e->ignore(); | 1473 | e->ignore(); |
1472 | // qDebug(" ignore %d",e->isAutoRepeat() ); | 1474 | // qDebug(" ignore %d",e->isAutoRepeat() ); |
1473 | return; | 1475 | return; |
1474 | } | 1476 | } |
1475 | if (! e->isAutoRepeat() ) | 1477 | if (! e->isAutoRepeat() ) |
1476 | mFlagKeyPressed = true; | 1478 | mFlagKeyPressed = true; |
1477 | KOPrefs *p = KOPrefs::instance(); | 1479 | KOPrefs *p = KOPrefs::instance(); |
1478 | bool showSelectedDates = false; | 1480 | bool showSelectedDates = false; |
1479 | int size; | 1481 | int size; |
1480 | int pro = 0; | 1482 | int pro = 0; |
1481 | //qDebug("MainWindow::keyPressEvent "); | 1483 | //qDebug("MainWindow::keyPressEvent "); |
1482 | switch ( e->key() ) { | 1484 | switch ( e->key() ) { |
1483 | case Qt::Key_Right: | 1485 | case Qt::Key_Right: |
1484 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) | 1486 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) |
1485 | mView->goNextMonth(); | 1487 | mView->goNextMonth(); |
1486 | else | 1488 | else |
1487 | mView->goNext(); | 1489 | mView->goNext(); |
1488 | showSelectedDates = true; | 1490 | showSelectedDates = true; |
1489 | break; | 1491 | break; |
1490 | case Qt::Key_Left: | 1492 | case Qt::Key_Left: |
1491 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1493 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1492 | mView->goPreviousMonth(); | 1494 | mView->goPreviousMonth(); |
1493 | else | 1495 | else |
1494 | mView->goPrevious(); | 1496 | mView->goPrevious(); |
1495 | showSelectedDates = true; | 1497 | showSelectedDates = true; |
1496 | break; | 1498 | break; |
1497 | case Qt::Key_Down: | 1499 | case Qt::Key_Down: |
1498 | mView->viewManager()->agendaView()->scrollOneHourDown(); | 1500 | mView->viewManager()->agendaView()->scrollOneHourDown(); |
1499 | break; | 1501 | break; |
1500 | case Qt::Key_Up: | 1502 | case Qt::Key_Up: |
1501 | mView->viewManager()->agendaView()->scrollOneHourUp(); | 1503 | mView->viewManager()->agendaView()->scrollOneHourUp(); |
1502 | break; | 1504 | break; |
1503 | case Qt::Key_I: | 1505 | case Qt::Key_I: |
1504 | mView->showIncidence(); | 1506 | mView->showIncidence(); |
1505 | break; | 1507 | break; |
1506 | case Qt::Key_Delete: | 1508 | case Qt::Key_Delete: |
1507 | case Qt::Key_Backspace: | 1509 | case Qt::Key_Backspace: |
1508 | mView->deleteIncidence(); | 1510 | mView->deleteIncidence(); |
1509 | break; | 1511 | break; |
1510 | case Qt::Key_D: | 1512 | case Qt::Key_D: |
1511 | mView->viewManager()->showDayView(); | 1513 | mView->viewManager()->showDayView(); |
1512 | showSelectedDates = true; | 1514 | showSelectedDates = true; |
1513 | break; | 1515 | break; |
1514 | case Qt::Key_O: | 1516 | case Qt::Key_O: |
1515 | mView->toggleFilerEnabled( ); | 1517 | mView->toggleFilerEnabled( ); |
1516 | break; | 1518 | break; |
1517 | case Qt::Key_0: | 1519 | case Qt::Key_0: |
1518 | case Qt::Key_1: | 1520 | case Qt::Key_1: |
1519 | case Qt::Key_2: | 1521 | case Qt::Key_2: |
1520 | case Qt::Key_3: | 1522 | case Qt::Key_3: |
1521 | case Qt::Key_4: | 1523 | case Qt::Key_4: |
1522 | case Qt::Key_5: | 1524 | case Qt::Key_5: |
1523 | case Qt::Key_6: | 1525 | case Qt::Key_6: |
1524 | case Qt::Key_7: | 1526 | case Qt::Key_7: |
1525 | case Qt::Key_8: | 1527 | case Qt::Key_8: |
1526 | case Qt::Key_9: | 1528 | case Qt::Key_9: |
1527 | pro = e->key()-48; | 1529 | pro = e->key()-48; |
1528 | if ( pro == 0 ) | 1530 | if ( pro == 0 ) |
1529 | pro = 10; | 1531 | pro = 10; |
1530 | if ( e->state() == Qt::ControlButton) | 1532 | if ( e->state() == Qt::ControlButton) |
1531 | pro += 10; | 1533 | pro += 10; |
1532 | break; | 1534 | break; |
1533 | case Qt::Key_M: | 1535 | case Qt::Key_M: |
1534 | mView->viewManager()->showMonthView(); | 1536 | mView->viewManager()->showMonthView(); |
1535 | showSelectedDates = true; | 1537 | showSelectedDates = true; |
1536 | break; | 1538 | break; |
1537 | case Qt::Key_Insert: | 1539 | case Qt::Key_Insert: |
1538 | mView->newEvent(); | 1540 | mView->newEvent(); |
1539 | break; | 1541 | break; |
1540 | case Qt::Key_S : | 1542 | case Qt::Key_S : |
1541 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) | 1543 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) |
1542 | mView->newSubTodo(); | 1544 | mView->newSubTodo(); |
1543 | else | 1545 | else |
1544 | mView->dialogManager()->showSearchDialog(); | 1546 | mView->dialogManager()->showSearchDialog(); |
1545 | break; | 1547 | break; |
1546 | case Qt::Key_Y : | 1548 | case Qt::Key_Y : |
1547 | case Qt::Key_Z : | 1549 | case Qt::Key_Z : |
1548 | mView->viewManager()->showWorkWeekView(); | 1550 | mView->viewManager()->showWorkWeekView(); |
1549 | showSelectedDates = true; | 1551 | showSelectedDates = true; |
1550 | break; | 1552 | break; |
1551 | case Qt::Key_U : | 1553 | case Qt::Key_U : |
1552 | mView->viewManager()->showWeekView(); | 1554 | mView->viewManager()->showWeekView(); |
1553 | showSelectedDates = true; | 1555 | showSelectedDates = true; |
1554 | break; | 1556 | break; |
1555 | case Qt::Key_H : | 1557 | case Qt::Key_H : |
1556 | keyBindings(); | 1558 | keyBindings(); |
1557 | break; | 1559 | break; |
1558 | case Qt::Key_W: | 1560 | case Qt::Key_W: |
1559 | mView->viewManager()->showWhatsNextView(); | 1561 | mView->viewManager()->showWhatsNextView(); |
1560 | break; | 1562 | break; |
1561 | case Qt::Key_L: | 1563 | case Qt::Key_L: |
1562 | mView->viewManager()->showListView(); | 1564 | mView->viewManager()->showListView(); |
1563 | break; | 1565 | break; |
1564 | case Qt::Key_N: | 1566 | case Qt::Key_N: |
1565 | mView->viewManager()->showNextXView(); | 1567 | mView->viewManager()->showNextXView(); |
1566 | showSelectedDates = true; | 1568 | showSelectedDates = true; |
1567 | break; | 1569 | break; |
1568 | case Qt::Key_V: | 1570 | case Qt::Key_V: |
1569 | mView->viewManager()->showTodoView(); | 1571 | mView->viewManager()->showTodoView(); |
1570 | break; | 1572 | break; |
1571 | case Qt::Key_C: | 1573 | case Qt::Key_C: |
1572 | mView->viewManager()->agendaView()->setStartHour( QTime::currentTime ().hour() ); | 1574 | mView->viewManager()->agendaView()->setStartHour( QTime::currentTime ().hour() ); |
1573 | break; | 1575 | break; |
1574 | case Qt::Key_P: | 1576 | case Qt::Key_P: |
1575 | mView->showDatePicker( ); | 1577 | mView->showDatePicker( ); |
1576 | break; | 1578 | break; |
1577 | case Qt::Key_F: | 1579 | case Qt::Key_F: |
1578 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1580 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1579 | mView->editFilters(); | 1581 | mView->editFilters(); |
1580 | else | 1582 | else |
1581 | mView->toggleFilter(); | 1583 | mView->toggleFilter(); |
1582 | break; | 1584 | break; |
1583 | case Qt::Key_X: | 1585 | case Qt::Key_X: |
1584 | mView->toggleDateNavigatorWidget(); | 1586 | mView->toggleDateNavigatorWidget(); |
1585 | break; | 1587 | break; |
1586 | case Qt::Key_Space: | 1588 | case Qt::Key_Space: |
1587 | mView->toggleExpand(); | 1589 | mView->toggleExpand(); |
1588 | break; | 1590 | break; |
1589 | case Qt::Key_A: | 1591 | case Qt::Key_A: |
1590 | mView->toggleAllDaySize(); | 1592 | mView->toggleAllDaySize(); |
1591 | break; | 1593 | break; |
1592 | case Qt::Key_T: | 1594 | case Qt::Key_T: |
1593 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1595 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1594 | mView->newTodo(); | 1596 | mView->newTodo(); |
1595 | else { | 1597 | else { |
1596 | mView->goToday(); | 1598 | mView->goToday(); |
1597 | showSelectedDates = true; | 1599 | showSelectedDates = true; |
1598 | } | 1600 | } |
1599 | break; | 1601 | break; |
1600 | case Qt::Key_J: | 1602 | case Qt::Key_J: |
1601 | mView->viewManager()->showJournalView(); | 1603 | mView->viewManager()->showJournalView(); |
1602 | break; | 1604 | break; |
1603 | case Qt::Key_B: | 1605 | case Qt::Key_B: |
1604 | mView->editIncidenceDescription();; | 1606 | mView->editIncidenceDescription();; |
1605 | break; | 1607 | break; |
1606 | // case Qt::Key_Return: | 1608 | // case Qt::Key_Return: |
1607 | case Qt::Key_E: | 1609 | case Qt::Key_E: |
1608 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1610 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1609 | mView->newEvent(); | 1611 | mView->newEvent(); |
1610 | else | 1612 | else |
1611 | mView->editIncidence(); | 1613 | mView->editIncidence(); |
1612 | break; | 1614 | break; |
1613 | case Qt::Key_Plus: | 1615 | case Qt::Key_Plus: |
1614 | size = p->mHourSize +2; | 1616 | size = p->mHourSize +2; |
1615 | if ( size <= 18 ) | 1617 | if ( size <= 18 ) |
1616 | configureAgenda( size ); | 1618 | configureAgenda( size ); |
1617 | break; | 1619 | break; |
1618 | case Qt::Key_Minus: | 1620 | case Qt::Key_Minus: |
1619 | size = p->mHourSize - 2; | 1621 | size = p->mHourSize - 2; |
1620 | if ( size >= 4 ) | 1622 | if ( size >= 4 ) |
1621 | configureAgenda( size ); | 1623 | configureAgenda( size ); |
1622 | break; | 1624 | break; |
1623 | 1625 | ||
1624 | 1626 | ||
1625 | default: | 1627 | default: |
1626 | e->ignore(); | 1628 | e->ignore(); |
1627 | } | 1629 | } |
1628 | if ( pro > 0 ) { | 1630 | if ( pro > 0 ) { |
1629 | mView->selectFilter( pro-1 ); | 1631 | mView->selectFilter( pro-1 ); |
1630 | } | 1632 | } |
1631 | if ( showSelectedDates ) { | 1633 | if ( showSelectedDates ) { |
1632 | ;// setCaptionToDates(); | 1634 | ;// setCaptionToDates(); |
1633 | } | 1635 | } |
1634 | 1636 | ||
1635 | } | 1637 | } |
1636 | 1638 | ||
1637 | void MainWindow::fillFilterMenu() | 1639 | void MainWindow::fillFilterMenu() |
1638 | { | 1640 | { |
1639 | selectFilterMenu->clear(); | 1641 | selectFilterMenu->clear(); |
1640 | bool disable = false; | 1642 | bool disable = false; |
1641 | selectFilterMenu->insertItem(i18n ( "Edit Filters" ), 0 ); | 1643 | selectFilterMenu->insertItem(i18n ( "Edit Filters" ), 0 ); |
1642 | selectFilterMenu->insertSeparator(); | 1644 | selectFilterMenu->insertSeparator(); |
1643 | if ( mView->filterView()->filtersEnabled() ) { | 1645 | if ( mView->filterView()->filtersEnabled() ) { |
1644 | selectFilterMenu->insertItem(i18n ( "Turn filter off" ), 1 ); | 1646 | selectFilterMenu->insertItem(i18n ( "Turn filter off" ), 1 ); |
1645 | } | 1647 | } |
1646 | else { | 1648 | else { |
1647 | selectFilterMenu->insertItem(i18n ( "Turn filter on" ), 1 ); | 1649 | selectFilterMenu->insertItem(i18n ( "Turn filter on" ), 1 ); |
1648 | disable = true; | 1650 | disable = true; |
1649 | } | 1651 | } |
1650 | selectFilterMenu->insertSeparator(); | 1652 | selectFilterMenu->insertSeparator(); |
1651 | QPtrList<CalFilter> fili = mView->filters(); | 1653 | QPtrList<CalFilter> fili = mView->filters(); |
1652 | CalFilter *curfilter = mView->filterView()->selectedFilter(); | 1654 | CalFilter *curfilter = mView->filterView()->selectedFilter(); |
1653 | CalFilter *filter = fili.first(); | 1655 | CalFilter *filter = fili.first(); |
1654 | int iii = 2; | 1656 | int iii = 2; |
1655 | while(filter) { | 1657 | while(filter) { |
1656 | selectFilterMenu->insertItem( filter->name(), iii ); | 1658 | selectFilterMenu->insertItem( filter->name(), iii ); |
1657 | if ( filter == curfilter) | 1659 | if ( filter == curfilter) |
1658 | selectFilterMenu->setItemChecked( iii, true ); | 1660 | selectFilterMenu->setItemChecked( iii, true ); |
1659 | if ( disable ) | 1661 | if ( disable ) |
1660 | selectFilterMenu->setItemEnabled( iii, false ); | 1662 | selectFilterMenu->setItemEnabled( iii, false ); |
1661 | filter = fili.next(); | 1663 | filter = fili.next(); |
1662 | ++iii; | 1664 | ++iii; |
1663 | } | 1665 | } |
1664 | } | 1666 | } |
1665 | void MainWindow::selectFilter( int fil ) | 1667 | void MainWindow::selectFilter( int fil ) |
1666 | { | 1668 | { |
1667 | if ( fil == 0 ) { | 1669 | if ( fil == 0 ) { |
1668 | mView->editFilters( ); | 1670 | mView->editFilters( ); |
1669 | } else if ( fil == 1 ){ | 1671 | } else if ( fil == 1 ){ |
1670 | mView->toggleFilerEnabled( ); | 1672 | mView->toggleFilerEnabled( ); |
1671 | } else { | 1673 | } else { |
1672 | mView->selectFilter( fil-2 ); | 1674 | mView->selectFilter( fil-2 ); |
1673 | } | 1675 | } |
1674 | } | 1676 | } |
1675 | void MainWindow::configureToolBar( int item ) | 1677 | void MainWindow::configureToolBar( int item ) |
1676 | { | 1678 | { |
1677 | 1679 | ||
1678 | configureToolBarMenu->setItemChecked( item, !configureToolBarMenu-> isItemChecked ( item ) ); | 1680 | configureToolBarMenu->setItemChecked( item, !configureToolBarMenu-> isItemChecked ( item ) ); |
1679 | KOPrefs *p = KOPrefs::instance(); | 1681 | KOPrefs *p = KOPrefs::instance(); |
1680 | p-> mShowIconStretch= configureToolBarMenu->isItemChecked( 5 ); | 1682 | p-> mShowIconStretch= configureToolBarMenu->isItemChecked( 5 ); |
1681 | p-> mShowIconNewEvent= configureToolBarMenu->isItemChecked( 10 ); | 1683 | p-> mShowIconNewEvent= configureToolBarMenu->isItemChecked( 10 ); |
1682 | p->mShowIconNewTodo = configureToolBarMenu->isItemChecked( 20 ); | 1684 | p->mShowIconNewTodo = configureToolBarMenu->isItemChecked( 20 ); |
1683 | p-> mShowIconSearch= configureToolBarMenu->isItemChecked( 120 ); | 1685 | p-> mShowIconSearch= configureToolBarMenu->isItemChecked( 120 ); |
1684 | p-> mShowIconList= configureToolBarMenu->isItemChecked( 30 ); | 1686 | p-> mShowIconList= configureToolBarMenu->isItemChecked( 30 ); |
1685 | p-> mShowIconDay1= configureToolBarMenu->isItemChecked( 40 ); | 1687 | p-> mShowIconDay1= configureToolBarMenu->isItemChecked( 40 ); |
1686 | p-> mShowIconDay5= configureToolBarMenu->isItemChecked( 50 ); | 1688 | p-> mShowIconDay5= configureToolBarMenu->isItemChecked( 50 ); |
1687 | p-> mShowIconDay7= configureToolBarMenu->isItemChecked( 60 ); | 1689 | p-> mShowIconDay7= configureToolBarMenu->isItemChecked( 60 ); |
1688 | p-> mShowIconMonth= configureToolBarMenu->isItemChecked( 70 ); | 1690 | p-> mShowIconMonth= configureToolBarMenu->isItemChecked( 70 ); |
1689 | p-> mShowIconTodoview= configureToolBarMenu->isItemChecked( 80 ); | 1691 | p-> mShowIconTodoview= configureToolBarMenu->isItemChecked( 80 ); |
1690 | p-> mShowIconBackFast= configureToolBarMenu->isItemChecked( 200 ); | 1692 | p-> mShowIconBackFast= configureToolBarMenu->isItemChecked( 200 ); |
1691 | p-> mShowIconBack = configureToolBarMenu->isItemChecked( 210 ); | 1693 | p-> mShowIconBack = configureToolBarMenu->isItemChecked( 210 ); |
1692 | p-> mShowIconToday= configureToolBarMenu->isItemChecked( 130 ); | 1694 | p-> mShowIconToday= configureToolBarMenu->isItemChecked( 130 ); |
1693 | p-> mShowIconForward= configureToolBarMenu->isItemChecked( 220 ); | 1695 | p-> mShowIconForward= configureToolBarMenu->isItemChecked( 220 ); |
1694 | p-> mShowIconForwardFast= configureToolBarMenu->isItemChecked( 230 ); | 1696 | p-> mShowIconForwardFast= configureToolBarMenu->isItemChecked( 230 ); |
1695 | p-> mShowIconNextDays= configureToolBarMenu->isItemChecked( 100 ); | 1697 | p-> mShowIconNextDays= configureToolBarMenu->isItemChecked( 100 ); |
1696 | p-> mShowIconNext= configureToolBarMenu->isItemChecked( 110 ); | 1698 | p-> mShowIconNext= configureToolBarMenu->isItemChecked( 110 ); |
1697 | p-> mShowIconJournal= configureToolBarMenu->isItemChecked( 90 ); | 1699 | p-> mShowIconJournal= configureToolBarMenu->isItemChecked( 90 ); |
1698 | p-> mShowIconWhatsThis= configureToolBarMenu->isItemChecked( 300 ); | 1700 | p-> mShowIconWhatsThis= configureToolBarMenu->isItemChecked( 300 ); |
1699 | // initActions(); | 1701 | // initActions(); |
1700 | } | 1702 | } |
1701 | 1703 | ||
1702 | void MainWindow::setCaptionToDates() | 1704 | void MainWindow::setCaptionToDates() |
1703 | { | 1705 | { |
1704 | QString selDates; | 1706 | QString selDates; |
1705 | selDates = KGlobal::locale()->formatDate(mView->startDate(), true); | 1707 | selDates = KGlobal::locale()->formatDate(mView->startDate(), true); |
1706 | if (mView->startDate() < mView->endDate() ) | 1708 | if (mView->startDate() < mView->endDate() ) |
1707 | selDates += " - " + KGlobal::locale()->formatDate(mView->endDate(), true); | 1709 | selDates += " - " + KGlobal::locale()->formatDate(mView->endDate(), true); |
1708 | else { | 1710 | else { |
1709 | QString addString; | 1711 | QString addString; |
1710 | if ( mView->startDate() == QDateTime::currentDateTime().date() ) | 1712 | if ( mView->startDate() == QDateTime::currentDateTime().date() ) |
1711 | addString = i18n("Today"); | 1713 | addString = i18n("Today"); |
1712 | else if ( mView->startDate() == QDateTime::currentDateTime().date().addDays(1) ) | 1714 | else if ( mView->startDate() == QDateTime::currentDateTime().date().addDays(1) ) |
1713 | addString = i18n("Tomorrow"); | 1715 | addString = i18n("Tomorrow"); |
1714 | if ( !addString.isEmpty() ) | 1716 | if ( !addString.isEmpty() ) |
1715 | selDates = addString+", "+selDates ; | 1717 | selDates = addString+", "+selDates ; |
1716 | } | 1718 | } |
1717 | setCaption( i18n("Dates: ") + selDates ); | 1719 | setCaption( i18n("Dates: ") + selDates ); |
1718 | 1720 | ||
1719 | } | 1721 | } |
1720 | // parameter item == 0: reinit | 1722 | // parameter item == 0: reinit |
1721 | void MainWindow::configureAgenda( int item ) | 1723 | void MainWindow::configureAgenda( int item ) |
1722 | { | 1724 | { |
1723 | 1725 | ||
1724 | KOPrefs *p = KOPrefs::instance(); | 1726 | KOPrefs *p = KOPrefs::instance(); |
1725 | 1727 | ||
1726 | int i; | 1728 | int i; |
1727 | // do not allow 4 for widgets higher than 480 | 1729 | // do not allow 4 for widgets higher than 480 |
1728 | // if ( QApplication::desktop()->height() > 480 ) { | 1730 | // if ( QApplication::desktop()->height() > 480 ) { |
1729 | // if ( item == 4 ) | 1731 | // if ( item == 4 ) |
1730 | // item = 6; | 1732 | // item = 6; |
1731 | // } | 1733 | // } |
1732 | for ( i = 4; i <= 18; i= i+2 ) | 1734 | for ( i = 4; i <= 18; i= i+2 ) |
1733 | configureAgendaMenu->setItemChecked( i, false ); | 1735 | configureAgendaMenu->setItemChecked( i, false ); |
1734 | configureAgendaMenu->setItemChecked( item, true ); | 1736 | configureAgendaMenu->setItemChecked( item, true ); |
1735 | if ( p->mHourSize == item ) | 1737 | if ( p->mHourSize == item ) |
1736 | return; | 1738 | return; |
1737 | p->mHourSize=item; | 1739 | p->mHourSize=item; |
1738 | mView->viewManager()->agendaView()->updateConfig(); | 1740 | mView->viewManager()->agendaView()->updateConfig(); |
1739 | } | 1741 | } |
1740 | 1742 | ||
1741 | void MainWindow::saveCalendar() | 1743 | void MainWindow::saveCalendar() |
1742 | { | 1744 | { |
1743 | QString fn = KOPrefs::instance()->mLastSaveFile; | 1745 | QString fn = KOPrefs::instance()->mLastSaveFile; |
1744 | fn = KFileDialog::getSaveFileName( fn, i18n("Save backup filename"), this ); | 1746 | fn = KFileDialog::getSaveFileName( fn, i18n("Save backup filename"), this ); |
1745 | 1747 | ||
1746 | if ( fn == "" ) | 1748 | if ( fn == "" ) |
1747 | return; | 1749 | return; |
1748 | QFileInfo info; | 1750 | QFileInfo info; |
1749 | info.setFile( fn ); | 1751 | info.setFile( fn ); |
1750 | QString mes; | 1752 | QString mes; |
1751 | bool createbup = true; | 1753 | bool createbup = true; |
1752 | if ( info. exists() ) { | 1754 | if ( info. exists() ) { |
1753 | mes = i18n("Backup file\nalready exists!\nOld backup file from:\n%1\nOverwrite?\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )) ; | 1755 | mes = i18n("Backup file\nalready exists!\nOld backup file from:\n%1\nOverwrite?\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )) ; |
1754 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, | 1756 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, |
1755 | i18n("Overwrite!"), i18n("Cancel"), 0, | 1757 | i18n("Overwrite!"), i18n("Cancel"), 0, |
1756 | 0, 1 ); | 1758 | 0, 1 ); |
1757 | if ( result != 0 ) { | 1759 | if ( result != 0 ) { |
1758 | createbup = false; | 1760 | createbup = false; |
1759 | } | 1761 | } |
1760 | } | 1762 | } |
1761 | if ( createbup ) { | 1763 | if ( createbup ) { |
1762 | mView->saveCalendar( fn ); | 1764 | mView->saveCalendar( fn ); |
1763 | mes = i18n("KO/Pi:Saved %1").arg(fn); | 1765 | mes = i18n("KO/Pi:Saved %1").arg(fn); |
1764 | KOPrefs::instance()->mLastSaveFile = fn; | 1766 | KOPrefs::instance()->mLastSaveFile = fn; |
1765 | setCaption(mes); | 1767 | setCaption(mes); |
1766 | } | 1768 | } |
1767 | } | 1769 | } |
1768 | void MainWindow::loadCalendar() | 1770 | void MainWindow::loadCalendar() |
1769 | { | 1771 | { |
1770 | 1772 | ||
1771 | QString fn = KOPrefs::instance()->mLastLoadFile; | 1773 | QString fn = KOPrefs::instance()->mLastLoadFile; |
1772 | fn = KFileDialog::getOpenFileName( fn, i18n("Load backup filename"), this ); | 1774 | fn = KFileDialog::getOpenFileName( fn, i18n("Load backup filename"), this ); |
1773 | 1775 | ||
1774 | if ( fn == "" ) | 1776 | if ( fn == "" ) |
1775 | return; | 1777 | return; |
1776 | QFileInfo info; | 1778 | QFileInfo info; |
1777 | info.setFile( fn ); | 1779 | info.setFile( fn ); |
1778 | QString mess; | 1780 | QString mess; |
1779 | bool loadbup = true; | 1781 | bool loadbup = true; |
1780 | if ( info. exists() ) { | 1782 | if ( info. exists() ) { |
1781 | mess = i18n("Backup file from:\n%1\nLoading backup\nfile will delete\nyour current Data!\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); | 1783 | mess = i18n("Backup file from:\n%1\nLoading backup\nfile will delete\nyour current Data!\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); |
1782 | int result = QMessageBox::warning( this, "KO/Pi: Warning!", | 1784 | int result = QMessageBox::warning( this, "KO/Pi: Warning!", |
1783 | mess, | 1785 | mess, |
1784 | i18n("Load!"), i18n("Cancel"), 0, | 1786 | i18n("Load!"), i18n("Cancel"), 0, |
1785 | 0, 1 ); | 1787 | 0, 1 ); |
1786 | if ( result != 0 ) { | 1788 | if ( result != 0 ) { |
1787 | loadbup = false; | 1789 | loadbup = false; |
1788 | } | 1790 | } |
1789 | } else { | 1791 | } else { |
1790 | QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1792 | QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1791 | i18n("Backup file\ndoes not exist!\nNothing loaded!"), 0, 0, | 1793 | i18n("Backup file\ndoes not exist!\nNothing loaded!"), 0, 0, |
1792 | 0, 1 ); | 1794 | 0, 1 ); |
1793 | 1795 | ||
1794 | return; | 1796 | return; |
1795 | } | 1797 | } |
1796 | if ( loadbup ) { | 1798 | if ( loadbup ) { |
1797 | mView->openCalendar( fn ); | 1799 | mView->openCalendar( fn ); |
1798 | KOPrefs::instance()->mLastLoadFile = fn; | 1800 | KOPrefs::instance()->mLastLoadFile = fn; |
1799 | mess = i18n("KO/Pi:Loaded %1").arg(fn) ; | 1801 | mess = i18n("KO/Pi:Loaded %1").arg(fn) ; |
1800 | setCaption(mess); | 1802 | setCaption(mess); |
1801 | } | 1803 | } |
1802 | 1804 | ||
1803 | } | 1805 | } |
1804 | void MainWindow::quickImportIcal() | 1806 | void MainWindow::quickImportIcal() |
1805 | { | 1807 | { |
1806 | importFile( KOPrefs::instance()->mLastImportFile, false ); | 1808 | importFile( KOPrefs::instance()->mLastImportFile, false ); |
1807 | } | 1809 | } |
1808 | void MainWindow::importFile( QString fn, bool quick ) | 1810 | void MainWindow::importFile( QString fn, bool quick ) |
1809 | { | 1811 | { |
1810 | QFileInfo info; | 1812 | QFileInfo info; |
1811 | info.setFile( fn ); | 1813 | info.setFile( fn ); |
1812 | QString mess; | 1814 | QString mess; |
1813 | bool loadbup = true; | 1815 | bool loadbup = true; |
1814 | if ( !info. exists() ) { | 1816 | if ( !info. exists() ) { |
1815 | mess = i18n("Import file \n...%1\ndoes not exist!\nNothing imported!\n").arg(fn.right( 30)); | 1817 | mess = i18n("Import file \n...%1\ndoes not exist!\nNothing imported!\n").arg(fn.right( 30)); |
1816 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1818 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1817 | mess ); | 1819 | mess ); |
1818 | return; | 1820 | return; |
1819 | } | 1821 | } |
1820 | int result = 0; | 1822 | int result = 0; |
1821 | if ( !quick ) { | 1823 | if ( !quick ) { |
1822 | mess = i18n( "Import file \n...%1\nfrom:\n%2\nDuplicated entries\nwill not be imported!\n").arg(fn.right( 25)).arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); | 1824 | mess = i18n( "Import file \n...%1\nfrom:\n%2\nDuplicated entries\nwill not be imported!\n").arg(fn.right( 25)).arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); |
1823 | result = QMessageBox::warning( this, "KO/Pi: Warning!", | 1825 | result = QMessageBox::warning( this, "KO/Pi: Warning!", |
1824 | mess, | 1826 | mess, |
1825 | "Import", "Cancel", 0, | 1827 | "Import", "Cancel", 0, |
1826 | 0, 1 ); | 1828 | 0, 1 ); |
1827 | } | 1829 | } |
1828 | if ( result == 0 ) { | 1830 | if ( result == 0 ) { |
1829 | if ( mView->openCalendar( fn, true )) { | 1831 | if ( mView->openCalendar( fn, true )) { |
1830 | KOPrefs::instance()->mLastImportFile = fn; | 1832 | KOPrefs::instance()->mLastImportFile = fn; |
1831 | setCaption(i18n("Imported file successfully")); | 1833 | setCaption(i18n("Imported file successfully")); |
1832 | } else { | 1834 | } else { |
1833 | setCaption(i18n("Error importing file")); | 1835 | setCaption(i18n("Error importing file")); |
1834 | } | 1836 | } |
1835 | } | 1837 | } |
1836 | } | 1838 | } |
1837 | 1839 | ||
1838 | void MainWindow::importIcal() | 1840 | void MainWindow::importIcal() |
1839 | { | 1841 | { |
1840 | 1842 | ||
1841 | QString fn =KOPrefs::instance()->mLastImportFile; | 1843 | QString fn =KOPrefs::instance()->mLastImportFile; |
1842 | 1844 | ||
1843 | fn =KFileDialog:: getOpenFileName( fn, i18n("Import filename(*.ics/*.vcs)"), this ); | 1845 | fn =KFileDialog:: getOpenFileName( fn, i18n("Import filename(*.ics/*.vcs)"), this ); |
1844 | if ( fn == "" ) | 1846 | if ( fn == "" ) |
1845 | return; | 1847 | return; |
1846 | importFile( fn, true ); | 1848 | importFile( fn, true ); |
1847 | 1849 | ||
1848 | } | 1850 | } |
1849 | 1851 | ||
1850 | void MainWindow::exportVCalendar() | 1852 | void MainWindow::exportVCalendar() |
1851 | { | 1853 | { |
1852 | QString fn = KOPrefs::instance()->mLastVcalFile; | 1854 | QString fn = KOPrefs::instance()->mLastVcalFile; |
1853 | fn = KFileDialog::getSaveFileName( fn, i18n("Export vcal filename(*.vcs)"), this ); | 1855 | fn = KFileDialog::getSaveFileName( fn, i18n("Export vcal filename(*.vcs)"), this ); |
1854 | if ( fn == "" ) | 1856 | if ( fn == "" ) |
1855 | return; | 1857 | return; |
1856 | QFileInfo info; | 1858 | QFileInfo info; |
1857 | info.setFile( fn ); | 1859 | info.setFile( fn ); |
1858 | QString mes; | 1860 | QString mes; |
1859 | bool createbup = true; | 1861 | bool createbup = true; |
1860 | if ( info. exists() ) { | 1862 | if ( info. exists() ) { |
1861 | mes = i18n("Save file\nalready exists!\nOld save file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); | 1863 | mes = i18n("Save file\nalready exists!\nOld save file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); |
1862 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, | 1864 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, |
1863 | i18n("Overwrite!"), i18n("Cancel"), 0, | 1865 | i18n("Overwrite!"), i18n("Cancel"), 0, |
1864 | 0, 1 ); | 1866 | 0, 1 ); |
1865 | if ( result != 0 ) { | 1867 | if ( result != 0 ) { |
1866 | createbup = false; | 1868 | createbup = false; |
1867 | } | 1869 | } |
1868 | } | 1870 | } |
1869 | if ( createbup ) { | 1871 | if ( createbup ) { |
1870 | if ( mView->exportVCalendar( fn ) ) { | 1872 | if ( mView->exportVCalendar( fn ) ) { |
1871 | KOPrefs::instance()->mLastVcalFile = fn; | 1873 | KOPrefs::instance()->mLastVcalFile = fn; |
1872 | if ( fn.length() > 20 ) | 1874 | if ( fn.length() > 20 ) |
1873 | mes = i18n("KO/Pi:Exported to ...%1").arg(fn.right(20)) ; | 1875 | mes = i18n("KO/Pi:Exported to ...%1").arg(fn.right(20)) ; |
1874 | else | 1876 | else |
1875 | mes = i18n("KO/Pi:Exported to %1").arg(fn ); | 1877 | mes = i18n("KO/Pi:Exported to %1").arg(fn ); |
1876 | setCaption(mes); | 1878 | setCaption(mes); |
1877 | } | 1879 | } |
1878 | } | 1880 | } |
1879 | 1881 | ||
1880 | } | 1882 | } |
1881 | 1883 | ||
1882 | void MainWindow::syncFileRequest() | 1884 | void MainWindow::syncFileRequest() |
1883 | { | 1885 | { |
1884 | if ( KOPrefs::instance()->mPassiveSyncWithDesktop ) { | 1886 | if ( KOPrefs::instance()->mPassiveSyncWithDesktop ) { |
1885 | mSyncManager->slotSyncMenu( 999 ); | 1887 | mSyncManager->slotSyncMenu( 999 ); |
1886 | } | 1888 | } |
1887 | save(); | 1889 | save(); |
1888 | } | 1890 | } |
1889 | void MainWindow::getFile( bool success ) | 1891 | void MainWindow::getFile( bool success ) |
1890 | { | 1892 | { |
1891 | if ( ! success ) { | 1893 | if ( ! success ) { |
1892 | setCaption( i18n("Error receiving file. Nothing changed!") ); | 1894 | setCaption( i18n("Error receiving file. Nothing changed!") ); |
1893 | return; | 1895 | return; |
1894 | } | 1896 | } |
1895 | mView->openCalendar( defaultFileName() ); | 1897 | mView->openCalendar( defaultFileName() ); |
1896 | if ( KOPrefs::instance()->mPassiveSyncWithDesktop ) { | 1898 | if ( KOPrefs::instance()->mPassiveSyncWithDesktop ) { |
1897 | mSyncManager->slotSyncMenu( 999 ); | 1899 | mSyncManager->slotSyncMenu( 999 ); |
1898 | } | 1900 | } |
1899 | setCaption( i18n("Pi-Sync successful!") ); | 1901 | setCaption( i18n("Pi-Sync successful!") ); |
1900 | } | 1902 | } |
1901 | 1903 | ||
1902 | void MainWindow::printSel( ) | 1904 | void MainWindow::printSel( ) |
1903 | { | 1905 | { |
1904 | mView->viewManager()->agendaView()->agenda()->printSelection(); | 1906 | mView->viewManager()->agendaView()->agenda()->printSelection(); |
1905 | } | 1907 | } |
1906 | 1908 | ||
1907 | void MainWindow::printCal() | 1909 | void MainWindow::printCal() |
1908 | { | 1910 | { |
1909 | mView->print();//mCp->showDialog(); | 1911 | mView->print();//mCp->showDialog(); |
1910 | } | 1912 | } |
1911 | 1913 | ||