author | zautrix <zautrix> | 2005-06-15 20:45:30 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-15 20:45:30 (UTC) |
commit | e74483434835ad799b1a6880ae4576aacb14624a (patch) (unidiff) | |
tree | 2a060544e0f6b026d773032d65ab079d75879afd | |
parent | e17a686fcfab42a71f25e9f0a4c3a395ec41a7b1 (diff) | |
download | kdepimpi-e74483434835ad799b1a6880ae4576aacb14624a.zip kdepimpi-e74483434835ad799b1a6880ae4576aacb14624a.tar.gz kdepimpi-e74483434835ad799b1a6880ae4576aacb14624a.tar.bz2 |
fixes
-rw-r--r-- | korganizer/kofilterview.cpp | 86 | ||||
-rw-r--r-- | korganizer/kofilterview.h | 59 |
2 files changed, 101 insertions, 44 deletions
diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index 105028a..36ee2eb 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp | |||
@@ -1,126 +1,93 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 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 <qcheckbox.h> | 24 | #include <qcheckbox.h> |
25 | #include <qcombobox.h> | 25 | #include <qcombobox.h> |
26 | #include <qpushbutton.h> | 26 | #include <qpushbutton.h> |
27 | #include <qlayout.h> | 27 | #include <qlayout.h> |
28 | #include <qlabel.h> | 28 | #include <qlabel.h> |
29 | #include <qdialog.h> | 29 | #include <qdialog.h> |
30 | #include <qtextstream.h> | ||
31 | #include <qtextcodec.h> | ||
30 | 32 | ||
31 | 33 | ||
32 | #include <libkcal/calfilter.h> | 34 | #include <libkcal/calfilter.h> |
33 | 35 | ||
34 | #include "kofilterview.h" | 36 | #include "kofilterview.h" |
35 | #include "koprefs.h" | 37 | #include "koprefs.h" |
36 | #include <kiconloader.h> | 38 | #include <kiconloader.h> |
37 | #include <kglobal.h> | 39 | #include <kglobal.h> |
38 | #include <kcolorbutton.h> | 40 | #include <kcolorbutton.h> |
39 | #include <kmessagebox.h> | 41 | #include <kmessagebox.h> |
40 | 42 | ||
41 | 43 | ||
42 | #include <kurlrequester.h> | ||
43 | #include <klineedit.h> | ||
44 | |||
45 | class KONewCalPrefs : public QDialog | ||
46 | { | ||
47 | public: | ||
48 | KONewCalPrefs( QWidget *parent=0, const char *name=0 ) : | ||
49 | QDialog( parent, name, true ) | ||
50 | { | ||
51 | setCaption( i18n("Add new Calendar") ); | ||
52 | QVBoxLayout* lay = new QVBoxLayout( this ); | ||
53 | lay->setSpacing( 3 ); | ||
54 | lay->setMargin( 3 ); | ||
55 | QLabel * lab = new QLabel( i18n("<b>Name of new calendar:</b>"), this ); | ||
56 | lay->addWidget( lab ); | ||
57 | nameE = new KLineEdit( this ); | ||
58 | lay->addWidget( nameE ); | ||
59 | lab = new QLabel( i18n("Local ical (*.ics) file:"), this ); | ||
60 | lay->addWidget( lab ); | ||
61 | url = new KURLRequester ( this ); | ||
62 | lay->addWidget( url ); | ||
63 | QPushButton * ok = new QPushButton( i18n("OK"), this ); | ||
64 | lay->addWidget( ok ); | ||
65 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); | ||
66 | lay->addWidget( cancel ); | ||
67 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); | ||
68 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); | ||
69 | //resize( 200, 200 ); | ||
70 | } | ||
71 | |||
72 | QString calName() { return nameE->text(); } | ||
73 | QString calFileName() { return url->url(); } | ||
74 | private: | ||
75 | KLineEdit* nameE; | ||
76 | KURLRequester *url; | ||
77 | }; | ||
78 | 44 | ||
45 | |||
79 | 46 | ||
80 | KOFilterView::KOFilterView(QPtrList<CalFilter> *filterList,QWidget* parent, | 47 | KOFilterView::KOFilterView(QPtrList<CalFilter> *filterList,QWidget* parent, |
81 | const char* name,WFlags fl ) | 48 | const char* name,WFlags fl ) |
82 | : KOFilterView_base(parent,name,fl) | 49 | : KOFilterView_base(parent,name,fl) |
83 | { | 50 | { |
84 | mFilters = filterList; | 51 | mFilters = filterList; |
85 | 52 | ||
86 | connect(mSelectionCombo,SIGNAL(activated(int)),SIGNAL(filterChanged())); | 53 | connect(mSelectionCombo,SIGNAL(activated(int)),SIGNAL(filterChanged())); |
87 | connect(mEnabledCheck,SIGNAL(clicked()),SIGNAL(filterChanged())); | 54 | connect(mEnabledCheck,SIGNAL(clicked()),SIGNAL(filterChanged())); |
88 | connect(mEditButton,SIGNAL(clicked()),SIGNAL(editFilters())); | 55 | connect(mEditButton,SIGNAL(clicked()),SIGNAL(editFilters())); |
89 | } | 56 | } |
90 | 57 | ||
91 | KOFilterView::~KOFilterView() | 58 | KOFilterView::~KOFilterView() |
92 | { | 59 | { |
93 | // no need to delete child widgets, Qt does it all for us | 60 | // no need to delete child widgets, Qt does it all for us |
94 | } | 61 | } |
95 | 62 | ||
96 | bool KOFilterView::filtersEnabled() | 63 | bool KOFilterView::filtersEnabled() |
97 | { | 64 | { |
98 | return mEnabledCheck->isChecked(); | 65 | return mEnabledCheck->isChecked(); |
99 | } | 66 | } |
100 | 67 | ||
101 | void KOFilterView::setFiltersEnabled(bool set) | 68 | void KOFilterView::setFiltersEnabled(bool set) |
102 | { | 69 | { |
103 | mEnabledCheck->setChecked(set); | 70 | mEnabledCheck->setChecked(set); |
104 | emit filterChanged(); | 71 | emit filterChanged(); |
105 | } | 72 | } |
106 | 73 | ||
107 | 74 | ||
108 | void KOFilterView::updateFilters() | 75 | void KOFilterView::updateFilters() |
109 | { | 76 | { |
110 | mSelectionCombo->clear(); | 77 | mSelectionCombo->clear(); |
111 | 78 | ||
112 | CalFilter *filter = mFilters->first(); | 79 | CalFilter *filter = mFilters->first(); |
113 | while(filter) { | 80 | while(filter) { |
114 | mSelectionCombo->insertItem(filter->name()); | 81 | mSelectionCombo->insertItem(filter->name()); |
115 | filter = mFilters->next(); | 82 | filter = mFilters->next(); |
116 | } | 83 | } |
117 | } | 84 | } |
118 | 85 | ||
119 | CalFilter *KOFilterView::selectedFilter() | 86 | CalFilter *KOFilterView::selectedFilter() |
120 | { | 87 | { |
121 | CalFilter *f = mFilters->at(mSelectionCombo->currentItem()); | 88 | CalFilter *f = mFilters->at(mSelectionCombo->currentItem()); |
122 | return f; | 89 | return f; |
123 | } | 90 | } |
124 | 91 | ||
125 | void KOFilterView::setSelectedFilter(QString filterName) | 92 | void KOFilterView::setSelectedFilter(QString filterName) |
126 | { | 93 | { |
@@ -197,97 +164,97 @@ void KOCalEditView::selectStdCal( int id, bool b ) | |||
197 | kkf = KOPrefs::instance()->mCalendars.next(); | 164 | kkf = KOPrefs::instance()->mCalendars.next(); |
198 | } | 165 | } |
199 | KOPrefs::instance()->getCalendar( id )->isStandard = true; | 166 | KOPrefs::instance()->getCalendar( id )->isStandard = true; |
200 | emit setCalendarDefault ( id ); | 167 | emit setCalendarDefault ( id ); |
201 | } | 168 | } |
202 | 169 | ||
203 | void KOCalEditView::selectCalAlarm(int id ,bool b ) | 170 | void KOCalEditView::selectCalAlarm(int id ,bool b ) |
204 | { | 171 | { |
205 | KOPrefs::instance()->getCalendar( id )->isAlarmEnabled = b; | 172 | KOPrefs::instance()->getCalendar( id )->isAlarmEnabled = b; |
206 | emit alarmEnabled ( id , b ); | 173 | emit alarmEnabled ( id , b ); |
207 | emit needsUpdate(); | 174 | emit needsUpdate(); |
208 | } | 175 | } |
209 | void KOCalEditView::selectReadOnly(int id ,bool b ) | 176 | void KOCalEditView::selectReadOnly(int id ,bool b ) |
210 | { | 177 | { |
211 | KOPrefs::instance()->getCalendar( id )->isReadOnly = b; | 178 | KOPrefs::instance()->getCalendar( id )->isReadOnly = b; |
212 | emit calendarReadonly ( id , b ); | 179 | emit calendarReadonly ( id , b ); |
213 | if ( KOPrefs::instance()->getCalendar( id )->isStandard && b && id > 1 ) { | 180 | if ( KOPrefs::instance()->getCalendar( id )->isStandard && b && id > 1 ) { |
214 | KOPrefs::instance()->getCalendar( id )->isStandard = false; | 181 | KOPrefs::instance()->getCalendar( id )->isStandard = false; |
215 | KOPrefs::instance()->getCalendar( 1 )->isStandard = true; | 182 | KOPrefs::instance()->getCalendar( 1 )->isStandard = true; |
216 | emit setCalendarDefault ( 1 ); | 183 | emit setCalendarDefault ( 1 ); |
217 | } | 184 | } |
218 | emit needsUpdate(); | 185 | emit needsUpdate(); |
219 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); | 186 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); |
220 | 187 | ||
221 | } | 188 | } |
222 | void KOCalEditView::setColor( const QColor& c, int id ) | 189 | void KOCalEditView::setColor( const QColor& c, int id ) |
223 | { | 190 | { |
224 | KOPrefs::instance()->getCalendar( id )->mDefaultColor = c; | 191 | KOPrefs::instance()->getCalendar( id )->mDefaultColor = c; |
225 | emit needsUpdate(); | 192 | emit needsUpdate(); |
226 | } | 193 | } |
227 | void KOCalEditView::deleteCal( int id ) | 194 | void KOCalEditView::deleteCal( int id ) |
228 | { | 195 | { |
229 | KopiCalendarFile * kkf = KOPrefs::instance()->getCalendar( id ); | 196 | KopiCalendarFile * kkf = KOPrefs::instance()->getCalendar( id ); |
230 | QString name = kkf->mName; | 197 | QString name = kkf->mName; |
231 | QString file = kkf->mFileName; | 198 | QString file = kkf->mFileName; |
232 | if ( KMessageBox::warningContinueCancel( this, i18n("The calendar<tr><b>%1</b><tr>is displaying file<tr><b>%2</b><tr>Do you want to remove<tr>this calendar from KO/Pi?<tr>(The file is not removed!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; | 199 | if ( KMessageBox::warningContinueCancel( this, i18n("The calendar<tr><b>%1</b><tr>is displaying file<tr><b>%2</b><tr>Do you want to remove<tr>this calendar from KO/Pi?<tr>(The file is not removed!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; |
233 | if ( kkf->isStandard ) | 200 | if ( kkf->isStandard ) |
234 | selectStdCal( 1, true ); | 201 | selectStdCal( 1, true ); |
235 | emit removeCalendar ( id ); | 202 | emit removeCalendar ( id ); |
236 | KOPrefs::instance()->mCalendars.remove ( kkf ); | 203 | KOPrefs::instance()->mCalendars.remove ( kkf ); |
237 | emit needsUpdate(); | 204 | emit needsUpdate(); |
238 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); | 205 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); |
239 | } | 206 | } |
240 | void KOCalEditView::infoCal( int id ) | 207 | void KOCalEditView::infoCal( int id ) |
241 | { | 208 | { |
242 | QString name = KOPrefs::instance()->getCalendar( id )->mName; | 209 | QString name = KOPrefs::instance()->getCalendar( id )->mName; |
243 | QString file = KOPrefs::instance()->getCalendar( id )->mFileName; | 210 | QString file = KOPrefs::instance()->getCalendar( id )->mFileName; |
244 | if ( KOPrefs::instance()->getCalendar( id )->mErrorOnLoad ) { | 211 | if ( KOPrefs::instance()->getCalendar( id )->mErrorOnLoad ) { |
245 | if ( KMessageBox::Yes == KMessageBox::questionYesNo( this, i18n("The calendar <tr><b>%1</b><tr> is not loaded! Loading of file <tr><b>%2</b><tr> failed! <tr><b>Try again to load the calendar?</b>").arg(name).arg(file) ) ) { | 212 | if ( KMessageBox::Yes == KMessageBox::questionYesNo( this, i18n("The calendar <tr><b>%1</b><tr> is not loaded! Loading of file <tr><b>%2</b><tr>failed!<tr><b>Try again to load the calendar?</b>").arg(name).arg(file) ) ) { |
246 | emit calendarAdded( id ); | 213 | emit calendarAdded( id ); |
247 | emit needsUpdate(); | 214 | emit needsUpdate(); |
248 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); | 215 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); |
249 | } | 216 | } |
250 | } | 217 | } |
251 | else | 218 | else |
252 | KMessageBox::information( this, i18n("The calendar <tr><b>%1</b><tr>is displaying file<tr><b>%2</b>").arg(name).arg(file) ); | 219 | KMessageBox::information( this, i18n("The calendar <tr><b>%1</b><tr>is displaying file<tr><b>%2</b>").arg(name).arg(file) ); |
253 | } | 220 | } |
254 | void KOCalEditView::readConfig() | 221 | void KOCalEditView::readConfig() |
255 | { | 222 | { |
256 | 223 | ||
257 | mStdandardB.clear(); | 224 | mStdandardB.clear(); |
258 | mEnabledB.clear(); | 225 | mEnabledB.clear(); |
259 | mAlarmB.clear(); | 226 | mAlarmB.clear(); |
260 | mROB.clear(); | 227 | mROB.clear(); |
261 | 228 | ||
262 | if ( mw ) delete mw; | 229 | if ( mw ) delete mw; |
263 | mw = new QWidget ( viewport() ); | 230 | mw = new QWidget ( viewport() ); |
264 | addChild(mw); | 231 | addChild(mw); |
265 | 232 | ||
266 | mainLayout = new QGridLayout ( mw , 2, 8 ); | 233 | mainLayout = new QGridLayout ( mw , 2, 8 ); |
267 | mainLayout->setMargin( 3); | 234 | mainLayout->setMargin( 3); |
268 | mainLayout->setSpacing( 2); | 235 | mainLayout->setSpacing( 2); |
269 | QPushButton * addBut = new QPushButton ( mw ); | 236 | QPushButton * addBut = new QPushButton ( mw ); |
270 | addBut->setFocusPolicy(NoFocus); | 237 | addBut->setFocusPolicy(NoFocus); |
271 | mainLayout->addWidget( addBut,0,0 ); | 238 | mainLayout->addWidget( addBut,0,0 ); |
272 | addBut->setPixmap ( SmallIcon("plus")); | 239 | addBut->setPixmap ( SmallIcon("plus")); |
273 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); | 240 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); |
274 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 241 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
275 | 242 | ||
276 | addBut = new QPushButton ( mw ); | 243 | addBut = new QPushButton ( mw ); |
277 | addBut->setFocusPolicy(NoFocus); | 244 | addBut->setFocusPolicy(NoFocus); |
278 | mainLayout->addWidget( addBut,0,1 ); | 245 | mainLayout->addWidget( addBut,0,1 ); |
279 | addBut->setPixmap ( SmallIcon("eye")); | 246 | addBut->setPixmap ( SmallIcon("eye")); |
280 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); | 247 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); |
281 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 248 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
282 | 249 | ||
283 | QLabel* lab = new QLabel (i18n(" Calendar \n Resource "), mw ); | 250 | QLabel* lab = new QLabel (i18n(" Calendar \n Resource "), mw ); |
284 | mainLayout->addWidget( lab,0,2 ); | 251 | mainLayout->addWidget( lab,0,2 ); |
285 | lab = new QLabel ( i18n(" "), mw ); | 252 | lab = new QLabel ( i18n(" "), mw ); |
286 | mainLayout->addWidget( lab,0,3 ); | 253 | mainLayout->addWidget( lab,0,3 ); |
287 | lab->setFixedWidth( 6 ); | 254 | lab->setFixedWidth( 6 ); |
288 | addBut = new QPushButton ( mw ); | 255 | addBut = new QPushButton ( mw ); |
289 | addBut->setFocusPolicy(NoFocus); | 256 | addBut->setFocusPolicy(NoFocus); |
290 | mainLayout->addWidget( addBut,0,4 ); | 257 | mainLayout->addWidget( addBut,0,4 ); |
291 | addBut->setPixmap ( SmallIcon("bell")); | 258 | addBut->setPixmap ( SmallIcon("bell")); |
292 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); | 259 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); |
293 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 260 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
@@ -328,98 +295,129 @@ void KOCalEditView::readConfig() | |||
328 | if ( kkf->mErrorOnLoad ) | 295 | if ( kkf->mErrorOnLoad ) |
329 | cb->setEnabled( false ); | 296 | cb->setEnabled( false ); |
330 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCal(int,bool) ) ); | 297 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCal(int,bool) ) ); |
331 | KOCalButton* name = new KOCalButton( mw ); | 298 | KOCalButton* name = new KOCalButton( mw ); |
332 | name->setNum( kkf->mCalNumber ); | 299 | name->setNum( kkf->mCalNumber ); |
333 | name->setText( kkf->mName ); | 300 | name->setText( kkf->mName ); |
334 | mainLayout->addWidget( name,row,++iii ); | 301 | mainLayout->addWidget( name,row,++iii ); |
335 | connect (name, SIGNAL (selectNum(int)), SLOT ( infoCal(int) ) ); | 302 | connect (name, SIGNAL (selectNum(int)), SLOT ( infoCal(int) ) ); |
336 | lab = new QLabel ( i18n(" "), mw ); | 303 | lab = new QLabel ( i18n(" "), mw ); |
337 | mainLayout->addWidget( lab,row,++iii ); | 304 | mainLayout->addWidget( lab,row,++iii ); |
338 | cb = new KOCalCheckButton( mw ); | 305 | cb = new KOCalCheckButton( mw ); |
339 | mainLayout->addWidget( cb,row,++iii );mAlarmB.append( cb ); | 306 | mainLayout->addWidget( cb,row,++iii );mAlarmB.append( cb ); |
340 | cb->setChecked( kkf->isAlarmEnabled ); | 307 | cb->setChecked( kkf->isAlarmEnabled ); |
341 | cb->setNum( kkf->mCalNumber ); | 308 | cb->setNum( kkf->mCalNumber ); |
342 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCalAlarm(int,bool) ) ); | 309 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCalAlarm(int,bool) ) ); |
343 | if ( kkf->mErrorOnLoad ) | 310 | if ( kkf->mErrorOnLoad ) |
344 | cb->setEnabled( false ); | 311 | cb->setEnabled( false ); |
345 | cb = new KOCalCheckButton( mw ); | 312 | cb = new KOCalCheckButton( mw ); |
346 | mainLayout->addWidget( cb,row,++iii );mROB.append( cb ); | 313 | mainLayout->addWidget( cb,row,++iii );mROB.append( cb ); |
347 | cb->setChecked( kkf->isReadOnly ); | 314 | cb->setChecked( kkf->isReadOnly ); |
348 | cb->setNum( kkf->mCalNumber ); | 315 | cb->setNum( kkf->mCalNumber ); |
349 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectReadOnly(int,bool) ) ); | 316 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectReadOnly(int,bool) ) ); |
350 | if ( kkf->mErrorOnLoad ) | 317 | if ( kkf->mErrorOnLoad ) |
351 | cb->setEnabled( false ); | 318 | cb->setEnabled( false ); |
352 | if ( row > 1) { | 319 | if ( row > 1) { |
353 | KColorButton *colb = new KColorButton( mw ); | 320 | KColorButton *colb = new KColorButton( mw ); |
354 | mainLayout->addWidget( colb,row,++iii ); | 321 | mainLayout->addWidget( colb,row,++iii ); |
355 | colb->setID( kkf->mCalNumber ); | 322 | colb->setID( kkf->mCalNumber ); |
356 | colb->setColor( kkf->mDefaultColor ); | 323 | colb->setColor( kkf->mDefaultColor ); |
357 | connect (colb, SIGNAL (changedID(const QColor&, int )), SLOT ( setColor(const QColor&,int) ) ); | 324 | connect (colb, SIGNAL (changedID(const QColor&, int )), SLOT ( setColor(const QColor&,int) ) ); |
358 | KOCalButton* calb = new KOCalButton( mw ); | 325 | KOCalButton* calb = new KOCalButton( mw ); |
359 | mainLayout->addWidget( calb,row,++iii ); | 326 | mainLayout->addWidget( calb,row,++iii ); |
360 | calb->setNum( kkf->mCalNumber ); | 327 | calb->setNum( kkf->mCalNumber ); |
361 | calb->setPixmap ( SmallIcon("minus")); | 328 | calb->setPixmap ( SmallIcon("minus")); |
362 | connect (calb, SIGNAL (selectNum(int)), SLOT ( deleteCal(int) ) ); | 329 | connect (calb, SIGNAL (selectNum(int)), SLOT ( deleteCal(int) ) ); |
363 | int hei = calb->sizeHint().height(); | 330 | int hei = calb->sizeHint().height(); |
364 | //calb->setMaximumSize( hei*9/10, hei*9/10 ); | 331 | //calb->setMaximumSize( hei*9/10, hei*9/10 ); |
365 | } | 332 | } |
366 | ++row; | 333 | ++row; |
367 | kkf = KOPrefs::instance()->mCalendars.next(); | 334 | kkf = KOPrefs::instance()->mCalendars.next(); |
368 | } | 335 | } |
369 | lab = new QLabel ( "", mw ); | 336 | lab = new QLabel ( "", mw ); |
370 | mainLayout->addWidget( lab,row,0 ); | 337 | mainLayout->addWidget( lab,row,0 ); |
371 | mw->show(); | 338 | mw->show(); |
372 | 339 | ||
373 | } | 340 | } |
374 | void KOCalEditView::addCal() | 341 | void KOCalEditView::addCal() |
375 | { | 342 | { |
376 | KONewCalPrefs prefs ( this ); | 343 | bool tryagain = true; |
377 | if ( ! prefs.exec() ) | 344 | QString name, file; |
378 | return; | 345 | while ( tryagain ) { |
379 | QString name = prefs.calName(); | 346 | KONewCalPrefs prefs ( this ); |
380 | QString file = prefs.calFileName(); | 347 | if ( !name.isEmpty() ) prefs.nameE->setText( name ); |
348 | if ( !file.isEmpty() ) prefs.url->setURL( file ); | ||
349 | if ( ! prefs.exec() ) | ||
350 | return; | ||
351 | name = prefs.calName(); | ||
352 | file = prefs.calFileName(); | ||
353 | tryagain = false; | ||
354 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | ||
355 | while ( kkf ) { | ||
356 | if ( kkf->mName == name ) { | ||
357 | KMessageBox::information( this, i18n("Sorry, the calendar name already exists!\nPlease choose another name!") ); | ||
358 | name = ""; | ||
359 | break; | ||
360 | tryagain = true; | ||
361 | } | ||
362 | if ( kkf->mFileName == file ) { | ||
363 | |||
364 | break; | ||
365 | tryagain = true; | ||
366 | } | ||
367 | kkf = KOPrefs::instance()->mCalendars.next(); | ||
368 | } | ||
369 | } | ||
381 | QFileInfo fi ( file ); | 370 | QFileInfo fi ( file ); |
382 | if (!fi.exists() ) { | 371 | if (!fi.exists() ) { |
383 | KMessageBox::information( this, i18n("File does not exist!\nNo calendar added!")); | 372 | if ( KMessageBox::questionYesNo(this, i18n("The file does not exist!\nShall I create it for you?")) == KMessageBox::No ) |
384 | return; | 373 | return; |
374 | QFile fileIn( file ); | ||
375 | if (!fileIn.open( IO_WriteOnly ) ) { | ||
376 | KMessageBox::sorry( this, i18n("Sorry, cannot create the file!\nNo calendar added!") ); | ||
377 | return; | ||
378 | } | ||
379 | QTextStream tsIn( &fileIn ); | ||
380 | tsIn.setCodec( QTextCodec::codecForName("utf8") ); | ||
381 | tsIn << "BEGIN:VCALENDAR\nPRODID:-//KDE-Pim//Platform-independent 2.1.0\nVERSION:2.0\nEND:VCALENDAR\n"; | ||
382 | fileIn.close(); | ||
385 | } | 383 | } |
386 | KopiCalendarFile * kkf = KOPrefs::instance()->getNewCalendar(); | 384 | KopiCalendarFile * kkf = KOPrefs::instance()->getNewCalendar(); |
387 | kkf->mName = name; | 385 | kkf->mName = name; |
388 | kkf->mFileName = file; | 386 | kkf->mFileName = file; |
389 | emit calendarAdded( kkf->mCalNumber ); | 387 | emit calendarAdded( kkf->mCalNumber ); |
390 | emit needsUpdate(); | 388 | emit needsUpdate(); |
391 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); | 389 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); |
392 | } | 390 | } |
393 | void KOCalEditView::enableAll() | 391 | void KOCalEditView::enableAll() |
394 | { | 392 | { |
395 | toggleList( mEnabledB ); | 393 | toggleList( mEnabledB ); |
396 | } | 394 | } |
397 | void KOCalEditView::enableAlarm() | 395 | void KOCalEditView::enableAlarm() |
398 | { | 396 | { |
399 | toggleList( mAlarmB ); | 397 | toggleList( mAlarmB ); |
400 | } | 398 | } |
401 | void KOCalEditView::disableRO() | 399 | void KOCalEditView::disableRO() |
402 | { | 400 | { |
403 | toggleList( mROB ); | 401 | toggleList( mROB ); |
404 | } | 402 | } |
405 | void KOCalEditView::toggleList ( QPtrList<KOCalCheckButton> list ) | 403 | void KOCalEditView::toggleList ( QPtrList<KOCalCheckButton> list ) |
406 | { | 404 | { |
407 | bool dis = false; | 405 | bool dis = false; |
408 | KOCalCheckButton* it = list.first(); | 406 | KOCalCheckButton* it = list.first(); |
409 | while ( it ) { | 407 | while ( it ) { |
410 | if ( !it->isChecked() ) { | 408 | if ( !it->isChecked() ) { |
411 | dis = true; | 409 | dis = true; |
412 | break; | 410 | break; |
413 | } | 411 | } |
414 | it = list.next(); | 412 | it = list.next(); |
415 | } | 413 | } |
416 | it = list.first(); | 414 | it = list.first(); |
417 | while ( it ) { | 415 | while ( it ) { |
418 | it->setChecked(dis); | 416 | it->setChecked(dis); |
419 | it = list.next(); | 417 | it = list.next(); |
420 | } | 418 | } |
421 | } | 419 | } |
422 | void KOCalEditView::deleteAll() | 420 | void KOCalEditView::deleteAll() |
423 | { | 421 | { |
424 | qDebug("delteAll"); | 422 | qDebug("delteAll"); |
425 | } | 423 | } |
diff --git a/korganizer/kofilterview.h b/korganizer/kofilterview.h index 3ab316f..945947a 100644 --- a/korganizer/kofilterview.h +++ b/korganizer/kofilterview.h | |||
@@ -1,85 +1,144 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 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 | #ifndef KOFILTERVIEW_H | 23 | #ifndef KOFILTERVIEW_H |
24 | #define KOFILTERVIEW_H | 24 | #define KOFILTERVIEW_H |
25 | 25 | ||
26 | #include <qstring.h> | 26 | #include <qstring.h> |
27 | #include <qcheckbox.h> | 27 | #include <qcheckbox.h> |
28 | #include <qlayout.h> | ||
29 | #include <qlabel.h> | ||
28 | #include <qscrollview.h> | 30 | #include <qscrollview.h> |
29 | #include <qpushbutton.h> | 31 | #include <qpushbutton.h> |
30 | #include <kconfig.h> | 32 | #include <kconfig.h> |
31 | #include "kofilterview_base.h" | 33 | #include "kofilterview_base.h" |
32 | 34 | ||
33 | #include <libkcal/calfilter.h> | 35 | #include <libkcal/calfilter.h> |
34 | 36 | ||
37 | #include <kurlrequester.h> | ||
38 | #include <klineedit.h> | ||
39 | #include <kglobal.h> | ||
40 | #include <kmessagebox.h> | ||
41 | |||
35 | class QGridLayout; | 42 | class QGridLayout; |
36 | 43 | ||
37 | using namespace KCal; | 44 | using namespace KCal; |
45 | |||
46 | class KONewCalPrefs : public QDialog | ||
47 | { | ||
48 | Q_OBJECT | ||
49 | public: | ||
50 | KONewCalPrefs( QWidget *parent=0, const char *name=0 ) : | ||
51 | QDialog( parent, name, true ) | ||
52 | { | ||
53 | setCaption( i18n("Add new Calendar") ); | ||
54 | QVBoxLayout* lay = new QVBoxLayout( this ); | ||
55 | lay->setSpacing( 3 ); | ||
56 | lay->setMargin( 3 ); | ||
57 | QLabel * lab = new QLabel( i18n("<b>Name of new calendar:</b>"), this ); | ||
58 | lay->addWidget( lab ); | ||
59 | nameE = new KLineEdit( this ); | ||
60 | lay->addWidget( nameE ); | ||
61 | lab = new QLabel( i18n("<b>Local ical (*.ics) file:</b>"), this ); | ||
62 | lay->addWidget( lab ); | ||
63 | url = new KURLRequester ( this ); | ||
64 | lay->addWidget( url ); | ||
65 | QPushButton * ok = new QPushButton( i18n("OK"), this ); | ||
66 | lay->addWidget( ok ); | ||
67 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); | ||
68 | lay->addWidget( cancel ); | ||
69 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( checkValid() ) ); | ||
70 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); | ||
71 | setMinimumWidth( 220 ); | ||
72 | resize(sizeHint() ); | ||
73 | } | ||
74 | |||
75 | QString calName() { return nameE->text(); } | ||
76 | QString calFileName() { return url->url(); } | ||
77 | |||
78 | public slots: | ||
79 | void checkValid() { | ||
80 | if ( nameE->text().isEmpty() ) { | ||
81 | KMessageBox::information( this, i18n("Sorry, the calendar name is empty!") ); | ||
82 | nameE->setText( "LPQJ_"+ QString::number( QTime::currentTime().msec () )); | ||
83 | return; | ||
84 | } | ||
85 | if ( url->url().isEmpty() ) { | ||
86 | KMessageBox::information( this, i18n("Sorry, the file name is empty!") ); | ||
87 | return; | ||
88 | } | ||
89 | accept(); | ||
90 | } | ||
91 | |||
92 | public: | ||
93 | KLineEdit* nameE; | ||
94 | KURLRequester *url; | ||
95 | }; | ||
96 | |||
38 | class KOCalButton : public QPushButton | 97 | class KOCalButton : public QPushButton |
39 | { | 98 | { |
40 | Q_OBJECT | 99 | Q_OBJECT |
41 | public: | 100 | public: |
42 | KOCalButton( QWidget *parent=0, const char *name=0 ) : | 101 | KOCalButton( QWidget *parent=0, const char *name=0 ) : |
43 | QPushButton( parent, name) | 102 | QPushButton( parent, name) |
44 | { | 103 | { |
45 | connect( this, SIGNAL( clicked() ), | 104 | connect( this, SIGNAL( clicked() ), |
46 | SLOT( bottonClicked() )); | 105 | SLOT( bottonClicked() )); |
47 | mNumber = -1; | 106 | mNumber = -1; |
48 | setFocusPolicy(NoFocus); | 107 | setFocusPolicy(NoFocus); |
49 | } | 108 | } |
50 | void setNum ( int num ) {mNumber = num; } | 109 | void setNum ( int num ) {mNumber = num; } |
51 | signals: | 110 | signals: |
52 | void selectNum ( int ); | 111 | void selectNum ( int ); |
53 | private: | 112 | private: |
54 | int mNumber; | 113 | int mNumber; |
55 | void keyPressEvent ( QKeyEvent * e ) | 114 | void keyPressEvent ( QKeyEvent * e ) |
56 | { | 115 | { |
57 | e->ignore(); | 116 | e->ignore(); |
58 | } | 117 | } |
59 | 118 | ||
60 | private slots : | 119 | private slots : |
61 | void bottonClicked() { if ( mNumber > 0 ) emit selectNum ( mNumber ); } | 120 | void bottonClicked() { if ( mNumber > 0 ) emit selectNum ( mNumber ); } |
62 | }; | 121 | }; |
63 | class KOCalCheckButton : public QCheckBox | 122 | class KOCalCheckButton : public QCheckBox |
64 | { | 123 | { |
65 | Q_OBJECT | 124 | Q_OBJECT |
66 | public: | 125 | public: |
67 | KOCalCheckButton( QWidget *parent=0, const char *name=0 ) : | 126 | KOCalCheckButton( QWidget *parent=0, const char *name=0 ) : |
68 | QCheckBox( parent, name) | 127 | QCheckBox( parent, name) |
69 | { | 128 | { |
70 | connect( this, SIGNAL( toggled ( bool ) ), | 129 | connect( this, SIGNAL( toggled ( bool ) ), |
71 | SLOT( bottonClicked( bool ) )); | 130 | SLOT( bottonClicked( bool ) )); |
72 | mNumber = -1; | 131 | mNumber = -1; |
73 | setFocusPolicy(NoFocus); | 132 | setFocusPolicy(NoFocus); |
74 | //setMaximumWidth( 10 ); | 133 | //setMaximumWidth( 10 ); |
75 | 134 | ||
76 | } | 135 | } |
77 | void setNum ( int num ) {mNumber = num; } | 136 | void setNum ( int num ) {mNumber = num; } |
78 | signals: | 137 | signals: |
79 | void selectNum ( int, bool ); | 138 | void selectNum ( int, bool ); |
80 | private: | 139 | private: |
81 | int mNumber; | 140 | int mNumber; |
82 | void keyPressEvent ( QKeyEvent * e ) | 141 | void keyPressEvent ( QKeyEvent * e ) |
83 | { | 142 | { |
84 | e->ignore(); | 143 | e->ignore(); |
85 | } | 144 | } |