summaryrefslogtreecommitdiffabout
path: root/korganizer
Unidiff
Diffstat (limited to 'korganizer') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/koeditorgeneral.cpp5
-rw-r--r--korganizer/kolistview.cpp11
2 files changed, 11 insertions, 5 deletions
diff --git a/korganizer/koeditorgeneral.cpp b/korganizer/koeditorgeneral.cpp
index 50a04ea..5c94f62 100644
--- a/korganizer/koeditorgeneral.cpp
+++ b/korganizer/koeditorgeneral.cpp
@@ -1,567 +1,568 @@
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 <qwidget.h> 24#include <qwidget.h>
25#include <qtooltip.h> 25#include <qtooltip.h>
26#include <qlayout.h> 26#include <qlayout.h>
27#include <qvbox.h> 27#include <qvbox.h>
28#include <qbuttongroup.h> 28#include <qbuttongroup.h>
29#include <qvgroupbox.h> 29#include <qvgroupbox.h>
30#include <qwidgetstack.h> 30#include <qwidgetstack.h>
31#include <qdatetime.h> 31#include <qdatetime.h>
32#include <qtimer.h> 32#include <qtimer.h>
33#include <qfile.h> 33#include <qfile.h>
34 34
35 35
36#include <kglobal.h> 36#include <kglobal.h>
37#include <kdebug.h> 37#include <kdebug.h>
38#include <klocale.h> 38#include <klocale.h>
39#include <kiconloader.h> 39#include <kiconloader.h>
40#include <kmessagebox.h> 40#include <kmessagebox.h>
41#include <kfiledialog.h> 41#include <kfiledialog.h>
42#include <kstandarddirs.h> 42#include <kstandarddirs.h>
43 43
44#include <libkcal/todo.h> 44#include <libkcal/todo.h>
45#include <libkcal/event.h> 45#include <libkcal/event.h>
46#include <libkdepim/categoryselectdialog.h> 46#include <libkdepim/categoryselectdialog.h>
47#include <libkdepim/kdateedit.h> 47#include <libkdepim/kdateedit.h>
48 48
49#include "koprefs.h" 49#include "koprefs.h"
50#include "koglobals.h" 50#include "koglobals.h"
51 51
52#include "koeditorgeneral.h" 52#include "koeditorgeneral.h"
53#include "kolocationbox.h" 53#include "kolocationbox.h"
54#ifndef DESKTOP_VERSION 54#ifndef DESKTOP_VERSION
55#include <qpe/qpeapplication.h> 55#include <qpe/qpeapplication.h>
56#else 56#else
57#include <qapplication.h> 57#include <qapplication.h>
58#endif 58#endif
59 59
60KOEditorGeneral::KOEditorGeneral(QObject* parent, const char* name) : 60KOEditorGeneral::KOEditorGeneral(QObject* parent, const char* name) :
61 QObject( parent, name) 61 QObject( parent, name)
62{ 62{
63 mNextFocus = 0; 63 mNextFocus = 0;
64} 64}
65 65
66KOEditorGeneral::~KOEditorGeneral() 66KOEditorGeneral::~KOEditorGeneral()
67{ 67{
68} 68}
69 69
70void KOEditorGeneral::initHeader(QWidget *parent,QBoxLayout *topLayout) 70void KOEditorGeneral::initHeader(QWidget *parent,QBoxLayout *topLayout)
71{ 71{
72 QGridLayout *headerLayout = new QGridLayout(topLayout); 72 QGridLayout *headerLayout = new QGridLayout(topLayout);
73 73
74#if 0 74#if 0
75 mOwnerLabel = new QLabel(i18n("Owner:"),parent); 75 mOwnerLabel = new QLabel(i18n("Owner:"),parent);
76 headerLayout->addMultiCellWidget(mOwnerLabel,0,0,0,1); 76 headerLayout->addMultiCellWidget(mOwnerLabel,0,0,0,1);
77#endif 77#endif
78 78
79 QLabel *summaryLabel = new QLabel(i18n("Summary:"),parent); 79 QLabel *summaryLabel = new QLabel(i18n("Summary:"),parent);
80 headerLayout->addWidget(summaryLabel,1,0); 80 headerLayout->addWidget(summaryLabel,1,0);
81 81
82 mSummaryEdit = new KOLocationBox(TRUE,parent, 10); 82 mSummaryEdit = new KOLocationBox(TRUE,parent, 10);
83 mSummaryEdit->setSizePolicy( QSizePolicy( QSizePolicy::Preferred ,QSizePolicy::MinimumExpanding ,FALSE) ); 83 mSummaryEdit->setSizePolicy( QSizePolicy( QSizePolicy::Preferred ,QSizePolicy::MinimumExpanding ,FALSE) );
84 //mSummaryEdit->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)5 ,(QSizePolicy::SizeType)3 ,FALSE) ); 84 //mSummaryEdit->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)5 ,(QSizePolicy::SizeType)3 ,FALSE) );
85 //qDebug("h %d %d ", summaryLabel->sizeHint().height(),mSummaryEdit->sizeHint().height() ); 85 //qDebug("h %d %d ", summaryLabel->sizeHint().height(),mSummaryEdit->sizeHint().height() );
86 int hei = (summaryLabel->sizeHint().height() + mSummaryEdit->sizeHint().height())/2; 86 int hei = (summaryLabel->sizeHint().height() + mSummaryEdit->sizeHint().height())/2;
87 if ( QApplication::desktop()->width() > 320 ) 87 if ( QApplication::desktop()->width() > 320 )
88 mSummaryEdit->setMaximumHeight( hei +6 ); 88 mSummaryEdit->setMaximumHeight( hei +6 );
89 //qDebug("%d %d %d %d %d %d ", QSizePolicy::Fixed , QSizePolicy::Minimum , QSizePolicy:: Maximum , QSizePolicy:: Preferred , QSizePolicy:: MinimumExpanding , QSizePolicy::Expanding ); 89 //qDebug("%d %d %d %d %d %d ", QSizePolicy::Fixed , QSizePolicy::Minimum , QSizePolicy:: Maximum , QSizePolicy:: Preferred , QSizePolicy:: MinimumExpanding , QSizePolicy::Expanding );
90 // SizeType { Fixed = 0, Minimum = MayGrow, Maximum = MayShrink, Preferred = MayGrow|MayShrink, MinimumExpanding = Minimum|ExpMask, Expanding = MinimumExpanding|MayShrink } 90 // SizeType { Fixed = 0, Minimum = MayGrow, Maximum = MayShrink, Preferred = MayGrow|MayShrink, MinimumExpanding = Minimum|ExpMask, Expanding = MinimumExpanding|MayShrink }
91 // mSummaryEdit = new QLineEdit(parent); 91 // mSummaryEdit = new QLineEdit(parent);
92 headerLayout->addWidget(mSummaryEdit,1,1); 92 headerLayout->addWidget(mSummaryEdit,1,1);
93 connect ( mSummaryEdit->lineEdit(), SIGNAL ( returnPressed() ), this, SIGNAL (allAccepted () ) ); 93 connect ( mSummaryEdit->lineEdit(), SIGNAL ( returnPressed() ), this, SIGNAL (allAccepted () ) );
94 94
95 QLabel *locationLabel = new QLabel(i18n("Location:"),parent); 95 QLabel *locationLabel = new QLabel(i18n("Location:"),parent);
96 if ( QApplication::desktop()->height() < 320 ) 96 if ( QApplication::desktop()->height() < 320 )
97 headerLayout->addWidget(locationLabel,1,2); 97 headerLayout->addWidget(locationLabel,1,2);
98 else 98 else
99 headerLayout->addWidget(locationLabel,2,0); 99 headerLayout->addWidget(locationLabel,2,0);
100 100
101 mLocationEdit = new KOLocationBox(TRUE,parent,10); 101 mLocationEdit = new KOLocationBox(TRUE,parent,10);
102 mLocationEdit->setSizePolicy( QSizePolicy( QSizePolicy::Preferred ,QSizePolicy::MinimumExpanding ,FALSE) ); 102 mLocationEdit->setSizePolicy( QSizePolicy( QSizePolicy::Preferred ,QSizePolicy::MinimumExpanding ,FALSE) );
103 if ( QApplication::desktop()->width() > 320 && QApplication::desktop()->height() > 240 ) 103 if ( QApplication::desktop()->width() > 320 && QApplication::desktop()->height() > 240 )
104 mLocationEdit->setMaximumHeight( hei + 6); 104 mLocationEdit->setMaximumHeight( hei + 6);
105 105
106 // mLocationEdit = new QLineEdit(parent); 106 // mLocationEdit = new QLineEdit(parent);
107 connect ( mLocationEdit->lineEdit(), SIGNAL ( returnPressed() ), this, SIGNAL (allAccepted () ) ); 107 connect ( mLocationEdit->lineEdit(), SIGNAL ( returnPressed() ), this, SIGNAL (allAccepted () ) );
108 if ( QApplication::desktop()->height() < 320 ) { 108 if ( QApplication::desktop()->height() < 320 ) {
109 headerLayout->addWidget(mLocationEdit,1,3); 109 headerLayout->addWidget(mLocationEdit,1,3);
110 headerLayout->setColStretch( 1, 10); 110 headerLayout->setColStretch( 1, 10);
111 headerLayout->setColStretch( 3, 10); 111 headerLayout->setColStretch( 3, 10);
112 } 112 }
113 else { 113 else {
114 headerLayout->addWidget(mLocationEdit,2,1); 114 headerLayout->addWidget(mLocationEdit,2,1);
115 headerLayout->setColStretch( 1, 10); 115 headerLayout->setColStretch( 1, 10);
116 } 116 }
117} 117}
118void KOEditorGeneral::setFocusOn( int i ) 118void KOEditorGeneral::setFocusOn( int i )
119{ 119{
120 mNextFocus = i; 120 mNextFocus = i;
121 QTimer::singleShot( 0, this, SLOT ( slotSetFocusOn() )); 121 QTimer::singleShot( 0, this, SLOT ( slotSetFocusOn() ));
122} 122}
123void KOEditorGeneral::slotSetFocusOn() 123void KOEditorGeneral::slotSetFocusOn()
124{ 124{
125 mNextFocus; 125 mNextFocus;
126 if ( mNextFocus == 1 ) { 126 if ( mNextFocus == 1 ) {
127 mDescriptionEdit->setFocus(); 127 mDescriptionEdit->setFocus();
128 mDescriptionEdit->setCursorPosition( mDescriptionEdit->numLines (), 333); 128 mDescriptionEdit->setCursorPosition( mDescriptionEdit->numLines (), 333);
129 } 129 }
130 if ( mNextFocus == 2 ) { 130 if ( mNextFocus == 2 ) {
131 mSummaryEdit->setFocus(); 131 mSummaryEdit->setFocus();
132 } 132 }
133} 133}
134void KOEditorGeneral::editCategories() 134void KOEditorGeneral::editCategories()
135{ 135{
136 // qDebug("KOEditorGeneral::editCategories() "); 136 // qDebug("KOEditorGeneral::editCategories() ");
137 KPIM::CategorySelectDialog* csd = new KPIM::CategorySelectDialog( KOPrefs::instance(), 0 ); 137 KPIM::CategorySelectDialog* csd = new KPIM::CategorySelectDialog( KOPrefs::instance(), 0 );
138 connect(csd,SIGNAL(categoriesSelected(const QString &)), this ,SLOT(setCategories(const QString &))); 138 connect(csd,SIGNAL(categoriesSelected(const QString &)), this ,SLOT(setCategories(const QString &)));
139 //KOGlobals::fitDialogToScreen( csd ); 139 //KOGlobals::fitDialogToScreen( csd );
140 csd->setColorEnabled(); 140 csd->setColorEnabled();
141 csd->setSelected( QStringList::split (",", mCategoriesLabel->text()) ); 141 csd->setSelected( QStringList::split (",", mCategoriesLabel->text()) );
142 csd->exec(); 142 csd->exec();
143 delete csd; 143 delete csd;
144} 144}
145 145
146void KOEditorGeneral::showCatPopup() 146void KOEditorGeneral::showCatPopup()
147{ 147{
148 mCatPopup->clear(); 148 mCatPopup->clear();
149 QStringList checkedCategories = QStringList::split (",", mCategoriesLabel->text()); 149 QStringList checkedCategories = QStringList::split (",", mCategoriesLabel->text());
150 int index = 0; 150 int index = 0;
151 for (QStringList::Iterator it = KOPrefs::instance()->mCustomCategories.begin (); 151 for (QStringList::Iterator it = KOPrefs::instance()->mCustomCategories.begin ();
152 it != KOPrefs::instance()->mCustomCategories.end (); 152 it != KOPrefs::instance()->mCustomCategories.end ();
153 ++it) { 153 ++it) {
154 mCatPopup->insertItem (*it, index ); 154 mCatPopup->insertItem (*it, index );
155 //mCategory[index] = *it; 155 //mCategory[index] = *it;
156 if (checkedCategories.find (*it) != checkedCategories.end ()) mCatPopup->setItemChecked (index, true); 156 if (checkedCategories.find (*it) != checkedCategories.end ()) mCatPopup->setItemChecked (index, true);
157 ++index; 157 ++index;
158 } 158 }
159} 159}
160void KOEditorGeneral::selectedCatPopup( int index ) 160void KOEditorGeneral::selectedCatPopup( int index )
161{ 161{
162 qDebug("i %d c %d ", index, KOPrefs::instance()->mCustomCategories.count());
163 QStringList categories = QStringList::split (",", mCategoriesLabel->text()); 162 QStringList categories = QStringList::split (",", mCategoriesLabel->text());
164 QString colcat = categories.first(); 163 QString colcat = categories.first();
165 if (categories.find (KOPrefs::instance()->mCustomCategories[index]) != categories.end ()) 164 if (categories.find (KOPrefs::instance()->mCustomCategories[index]) != categories.end ())
166 categories.remove (KOPrefs::instance()->mCustomCategories[index]); 165 categories.remove (KOPrefs::instance()->mCustomCategories[index]);
167 else 166 else
168 categories.insert (categories.end(), KOPrefs::instance()->mCustomCategories[index]); 167 categories.insert (categories.end(), KOPrefs::instance()->mCustomCategories[index]);
169 categories.sort (); 168 categories.sort ();
170 if ( !colcat.isEmpty() ) { 169 if ( !colcat.isEmpty() ) {
171 if ( categories.find ( colcat ) != categories.end () ) { 170 if ( categories.find ( colcat ) != categories.end () ) {
172 categories.remove( colcat ); 171 categories.remove( colcat );
173 categories.prepend( colcat ); 172 categories.prepend( colcat );
174 } 173 }
175 } 174 }
176 mCategoriesLabel->setText( categories.join(",") ); 175 setCategories( categories.join(",") );
177} 176}
178 177
179void KOEditorGeneral::initCategories(QWidget *parent, QBoxLayout *topLayout) 178void KOEditorGeneral::initCategories(QWidget *parent, QBoxLayout *topLayout)
180{ 179{
181 QBoxLayout *categoriesLayout = new QHBoxLayout( topLayout ); 180 QBoxLayout *categoriesLayout = new QHBoxLayout( topLayout );
182 mCatPopup = new QPopupMenu ( parent ); 181 mCatPopup = new QPopupMenu ( parent );
183 mCatPopup->setCheckable (true); 182 mCatPopup->setCheckable (true);
184 connect(mCatPopup,SIGNAL(aboutToShow () ), this ,SLOT(showCatPopup())); 183 connect(mCatPopup,SIGNAL(aboutToShow () ), this ,SLOT(showCatPopup()));
185 connect(mCatPopup,SIGNAL( activated ( int ) ), this ,SLOT(selectedCatPopup( int ))); 184 connect(mCatPopup,SIGNAL( activated ( int ) ), this ,SLOT(selectedCatPopup( int )));
186 mCategoriesButton = new QPushButton(parent); 185 mCategoriesButton = new QPushButton(parent);
187 mCategoriesButton->setText(i18n("Categories")); 186 mCategoriesButton->setText(i18n("Categories"));
188 //connect(mCategoriesButton,SIGNAL(clicked()),this, SLOT(editCategories() )); 187 //connect(mCategoriesButton,SIGNAL(clicked()),this, SLOT(editCategories() ));
189 categoriesLayout->addWidget(mCategoriesButton); 188 categoriesLayout->addWidget(mCategoriesButton);
190 mCategoriesButton->setPopup( mCatPopup ); 189 mCategoriesButton->setPopup( mCatPopup );
191 mCategoriesLabel = new QPushButton(parent);//new QLabel(parent); 190 mCategoriesLabel = new QPushButton(parent);//new QLabel(parent);
192 mCategoriesLabel->setSizePolicy( QSizePolicy( QSizePolicy::Preferred ,QSizePolicy::MinimumExpanding ,FALSE) ); 191 mCategoriesLabel->setSizePolicy( QSizePolicy( QSizePolicy::Preferred ,QSizePolicy::MinimumExpanding ,FALSE) );
193 connect(mCategoriesLabel,SIGNAL(clicked()),this, SLOT(editCategories() )); 192 connect(mCategoriesLabel,SIGNAL(clicked()),this, SLOT(editCategories() ));
194 //mCategoriesLabel->setFrameStyle(QFrame::Panel|QFrame::Sunken); 193 //mCategoriesLabel->setFrameStyle(QFrame::Panel|QFrame::Sunken);
195 categoriesLayout->addWidget(mCategoriesLabel,1); 194 categoriesLayout->addWidget(mCategoriesLabel,1);
196} 195}
197 196
198void KOEditorGeneral::initSecrecy(QWidget *parent, QBoxLayout *topLayout) 197void KOEditorGeneral::initSecrecy(QWidget *parent, QBoxLayout *topLayout)
199{ 198{
200 QBoxLayout *secrecyLayout = new QHBoxLayout( topLayout ); 199 QBoxLayout *secrecyLayout = new QHBoxLayout( topLayout );
201 200
202 QLabel *secrecyLabel = new QLabel(i18n("Access:"),parent); 201 QLabel *secrecyLabel = new QLabel(i18n("Access:"),parent);
203 mCancelBox = new QCheckBox ( i18n("Cancelled"), parent); 202 mCancelBox = new QCheckBox ( i18n("Cancelled"), parent);
204 secrecyLayout->addWidget(mCancelBox); 203 secrecyLayout->addWidget(mCancelBox);
205 secrecyLayout->addWidget(secrecyLabel); 204 secrecyLayout->addWidget(secrecyLabel);
206 205
207 mSecrecyCombo = new QComboBox(parent); 206 mSecrecyCombo = new QComboBox(parent);
208 mSecrecyCombo->insertStringList(Incidence::secrecyList()); 207 mSecrecyCombo->insertStringList(Incidence::secrecyList());
209 secrecyLayout->addWidget(mSecrecyCombo); 208 secrecyLayout->addWidget(mSecrecyCombo);
210} 209}
211 210
212void KOEditorGeneral::initDescription(QWidget *parent,QBoxLayout *topLayout) 211void KOEditorGeneral::initDescription(QWidget *parent,QBoxLayout *topLayout)
213{ 212{
214 mDescriptionEdit = new KTextEdit(parent); 213 mDescriptionEdit = new KTextEdit(parent);
215 mDescriptionEdit->setFont(KOPrefs::instance()->mEditBoxFont ); 214 mDescriptionEdit->setFont(KOPrefs::instance()->mEditBoxFont );
216 mDescriptionEdit->append(""); 215 mDescriptionEdit->append("");
217 mDescriptionEdit->setReadOnly(false); 216 mDescriptionEdit->setReadOnly(false);
218 mDescriptionEdit->setOverwriteMode(false); 217 mDescriptionEdit->setOverwriteMode(false);
219 mDescriptionEdit->setWordWrap( KTextEdit::WidgetWidth ); 218 mDescriptionEdit->setWordWrap( KTextEdit::WidgetWidth );
220 topLayout->addWidget(mDescriptionEdit); 219 topLayout->addWidget(mDescriptionEdit);
221#ifndef DESKTOP_VERSION 220#ifndef DESKTOP_VERSION
222 QPEApplication::setStylusOperation( mDescriptionEdit, QPEApplication::RightOnHold ); 221 QPEApplication::setStylusOperation( mDescriptionEdit, QPEApplication::RightOnHold );
223#endif 222#endif
224 223
225} 224}
226 225
227void KOEditorGeneral::initAlarm(QWidget *parent,QBoxLayout *topLayout) 226void KOEditorGeneral::initAlarm(QWidget *parent,QBoxLayout *topLayout)
228{ 227{
229 QBoxLayout *alarmLayout = new QHBoxLayout(topLayout); 228 QBoxLayout *alarmLayout = new QHBoxLayout(topLayout);
230 229
231 //mAlarmBell = new QLabel(parent); 230 //mAlarmBell = new QLabel(parent);
232 //mAlarmBell->setPixmap(SmallIcon("bell")); 231 //mAlarmBell->setPixmap(SmallIcon("bell"));
233 //alarmLayout->addWidget(mAlarmBell); 232 //alarmLayout->addWidget(mAlarmBell);
234 if ( QApplication::desktop()->width() < 320 ) 233 if ( QApplication::desktop()->width() < 320 )
235 mAlarmButton = new QCheckBox(i18n("Rem."),parent); 234 mAlarmButton = new QCheckBox(i18n("Rem."),parent);
236 else 235 else
237 mAlarmButton = new QCheckBox(i18n("Reminder:"),parent); 236 mAlarmButton = new QCheckBox(i18n("Reminder:"),parent);
238 237
239 connect(mAlarmButton, SIGNAL(toggled(bool)), SLOT(enableAlarmEdit(bool))); 238 connect(mAlarmButton, SIGNAL(toggled(bool)), SLOT(enableAlarmEdit(bool)));
240 alarmLayout->addWidget(mAlarmButton); 239 alarmLayout->addWidget(mAlarmButton);
241 240
242 mAlarmTimeEdit = new QSpinBox ( 0, 9999, 1, parent, "mAlarmTimeEdit " ) ; 241 mAlarmTimeEdit = new QSpinBox ( 0, 9999, 1, parent, "mAlarmTimeEdit " ) ;
243 mAlarmTimeEdit->setButtonSymbols( QSpinBox::PlusMinus ); 242 mAlarmTimeEdit->setButtonSymbols( QSpinBox::PlusMinus );
244 alarmLayout->addWidget(mAlarmTimeEdit); 243 alarmLayout->addWidget(mAlarmTimeEdit);
245 mAlarmIncrCombo = new QComboBox(false, parent); 244 mAlarmIncrCombo = new QComboBox(false, parent);
246 if ( QApplication::desktop()->width() < 320 ) { 245 if ( QApplication::desktop()->width() < 320 ) {
247 mAlarmIncrCombo->insertItem(i18n("min")); 246 mAlarmIncrCombo->insertItem(i18n("min"));
248 mAlarmIncrCombo->insertItem(i18n("hou")); 247 mAlarmIncrCombo->insertItem(i18n("hou"));
249 mAlarmIncrCombo->insertItem(i18n("day")); 248 mAlarmIncrCombo->insertItem(i18n("day"));
250 mAlarmTimeEdit->setMaximumWidth( mAlarmTimeEdit->sizeHint().width() ); 249 mAlarmTimeEdit->setMaximumWidth( mAlarmTimeEdit->sizeHint().width() );
251 mAlarmIncrCombo->setMaximumWidth( mAlarmIncrCombo->sizeHint().width() ); 250 mAlarmIncrCombo->setMaximumWidth( mAlarmIncrCombo->sizeHint().width() );
252 } else { 251 } else {
253 mAlarmIncrCombo->insertItem(i18n("minute(s)")); 252 mAlarmIncrCombo->insertItem(i18n("minute(s)"));
254 mAlarmIncrCombo->insertItem(i18n("hour(s)")); 253 mAlarmIncrCombo->insertItem(i18n("hour(s)"));
255 mAlarmIncrCombo->insertItem(i18n("day(s)")); 254 mAlarmIncrCombo->insertItem(i18n("day(s)"));
256 } 255 }
257 256
258 // mAlarmIncrCombo->setMinimumHeight(20); 257 // mAlarmIncrCombo->setMinimumHeight(20);
259 alarmLayout->addWidget(mAlarmIncrCombo); 258 alarmLayout->addWidget(mAlarmIncrCombo);
260 mAlarmSoundButton = new QPushButton(parent); 259 mAlarmSoundButton = new QPushButton(parent);
261 mAlarmSoundButton->setPixmap(SmallIcon("playsound")); 260 mAlarmSoundButton->setPixmap(SmallIcon("playsound"));
262 mAlarmSoundButton->setToggleButton(true); 261 mAlarmSoundButton->setToggleButton(true);
263 QToolTip::add(mAlarmSoundButton, i18n("No sound set")); 262 QToolTip::add(mAlarmSoundButton, i18n("No sound set"));
264 connect(mAlarmSoundButton, SIGNAL(clicked()), SLOT(pickAlarmSound())); 263 connect(mAlarmSoundButton, SIGNAL(clicked()), SLOT(pickAlarmSound()));
265 alarmLayout->addWidget(mAlarmSoundButton); 264 alarmLayout->addWidget(mAlarmSoundButton);
266 265
267 mAlarmProgramButton = new QPushButton(parent); 266 mAlarmProgramButton = new QPushButton(parent);
268 mAlarmProgramButton->setPixmap(SmallIcon("run")); 267 mAlarmProgramButton->setPixmap(SmallIcon("run"));
269 mAlarmProgramButton->setToggleButton(true); 268 mAlarmProgramButton->setToggleButton(true);
270 QToolTip::add(mAlarmProgramButton, i18n("No program set")); 269 QToolTip::add(mAlarmProgramButton, i18n("No program set"));
271 connect(mAlarmProgramButton, SIGNAL(clicked()), SLOT(pickAlarmProgram())); 270 connect(mAlarmProgramButton, SIGNAL(clicked()), SLOT(pickAlarmProgram()));
272 alarmLayout->addWidget(mAlarmProgramButton); 271 alarmLayout->addWidget(mAlarmProgramButton);
273 mAlarmSoundButton->setMaximumWidth( mAlarmSoundButton->sizeHint().width() + 4 ); 272 mAlarmSoundButton->setMaximumWidth( mAlarmSoundButton->sizeHint().width() + 4 );
274 mAlarmProgramButton->setMaximumWidth(mAlarmProgramButton->sizeHint().width() + 4 ); 273 mAlarmProgramButton->setMaximumWidth(mAlarmProgramButton->sizeHint().width() + 4 );
275 // if ( KOPrefs::instance()->mCompactDialogs ) { 274 // if ( KOPrefs::instance()->mCompactDialogs ) {
276 // mAlarmSoundButton->hide(); 275 // mAlarmSoundButton->hide();
277 // mAlarmProgramButton->hide(); 276 // mAlarmProgramButton->hide();
278 // } 277 // }
279} 278}
280 279
281void KOEditorGeneral::pickAlarmSound() 280void KOEditorGeneral::pickAlarmSound()
282{ 281{
283 282
284 //qDebug("KOEditorGeneral::pickAlarmSound() %d",mAlarmSoundButton->isOn() ); 283 //qDebug("KOEditorGeneral::pickAlarmSound() %d",mAlarmSoundButton->isOn() );
285 284
286 bool oldState = mAlarmSoundButton->isOn(); 285 bool oldState = mAlarmSoundButton->isOn();
287 286
288 QString fileName(KFileDialog::getOpenFileName(mAlarmSound, 287 QString fileName(KFileDialog::getOpenFileName(mAlarmSound,
289 i18n("*.wav|Wav Files"), 0)); 288 i18n("*.wav|Wav Files"), 0));
290 if (!fileName.isEmpty()) { 289 if (!fileName.isEmpty()) {
291 mAlarmSound = fileName; 290 mAlarmSound = fileName;
292 QToolTip::remove(mAlarmSoundButton); 291 QToolTip::remove(mAlarmSoundButton);
293 QString dispStr = i18n("Playing '%1'").arg(fileName); 292 QString dispStr = i18n("Playing '%1'").arg(fileName);
294 QToolTip::add(mAlarmSoundButton, dispStr); 293 QToolTip::add(mAlarmSoundButton, dispStr);
295 mAlarmProgramButton->setOn(false); 294 mAlarmProgramButton->setOn(false);
296 mAlarmSoundButton->setOn(true); 295 mAlarmSoundButton->setOn(true);
297 QToolTip::add(mAlarmProgramButton, i18n("No program set")); 296 QToolTip::add(mAlarmProgramButton, i18n("No program set"));
298 } else { 297 } else {
299 mAlarmProgramButton->setOn(oldState); 298 mAlarmProgramButton->setOn(oldState);
300 mAlarmSoundButton->setOn(!oldState); 299 mAlarmSoundButton->setOn(!oldState);
301 300
302 301
303 } 302 }
304 303
305 if (mAlarmProgramButton->isOn()) 304 if (mAlarmProgramButton->isOn())
306 ((QWidget*)parent())->topLevelWidget()->setCaption(i18n("Proc.Al.: ") + getFittingPath(mAlarmProgram) ); 305 ((QWidget*)parent())->topLevelWidget()->setCaption(i18n("Proc.Al.: ") + getFittingPath(mAlarmProgram) );
307 if ( mAlarmSoundButton->isOn()) 306 if ( mAlarmSoundButton->isOn())
308 ((QWidget*)parent())->topLevelWidget()->setCaption(i18n("Audio Al.: ") + getFittingPath(mAlarmSound) ); 307 ((QWidget*)parent())->topLevelWidget()->setCaption(i18n("Audio Al.: ") + getFittingPath(mAlarmSound) );
309 308
310} 309}
311 310
312void KOEditorGeneral::pickAlarmProgram() 311void KOEditorGeneral::pickAlarmProgram()
313{ 312{
314 bool oldState = mAlarmProgramButton->isOn(); 313 bool oldState = mAlarmProgramButton->isOn();
315 314
316 QString fileName(KFileDialog::getOpenFileName(mAlarmProgram,i18n("Procedure Alarm: ") , 0)); 315 QString fileName(KFileDialog::getOpenFileName(mAlarmProgram,i18n("Procedure Alarm: ") , 0));
317 if (!fileName.isEmpty()) { 316 if (!fileName.isEmpty()) {
318 mAlarmProgram = fileName; 317 mAlarmProgram = fileName;
319 QToolTip::remove(mAlarmProgramButton); 318 QToolTip::remove(mAlarmProgramButton);
320 QString dispStr = i18n("Running '%1'").arg(fileName); 319 QString dispStr = i18n("Running '%1'").arg(fileName);
321 QToolTip::add(mAlarmProgramButton, dispStr); 320 QToolTip::add(mAlarmProgramButton, dispStr);
322 mAlarmSoundButton->setOn(false); 321 mAlarmSoundButton->setOn(false);
323 mAlarmProgramButton->setOn(true); 322 mAlarmProgramButton->setOn(true);
324 QToolTip::add(mAlarmSoundButton, i18n("No sound set")); 323 QToolTip::add(mAlarmSoundButton, i18n("No sound set"));
325 } else { 324 } else {
326 mAlarmProgramButton->setOn(!oldState); 325 mAlarmProgramButton->setOn(!oldState);
327 mAlarmSoundButton->setOn(oldState); 326 mAlarmSoundButton->setOn(oldState);
328 } 327 }
329 328
330 if (mAlarmProgramButton->isOn()) 329 if (mAlarmProgramButton->isOn())
331 ((QWidget*)parent())->topLevelWidget()->setCaption(i18n("Proc.Al.: ") + getFittingPath(mAlarmProgram) ); 330 ((QWidget*)parent())->topLevelWidget()->setCaption(i18n("Proc.Al.: ") + getFittingPath(mAlarmProgram) );
332 if ( mAlarmSoundButton->isOn()) 331 if ( mAlarmSoundButton->isOn())
333 ((QWidget*)parent())->topLevelWidget()->setCaption(i18n("Audio Al.: ") + getFittingPath(mAlarmSound) ); 332 ((QWidget*)parent())->topLevelWidget()->setCaption(i18n("Audio Al.: ") + getFittingPath(mAlarmSound) );
334 333
335} 334}
336 335
337 336
338QString KOEditorGeneral::getFittingPath( const QString s ) 337QString KOEditorGeneral::getFittingPath( const QString s )
339{ 338{
340 int maxlen = 50; 339 int maxlen = 50;
341 if ( QApplication::desktop()->width() < 640 ) { 340 if ( QApplication::desktop()->width() < 640 ) {
342 if ( QApplication::desktop()->width() < 320 ) 341 if ( QApplication::desktop()->width() < 320 )
343 maxlen = 22; 342 maxlen = 22;
344 else 343 else
345 maxlen = 35; 344 maxlen = 35;
346 } 345 }
347 if ( s.length() > maxlen ) { 346 if ( s.length() > maxlen ) {
348 return "..."+s.right(maxlen -3); 347 return "..."+s.right(maxlen -3);
349 } 348 }
350 return s; 349 return s;
351} 350}
352 351
353void KOEditorGeneral::enableAlarmEdit(bool enable) 352void KOEditorGeneral::enableAlarmEdit(bool enable)
354{ 353{
355 if ( enable ) { 354 if ( enable ) {
356 if (!mAlarmProgramButton->isOn() && !mAlarmSoundButton->isOn()) { 355 if (!mAlarmProgramButton->isOn() && !mAlarmSoundButton->isOn()) {
357 mAlarmSoundButton->setOn( true ); 356 mAlarmSoundButton->setOn( true );
358 if ( mAlarmSound.isEmpty() ) 357 if ( mAlarmSound.isEmpty() )
359 mAlarmSound = KOPrefs::instance()->mDefaultAlarmFile; 358 mAlarmSound = KOPrefs::instance()->mDefaultAlarmFile;
360 else { 359 else {
361 if ( ! QFile::exists( mAlarmSound ) ) 360 if ( ! QFile::exists( mAlarmSound ) )
362 mAlarmSound = KOPrefs::instance()->mDefaultAlarmFile; 361 mAlarmSound = KOPrefs::instance()->mDefaultAlarmFile;
363 } 362 }
364 } 363 }
365 } 364 }
366 ((QWidget*)parent())->topLevelWidget()->setCaption(mAlarmMessage); 365 ((QWidget*)parent())->topLevelWidget()->setCaption(mAlarmMessage);
367 mAlarmTimeEdit->setEnabled(enable); 366 mAlarmTimeEdit->setEnabled(enable);
368 mAlarmSoundButton->setEnabled(enable); 367 mAlarmSoundButton->setEnabled(enable);
369 mAlarmProgramButton->setEnabled(enable); 368 mAlarmProgramButton->setEnabled(enable);
370 mAlarmIncrCombo->setEnabled(enable); 369 mAlarmIncrCombo->setEnabled(enable);
371} 370}
372 371
373void KOEditorGeneral::disableAlarmEdit(bool disable) 372void KOEditorGeneral::disableAlarmEdit(bool disable)
374{ 373{
375 enableAlarmEdit( !disable ); 374 enableAlarmEdit( !disable );
376} 375}
377 376
378void KOEditorGeneral::enableAlarm( bool enable ) 377void KOEditorGeneral::enableAlarm( bool enable )
379{ 378{
380 enableAlarmEdit( enable ); 379 enableAlarmEdit( enable );
381} 380}
382 381
383void KOEditorGeneral::alarmDisable(bool disable) 382void KOEditorGeneral::alarmDisable(bool disable)
384{ 383{
385 if (!disable) { 384 if (!disable) {
386 //mAlarmBell->setEnabled(true); 385 //mAlarmBell->setEnabled(true);
387 mAlarmButton->setEnabled(true); 386 mAlarmButton->setEnabled(true);
388 } else { 387 } else {
389 //mAlarmBell->setEnabled(false); 388 //mAlarmBell->setEnabled(false);
390 mAlarmButton->setEnabled(false); 389 mAlarmButton->setEnabled(false);
391 mAlarmButton->setChecked(false); 390 mAlarmButton->setChecked(false);
392 mAlarmTimeEdit->setEnabled(false); 391 mAlarmTimeEdit->setEnabled(false);
393 mAlarmSoundButton->setEnabled(false); 392 mAlarmSoundButton->setEnabled(false);
394 mAlarmProgramButton->setEnabled(false); 393 mAlarmProgramButton->setEnabled(false);
395 mAlarmIncrCombo->setEnabled(false); 394 mAlarmIncrCombo->setEnabled(false);
396 } 395 }
397} 396}
398 397
399void KOEditorGeneral::setCategories(const QString &str) 398void KOEditorGeneral::setCategories(const QString &str)
400{ 399{
400 QString tt = str;
401 QToolTip::add( mCategoriesLabel, i18n("<b>Click here to edit categories: </b>") +"<em>"+tt.replace( QRegExp(","),", ")+"</em>");
401 mCategoriesLabel->setText(str); 402 mCategoriesLabel->setText(str);
402} 403}
403 404
404void KOEditorGeneral::setDefaults(bool allDay) 405void KOEditorGeneral::setDefaults(bool allDay)
405{ 406{
406#if 0 407#if 0
407 mOwnerLabel->setText(i18n("Owner: ") + KOPrefs::instance()->fullName()); 408 mOwnerLabel->setText(i18n("Owner: ") + KOPrefs::instance()->fullName());
408#endif 409#endif
409 410
410 mAlarmMessage = i18n("Edit new item"); 411 mAlarmMessage = i18n("Edit new item");
411 enableAlarmEdit( !allDay ); 412 enableAlarmEdit( !allDay );
412 413
413 // TODO: Implement a KPrefsComboItem to solve this in a clean way. 414 // TODO: Implement a KPrefsComboItem to solve this in a clean way.
414 int alarmTime; 415 int alarmTime;
415 int a[] = { 1,5,10,15,30,60,180, 1440 }; 416 int a[] = { 1,5,10,15,30,60,180, 1440 };
416 int index = KOPrefs::instance()->mAlarmTime; 417 int index = KOPrefs::instance()->mAlarmTime;
417 if (index < 0 || index > 7) { 418 if (index < 0 || index > 7) {
418 alarmTime = 15; 419 alarmTime = 15;
419 } else { 420 } else {
420 alarmTime = a[index]; 421 alarmTime = a[index];
421 } 422 }
422 mAlarmButton ->setChecked( false ); 423 mAlarmButton ->setChecked( false );
423 mAlarmTimeEdit->setValue(alarmTime); 424 mAlarmTimeEdit->setValue(alarmTime);
424 mAlarmIncrCombo->setCurrentItem(0); 425 mAlarmIncrCombo->setCurrentItem(0);
425 enableAlarmEdit( false ); 426 enableAlarmEdit( false );
426 //alarmDisable (false); 427 //alarmDisable (false);
427 mSecrecyCombo->setCurrentItem(Incidence::SecrecyPublic); 428 mSecrecyCombo->setCurrentItem(Incidence::SecrecyPublic);
428 mCancelBox->setChecked( false ); 429 mCancelBox->setChecked( false );
429 mSummaryEdit->setEditText(""); 430 mSummaryEdit->setEditText("");
430 mLocationEdit->setEditText(""); 431 mLocationEdit->setEditText("");
431 mDescriptionEdit->setText(""); 432 mDescriptionEdit->setText("");
432 mAlarmSound = KOPrefs::instance()->mDefaultAlarmFile; 433 mAlarmSound = KOPrefs::instance()->mDefaultAlarmFile;
433 setCategories(""); 434 setCategories("");
434} 435}
435void KOEditorGeneral::setSecrecy( int num ) 436void KOEditorGeneral::setSecrecy( int num )
436{ 437{
437 mSecrecyCombo->setCurrentItem(num); 438 mSecrecyCombo->setCurrentItem(num);
438} 439}
439void KOEditorGeneral::readIncidence(Incidence *event) 440void KOEditorGeneral::readIncidence(Incidence *event)
440{ 441{
441 442
442 mAlarmMessage = event->summary(); 443 mAlarmMessage = event->summary();
443 if ( ! event->location().isEmpty() ) 444 if ( ! event->location().isEmpty() )
444 mAlarmMessage += " ("+event->location()+")"; 445 mAlarmMessage += " ("+event->location()+")";
445 mAlarmIncrCombo->setCurrentItem(0); 446 mAlarmIncrCombo->setCurrentItem(0);
446 mSummaryEdit->setEditText(event->summary()); 447 mSummaryEdit->setEditText(event->summary());
447 mLocationEdit->setEditText(event->location()); 448 mLocationEdit->setEditText(event->location());
448 mDescriptionEdit->setText(event->description()); 449 mDescriptionEdit->setText(event->description());
449 450
450#if 0 451#if 0
451 // organizer information 452 // organizer information
452 mOwnerLabel->setText(i18n("Owner: ") + event->organizer()); 453 mOwnerLabel->setText(i18n("Owner: ") + event->organizer());
453#endif 454#endif
454 455
455 enableAlarmEdit( event->isAlarmEnabled() ); 456 enableAlarmEdit( event->isAlarmEnabled() );
456 //qDebug("KOEditorGeneral::readIncidence(Incidence *event) "); 457 //qDebug("KOEditorGeneral::readIncidence(Incidence *event) ");
457 if(!event->isAlarmEnabled()) { 458 if(!event->isAlarmEnabled()) {
458 // TODO: Implement a KPrefsComboItem to solve this in a clean way. 459 // TODO: Implement a KPrefsComboItem to solve this in a clean way.
459 int alarmTime; 460 int alarmTime;
460 int a[] = { 1,5,10,15,30,60,180, 1440 }; 461 int a[] = { 1,5,10,15,30,60,180, 1440 };
461 int index = KOPrefs::instance()->mAlarmTime; 462 int index = KOPrefs::instance()->mAlarmTime;
462 if (index < 0 || index > 7) { 463 if (index < 0 || index > 7) {
463 alarmTime = 15; 464 alarmTime = 15;
464 } else { 465 } else {
465 alarmTime = a[index]; 466 alarmTime = a[index];
466 } 467 }
467 mAlarmTimeEdit->setValue(alarmTime); 468 mAlarmTimeEdit->setValue(alarmTime);
468 } 469 }
469 mAlarmButton->setChecked( event->isAlarmEnabled() ); 470 mAlarmButton->setChecked( event->isAlarmEnabled() );
470 mSecrecyCombo->setCurrentItem(event->secrecy()); 471 mSecrecyCombo->setCurrentItem(event->secrecy());
471 mCancelBox->setChecked( event->cancelled() ); 472 mCancelBox->setChecked( event->cancelled() );
472 mAlarmProgramButton->setOn(false); 473 mAlarmProgramButton->setOn(false);
473 mAlarmSoundButton->setOn(false); 474 mAlarmSoundButton->setOn(false);
474 475
475 // set up alarm stuff 476 // set up alarm stuff
476 QPtrList<Alarm> alarms = event->alarms(); 477 QPtrList<Alarm> alarms = event->alarms();
477 Alarm* alarm; 478 Alarm* alarm;
478 mAlarmIncrCombo->setCurrentItem(0); 479 mAlarmIncrCombo->setCurrentItem(0);
479 for ( alarm = alarms.first(); alarm; alarm = alarms.next() ) { 480 for ( alarm = alarms.first(); alarm; alarm = alarms.next() ) {
480 int offset; 481 int offset;
481 if ( alarm->hasTime() ) { 482 if ( alarm->hasTime() ) {
482 QDateTime t = alarm->time(); 483 QDateTime t = alarm->time();
483 offset = event->dtStart().secsTo( t ); 484 offset = event->dtStart().secsTo( t );
484 } else { 485 } else {
485 offset = alarm->startOffset().asSeconds(); 486 offset = alarm->startOffset().asSeconds();
486 } 487 }
487 if ( offset != 0 ) { 488 if ( offset != 0 ) {
488 offset = offset / -60; // make minutes 489 offset = offset / -60; // make minutes
489 if (offset % 60 == 0) { // divides evenly into hours? 490 if (offset % 60 == 0) { // divides evenly into hours?
490 offset = offset / 60; 491 offset = offset / 60;
491 mAlarmIncrCombo->setCurrentItem(1); 492 mAlarmIncrCombo->setCurrentItem(1);
492 if (offset % 24 == 0) { // divides evenly into days? 493 if (offset % 24 == 0) { // divides evenly into days?
493 offset = offset / 24; 494 offset = offset / 24;
494 mAlarmIncrCombo->setCurrentItem(2); 495 mAlarmIncrCombo->setCurrentItem(2);
495 } 496 }
496 } 497 }
497 } 498 }
498 mAlarmTimeEdit->setValue( offset ); 499 mAlarmTimeEdit->setValue( offset );
499 if (alarm->type() == Alarm::Procedure) { 500 if (alarm->type() == Alarm::Procedure) {
500 501
501 mAlarmProgram = alarm->programFile(); 502 mAlarmProgram = alarm->programFile();
502 mAlarmProgramButton->setOn(true); 503 mAlarmProgramButton->setOn(true);
503 QString dispStr = i18n("Running '%1'").arg(mAlarmProgram); 504 QString dispStr = i18n("Running '%1'").arg(mAlarmProgram);
504 QToolTip::add(mAlarmProgramButton, dispStr); 505 QToolTip::add(mAlarmProgramButton, dispStr);
505 } 506 }
506 else if (alarm->type() == Alarm::Audio) { 507 else if (alarm->type() == Alarm::Audio) {
507 mAlarmSound = alarm->audioFile(); 508 mAlarmSound = alarm->audioFile();
508 if ( ! QFile::exists( mAlarmSound ) ) 509 if ( ! QFile::exists( mAlarmSound ) )
509 mAlarmSound = KOPrefs::instance()->mDefaultAlarmFile; 510 mAlarmSound = KOPrefs::instance()->mDefaultAlarmFile;
510 mAlarmSoundButton->setOn(true); 511 mAlarmSoundButton->setOn(true);
511 QString dispStr = i18n("Playing '%1'").arg(mAlarmSound); 512 QString dispStr = i18n("Playing '%1'").arg(mAlarmSound);
512 QToolTip::add(mAlarmSoundButton, dispStr); 513 QToolTip::add(mAlarmSoundButton, dispStr);
513 } 514 }
514 mAlarmButton->setChecked(alarm->enabled()); 515 mAlarmButton->setChecked(alarm->enabled());
515 enableAlarmEdit( alarm->enabled() ); 516 enableAlarmEdit( alarm->enabled() );
516 //qDebug("nableAlarmEdit( alarm->enabled() )********* "); 517 //qDebug("nableAlarmEdit( alarm->enabled() )********* ");
517 // TODO: Deal with multiple alarms 518 // TODO: Deal with multiple alarms
518 break; // For now, stop after the first alarm 519 break; // For now, stop after the first alarm
519 } 520 }
520 521
521 setCategories(event->categoriesStr()); 522 setCategories(event->categoriesStr());
522} 523}
523 524
524void KOEditorGeneral::writeIncidence(Incidence *event) 525void KOEditorGeneral::writeIncidence(Incidence *event)
525{ 526{
526 // kdDebug() << "KOEditorGeneral::writeEvent()" << endl; 527 // kdDebug() << "KOEditorGeneral::writeEvent()" << endl;
527 mLocationEdit->save(KOLocationBox::LOCATION); 528 mLocationEdit->save(KOLocationBox::LOCATION);
528 event->setSummary(mSummaryEdit->currentText()); 529 event->setSummary(mSummaryEdit->currentText());
529 event->setLocation(mLocationEdit->currentText()); 530 event->setLocation(mLocationEdit->currentText());
530 event->setDescription(mDescriptionEdit->text()); 531 event->setDescription(mDescriptionEdit->text());
531 event->setCategories(mCategoriesLabel->text()); 532 event->setCategories(mCategoriesLabel->text());
532 event->setSecrecy(mSecrecyCombo->currentItem()); 533 event->setSecrecy(mSecrecyCombo->currentItem());
533 event->setCancelled(mCancelBox->isChecked() );; 534 event->setCancelled(mCancelBox->isChecked() );;
534 // alarm stuff 535 // alarm stuff
535 if (mAlarmButton->isChecked()) { 536 if (mAlarmButton->isChecked()) {
536 if (event->alarms().count() == 0) 537 if (event->alarms().count() == 0)
537 event->newAlarm(); 538 event->newAlarm();
538 QPtrList<Alarm> alarms = event->alarms(); 539 QPtrList<Alarm> alarms = event->alarms();
539 Alarm *alarm; 540 Alarm *alarm;
540 for (alarm = alarms.first(); alarm; alarm = alarms.next() ) { 541 for (alarm = alarms.first(); alarm; alarm = alarms.next() ) {
541 alarm->setEnabled(true); 542 alarm->setEnabled(true);
542 int j = mAlarmTimeEdit->value()* -60; 543 int j = mAlarmTimeEdit->value()* -60;
543 if (mAlarmIncrCombo->currentItem() == 1) 544 if (mAlarmIncrCombo->currentItem() == 1)
544 j = j * 60; 545 j = j * 60;
545 else if (mAlarmIncrCombo->currentItem() == 2) 546 else if (mAlarmIncrCombo->currentItem() == 2)
546 j = j * (60 * 24); 547 j = j * (60 * 24);
547 alarm->setStartOffset( j ); 548 alarm->setStartOffset( j );
548 549
549 if (!mAlarmProgram.isEmpty() && mAlarmProgramButton->isOn()) { 550 if (!mAlarmProgram.isEmpty() && mAlarmProgramButton->isOn()) {
550 alarm->setProcedureAlarm(mAlarmProgram); 551 alarm->setProcedureAlarm(mAlarmProgram);
551 } 552 }
552 else if (!mAlarmSound.isEmpty() && mAlarmSoundButton->isOn()) 553 else if (!mAlarmSound.isEmpty() && mAlarmSoundButton->isOn())
553 alarm->setAudioAlarm(mAlarmSound); 554 alarm->setAudioAlarm(mAlarmSound);
554 else 555 else
555 alarm->setType(Alarm::Invalid); 556 alarm->setType(Alarm::Invalid);
556 //alarm->setAudioAlarm("default"); 557 //alarm->setAudioAlarm("default");
557 // TODO: Deal with multiple alarms 558 // TODO: Deal with multiple alarms
558 break; // For now, stop after the first alarm 559 break; // For now, stop after the first alarm
559 } 560 }
560 } else { 561 } else {
561 Alarm* alarm = event->alarms().first(); 562 Alarm* alarm = event->alarms().first();
562 if ( alarm ) { 563 if ( alarm ) {
563 alarm->setEnabled(false); 564 alarm->setEnabled(false);
564 alarm->setType(Alarm::Invalid); 565 alarm->setType(Alarm::Invalid);
565 } 566 }
566 } 567 }
567} 568}
diff --git a/korganizer/kolistview.cpp b/korganizer/kolistview.cpp
index 0c1ac7a..8f17e6e 100644
--- a/korganizer/kolistview.cpp
+++ b/korganizer/kolistview.cpp
@@ -1,1471 +1,1476 @@
1/* 1/*
2 This file is part of KOrganizer. 2 This file is part of KOrganizer.
3 Copyright (c) 1999 Preston Brown 3 Copyright (c) 1999 Preston Brown
4 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> 4 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>
5 5
6 This program is free software; you can redistribute it and/or modify 6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or 8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version. 9 (at your option) any later version.
10 10
11 This program is distributed in the hope that it will be useful, 11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details. 14 GNU General Public License for more details.
15 15
16 You should have received a copy of the GNU General Public License 16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software 17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 19
20 As a special exception, permission is given to link this program 20 As a special exception, permission is given to link this program
21 with any edition of Qt, and distribute the resulting executable, 21 with any edition of Qt, and distribute the resulting executable,
22 without including the source code for Qt in the source distribution. 22 without including the source code for Qt in the source distribution.
23*/ 23*/
24 24
25#include <qlistview.h> 25#include <qlistview.h>
26#include <qlayout.h> 26#include <qlayout.h>
27#include <qlabel.h> 27#include <qlabel.h>
28#include <qpopupmenu.h> 28#include <qpopupmenu.h>
29#include <qprogressbar.h> 29#include <qprogressbar.h>
30#include <qfileinfo.h> 30#include <qfileinfo.h>
31#include <qmessagebox.h> 31#include <qmessagebox.h>
32#include <qdialog.h> 32#include <qdialog.h>
33#include <qtextstream.h> 33#include <qtextstream.h>
34#include <qdir.h> 34#include <qdir.h>
35#include <qwhatsthis.h> 35#include <qwhatsthis.h>
36#include <qregexp.h> 36#include <qregexp.h>
37#include <qpainter.h> 37#include <qpainter.h>
38#include <qpaintdevicemetrics.h> 38#include <qpaintdevicemetrics.h>
39 39
40#include <klocale.h> 40#include <klocale.h>
41#include <kdebug.h> 41#include <kdebug.h>
42#include <kiconloader.h> 42#include <kiconloader.h>
43#include <kglobal.h> 43#include <kglobal.h>
44 44
45#include <libkdepim/kpimglobalprefs.h> 45#include <libkdepim/kpimglobalprefs.h>
46#include <libkcal/calendar.h> 46#include <libkcal/calendar.h>
47#include <libkcal/calendarlocal.h> 47#include <libkcal/calendarlocal.h>
48#include <libkcal/icalformat.h> 48#include <libkcal/icalformat.h>
49#include <libkcal/vcalformat.h> 49#include <libkcal/vcalformat.h>
50#include <libkcal/recurrence.h> 50#include <libkcal/recurrence.h>
51#include <libkcal/filestorage.h> 51#include <libkcal/filestorage.h>
52#include <libkdepim/categoryselectdialog.h> 52#include <libkdepim/categoryselectdialog.h>
53#include <libkcal/kincidenceformatter.h> 53#include <libkcal/kincidenceformatter.h>
54#ifndef DESKTOP_VERSION 54#ifndef DESKTOP_VERSION
55#include <qpe/qpeapplication.h> 55#include <qpe/qpeapplication.h>
56#else 56#else
57#include <qapplication.h> 57#include <qapplication.h>
58#endif 58#endif
59 59
60#ifndef KORG_NOPRINTER 60#ifndef KORG_NOPRINTER
61#include "calprinter.h" 61#include "calprinter.h"
62#endif 62#endif
63#include "koglobals.h" 63#include "koglobals.h"
64#include "koprefs.h" 64#include "koprefs.h"
65#include "kfiledialog.h" 65#include "kfiledialog.h"
66 66
67#include "kolistview.h" 67#include "kolistview.h"
68#include "koeventviewer.h" 68#include "koeventviewer.h"
69 69
70extern QPixmap* sgListViewCompletedPix[6]; 70extern QPixmap* sgListViewCompletedPix[6];
71 71
72class KOListViewWhatsThis :public QWhatsThis 72class KOListViewWhatsThis :public QWhatsThis
73{ 73{
74public: 74public:
75 KOListViewWhatsThis( QWidget *wid, KOListView* view ) : QWhatsThis( wid ), _wid(wid),_view (view) { }; 75 KOListViewWhatsThis( QWidget *wid, KOListView* view ) : QWhatsThis( wid ), _wid(wid),_view (view) { };
76 76
77protected: 77protected:
78 virtual QString text( const QPoint& p) 78 virtual QString text( const QPoint& p)
79 { 79 {
80 return _view->getWhatsThisText(p) ; 80 return _view->getWhatsThisText(p) ;
81 } 81 }
82private: 82private:
83 QWidget* _wid; 83 QWidget* _wid;
84 KOListView * _view; 84 KOListView * _view;
85}; 85};
86 86
87 87
88ListItemVisitor::ListItemVisitor(KOListViewItem *item, QDate date ) 88ListItemVisitor::ListItemVisitor(KOListViewItem *item, QDate date )
89{ 89{
90 mItem = item; 90 mItem = item;
91 mDate = date; 91 mDate = date;
92} 92}
93 93
94ListItemVisitor::~ListItemVisitor() 94ListItemVisitor::~ListItemVisitor()
95{ 95{
96} 96}
97 97
98bool ListItemVisitor::visit(Event *e) 98bool ListItemVisitor::visit(Event *e)
99{ 99{
100 bool ok = false; 100 bool ok = false;
101 QString start, end; 101 QString start, end;
102 QDate ds, de; 102 QDate ds, de;
103 if ( e->doesRecur() ) { 103 if ( e->doesRecur() ) {
104 ds = e->getNextOccurence( QDateTime( mDate, QTime(0,0,0)), &ok ).date(); 104 ds = e->getNextOccurence( QDateTime( mDate, QTime(0,0,0)), &ok ).date();
105 if ( ok ) { 105 if ( ok ) {
106 int days = e->dtStart().date().daysTo(e->dtEnd().date() ); 106 int days = e->dtStart().date().daysTo(e->dtEnd().date() );
107 start = KGlobal::locale()->formatDate(ds,true); 107 start = KGlobal::locale()->formatDate(ds,true);
108 de = ds.addDays( days); 108 de = ds.addDays( days);
109 end = KGlobal::locale()->formatDate(de,true); 109 end = KGlobal::locale()->formatDate(de,true);
110 } 110 }
111 111
112 } 112 }
113 if ( ! ok ) { 113 if ( ! ok ) {
114 start =e->dtStartDateStr(); 114 start =e->dtStartDateStr();
115 end = e->dtEndDateStr(); 115 end = e->dtEndDateStr();
116 ds = e->dtStart().date(); 116 ds = e->dtStart().date();
117 de = e->dtEnd().date(); 117 de = e->dtEnd().date();
118 } 118 }
119 mItem->setText(0,e->summary()); 119 mItem->setText(0,e->summary());
120 mItem->setText(1,start); 120 mItem->setText(1,start);
121 if ( e->doesFloat() ) 121 if ( e->doesFloat() )
122 mItem->setText(2,"---"); 122 mItem->setText(2,"---");
123 else 123 else
124 mItem->setText(2,e->dtStartTimeStr()); 124 mItem->setText(2,e->dtStartTimeStr());
125 mItem->setText(3,end); 125 mItem->setText(3,end);
126 if ( e->doesFloat() ) 126 if ( e->doesFloat() )
127 mItem->setText(4,"---"); 127 mItem->setText(4,"---");
128 else 128 else
129 mItem->setText(4,e->dtEndTimeStr()); 129 mItem->setText(4,e->dtEndTimeStr());
130 if ( e->isAlarmEnabled() ) { 130 if ( e->isAlarmEnabled() ) {
131 mItem->setText(5,e->alarms().first()->offsetText() ); 131 mItem->setText(5,e->alarms().first()->offsetText() );
132 } else { 132 } else {
133 mItem->setText(5, i18n("No")); 133 mItem->setText(5, i18n("No"));
134 } 134 }
135 mItem->setText(6, e->recurrence()->recurrenceText()); 135 mItem->setText(6, e->recurrence()->recurrenceText());
136 if( ! e->doesRecur() ) 136 if( ! e->doesRecur() )
137 mItem->setSortKey( 6, "-" ); 137 mItem->setSortKey( 6, "-" );
138 mItem->setText(7,"---"); 138 mItem->setText(7,"---");
139 mItem->setText(8,"---"); 139 mItem->setText(8,"---");
140 mItem->setText(9, e->cancelled() ? i18n("Yes") : i18n("No")); 140 mItem->setText(9, e->cancelled() ? i18n("Yes") : i18n("No"));
141 mItem->setText(10,e->categoriesStr()); 141 mItem->setText(10,e->categoriesStr());
142 mItem->setText(11, KOPrefs::instance()->calName( e->calID() )); 142 mItem->setText(11, KOPrefs::instance()->calName( e->calID() ));
143 143
144 QString key; 144 QString key;
145 QTime t = e->doesFloat() ? QTime(0,0) : e->dtStart().time(); 145 QTime t = e->doesFloat() ? QTime(0,0) : e->dtStart().time();
146 key.sprintf("%04d%02d%02d%02d%02d",ds.year(),ds.month(),ds.day(),t.hour(),t.minute()); 146 key.sprintf("%04d%02d%02d%02d%02d",ds.year(),ds.month(),ds.day(),t.hour(),t.minute());
147 mItem->setSortKey(1,key); 147 mItem->setSortKey(1,key);
148 148
149 t = e->doesFloat() ? QTime(0,0) : e->dtEnd().time(); 149 t = e->doesFloat() ? QTime(0,0) : e->dtEnd().time();
150 key.sprintf("%04d%02d%02d%02d%02d",de.year(),de.month(),de.day(),t.hour(),t.minute()); 150 key.sprintf("%04d%02d%02d%02d%02d",de.year(),de.month(),de.day(),t.hour(),t.minute());
151 mItem->setSortKey(3,key); 151 mItem->setSortKey(3,key);
152 return true; 152 return true;
153} 153}
154 154
155bool ListItemVisitor::visit(Todo *t) 155bool ListItemVisitor::visit(Todo *t)
156{ 156{
157 mItem->setText(0,t->summary()); 157 mItem->setText(0,t->summary());
158 if ( t->isCompleted() ) { 158 if ( t->isCompleted() ) {
159 mItem->setSortKey(0,"99"+ t->summary().left(10)); 159 mItem->setSortKey(0,"99"+ t->summary().left(10));
160 } else 160 } else
161 mItem->setSortKey(0,QString::number( t->percentComplete() )+ t->summary().left(10)); 161 mItem->setSortKey(0,QString::number( t->percentComplete() )+ t->summary().left(10));
162 mItem->setPixmap( 0, *(sgListViewCompletedPix[t->percentComplete()/20])); 162 mItem->setPixmap( 0, *(sgListViewCompletedPix[t->percentComplete()/20]));
163 if (t->hasStartDate()) { 163 if (t->hasStartDate()) {
164 mItem->setText(1,t->dtStartDateStr()); 164 mItem->setText(1,t->dtStartDateStr());
165 if (t->doesFloat()) { 165 if (t->doesFloat()) {
166 mItem->setText(2,"---"); 166 mItem->setText(2,"---");
167 } else { 167 } else {
168 mItem->setText(2,t->dtStartTimeStr()); 168 mItem->setText(2,t->dtStartTimeStr());
169 } 169 }
170 } else { 170 } else {
171 mItem->setText(1,"---"); 171 mItem->setText(1,"---");
172 mItem->setText(2,"---"); 172 mItem->setText(2,"---");
173 } 173 }
174 mItem->setText(3,"---"); 174 mItem->setText(3,"---");
175 mItem->setText(4,"---"); 175 mItem->setText(4,"---");
176 if ( t->isAlarmEnabled() ) { 176 if ( t->isAlarmEnabled() ) {
177 mItem->setText(5,t->alarms().first()->offsetText() ); 177 mItem->setText(5,t->alarms().first()->offsetText() );
178 } else { 178 } else {
179 mItem->setText(5, i18n("No")); 179 mItem->setText(5, i18n("No"));
180 } 180 }
181 mItem->setText(6, t->recurrence()->recurrenceText()); 181 mItem->setText(6, t->recurrence()->recurrenceText());
182 if( ! t->doesRecur() ) 182 if( ! t->doesRecur() )
183 mItem->setSortKey( 6, "-" ); 183 mItem->setSortKey( 6, "-" );
184 if (t->hasDueDate()) { 184 if (t->hasDueDate()) {
185 mItem->setText(7,t->dtDueDateStr()); 185 mItem->setText(7,t->dtDueDateStr());
186 if (t->doesFloat()) { 186 if (t->doesFloat()) {
187 mItem->setText(8,"---"); 187 mItem->setText(8,"---");
188 } else { 188 } else {
189 mItem->setText(8,t->dtDueTimeStr()); 189 mItem->setText(8,t->dtDueTimeStr());
190 } 190 }
191 } else { 191 } else {
192 mItem->setText(7,"---"); 192 mItem->setText(7,"---");
193 mItem->setText(8,"---"); 193 mItem->setText(8,"---");
194 } 194 }
195 mItem->setText(9, t->cancelled() ? i18n("Yes") : i18n("No")); 195 mItem->setText(9, t->cancelled() ? i18n("Yes") : i18n("No"));
196 mItem->setText(10,t->categoriesStr()); 196 mItem->setText(10,t->categoriesStr());
197 mItem->setText(11, KOPrefs::instance()->calName( t->calID() )); 197 mItem->setText(11, KOPrefs::instance()->calName( t->calID() ));
198 198
199 QString key; 199 QString key;
200 QDate d; 200 QDate d;
201 if (t->hasDueDate()) { 201 if (t->hasDueDate()) {
202 d = t->dtDue().date(); 202 d = t->dtDue().date();
203 QTime tm = t->doesFloat() ? QTime(0,0) : t->dtDue().time(); 203 QTime tm = t->doesFloat() ? QTime(0,0) : t->dtDue().time();
204 key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); 204 key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute());
205 mItem->setSortKey(7,key); 205 mItem->setSortKey(7,key);
206 } 206 }
207 if ( t->hasStartDate() ) { 207 if ( t->hasStartDate() ) {
208 d = t->dtStart().date(); 208 d = t->dtStart().date();
209 QTime tm = t->doesFloat() ? QTime(0,0) : t->dtStart().time(); 209 QTime tm = t->doesFloat() ? QTime(0,0) : t->dtStart().time();
210 key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); 210 key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute());
211 mItem->setSortKey(1,key); 211 mItem->setSortKey(1,key);
212 } 212 }
213 return true; 213 return true;
214} 214}
215 215
216bool ListItemVisitor::visit(Journal * j) 216bool ListItemVisitor::visit(Journal * j)
217{ 217{
218 218
219 QString des; 219 QString des;
220 if ( !j->summary().isEmpty() ) { 220 if ( !j->summary().isEmpty() ) {
221 des = j->summary(); 221 des = j->summary();
222 } else { 222 } else {
223 des = j->description().left(30); 223 des = j->description().left(30);
224 des = des.simplifyWhiteSpace (); 224 des = des.simplifyWhiteSpace ();
225 des.replace (QRegExp ("\\n"),"" ); 225 des.replace (QRegExp ("\\n"),"" );
226 des.replace (QRegExp ("\\r"),"" ); 226 des.replace (QRegExp ("\\r"),"" );
227 } 227 }
228 mItem->setText(0,i18n("Journal: ")+des.left(25)); 228 mItem->setText(0,i18n("Journal: ")+des.left(25));
229 mItem->setText(1,j->dtStartDateStr()); 229 mItem->setText(1,j->dtStartDateStr());
230 mItem->setText(2,"---"); 230 mItem->setText(2,"---");
231 mItem->setText(3,"---"); 231 mItem->setText(3,"---");
232 mItem->setText(4,"---"); 232 mItem->setText(4,"---");
233 mItem->setText(5,"---"); 233 mItem->setText(5,"---");
234 mItem->setText(6,"---"); 234 mItem->setText(6,"---");
235 mItem->setText(7,j->dtStartDateStr()); 235 mItem->setText(7,j->dtStartDateStr());
236 mItem->setText(8,"---"); 236 mItem->setText(8,"---");
237 mItem->setText(9,"---"); 237 mItem->setText(9,"---");
238 mItem->setText(10,i18n("Last Modified: ")+ KGlobal::locale()->formatDateTime( j->lastModified() , true) ); 238 mItem->setText(10,i18n("Last Modified: ")+ KGlobal::locale()->formatDateTime( j->lastModified() , true) );
239 mItem->setText(11, KOPrefs::instance()->calName( j->calID() )); 239 mItem->setText(11, KOPrefs::instance()->calName( j->calID() ));
240 240
241 QString key; 241 QString key;
242 QDate d = j->dtStart().date(); 242 QDate d = j->dtStart().date();
243 key.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); 243 key.sprintf("%04d%02d%02d",d.year(),d.month(),d.day());
244 mItem->setSortKey(1,key); 244 mItem->setSortKey(1,key);
245 mItem->setSortKey(7,key); 245 mItem->setSortKey(7,key);
246 246
247 return true; 247 return true;
248} 248}
249 249
250KOListView::KOListView(Calendar *calendar, QWidget *parent, 250KOListView::KOListView(Calendar *calendar, QWidget *parent,
251 const char *name) 251 const char *name)
252 : KOEventView(calendar, parent, name) 252 : KOEventView(calendar, parent, name)
253{ 253{
254 254
255 mActiveItem = 0; 255 mActiveItem = 0;
256 mForceShowCompletedTodos = false; 256 mForceShowCompletedTodos = false;
257 mListView = new KOListViewListView(this); 257 mListView = new KOListViewListView(this);
258 mListView->addColumn(i18n("Summary")); 258 mListView->addColumn(i18n("Summary"));
259 mListView->addColumn(i18n("Start Date")); 259 mListView->addColumn(i18n("Start Date"));
260 mListView->addColumn(i18n("Start Time")); 260 mListView->addColumn(i18n("Start Time"));
261 mListView->addColumn(i18n("End Date")); 261 mListView->addColumn(i18n("End Date"));
262 mListView->addColumn(i18n("End Time")); 262 mListView->addColumn(i18n("End Time"));
263 mListView->addColumn(i18n("Alarm")); // alarm set? 263 mListView->addColumn(i18n("Alarm")); // alarm set?
264 mListView->addColumn(i18n("Recurs")); // recurs? 264 mListView->addColumn(i18n("Recurs")); // recurs?
265 mListView->addColumn(i18n("Due Date")); 265 mListView->addColumn(i18n("Due Date"));
266 mListView->addColumn(i18n("Due Time")); 266 mListView->addColumn(i18n("Due Time"));
267 mListView->addColumn(i18n("Cancelled")); 267 mListView->addColumn(i18n("Cancelled"));
268 mListView->addColumn(i18n("Categories")); 268 mListView->addColumn(i18n("Categories"));
269 mListView->addColumn(i18n("Calendar")); 269 mListView->addColumn(i18n("Calendar"));
270 270
271 mListView->setColumnAlignment(0,AlignLeft); 271 mListView->setColumnAlignment(0,AlignLeft);
272 mListView->setColumnAlignment(1,AlignLeft); 272 mListView->setColumnAlignment(1,AlignLeft);
273 mListView->setColumnAlignment(2,AlignHCenter); 273 mListView->setColumnAlignment(2,AlignHCenter);
274 mListView->setColumnAlignment(3,AlignLeft); 274 mListView->setColumnAlignment(3,AlignLeft);
275 mListView->setColumnAlignment(4,AlignHCenter); 275 mListView->setColumnAlignment(4,AlignHCenter);
276 mListView->setColumnAlignment(5,AlignLeft); 276 mListView->setColumnAlignment(5,AlignLeft);
277 mListView->setColumnAlignment(6,AlignLeft); 277 mListView->setColumnAlignment(6,AlignLeft);
278 mListView->setColumnAlignment(7,AlignLeft); 278 mListView->setColumnAlignment(7,AlignLeft);
279 mListView->setColumnAlignment(8,AlignLeft); 279 mListView->setColumnAlignment(8,AlignLeft);
280 mListView->setColumnAlignment(9,AlignLeft); 280 mListView->setColumnAlignment(9,AlignLeft);
281 mListView->setColumnAlignment(10,AlignLeft); 281 mListView->setColumnAlignment(10,AlignLeft);
282 mListView->setColumnAlignment(11,AlignLeft); 282 mListView->setColumnAlignment(11,AlignLeft);
283 mKOListViewWhatsThis = new KOListViewWhatsThis(mListView->viewport(),this); 283 mKOListViewWhatsThis = new KOListViewWhatsThis(mListView->viewport(),this);
284 284
285 int iii = 0; 285 int iii = 0;
286 for ( iii = 0; iii< 12 ; ++iii ) 286 for ( iii = 0; iii< 12 ; ++iii )
287 mListView->setColumnWidthMode( iii, QListView::Manual ); 287 mListView->setColumnWidthMode( iii, QListView::Manual );
288 288
289 QBoxLayout *layoutTop = new QVBoxLayout(this); 289 QBoxLayout *layoutTop = new QVBoxLayout(this);
290 layoutTop->addWidget(mListView); 290 layoutTop->addWidget(mListView);
291 mListView->setFont ( KOPrefs::instance()->mListViewFont ); 291 mListView->setFont ( KOPrefs::instance()->mListViewFont );
292 mPopupMenu = eventPopup(); 292 mPopupMenu = eventPopup();
293 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), 293 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()),
294 i18n("Select all"),this, 294 i18n("Select all"),this,
295 SLOT(allSelection()),true); 295 SLOT(allSelection()),true);
296 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), 296 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()),
297 i18n("Deselect all"),this, 297 i18n("Deselect all"),this,
298 SLOT(clearSelection()),true); 298 SLOT(clearSelection()),true);
299 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), 299 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()),
300 i18n("Delete all selected"),this, 300 i18n("Delete all selected"),this,
301 SLOT(deleteAll()),true); 301 SLOT(deleteAll()),true);
302 302
303 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), 303 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()),
304 i18n("Hide all selected"),this, 304 i18n("Hide all selected"),this,
305 SLOT(hideAll()),true); 305 SLOT(hideAll()),true);
306 306
307 mPopupMenu->insertSeparator(); 307 mPopupMenu->insertSeparator();
308#ifdef DESKTOP_VERSION 308#ifdef DESKTOP_VERSION
309 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), 309 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()),
310 i18n("Print complete list"),this, 310 i18n("Print complete list"),this,
311 SLOT(printList()),true); 311 SLOT(printList()),true);
312 mPopupMenu->insertSeparator(); 312 mPopupMenu->insertSeparator();
313#endif 313#endif
314 mCalPopup = new QPopupMenu ( this ); 314 mCalPopup = new QPopupMenu ( this );
315 mPopupMenu->insertItem( i18n("Set Calendar"), mCalPopup ); 315 mPopupMenu->insertItem( i18n("Set Calendar"), mCalPopup );
316 316
317 QObject::connect(mCalPopup,SIGNAL(aboutToShow()),this, 317 QObject::connect(mCalPopup,SIGNAL(aboutToShow()),this,
318 SLOT( populateCalPopup() )); 318 SLOT( populateCalPopup() ));
319 QObject::connect(mCalPopup,SIGNAL(activated( int )),this, 319 QObject::connect(mCalPopup,SIGNAL(activated( int )),this,
320 SLOT( setCalendar( int ) )); 320 SLOT( setCalendar( int ) ));
321 QPopupMenu * exportPO = new QPopupMenu ( this ); 321 QPopupMenu * exportPO = new QPopupMenu ( this );
322 mPopupMenu->insertItem( i18n("Export selected"), exportPO ); 322 mPopupMenu->insertItem( i18n("Export selected"), exportPO );
323 exportPO->insertItem( i18n("As iCal (ics) file..."),this, 323 exportPO->insertItem( i18n("As iCal (ics) file..."),this,
324 SLOT(saveToFile())); 324 SLOT(saveToFile()));
325 exportPO->insertItem( i18n("As vCal (vcs) file..."),this, 325 exportPO->insertItem( i18n("As vCal (vcs) file..."),this,
326 SLOT(saveToFileVCS())); 326 SLOT(saveToFileVCS()));
327 exportPO->insertItem( i18n("Journal/Details..."),this, 327 exportPO->insertItem( i18n("Journal/Details..."),this,
328 SLOT(saveDescriptionToFile())); 328 SLOT(saveDescriptionToFile()));
329 // mPopupMenu->insertSeparator(); 329 // mPopupMenu->insertSeparator();
330 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), 330 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()),
331 i18n("Add Categ. to selected..."),this, 331 i18n("Add Categ. to selected..."),this,
332 SLOT(addCat()),true); 332 SLOT(addCat()),true);
333 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), 333 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()),
334 i18n("Set Categ. for selected..."),this, 334 i18n("Set Categ. for selected..."),this,
335 SLOT(setCat()),true); 335 SLOT(setCat()),true);
336 //mPopupMenu->insertSeparator(); 336 //mPopupMenu->insertSeparator();
337 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), 337 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()),
338 i18n("Set alarm for selected..."),this, 338 i18n("Set alarm for selected..."),this,
339 SLOT(setAlarm()),true); 339 SLOT(setAlarm()),true);
340 340
341 341
342 342
343#ifndef DESKTOP_VERSION 343#ifndef DESKTOP_VERSION
344 mPopupMenu->insertSeparator(); 344 mPopupMenu->insertSeparator();
345 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), 345 mPopupMenu->addAdditionalItem(QIconSet(QPixmap()),
346 i18n("Beam selected via IR"),this, 346 i18n("Beam selected via IR"),this,
347 SLOT(beamSelected()),true); 347 SLOT(beamSelected()),true);
348#endif 348#endif
349 /* 349 /*
350 mPopupMenu = new QPopupMenu; 350 mPopupMenu = new QPopupMenu;
351 mPopupMenu->insertItem(i18n("Edit Event"), this, 351 mPopupMenu->insertItem(i18n("Edit Event"), this,
352 SLOT (editEvent())); 352 SLOT (editEvent()));
353 mPopupMenu->insertItem(SmallIcon("delete"), i18n("Delete Event"), this, 353 mPopupMenu->insertItem(SmallIcon("delete"), i18n("Delete Event"), this,
354 SLOT (deleteEvent())); 354 SLOT (deleteEvent()));
355 mPopupMenu->insertSeparator(); 355 mPopupMenu->insertSeparator();
356 mPopupMenu->insertItem(i18n("Show Dates"), this, 356 mPopupMenu->insertItem(i18n("Show Dates"), this,
357 SLOT(showDates())); 357 SLOT(showDates()));
358 mPopupMenu->insertItem(i18n("Hide Dates"), this, 358 mPopupMenu->insertItem(i18n("Hide Dates"), this,
359 SLOT(hideDates())); 359 SLOT(hideDates()));
360 */ 360 */
361 QObject::connect(mListView,SIGNAL( newEvent()), 361 QObject::connect(mListView,SIGNAL( newEvent()),
362 this,SIGNAL(signalNewEvent())); 362 this,SIGNAL(signalNewEvent()));
363 QObject::connect(mListView,SIGNAL(doubleClicked(QListViewItem *)), 363 QObject::connect(mListView,SIGNAL(doubleClicked(QListViewItem *)),
364 this,SLOT(defaultItemAction(QListViewItem *))); 364 this,SLOT(defaultItemAction(QListViewItem *)));
365 QObject::connect(mListView,SIGNAL(rightButtonPressed( QListViewItem *, 365 QObject::connect(mListView,SIGNAL(rightButtonPressed( QListViewItem *,
366 const QPoint &, int )), 366 const QPoint &, int )),
367 this,SLOT(popupMenu(QListViewItem *,const QPoint &,int))); 367 this,SLOT(popupMenu(QListViewItem *,const QPoint &,int)));
368 QObject::connect(mListView,SIGNAL(currentChanged(QListViewItem *)), 368 QObject::connect(mListView,SIGNAL(currentChanged(QListViewItem *)),
369 SLOT(processSelectionChange(QListViewItem *))); 369 SLOT(processSelectionChange(QListViewItem *)));
370 QObject::connect(mListView,SIGNAL(showIncidence(Incidence *)), 370 QObject::connect(mListView,SIGNAL(showIncidence(Incidence *)),
371 SIGNAL(showIncidenceSignal(Incidence *)) ); 371 SIGNAL(showIncidenceSignal(Incidence *)) );
372 372
373 readSettings(KOGlobals::config(),"KOListView Layout"); 373 readSettings(KOGlobals::config(),"KOListView Layout");
374} 374}
375 375
376KOListView::~KOListView() 376KOListView::~KOListView()
377{ 377{
378 delete mPopupMenu; 378 delete mPopupMenu;
379#if QT_VERSION >= 0x030000 379#if QT_VERSION >= 0x030000
380 380
381#else 381#else
382 delete mKOListViewWhatsThis; 382 delete mKOListViewWhatsThis;
383#endif 383#endif
384} 384}
385 385
386QString KOListView::getWhatsThisText(QPoint p) 386QString KOListView::getWhatsThisText(QPoint p)
387{ 387{
388 KOListViewItem* item = ( KOListViewItem* ) mListView->itemAt( p ); 388 KOListViewItem* item = ( KOListViewItem* ) mListView->itemAt( p );
389 if ( item ) 389 if ( item )
390 return KIncidenceFormatter::instance()->getFormattedText( item->data(), 390 return KIncidenceFormatter::instance()->getFormattedText( item->data(),
391 KOPrefs::instance()->mWTshowDetails, 391 KOPrefs::instance()->mWTshowDetails,
392 KOPrefs::instance()->mWTshowCreated, 392 KOPrefs::instance()->mWTshowCreated,
393 KOPrefs::instance()->mWTshowChanged); 393 KOPrefs::instance()->mWTshowChanged);
394 return i18n("That is the list view" ); 394 return i18n("That is the list view" );
395 395
396} 396}
397 397
398void KOListView::setCalendar( int c ) 398void KOListView::setCalendar( int c )
399{ 399{
400 int result = QMessageBox::warning( this, i18n("KO/Pi: Information!"), 400 int result = QMessageBox::warning( this, i18n("KO/Pi: Information!"),
401 i18n("This adds the selected\nitems to the calendar\n%1\nand removes them from\ntheir current calendar!").arg( KOPrefs::instance()->calName( c ) ), 401 i18n("This adds the selected\nitems to the calendar\n%1\nand removes them from\ntheir current calendar!").arg( KOPrefs::instance()->calName( c ) ),
402 i18n("Continue"), i18n("Cancel"), 0, 402 i18n("Continue"), i18n("Cancel"), 0,
403 0, 1 ); 403 0, 1 );
404 if ( result != 0 ) { 404 if ( result != 0 ) {
405 return; 405 return;
406 } 406 }
407 407
408 QPtrList<Incidence> delSel = getSelectedIncidences() ; 408 QPtrList<Incidence> delSel = getSelectedIncidences() ;
409 int icount = delSel.count(); 409 int icount = delSel.count();
410 if ( icount ) { 410 if ( icount ) {
411 Incidence *incidence = delSel.first(); 411 Incidence *incidence = delSel.first();
412 while ( incidence ) { 412 while ( incidence ) {
413 incidence->setCalID( c ); 413 incidence->setCalID( c );
414 KOListViewItem * item = getItemForEvent( incidence ); 414 KOListViewItem * item = getItemForEvent( incidence );
415 if ( item ) { 415 if ( item ) {
416 ListItemVisitor v(item, mStartDate ); 416 ListItemVisitor v(item, mStartDate );
417 incidence->accept(v); 417 incidence->accept(v);
418 } 418 }
419 incidence = delSel.next(); 419 incidence = delSel.next();
420 } 420 }
421 } 421 }
422 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; 422 QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars;
423 KopiCalendarFile * cal = calendars.first(); 423 KopiCalendarFile * cal = calendars.first();
424 while ( cal ) { 424 while ( cal ) {
425 mCalendar->setCalendarEnabled( cal->mCalNumber,cal->isEnabled ); 425 mCalendar->setCalendarEnabled( cal->mCalNumber,cal->isEnabled );
426 mCalendar->setAlarmEnabled( cal->mCalNumber, cal->isAlarmEnabled ); 426 mCalendar->setAlarmEnabled( cal->mCalNumber, cal->isAlarmEnabled );
427 mCalendar->setReadOnly( cal->mCalNumber, cal->isReadOnly ); 427 mCalendar->setReadOnly( cal->mCalNumber, cal->isReadOnly );
428 if ( cal->isStandard ) 428 if ( cal->isStandard )
429 mCalendar->setDefaultCalendar( cal->mCalNumber ); 429 mCalendar->setDefaultCalendar( cal->mCalNumber );
430 cal = calendars.next(); 430 cal = calendars.next();
431 } 431 }
432 mCalendar->setSyncEventsReadOnly(); 432 mCalendar->setSyncEventsReadOnly();
433 mCalendar->reInitAlarmSettings(); 433 mCalendar->reInitAlarmSettings();
434 434
435} 435}
436void KOListView::populateCalPopup() 436void KOListView::populateCalPopup()
437{ 437{
438 mCalPopup->clear(); 438 mCalPopup->clear();
439 KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); 439 KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first();
440 while ( kkf ) { 440 while ( kkf ) {
441 mCalPopup->insertItem( kkf->mName, kkf->mCalNumber); 441 mCalPopup->insertItem( kkf->mName, kkf->mCalNumber);
442 kkf = KOPrefs::instance()->mCalendars.next(); 442 kkf = KOPrefs::instance()->mCalendars.next();
443 } 443 }
444} 444}
445void KOListView::updateList() 445void KOListView::updateList()
446{ 446{
447 // qDebug(" KOListView::updateList() "); 447 // qDebug(" KOListView::updateList() ");
448 448
449} 449}
450 450
451void KOListView::clearList() 451void KOListView::clearList()
452{ 452{
453 clear (); 453 clear ();
454} 454}
455void KOListView::addCat( ) 455void KOListView::addCat( )
456{ 456{
457 setCategories( false ); 457 setCategories( false );
458} 458}
459void KOListView::setCat() 459void KOListView::setCat()
460{ 460{
461 setCategories( true ); 461 setCategories( true );
462} 462}
463 463
464void KOListView::setAlarm() 464void KOListView::setAlarm()
465{ 465{
466 KOAlarmPrefs kap( this); 466 KOAlarmPrefs kap( this);
467 if ( !kap.exec() ) 467 if ( !kap.exec() )
468 return; 468 return;
469 QStringList itemList; 469 QStringList itemList;
470 QPtrList<KOListViewItem> sel ; 470 QPtrList<KOListViewItem> sel ;
471 QListViewItem *qitem = mListView->firstChild (); 471 QListViewItem *qitem = mListView->firstChild ();
472 while ( qitem ) { 472 while ( qitem ) {
473 if ( qitem->isSelected() ) { 473 if ( qitem->isSelected() ) {
474 Incidence* inc = ((KOListViewItem *) qitem)->data(); 474 Incidence* inc = ((KOListViewItem *) qitem)->data();
475 if ( inc->typeID() != journalID ) { 475 if ( inc->typeID() != journalID ) {
476 if ( inc->typeID() == todoID ) { 476 if ( inc->typeID() == todoID ) {
477 if ( ((Todo*)inc)->hasDueDate() ) 477 if ( ((Todo*)inc)->hasDueDate() )
478 sel.append(((KOListViewItem *)qitem)); 478 sel.append(((KOListViewItem *)qitem));
479 } else 479 } else
480 sel.append(((KOListViewItem *)qitem)); 480 sel.append(((KOListViewItem *)qitem));
481 } 481 }
482 } 482 }
483 qitem = qitem->nextSibling(); 483 qitem = qitem->nextSibling();
484 } 484 }
485 int count = 0; 485 int count = 0;
486 KOListViewItem * item, *temp; 486 KOListViewItem * item, *temp;
487 item = sel.first(); 487 item = sel.first();
488 Incidence* inc; 488 Incidence* inc;
489 while ( item ) { 489 while ( item ) {
490 inc = item->data(); 490 inc = item->data();
491 ++count; 491 ++count;
492 if (kap.mAlarmButton->isChecked()) { 492 if (kap.mAlarmButton->isChecked()) {
493 if (inc->alarms().count() == 0) 493 if (inc->alarms().count() == 0)
494 inc->newAlarm(); 494 inc->newAlarm();
495 QPtrList<Alarm> alarms = inc->alarms(); 495 QPtrList<Alarm> alarms = inc->alarms();
496 Alarm *alarm; 496 Alarm *alarm;
497 for (alarm = alarms.first(); alarm; alarm = alarms.next() ) { 497 for (alarm = alarms.first(); alarm; alarm = alarms.next() ) {
498 alarm->setEnabled(true); 498 alarm->setEnabled(true);
499 int j = kap.mAlarmTimeEdit->value()* -60; 499 int j = kap.mAlarmTimeEdit->value()* -60;
500 if (kap.mAlarmIncrCombo->currentItem() == 1) 500 if (kap.mAlarmIncrCombo->currentItem() == 1)
501 j = j * 60; 501 j = j * 60;
502 else if (kap.mAlarmIncrCombo->currentItem() == 2) 502 else if (kap.mAlarmIncrCombo->currentItem() == 2)
503 j = j * (60 * 24); 503 j = j * (60 * 24);
504 alarm->setStartOffset( j ); 504 alarm->setStartOffset( j );
505 505
506 if (!kap.mAlarmProgram.isEmpty() && kap.mAlarmProgramButton->isOn()) { 506 if (!kap.mAlarmProgram.isEmpty() && kap.mAlarmProgramButton->isOn()) {
507 alarm->setProcedureAlarm(kap.mAlarmProgram); 507 alarm->setProcedureAlarm(kap.mAlarmProgram);
508 } 508 }
509 else if (!kap.mAlarmSound.isEmpty() && kap.mAlarmSoundButton->isOn()) 509 else if (!kap.mAlarmSound.isEmpty() && kap.mAlarmSoundButton->isOn())
510 alarm->setAudioAlarm(kap.mAlarmSound); 510 alarm->setAudioAlarm(kap.mAlarmSound);
511 else 511 else
512 alarm->setType(Alarm::Invalid); 512 alarm->setType(Alarm::Invalid);
513 //alarm->setAudioAlarm("default"); 513 //alarm->setAudioAlarm("default");
514 // TODO: Deal with multiple alarms 514 // TODO: Deal with multiple alarms
515 break; // For now, stop after the first alarm 515 break; // For now, stop after the first alarm
516 } 516 }
517 } else { 517 } else {
518 Alarm* alarm = inc->alarms().first(); 518 Alarm* alarm = inc->alarms().first();
519 if ( alarm ) { 519 if ( alarm ) {
520 alarm->setEnabled(false); 520 alarm->setEnabled(false);
521 alarm->setType(Alarm::Invalid); 521 alarm->setType(Alarm::Invalid);
522 } 522 }
523 } 523 }
524 ListItemVisitor v(item, mStartDate ); 524 ListItemVisitor v(item, mStartDate );
525 inc->accept(v); 525 inc->accept(v);
526 item = sel.next(); 526 item = sel.next();
527 } 527 }
528 topLevelWidget()->setCaption( i18n("Changed alarm for %1 items").arg( count ) ); 528 topLevelWidget()->setCaption( i18n("Changed alarm for %1 items").arg( count ) );
529 qDebug("KO: Set alarm for %d items", count); 529 qDebug("KO: Set alarm for %d items", count);
530 calendar()->reInitAlarmSettings(); 530 calendar()->reInitAlarmSettings();
531 QTimer::singleShot( 1, this, SLOT ( resetFocus() ) ); 531 QTimer::singleShot( 1, this, SLOT ( resetFocus() ) );
532} 532}
533void KOListView::setCategories( bool removeOld ) 533void KOListView::setCategories( bool removeOld )
534{ 534{
535 535
536 KPIM::CategorySelectDialog* csd = new KPIM::CategorySelectDialog( KOPrefs::instance(), 0 ); 536 KPIM::CategorySelectDialog* csd = new KPIM::CategorySelectDialog( KOPrefs::instance(), 0 );
537 csd->setColorEnabled(); 537 csd->setColorEnabled();
538 if (! csd->exec()) { 538 if (! csd->exec()) {
539 delete csd; 539 delete csd;
540 return; 540 return;
541 } 541 }
542 QStringList catList = csd->selectedCategories(); 542 QStringList catList = csd->selectedCategories();
543 delete csd; 543 delete csd;
544 // if ( catList.count() == 0 ) 544 // if ( catList.count() == 0 )
545 // return; 545 // return;
546 //catList.sort(); 546 //catList.sort();
547 QString categoriesStr = catList.join(","); 547 QString categoriesStr = catList.join(",");
548 int i; 548 int i;
549 QStringList itemList; 549 QStringList itemList;
550 QPtrList<KOListViewItem> sel ; 550 QPtrList<KOListViewItem> sel ;
551 QListViewItem *qitem = mListView->firstChild (); 551 QListViewItem *qitem = mListView->firstChild ();
552 while ( qitem ) { 552 while ( qitem ) {
553 if ( qitem->isSelected() ) { 553 if ( qitem->isSelected() ) {
554 sel.append(((KOListViewItem *)qitem)); 554 sel.append(((KOListViewItem *)qitem));
555 } 555 }
556 qitem = qitem->nextSibling(); 556 qitem = qitem->nextSibling();
557 } 557 }
558 KOListViewItem * item, *temp; 558 KOListViewItem * item, *temp;
559 item = sel.first(); 559 item = sel.first();
560 if( item ) { 560 if( item ) {
561 Incidence* inc = item->data() ; 561 Incidence* inc = item->data() ;
562 bool setSub = false; 562 bool setSub = false;
563 if( inc->typeID() == todoID && sel.count() == 1 && inc->relations().count() > 0 ) { 563 if( inc->typeID() == todoID && sel.count() == 1 && inc->relations().count() > 0 ) {
564 int result = KMessageBox::warningYesNoCancel(this, 564 int result = KMessageBox::warningYesNoCancel(this,
565 i18n("The todo\n%1\nhas subtodos!\nDo you want to set\nthe categories for\nall subtodos as well?").arg( inc->summary().left ( 25 ) ), 565 i18n("The todo\n%1\nhas subtodos!\nDo you want to set\nthe categories for\nall subtodos as well?").arg( inc->summary().left ( 25 ) ),
566 i18n("Todo has subtodos"), 566 i18n("Todo has subtodos"),
567 i18n("Yes"), 567 i18n("Yes"),
568 i18n("No")); 568 i18n("No"));
569 if (result == KMessageBox::Cancel) item = 0; 569 if (result == KMessageBox::Cancel) item = 0;
570 if (result == KMessageBox::Yes) setSub = true; 570 if (result == KMessageBox::Yes) setSub = true;
571 } 571 }
572 while ( item ) { 572 while ( item ) {
573 inc = item->data(); 573 inc = item->data();
574 if ( removeOld ) { 574 if ( removeOld ) {
575 inc->setCategories( catList, setSub ); 575 inc->setCategories( catList, setSub );
576 } else { 576 } else {
577 inc->addCategories( catList, setSub ); 577 inc->addCategories( catList, setSub );
578 } 578 }
579 ListItemVisitor v(item, mStartDate ); 579 ListItemVisitor v(item, mStartDate );
580 inc->accept(v); 580 inc->accept(v);
581 item = sel.next(); 581 item = sel.next();
582 } 582 }
583 } 583 }
584 QTimer::singleShot( 1, this, SLOT ( resetFocus() ) ); 584 QTimer::singleShot( 1, this, SLOT ( resetFocus() ) );
585} 585}
586 586
587void KOListView::beamSelected() 587void KOListView::beamSelected()
588{ 588{
589 QPtrList<Incidence> delSel = getSelectedIncidences() ; 589 QPtrList<Incidence> delSel = getSelectedIncidences() ;
590 int icount = delSel.count(); 590 int icount = delSel.count();
591 if ( icount ) { 591 if ( icount ) {
592 emit beamIncidenceList( delSel ); 592 emit beamIncidenceList( delSel );
593 return; 593 return;
594 QString fn ; 594 QString fn ;
595 fn = QDir::homeDirPath()+"/kopitempbeamfile.vcs"; 595 fn = QDir::homeDirPath()+"/kopitempbeamfile.vcs";
596 QString mes; 596 QString mes;
597 bool createbup = true; 597 bool createbup = true;
598 if ( createbup ) { 598 if ( createbup ) {
599 QString description = "\n"; 599 QString description = "\n";
600 CalendarLocal* cal = new CalendarLocal(); 600 CalendarLocal* cal = new CalendarLocal();
601 cal->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); 601 cal->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId);
602 Incidence *incidence = delSel.first(); 602 Incidence *incidence = delSel.first();
603 while ( incidence ) { 603 while ( incidence ) {
604 Incidence *in = incidence->clone(); 604 Incidence *in = incidence->clone();
605 description += in->summary() + "\n"; 605 description += in->summary() + "\n";
606 cal->addIncidence( in ); 606 cal->addIncidence( in );
607 incidence = delSel.next(); 607 incidence = delSel.next();
608 } 608 }
609 FileStorage storage( cal, fn, new VCalFormat ); 609 FileStorage storage( cal, fn, new VCalFormat );
610 storage.save(); 610 storage.save();
611 delete cal; 611 delete cal;
612 mes = i18n("KO/Pi: Ready for beaming"); 612 mes = i18n("KO/Pi: Ready for beaming");
613 topLevelWidget()->setCaption(mes); 613 topLevelWidget()->setCaption(mes);
614 614
615#ifndef DESKTOP_VERSION 615#ifndef DESKTOP_VERSION
616 Ir *ir = new Ir( this ); 616 Ir *ir = new Ir( this );
617 connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); 617 connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) );
618 ir->send( fn, description, "text/x-vCalendar" ); 618 ir->send( fn, description, "text/x-vCalendar" );
619#endif 619#endif
620 } 620 }
621 } 621 }
622} 622}
623void KOListView::beamDone( Ir *ir ) 623void KOListView::beamDone( Ir *ir )
624{ 624{
625#ifndef DESKTOP_VERSION 625#ifndef DESKTOP_VERSION
626 delete ir; 626 delete ir;
627#endif 627#endif
628 topLevelWidget()->setCaption(i18n("KO/Pi:Beaming done")); 628 topLevelWidget()->setCaption(i18n("KO/Pi:Beaming done"));
629} 629}
630 630
631void KOListView::saveDescriptionToFile() 631void KOListView::saveDescriptionToFile()
632{ 632{
633 633
634 int result = QMessageBox::warning( this, i18n("KO/Pi: Information!"), 634 int result = QMessageBox::warning( this, i18n("KO/Pi: Information!"),
635 i18n("This saves the text/details of selected\nJournals and Events/Todos\nto a text file."), 635 i18n("This saves the text/details of selected\nJournals and Events/Todos\nto a text file."),
636 i18n("Continue"), i18n("Cancel"), 0, 636 i18n("Continue"), i18n("Cancel"), 0,
637 0, 1 ); 637 0, 1 );
638 if ( result != 0 ) { 638 if ( result != 0 ) {
639 return; 639 return;
640 } 640 }
641 QPtrList<Incidence> delSel = getSelectedIncidences() ; 641 QPtrList<Incidence> delSel = getSelectedIncidences() ;
642 int icount = delSel.count(); 642 int icount = delSel.count();
643 if ( icount ) { 643 if ( icount ) {
644 QString fn = KOPrefs::instance()->mLastSaveFile; 644 QString fn = KOPrefs::instance()->mLastSaveFile;
645 fn = KFileDialog::getSaveFileName( fn, i18n("Save filename"), this ); 645 fn = KFileDialog::getSaveFileName( fn, i18n("Save filename"), this );
646 646
647 if ( fn == "" ) 647 if ( fn == "" )
648 return; 648 return;
649 QFileInfo info; 649 QFileInfo info;
650 info.setFile( fn ); 650 info.setFile( fn );
651 QString mes; 651 QString mes;
652 bool createbup = true; 652 bool createbup = true;
653 if ( info. exists() ) { 653 if ( info. exists() ) {
654 mes = i18n("File already exists!\nOld file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); 654 mes = i18n("File already exists!\nOld file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) );
655 int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, 655 int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes,
656 i18n("Overwrite!"), i18n("Cancel"), 0, 656 i18n("Overwrite!"), i18n("Cancel"), 0,
657 0, 1 ); 657 0, 1 );
658 if ( result != 0 ) { 658 if ( result != 0 ) {
659 createbup = false; 659 createbup = false;
660 } 660 }
661 } 661 }
662 if ( createbup ) { 662 if ( createbup ) {
663 QString text = i18n("KO/Pi Description/Journal save file.\nSave date: ") + 663 QString text = i18n("KO/Pi Description/Journal save file.\nSave date: ") +
664 KGlobal::locale()->formatDateTime(QDateTime::currentDateTime(), false); 664 KGlobal::locale()->formatDateTime(QDateTime::currentDateTime(), false);
665 Incidence *incidence = delSel.first(); 665 Incidence *incidence = delSel.first();
666 icount = 0; 666 icount = 0;
667 while ( incidence ) { 667 while ( incidence ) {
668 if ( incidence->typeID() == journalID ) { 668 if ( incidence->typeID() == journalID ) {
669 text += "\n************************************\n"; 669 text += "\n************************************\n";
670 text += i18n("Journal from: ") +incidence->dtStartDateStr( false ); 670 if ( !incidence->summary().isEmpty() )
671 text += i18n("Journal: %1 from ").arg( incidence->summary() ) +incidence->dtStartDateStr( false );
672 else
673 text += i18n("Journal from: ") +incidence->dtStartDateStr( false );
674 if ( !incidence->location().isEmpty() )
675 text +="\n(" + i18n("Location: ") + incidence->location()+ ")";
671 text +="\n" + i18n("Last modified: ") +KGlobal::locale()->formatDateTime(incidence->lastModified(), false); 676 text +="\n" + i18n("Last modified: ") +KGlobal::locale()->formatDateTime(incidence->lastModified(), false);
672 text +="\n" + i18n("Description: ") + "\n"+ incidence->description(); 677 text +="\n" + i18n("Description: ") + "\n"+ incidence->description();
673 ++icount; 678 ++icount;
674 679
675 } else { 680 } else {
676 if ( !incidence->description().isEmpty() ) { 681 if ( !incidence->description().isEmpty() ) {
677 text += "\n************************************\n"; 682 text += "\n************************************\n";
678 if ( incidence->typeID() == todoID ) 683 if ( incidence->typeID() == todoID )
679 text += i18n("To-Do: "); 684 text += i18n("To-Do: ");
680 text += incidence->summary(); 685 text += incidence->summary();
686 if ( !incidence->location().isEmpty() )
687 text +="\n(" + i18n("Location: ") + incidence->location()+ ")";
681 if ( incidence->hasStartDate() ) 688 if ( incidence->hasStartDate() )
682 text +="\n"+ i18n("Start Date: ") + incidence->dtStartStr( false ); 689 text +="\n"+ i18n("Start Date: ") + incidence->dtStartStr( false );
683 text +="\n"+ i18n("Last modified: ") +KGlobal::locale()->formatDateTime(incidence->lastModified(), false); 690 text +="\n"+ i18n("Last modified: ") +KGlobal::locale()->formatDateTime(incidence->lastModified(), false);
684 if ( !incidence->location().isEmpty() )
685 text += "\n" +i18n("Location: ") + incidence->location();
686 text += "\n" + i18n("Description: ") + "\n" + incidence->description(); 691 text += "\n" + i18n("Description: ") + "\n" + incidence->description();
687 ++icount; 692 ++icount;
688 693
689 } 694 }
690 } 695 }
691 incidence = delSel.next(); 696 incidence = delSel.next();
692 } 697 }
693 QFile file( fn ); 698 QFile file( fn );
694 if (!file.open( IO_WriteOnly ) ) { 699 if (!file.open( IO_WriteOnly ) ) {
695 topLevelWidget()->setCaption(i18n("File open error - nothing saved!") ); 700 topLevelWidget()->setCaption(i18n("File open error - nothing saved!") );
696 return; 701 return;
697 } 702 }
698 QTextStream ts( &file ); 703 QTextStream ts( &file );
699 ts << text; 704 ts << text;
700 file.close(); 705 file.close();
701 //qDebug("%s ", text.latin1()); 706 //qDebug("%s ", text.latin1());
702 mes = i18n("KO/Pi:Saved %1 descriptions/journals").arg(icount ); 707 mes = i18n("KO/Pi:Saved %1 descriptions/journals").arg(icount );
703 KOPrefs::instance()->mLastSaveFile = fn; 708 KOPrefs::instance()->mLastSaveFile = fn;
704 topLevelWidget()->setCaption(mes); 709 topLevelWidget()->setCaption(mes);
705 } 710 }
706 } 711 }
707} 712}
708void KOListView::saveToFileVCS() 713void KOListView::saveToFileVCS()
709{ 714{
710 writeToFile( false ); 715 writeToFile( false );
711} 716}
712void KOListView::saveToFile() 717void KOListView::saveToFile()
713{ 718{
714 writeToFile( true ); 719 writeToFile( true );
715} 720}
716QPtrList<Incidence> KOListView::getSelectedIncidences( bool includeEvents, bool includeTodos, bool includeJournals, bool onlyDueTodos ) 721QPtrList<Incidence> KOListView::getSelectedIncidences( bool includeEvents, bool includeTodos, bool includeJournals, bool onlyDueTodos )
717{ 722{
718 QPtrList<Incidence> delSel ; 723 QPtrList<Incidence> delSel ;
719 bool addSubTodos = false; 724 bool addSubTodos = false;
720 bool askSubTodos = true; 725 bool askSubTodos = true;
721 QListViewItem *item = mListView->firstChild (); 726 QListViewItem *item = mListView->firstChild ();
722 while ( item ) { 727 while ( item ) {
723 if ( item->isSelected() ) { 728 if ( item->isSelected() ) {
724 Incidence* inc = ((KOListViewItem *)item)->data(); 729 Incidence* inc = ((KOListViewItem *)item)->data();
725 if ( ( addSubTodos && delSel.findRef( inc ) == -1) || !addSubTodos ) { 730 if ( ( addSubTodos && delSel.findRef( inc ) == -1) || !addSubTodos ) {
726 if ( (inc->typeID() == todoID && includeTodos) || 731 if ( (inc->typeID() == todoID && includeTodos) ||
727 (inc->typeID() == eventID && includeEvents) || 732 (inc->typeID() == eventID && includeEvents) ||
728 (inc->typeID() == journalID && includeJournals) ) { 733 (inc->typeID() == journalID && includeJournals) ) {
729 if ( inc->typeID() == todoID && onlyDueTodos ) { 734 if ( inc->typeID() == todoID && onlyDueTodos ) {
730 if ( ((Todo*)inc)->hasDueDate() ) 735 if ( ((Todo*)inc)->hasDueDate() )
731 delSel.append( inc ); 736 delSel.append( inc );
732 } else 737 } else
733 delSel.append( inc ); 738 delSel.append( inc );
734 739
735 } 740 }
736 } 741 }
737 if ( inc->typeID() == todoID ) { 742 if ( inc->typeID() == todoID ) {
738 Todo * todo = (Todo*) inc; 743 Todo * todo = (Todo*) inc;
739 if ( todo->relations().count() ) { 744 if ( todo->relations().count() ) {
740 if ( askSubTodos ) { 745 if ( askSubTodos ) {
741 int result = KMessageBox::warningYesNoCancel(this, 746 int result = KMessageBox::warningYesNoCancel(this,
742 i18n("One (or more) selected\ntodo has subtodos!\nDo you want to select\nall subtodos of all\nselected todos as well?"), 747 i18n("One (or more) selected\ntodo has subtodos!\nDo you want to select\nall subtodos of all\nselected todos as well?"),
743 i18n("Todo has subtodos"), 748 i18n("Todo has subtodos"),
744 i18n("Yes"), 749 i18n("Yes"),
745 i18n("No")); 750 i18n("No"));
746 if ( result == KMessageBox::Cancel ) { 751 if ( result == KMessageBox::Cancel ) {
747 delSel.clear(); 752 delSel.clear();
748 return delSel; 753 return delSel;
749 } 754 }
750 if (result == KMessageBox::Yes) 755 if (result == KMessageBox::Yes)
751 addSubTodos = true; 756 addSubTodos = true;
752 askSubTodos = false; 757 askSubTodos = false;
753 } 758 }
754 if ( addSubTodos ) { 759 if ( addSubTodos ) {
755 inc->addRelationsToList( &delSel ); 760 inc->addRelationsToList( &delSel );
756 } 761 }
757 } 762 }
758 } 763 }
759 } 764 }
760 item = item->nextSibling(); 765 item = item->nextSibling();
761 } 766 }
762 return delSel; 767 return delSel;
763} 768}
764 769
765void KOListView::writeToFile( bool iCal ) 770void KOListView::writeToFile( bool iCal )
766{ 771{
767 QPtrList<Incidence> delSel = getSelectedIncidences(); // all inc allowed; 772 QPtrList<Incidence> delSel = getSelectedIncidences(); // all inc allowed;
768 if ( !iCal ) { 773 if ( !iCal ) {
769 bool journal = false; 774 bool journal = false;
770 Incidence *incidence = delSel.first(); 775 Incidence *incidence = delSel.first();
771 while ( incidence ) { 776 while ( incidence ) {
772 if ( incidence->typeID() == journalID ) { 777 if ( incidence->typeID() == journalID ) {
773 journal = true; 778 journal = true;
774 break; 779 break;
775 } 780 }
776 incidence = delSel.next(); 781 incidence = delSel.next();
777 } 782 }
778 if ( journal ) { 783 if ( journal ) {
779 int result = KMessageBox::warningContinueCancel(this, 784 int result = KMessageBox::warningContinueCancel(this,
780 i18n("The journal entries can not be\nexported to a vCalendar file."), 785 i18n("The journal entries can not be\nexported to a vCalendar file."),
781 i18n("Data Loss Warning"),i18n("Proceed"),i18n("Cancel"), 786 i18n("Data Loss Warning"),i18n("Proceed"),i18n("Cancel"),
782 true); 787 true);
783 if (result != KMessageBox::Continue) return; 788 if (result != KMessageBox::Continue) return;
784 } 789 }
785 } 790 }
786 if ( delSel.count() ) { 791 if ( delSel.count() ) {
787 QString fn = KOPrefs::instance()->mLastSaveFile; 792 QString fn = KOPrefs::instance()->mLastSaveFile;
788 QString extension; 793 QString extension;
789 if ( iCal ) { 794 if ( iCal ) {
790 if ( fn.right( 4 ).lower() == ".vcs" ) { 795 if ( fn.right( 4 ).lower() == ".vcs" ) {
791 fn = fn.left( fn.length() -3) + "ics"; 796 fn = fn.left( fn.length() -3) + "ics";
792 } 797 }
793 } else { 798 } else {
794 if ( fn.right( 4 ).lower() == ".ics" ) { 799 if ( fn.right( 4 ).lower() == ".ics" ) {
795 fn = fn.left( fn.length() -3) + "vcs"; 800 fn = fn.left( fn.length() -3) + "vcs";
796 } 801 }
797 } 802 }
798 fn = KFileDialog::getSaveFileName( fn, i18n("Save filename"), this ); 803 fn = KFileDialog::getSaveFileName( fn, i18n("Save filename"), this );
799 804
800 if ( fn == "" ) 805 if ( fn == "" )
801 return; 806 return;
802 QFileInfo info; 807 QFileInfo info;
803 info.setFile( fn ); 808 info.setFile( fn );
804 QString mes; 809 QString mes;
805 bool createbup = true; 810 bool createbup = true;
806 if ( info. exists() ) { 811 if ( info. exists() ) {
807 mes = i18n("File already exists!\nOld file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); 812 mes = i18n("File already exists!\nOld file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) );
808 int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, 813 int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes,
809 i18n("Overwrite!"), i18n("Cancel"), 0, 814 i18n("Overwrite!"), i18n("Cancel"), 0,
810 0, 1 ); 815 0, 1 );
811 if ( result != 0 ) { 816 if ( result != 0 ) {
812 createbup = false; 817 createbup = false;
813 } 818 }
814 } 819 }
815 if ( createbup ) { 820 if ( createbup ) {
816 CalendarLocal cal; 821 CalendarLocal cal;
817 cal.setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); 822 cal.setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId);
818 Incidence *incidence = delSel.first(); 823 Incidence *incidence = delSel.first();
819 while ( incidence ) { 824 while ( incidence ) {
820 cal.addIncidence( incidence->clone() ); 825 cal.addIncidence( incidence->clone() );
821 incidence = delSel.next(); 826 incidence = delSel.next();
822 } 827 }
823 if ( iCal ) { 828 if ( iCal ) {
824 ICalFormat format; 829 ICalFormat format;
825 format.save( &cal, fn ); 830 format.save( &cal, fn );
826 } else { 831 } else {
827 832
828 VCalFormat format; 833 VCalFormat format;
829 format.save( &cal, fn ); 834 format.save( &cal, fn );
830 } 835 }
831 mes = i18n("KO/Pi:Saved %1").arg(fn ); 836 mes = i18n("KO/Pi:Saved %1").arg(fn );
832 KOPrefs::instance()->mLastSaveFile = fn; 837 KOPrefs::instance()->mLastSaveFile = fn;
833 topLevelWidget()->setCaption(mes); 838 topLevelWidget()->setCaption(mes);
834 } 839 }
835 } 840 }
836 QTimer::singleShot( 1, this, SLOT ( resetFocus() ) ); 841 QTimer::singleShot( 1, this, SLOT ( resetFocus() ) );
837} 842}
838void KOListView::hideAll() 843void KOListView::hideAll()
839{ 844{
840 QPtrList<QListViewItem> delSel ; 845 QPtrList<QListViewItem> delSel ;
841 QListViewItem *item = mListView->firstChild (); 846 QListViewItem *item = mListView->firstChild ();
842 while ( item ) { 847 while ( item ) {
843 if ( item->isSelected() ) { 848 if ( item->isSelected() ) {
844 delSel.append(item); 849 delSel.append(item);
845 } 850 }
846 item = item->nextSibling(); 851 item = item->nextSibling();
847 } 852 }
848 item = delSel.first() ; 853 item = delSel.first() ;
849 while ( item ) { 854 while ( item ) {
850 QListViewItem * del = item; 855 QListViewItem * del = item;
851 item = delSel.next(); 856 item = delSel.next();
852 delete del; 857 delete del;
853 } 858 }
854} 859}
855void KOListView::printList() 860void KOListView::printList()
856{ 861{
857 mListView->printList(); 862 mListView->printList();
858} 863}
859void KOListView::deleteAll() 864void KOListView::deleteAll()
860{ 865{
861 QPtrList<Incidence> delSel = getSelectedIncidences(); // all inc allowed;; 866 QPtrList<Incidence> delSel = getSelectedIncidences(); // all inc allowed;;
862 if ( delSel.count() ) { 867 if ( delSel.count() ) {
863 int icount = delSel.count(); 868 int icount = delSel.count();
864 Incidence *incidence = delSel.first(); 869 Incidence *incidence = delSel.first();
865 Incidence *toDelete; 870 Incidence *toDelete;
866 KOPrefs *p = KOPrefs::instance(); 871 KOPrefs *p = KOPrefs::instance();
867 bool confirm = p->mConfirm; 872 bool confirm = p->mConfirm;
868 QString mess; 873 QString mess;
869 mess = mess.sprintf( i18n("You have %d item(s) selected.\n"), icount ); 874 mess = mess.sprintf( i18n("You have %d item(s) selected.\n"), icount );
870 if ( KMessageBox::Continue == KMessageBox::warningContinueCancel(this, mess + i18n("All selected items will be\npermanently deleted.\n(Deleting items will take\nsome time on a PDA)\n"), i18n("KO/Pi Confirmation"),i18n("Delete")) ) { 875 if ( KMessageBox::Continue == KMessageBox::warningContinueCancel(this, mess + i18n("All selected items will be\npermanently deleted.\n(Deleting items will take\nsome time on a PDA)\n"), i18n("KO/Pi Confirmation"),i18n("Delete")) ) {
871 p->mConfirm = false; 876 p->mConfirm = false;
872 int delCounter = 0; 877 int delCounter = 0;
873 QDialog dia ( this, "p-dialog", true ); 878 QDialog dia ( this, "p-dialog", true );
874 QLabel lab (i18n("Close dialog to abort deletion!"), &dia ); 879 QLabel lab (i18n("Close dialog to abort deletion!"), &dia );
875 QVBoxLayout lay( &dia ); 880 QVBoxLayout lay( &dia );
876 lay.setMargin(7); 881 lay.setMargin(7);
877 lay.setSpacing(7); 882 lay.setSpacing(7);
878 lay.addWidget( &lab); 883 lay.addWidget( &lab);
879 QProgressBar bar( icount, &dia ); 884 QProgressBar bar( icount, &dia );
880 lay.addWidget( &bar); 885 lay.addWidget( &bar);
881 int w = 220; 886 int w = 220;
882 int h = 50; 887 int h = 50;
883 int dw = QApplication::desktop()->width(); 888 int dw = QApplication::desktop()->width();
884 int dh = QApplication::desktop()->height(); 889 int dh = QApplication::desktop()->height();
885 dia.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); 890 dia.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h );
886 //dia.resize( 240,50 ); 891 //dia.resize( 240,50 );
887 dia.show(); 892 dia.show();
888 893
889 while ( incidence ) { 894 while ( incidence ) {
890 bar.setProgress( delCounter ); 895 bar.setProgress( delCounter );
891 mess = mess.sprintf( i18n("Deleting item %d ..."), ++delCounter ); 896 mess = mess.sprintf( i18n("Deleting item %d ..."), ++delCounter );
892 dia.setCaption( mess ); 897 dia.setCaption( mess );
893 qApp->processEvents(); 898 qApp->processEvents();
894 toDelete = (incidence); 899 toDelete = (incidence);
895 incidence = delSel.next(); 900 incidence = delSel.next();
896 emit deleteIncidenceSignal(toDelete ); 901 emit deleteIncidenceSignal(toDelete );
897 if ( dia.result() != 0 ) 902 if ( dia.result() != 0 )
898 break; 903 break;
899 904
900 } 905 }
901 mess = mess.sprintf( i18n("%d items remaining in list."), count() ); 906 mess = mess.sprintf( i18n("%d items remaining in list."), count() );
902 topLevelWidget ()->setCaption( mess ); 907 topLevelWidget ()->setCaption( mess );
903 p->mConfirm = confirm; 908 p->mConfirm = confirm;
904 } 909 }
905 } 910 }
906 911
907 912
908} 913}
909int KOListView::maxDatesHint() 914int KOListView::maxDatesHint()
910{ 915{
911 return 0; 916 return 0;
912} 917}
913 918
914int KOListView::currentDateCount() 919int KOListView::currentDateCount()
915{ 920{
916 return 0; 921 return 0;
917} 922}
918 923
919QPtrList<Incidence> KOListView::selectedIncidences() 924QPtrList<Incidence> KOListView::selectedIncidences()
920{ 925{
921 QPtrList<Incidence> eventList; 926 QPtrList<Incidence> eventList;
922 QListViewItem *item = mListView->firstChild (); 927 QListViewItem *item = mListView->firstChild ();
923 while ( item ) { 928 while ( item ) {
924 if ( item->isSelected() ) { 929 if ( item->isSelected() ) {
925 eventList.append(((KOListViewItem *)item)->data()); 930 eventList.append(((KOListViewItem *)item)->data());
926 } 931 }
927 932
928 item = item->nextSibling(); 933 item = item->nextSibling();
929 } 934 }
930 935
931 // // QListViewItem *item = mListView->selectedItem(); 936 // // QListViewItem *item = mListView->selectedItem();
932 //if (item) eventList.append(((KOListViewItem *)item)->data()); 937 //if (item) eventList.append(((KOListViewItem *)item)->data());
933 938
934 return eventList; 939 return eventList;
935} 940}
936 941
937DateList KOListView::selectedDates() 942DateList KOListView::selectedDates()
938{ 943{
939 DateList eventList; 944 DateList eventList;
940 return eventList; 945 return eventList;
941} 946}
942 947
943void KOListView::showDates(bool show) 948void KOListView::showDates(bool show)
944{ 949{
945 // Shouldn't we set it to a value greater 0? When showDates is called with 950 // Shouldn't we set it to a value greater 0? When showDates is called with
946 // show == true at first, then the columnwidths are set to zero. 951 // show == true at first, then the columnwidths are set to zero.
947 static int oldColWidth1 = 0; 952 static int oldColWidth1 = 0;
948 static int oldColWidth3 = 0; 953 static int oldColWidth3 = 0;
949 954
950 if (!show) { 955 if (!show) {
951 oldColWidth1 = mListView->columnWidth(1); 956 oldColWidth1 = mListView->columnWidth(1);
952 oldColWidth3 = mListView->columnWidth(3); 957 oldColWidth3 = mListView->columnWidth(3);
953 mListView->setColumnWidth(1, 0); 958 mListView->setColumnWidth(1, 0);
954 mListView->setColumnWidth(3, 0); 959 mListView->setColumnWidth(3, 0);
955 } else { 960 } else {
956 mListView->setColumnWidth(1, oldColWidth1); 961 mListView->setColumnWidth(1, oldColWidth1);
957 mListView->setColumnWidth(3, oldColWidth3); 962 mListView->setColumnWidth(3, oldColWidth3);
958 } 963 }
959 mListView->repaint(); 964 mListView->repaint();
960} 965}
961 966
962void KOListView::printPreview(CalPrinter *calPrinter, const QDate &fd, 967void KOListView::printPreview(CalPrinter *calPrinter, const QDate &fd,
963 const QDate &td) 968 const QDate &td)
964{ 969{
965#ifndef KORG_NOPRINTER 970#ifndef KORG_NOPRINTER
966 calPrinter->preview(CalPrinter::Day, fd, td); 971 calPrinter->preview(CalPrinter::Day, fd, td);
967#endif 972#endif
968} 973}
969 974
970void KOListView::showDates() 975void KOListView::showDates()
971{ 976{
972 showDates(true); 977 showDates(true);
973} 978}
974 979
975void KOListView::hideDates() 980void KOListView::hideDates()
976{ 981{
977 showDates(false); 982 showDates(false);
978} 983}
979 984
980void KOListView::resetFocus() 985void KOListView::resetFocus()
981{ 986{
982 topLevelWidget()->setActiveWindow(); 987 topLevelWidget()->setActiveWindow();
983 topLevelWidget()->raise(); 988 topLevelWidget()->raise();
984 mListView->setFocus(); 989 mListView->setFocus();
985} 990}
986void KOListView::updateView() 991void KOListView::updateView()
987{ 992{
988 mListView->setFocus(); 993 mListView->setFocus();
989 if ( mListView->firstChild () ) 994 if ( mListView->firstChild () )
990 mListView->setCurrentItem( mListView->firstChild () ); 995 mListView->setCurrentItem( mListView->firstChild () );
991} 996}
992void KOListView::updateConfig() 997void KOListView::updateConfig()
993{ 998{
994 999
995 mListView->setFont ( KOPrefs::instance()->mListViewFont ); 1000 mListView->setFont ( KOPrefs::instance()->mListViewFont );
996 updateView(); 1001 updateView();
997 1002
998} 1003}
999void KOListView::setStartDate(const QDate &start) 1004void KOListView::setStartDate(const QDate &start)
1000{ 1005{
1001 mStartDate = start; 1006 mStartDate = start;
1002} 1007}
1003 1008
1004void KOListView::showDates(const QDate &start, const QDate &end) 1009void KOListView::showDates(const QDate &start, const QDate &end)
1005{ 1010{
1006 clear(); 1011 clear();
1007 mStartDate = start; 1012 mStartDate = start;
1008 QDate date = start; 1013 QDate date = start;
1009 QPtrList<Journal> j_list; 1014 QPtrList<Journal> j_list;
1010 while( date <= end ) { 1015 while( date <= end ) {
1011 addEvents(calendar()->events(date)); 1016 addEvents(calendar()->events(date));
1012 addTodos(calendar()->todos(date)); 1017 addTodos(calendar()->todos(date));
1013 Journal* jo = calendar()->journal(date); 1018 Journal* jo = calendar()->journal(date);
1014 if ( jo ) 1019 if ( jo )
1015 j_list.append( jo ); 1020 j_list.append( jo );
1016 date = date.addDays( 1 ); 1021 date = date.addDays( 1 );
1017 } 1022 }
1018 addJournals(j_list); 1023 addJournals(j_list);
1019 emit incidenceSelected( 0 ); 1024 emit incidenceSelected( 0 );
1020 updateView(); 1025 updateView();
1021 1026
1022} 1027}
1023 1028
1024void KOListView::addEvents(QPtrList<Event> eventList) 1029void KOListView::addEvents(QPtrList<Event> eventList)
1025{ 1030{
1026 1031
1027 Event *ev; 1032 Event *ev;
1028 for(ev = eventList.first(); ev; ev = eventList.next()) { 1033 for(ev = eventList.first(); ev; ev = eventList.next()) {
1029 addIncidence(ev); 1034 addIncidence(ev);
1030 } 1035 }
1031 if ( !mListView->currentItem() ){ 1036 if ( !mListView->currentItem() ){
1032 updateView(); 1037 updateView();
1033 } 1038 }
1034} 1039}
1035 1040
1036void KOListView::addTodos(QPtrList<Todo> eventList) 1041void KOListView::addTodos(QPtrList<Todo> eventList)
1037{ 1042{
1038 Todo *ev; 1043 Todo *ev;
1039 for(ev = eventList.first(); ev; ev = eventList.next()) { 1044 for(ev = eventList.first(); ev; ev = eventList.next()) {
1040 addIncidence(ev); 1045 addIncidence(ev);
1041 } 1046 }
1042 if ( !mListView->currentItem() ){ 1047 if ( !mListView->currentItem() ){
1043 updateView(); 1048 updateView();
1044 } 1049 }
1045} 1050}
1046void KOListView::addJournals(QPtrList<Journal> eventList) 1051void KOListView::addJournals(QPtrList<Journal> eventList)
1047{ 1052{
1048 Journal *ev; 1053 Journal *ev;
1049 for(ev = eventList.first(); ev; ev = eventList.next()) { 1054 for(ev = eventList.first(); ev; ev = eventList.next()) {
1050 addIncidence(ev); 1055 addIncidence(ev);
1051 } 1056 }
1052 if ( !mListView->currentItem() ){ 1057 if ( !mListView->currentItem() ){
1053 updateView(); 1058 updateView();
1054 } 1059 }
1055} 1060}
1056 1061
1057void KOListView::showCompletedTodos() 1062void KOListView::showCompletedTodos()
1058{ 1063{
1059 mForceShowCompletedTodos = true; 1064 mForceShowCompletedTodos = true;
1060} 1065}
1061void KOListView::addIncidence(Incidence *incidence) 1066void KOListView::addIncidence(Incidence *incidence)
1062{ 1067{
1063 if ( mUidDict.find( incidence->uid() ) ) return; 1068 if ( mUidDict.find( incidence->uid() ) ) return;
1064 1069
1065 // mListView->setFont ( KOPrefs::instance()->mListViewFont ); 1070 // mListView->setFont ( KOPrefs::instance()->mListViewFont );
1066 if ( incidence->typeID() == todoID ) { 1071 if ( incidence->typeID() == todoID ) {
1067 if ( ! mForceShowCompletedTodos ) { 1072 if ( ! mForceShowCompletedTodos ) {
1068 if ( !KOPrefs::instance()->mShowCompletedTodo && ((Todo*)incidence)->isCompleted() ) 1073 if ( !KOPrefs::instance()->mShowCompletedTodo && ((Todo*)incidence)->isCompleted() )
1069 return; 1074 return;
1070 } 1075 }
1071 } 1076 }
1072 mUidDict.insert( incidence->uid(), incidence ); 1077 mUidDict.insert( incidence->uid(), incidence );
1073 KOListViewItem *item = new KOListViewItem( incidence, mListView ); 1078 KOListViewItem *item = new KOListViewItem( incidence, mListView );
1074 ListItemVisitor v(item, mStartDate ); 1079 ListItemVisitor v(item, mStartDate );
1075 if (incidence->accept(v)) { 1080 if (incidence->accept(v)) {
1076 return; 1081 return;
1077 } 1082 }
1078 else delete item; 1083 else delete item;
1079} 1084}
1080 1085
1081void KOListView::showEvents(QPtrList<Event> eventList) 1086void KOListView::showEvents(QPtrList<Event> eventList)
1082{ 1087{
1083 clear(); 1088 clear();
1084 1089
1085 addEvents(eventList); 1090 addEvents(eventList);
1086 1091
1087 // After new creation of list view no events are selected. 1092 // After new creation of list view no events are selected.
1088 emit incidenceSelected( 0 ); 1093 emit incidenceSelected( 0 );
1089} 1094}
1090int KOListView::count() 1095int KOListView::count()
1091{ 1096{
1092 return mListView->childCount(); 1097 return mListView->childCount();
1093} 1098}
1094 1099
1095void KOListView::changeEventDisplay(Event *event, int action) 1100void KOListView::changeEventDisplay(Event *event, int action)
1096{ 1101{
1097 KOListViewItem *item; 1102 KOListViewItem *item;
1098 1103
1099 switch(action) { 1104 switch(action) {
1100 case KOGlobals::EVENTADDED: 1105 case KOGlobals::EVENTADDED:
1101 addIncidence( event ); 1106 addIncidence( event );
1102 break; 1107 break;
1103 case KOGlobals::EVENTEDITED: 1108 case KOGlobals::EVENTEDITED:
1104 item = getItemForEvent(event); 1109 item = getItemForEvent(event);
1105 if (item) { 1110 if (item) {
1106 mUidDict.remove( event->uid() ); 1111 mUidDict.remove( event->uid() );
1107 delete item; 1112 delete item;
1108 addIncidence( event ); 1113 addIncidence( event );
1109 } 1114 }
1110 break; 1115 break;
1111 case KOGlobals::EVENTDELETED: 1116 case KOGlobals::EVENTDELETED:
1112 item = getItemForEvent(event); 1117 item = getItemForEvent(event);
1113 if (item) { 1118 if (item) {
1114 mUidDict.remove( event->uid() ); 1119 mUidDict.remove( event->uid() );
1115 delete item; 1120 delete item;
1116 } 1121 }
1117 break; 1122 break;
1118 default: 1123 default:
1119 ; 1124 ;
1120 } 1125 }
1121} 1126}
1122 1127
1123KOListViewItem *KOListView::getItemForEvent(Incidence *event) 1128KOListViewItem *KOListView::getItemForEvent(Incidence *event)
1124{ 1129{
1125 KOListViewItem *item = (KOListViewItem *)mListView->firstChild(); 1130 KOListViewItem *item = (KOListViewItem *)mListView->firstChild();
1126 while (item) { 1131 while (item) {
1127 if (item->data() == event) return item; 1132 if (item->data() == event) return item;
1128 item = (KOListViewItem *)item->nextSibling(); 1133 item = (KOListViewItem *)item->nextSibling();
1129 } 1134 }
1130 return 0; 1135 return 0;
1131} 1136}
1132 1137
1133void KOListView::defaultItemAction(QListViewItem *i) 1138void KOListView::defaultItemAction(QListViewItem *i)
1134{ 1139{
1135 KOListViewItem *item = static_cast<KOListViewItem *>( i ); 1140 KOListViewItem *item = static_cast<KOListViewItem *>( i );
1136 if ( item ) defaultAction( item->data() ); 1141 if ( item ) defaultAction( item->data() );
1137 1142
1138} 1143}
1139 1144
1140void KOListView::popupMenu(QListViewItem *item,const QPoint &,int) 1145void KOListView::popupMenu(QListViewItem *item,const QPoint &,int)
1141{ 1146{
1142 mActiveItem = (KOListViewItem *)item; 1147 mActiveItem = (KOListViewItem *)item;
1143 if (mActiveItem) { 1148 if (mActiveItem) {
1144 Incidence *incidence = mActiveItem->data(); 1149 Incidence *incidence = mActiveItem->data();
1145 mPopupMenu->enableDefault( !mListView->hasMultiSelection( item ) ); 1150 mPopupMenu->enableDefault( !mListView->hasMultiSelection( item ) );
1146 mPopupMenu->showIncidencePopup(incidence); 1151 mPopupMenu->showIncidencePopup(incidence);
1147 1152
1148 /* 1153 /*
1149 if ( incidence && incidence->type() == "Event" ) { 1154 if ( incidence && incidence->type() == "Event" ) {
1150 Event *event = static_cast<Event *>( incidence ); 1155 Event *event = static_cast<Event *>( incidence );
1151 mPopupMenu->showEventPopup(event); 1156 mPopupMenu->showEventPopup(event);
1152 } 1157 }
1153 */ 1158 */
1154 } 1159 }
1155} 1160}
1156 1161
1157void KOListView::readSettings(KConfig *config, QString setting) 1162void KOListView::readSettings(KConfig *config, QString setting)
1158{ 1163{
1159 // qDebug("KOListView::readSettings "); 1164 // qDebug("KOListView::readSettings ");
1160 mListView->restoreLayout(config,setting); 1165 mListView->restoreLayout(config,setting);
1161} 1166}
1162 1167
1163void KOListView::writeSettings(KConfig *config, QString setting) 1168void KOListView::writeSettings(KConfig *config, QString setting)
1164{ 1169{
1165 // qDebug("KOListView::writeSettings "); 1170 // qDebug("KOListView::writeSettings ");
1166 mListView->saveLayout(config, setting); 1171 mListView->saveLayout(config, setting);
1167} 1172}
1168 1173
1169void KOListView::processSelectionChange(QListViewItem *) 1174void KOListView::processSelectionChange(QListViewItem *)
1170{ 1175{
1171 1176
1172 KOListViewItem *item = 1177 KOListViewItem *item =
1173 static_cast<KOListViewItem *>( mListView->currentItem() ); 1178 static_cast<KOListViewItem *>( mListView->currentItem() );
1174 1179
1175 if ( !item ) { 1180 if ( !item ) {
1176 emit incidenceSelected( 0 ); 1181 emit incidenceSelected( 0 );
1177 } else { 1182 } else {
1178 emit incidenceSelected( item->data() ); 1183 emit incidenceSelected( item->data() );
1179 } 1184 }
1180} 1185}
1181 1186
1182void KOListView::clearSelection() 1187void KOListView::clearSelection()
1183{ 1188{
1184 mListView->selectAll( false ); 1189 mListView->selectAll( false );
1185} 1190}
1186void KOListView::allSelection() 1191void KOListView::allSelection()
1187{ 1192{
1188 mListView->selectAll( true ); 1193 mListView->selectAll( true );
1189} 1194}
1190 1195
1191void KOListView::clear() 1196void KOListView::clear()
1192{ 1197{
1193 mListView->clear(); 1198 mListView->clear();
1194 mUidDict.clear(); 1199 mUidDict.clear();
1195} 1200}
1196 1201
1197Incidence* KOListView::currentItem() 1202Incidence* KOListView::currentItem()
1198{ 1203{
1199 if ( mListView->currentItem() ) 1204 if ( mListView->currentItem() )
1200 return ((KOListViewItem*) mListView->currentItem())->data(); 1205 return ((KOListViewItem*) mListView->currentItem())->data();
1201 return 0; 1206 return 0;
1202} 1207}
1203void KOListView::keyPressEvent ( QKeyEvent *e) 1208void KOListView::keyPressEvent ( QKeyEvent *e)
1204{ 1209{
1205 1210
1206 if ( e->key() == Qt::Key_Delete || e->key() == Qt::Key_Backspace ) { 1211 if ( e->key() == Qt::Key_Delete || e->key() == Qt::Key_Backspace ) {
1207 deleteAll(); 1212 deleteAll();
1208 return; 1213 return;
1209 } 1214 }
1210 1215
1211 e->ignore(); 1216 e->ignore();
1212} 1217}
1213void KOListViewListView::keyPressEvent ( QKeyEvent *e) 1218void KOListViewListView::keyPressEvent ( QKeyEvent *e)
1214{ 1219{
1215 1220
1216 switch ( e->key() ) { 1221 switch ( e->key() ) {
1217 case Qt::Key_Down: 1222 case Qt::Key_Down:
1218 if ( e->state() == ShiftButton ) { 1223 if ( e->state() == ShiftButton ) {
1219 QListViewItem* cn = currentItem(); 1224 QListViewItem* cn = currentItem();
1220 if ( !cn ) 1225 if ( !cn )
1221 cn = firstChild(); 1226 cn = firstChild();
1222 if ( !cn ) 1227 if ( !cn )
1223 return; 1228 return;
1224 while ( cn->nextSibling() ) 1229 while ( cn->nextSibling() )
1225 cn = cn->nextSibling(); 1230 cn = cn->nextSibling();
1226 setCurrentItem ( cn ); 1231 setCurrentItem ( cn );
1227 ensureItemVisible ( cn ); 1232 ensureItemVisible ( cn );
1228 1233
1229 e->accept(); 1234 e->accept();
1230 return; 1235 return;
1231 } 1236 }
1232 if ( e->state() == ControlButton ) { 1237 if ( e->state() == ControlButton ) {
1233 int count = childCount (); 1238 int count = childCount ();
1234 int jump = count / 5; 1239 int jump = count / 5;
1235 QListViewItem* cn; 1240 QListViewItem* cn;
1236 cn = currentItem(); 1241 cn = currentItem();
1237 if ( ! cn ) 1242 if ( ! cn )
1238 return; 1243 return;
1239 if ( jump == 0 ) 1244 if ( jump == 0 )
1240 jump = 1; 1245 jump = 1;
1241 while ( jump && cn->nextSibling() ) { 1246 while ( jump && cn->nextSibling() ) {
1242 cn = cn->nextSibling(); 1247 cn = cn->nextSibling();
1243 --jump; 1248 --jump;
1244 } 1249 }
1245 setCurrentItem ( cn ); 1250 setCurrentItem ( cn );
1246 ensureItemVisible ( cn ); 1251 ensureItemVisible ( cn );
1247 1252
1248 } else 1253 } else
1249 QListView::keyPressEvent ( e ) ; 1254 QListView::keyPressEvent ( e ) ;
1250 e->accept(); 1255 e->accept();
1251 break; 1256 break;
1252 1257
1253 case Qt::Key_Up: 1258 case Qt::Key_Up:
1254 if ( e->state() == ShiftButton ) { 1259 if ( e->state() == ShiftButton ) {
1255 QListViewItem* cn = firstChild(); 1260 QListViewItem* cn = firstChild();
1256 if ( cn ) { 1261 if ( cn ) {
1257 setCurrentItem ( cn ); 1262 setCurrentItem ( cn );
1258 ensureItemVisible ( cn ); 1263 ensureItemVisible ( cn );
1259 } 1264 }
1260 e->accept(); 1265 e->accept();
1261 return; 1266 return;
1262 } 1267 }
1263 if ( e->state() == ControlButton ) { 1268 if ( e->state() == ControlButton ) {
1264 int count = childCount (); 1269 int count = childCount ();
1265 int jump = count / 5; 1270 int jump = count / 5;
1266 QListViewItem* cn; 1271 QListViewItem* cn;
1267 cn = currentItem(); 1272 cn = currentItem();
1268 if ( ! cn ) 1273 if ( ! cn )
1269 return; 1274 return;
1270 if ( jump == 0 ) 1275 if ( jump == 0 )
1271 jump = 1; 1276 jump = 1;
1272 while ( jump && cn->itemAbove ()) { 1277 while ( jump && cn->itemAbove ()) {
1273 cn = cn->itemAbove (); 1278 cn = cn->itemAbove ();
1274 --jump; 1279 --jump;
1275 } 1280 }
1276 setCurrentItem ( cn ); 1281 setCurrentItem ( cn );
1277 ensureItemVisible ( cn ); 1282 ensureItemVisible ( cn );
1278 } else 1283 } else
1279 QListView::keyPressEvent ( e ) ; 1284 QListView::keyPressEvent ( e ) ;
1280 e->accept(); 1285 e->accept();
1281 break; 1286 break;
1282 case Qt::Key_I: { 1287 case Qt::Key_I: {
1283 QListViewItem* cn; 1288 QListViewItem* cn;
1284 cn = currentItem(); 1289 cn = currentItem();
1285 if ( cn ) { 1290 if ( cn ) {
1286 KOListViewItem* ci = (KOListViewItem*)( cn ); 1291 KOListViewItem* ci = (KOListViewItem*)( cn );
1287 if ( ci ){ 1292 if ( ci ){
1288 //emit showIncidence( ci->data()); 1293 //emit showIncidence( ci->data());
1289 cn = cn->nextSibling(); 1294 cn = cn->nextSibling();
1290 if ( cn ) { 1295 if ( cn ) {
1291 setCurrentItem ( cn ); 1296 setCurrentItem ( cn );
1292 ensureItemVisible ( cn ); 1297 ensureItemVisible ( cn );
1293 } 1298 }
1294 emit showIncidence( ci->data()); 1299 emit showIncidence( ci->data());
1295 } 1300 }
1296 } 1301 }
1297 e->accept(); 1302 e->accept();
1298 } 1303 }
1299 break; 1304 break;
1300 case Qt::Key_Return: 1305 case Qt::Key_Return:
1301 case Qt::Key_Enter: 1306 case Qt::Key_Enter:
1302 { 1307 {
1303 QListViewItem* cn; 1308 QListViewItem* cn;
1304 cn = currentItem(); 1309 cn = currentItem();
1305 if ( cn ) { 1310 if ( cn ) {
1306 KOListViewItem* ci = (KOListViewItem*)( cn ); 1311 KOListViewItem* ci = (KOListViewItem*)( cn );
1307 if ( ci ){ 1312 if ( ci ){
1308 if ( e->state() == ShiftButton ) 1313 if ( e->state() == ShiftButton )
1309 ci->setSelected( false ); 1314 ci->setSelected( false );
1310 else 1315 else
1311 ci->setSelected( true ); 1316 ci->setSelected( true );
1312 cn = cn->nextSibling(); 1317 cn = cn->nextSibling();
1313 if ( cn ) { 1318 if ( cn ) {
1314 setCurrentItem ( cn ); 1319 setCurrentItem ( cn );
1315 ensureItemVisible ( cn ); 1320 ensureItemVisible ( cn );
1316 } 1321 }
1317 } 1322 }
1318 } 1323 }
1319 e->accept(); 1324 e->accept();
1320 } 1325 }
1321 break; 1326 break;
1322 default: 1327 default:
1323 e->ignore(); 1328 e->ignore();
1324 } 1329 }
1325} 1330}
1326KOListViewListView::KOListViewListView(KOListView * lv ) 1331KOListViewListView::KOListViewListView(KOListView * lv )
1327 : KListView( lv, "kolistlistview", false ) 1332 : KListView( lv, "kolistlistview", false )
1328{ 1333{
1329 mYMousePos = 0; 1334 mYMousePos = 0;
1330 mPopupTimer = new QTimer(this); 1335 mPopupTimer = new QTimer(this);
1331 connect(mPopupTimer , SIGNAL(timeout()), this, SLOT(popupMenu())); 1336 connect(mPopupTimer , SIGNAL(timeout()), this, SLOT(popupMenu()));
1332#ifndef DESKTOP_VERSION 1337#ifndef DESKTOP_VERSION
1333 //QPEApplication::setStylusOperation(viewport(), QPEApplication::RightOnHold ); 1338 //QPEApplication::setStylusOperation(viewport(), QPEApplication::RightOnHold );
1334#endif 1339#endif
1335 setSelectionMode( QListView::Multi ); 1340 setSelectionMode( QListView::Multi );
1336 setMultiSelection( true); 1341 setMultiSelection( true);
1337} 1342}
1338bool KOListViewListView::hasMultiSelection(QListViewItem* item) 1343bool KOListViewListView::hasMultiSelection(QListViewItem* item)
1339{ 1344{
1340 int selCount = 0; 1345 int selCount = 0;
1341 QListViewItem *qitem = firstChild (); 1346 QListViewItem *qitem = firstChild ();
1342 while ( qitem ) { 1347 while ( qitem ) {
1343 if ( qitem->isSelected() && item != qitem ) 1348 if ( qitem->isSelected() && item != qitem )
1344 return true; 1349 return true;
1345 qitem = qitem->nextSibling(); 1350 qitem = qitem->nextSibling();
1346 } 1351 }
1347 return false; 1352 return false;
1348} 1353}
1349void KOListViewListView::contentsMouseDoubleClickEvent(QMouseEvent *e) 1354void KOListViewListView::contentsMouseDoubleClickEvent(QMouseEvent *e)
1350{ 1355{
1351 if (!e) return; 1356 if (!e) return;
1352 QPoint vp = contentsToViewport(e->pos()); 1357 QPoint vp = contentsToViewport(e->pos());
1353 QListViewItem *item = itemAt(vp); 1358 QListViewItem *item = itemAt(vp);
1354 if (!item) { 1359 if (!item) {
1355 emit newEvent(); 1360 emit newEvent();
1356 return; 1361 return;
1357 } 1362 }
1358 KListView::contentsMouseDoubleClickEvent(e); 1363 KListView::contentsMouseDoubleClickEvent(e);
1359} 1364}
1360#if 0 1365#if 0
1361void KOListViewListView::contentsMousePressEvent(QMouseEvent *e) 1366void KOListViewListView::contentsMousePressEvent(QMouseEvent *e)
1362{ 1367{
1363 //qDebug("contentsMousePressEvent++++ "); 1368 //qDebug("contentsMousePressEvent++++ ");
1364 KListView::contentsMousePressEvent( e ); 1369 KListView::contentsMousePressEvent( e );
1365 if ( e->button() == RightButton ) { 1370 if ( e->button() == RightButton ) {
1366 QListViewItem* ci = currentItem(); 1371 QListViewItem* ci = currentItem();
1367 clearSelection () ; 1372 clearSelection () ;
1368 if ( ci ) 1373 if ( ci )
1369 ci->setSelected( true ); 1374 ci->setSelected( true );
1370 } 1375 }
1371} 1376}
1372void KOListViewListView::contentsMouseReleaseEvent(QMouseEvent *e) 1377void KOListViewListView::contentsMouseReleaseEvent(QMouseEvent *e)
1373{ 1378{
1374 KListView::contentsMouseReleaseEvent(e); 1379 KListView::contentsMouseReleaseEvent(e);
1375} 1380}
1376void KOListViewListView::contentsMouseMoveEvent(QMouseEvent *e) 1381void KOListViewListView::contentsMouseMoveEvent(QMouseEvent *e)
1377{ 1382{
1378 KListView::contentsMouseMoveEvent(e); 1383 KListView::contentsMouseMoveEvent(e);
1379} 1384}
1380#endif 1385#endif
1381void KOListViewListView::popupMenu() 1386void KOListViewListView::popupMenu()
1382{ 1387{
1383 mPopupTimer->stop(); 1388 mPopupTimer->stop();
1384 QMouseEvent* e = new QMouseEvent( QEvent::MouseButtonPress, mEventPos ,mEventGlobalPos, RightButton , RightButton ); 1389 QMouseEvent* e = new QMouseEvent( QEvent::MouseButtonPress, mEventPos ,mEventGlobalPos, RightButton , RightButton );
1385 QApplication::postEvent( this->viewport(), e ); 1390 QApplication::postEvent( this->viewport(), e );
1386 1391
1387} 1392}
1388void KOListViewListView::contentsMousePressEvent(QMouseEvent *e) 1393void KOListViewListView::contentsMousePressEvent(QMouseEvent *e)
1389{ 1394{
1390 //qDebug("contentsMousePressEvent++++ %d %d", e->pos().y(), e->globalPos().y()); 1395 //qDebug("contentsMousePressEvent++++ %d %d", e->pos().y(), e->globalPos().y());
1391 mYMousePos = mapToGlobal( (e->pos())).y(); 1396 mYMousePos = mapToGlobal( (e->pos())).y();
1392 if ( e->button() == LeftButton ) { 1397 if ( e->button() == LeftButton ) {
1393 mPopupTimer->start( 600 ); 1398 mPopupTimer->start( 600 );
1394 mEventPos = contentsToViewport(e->pos()); 1399 mEventPos = contentsToViewport(e->pos());
1395 mEventGlobalPos = e->globalPos(); 1400 mEventGlobalPos = e->globalPos();
1396 } 1401 }
1397 KListView::contentsMousePressEvent( e ); 1402 KListView::contentsMousePressEvent( e );
1398 if ( e->button() == RightButton ) { 1403 if ( e->button() == RightButton ) {
1399 QListViewItem* ci = currentItem(); 1404 QListViewItem* ci = currentItem();
1400 //clearSelection(); 1405 //clearSelection();
1401 if ( ci ) 1406 if ( ci )
1402 ci->setSelected( true ); 1407 ci->setSelected( true );
1403 } 1408 }
1404} 1409}
1405void KOListViewListView::contentsMouseReleaseEvent(QMouseEvent *e) 1410void KOListViewListView::contentsMouseReleaseEvent(QMouseEvent *e)
1406{ 1411{
1407 mPopupTimer->stop(); 1412 mPopupTimer->stop();
1408 KListView::contentsMouseReleaseEvent(e); 1413 KListView::contentsMouseReleaseEvent(e);
1409} 1414}
1410void KOListViewListView::contentsMouseMoveEvent(QMouseEvent *e) 1415void KOListViewListView::contentsMouseMoveEvent(QMouseEvent *e)
1411{ 1416{
1412 // qDebug("contentsMouseMoveEv....... "); 1417 // qDebug("contentsMouseMoveEv....... ");
1413 // qDebug("start: %d current %d ",mYMousePos , mapToGlobal( (e->pos())).y() ); 1418 // qDebug("start: %d current %d ",mYMousePos , mapToGlobal( (e->pos())).y() );
1414 int diff = mYMousePos - mapToGlobal( (e->pos())).y(); 1419 int diff = mYMousePos - mapToGlobal( (e->pos())).y();
1415 if ( diff < 0 ) diff = -diff; 1420 if ( diff < 0 ) diff = -diff;
1416 if ( diff > 15 ) 1421 if ( diff > 15 )
1417 mPopupTimer->stop(); 1422 mPopupTimer->stop();
1418 else { 1423 else {
1419 mEventPos = contentsToViewport(e->pos()); 1424 mEventPos = contentsToViewport(e->pos());
1420 mEventGlobalPos = e->globalPos(); 1425 mEventGlobalPos = e->globalPos();
1421 } 1426 }
1422 KListView::contentsMouseMoveEvent(e); 1427 KListView::contentsMouseMoveEvent(e);
1423} 1428}
1424 1429
1425#define protected public 1430#define protected public
1426#include <qheader.h> 1431#include <qheader.h>
1427#undef protected 1432#undef protected
1428void KOListViewListView::printList() 1433void KOListViewListView::printList()
1429{ 1434{
1430#ifdef DESKTOP_VERSION 1435#ifdef DESKTOP_VERSION
1431 KOPrintPrefs pp ( this ); 1436 KOPrintPrefs pp ( this );
1432 if (!pp.exec() ) 1437 if (!pp.exec() )
1433 return; 1438 return;
1434 int scaleval = pp.printMode() ; 1439 int scaleval = pp.printMode() ;
1435 1440
1436 QPrinter printer; 1441 QPrinter printer;
1437 if (!printer.setup() ) 1442 if (!printer.setup() )
1438 return; 1443 return;
1439 clearSelection (); 1444 clearSelection ();
1440 QPainter p; 1445 QPainter p;
1441 p.begin ( &printer ); 1446 p.begin ( &printer );
1442 QPaintDeviceMetrics m = QPaintDeviceMetrics ( &printer ); 1447 QPaintDeviceMetrics m = QPaintDeviceMetrics ( &printer );
1443 float dx, dy; 1448 float dx, dy;
1444 int wid = (m.width() * 9)/10; 1449 int wid = (m.width() * 9)/10;
1445 dx = (float) wid/(float)contentsWidth (); 1450 dx = (float) wid/(float)contentsWidth ();
1446 dy = (float)(m.height()) / (float)contentsHeight (); 1451 dy = (float)(m.height()) / (float)contentsHeight ();
1447 float scale; 1452 float scale;
1448 // scale to fit the width or height of the paper 1453 // scale to fit the width or height of the paper
1449 if ( dx < dy ) 1454 if ( dx < dy )
1450 scale = dx; 1455 scale = dx;
1451 else 1456 else
1452 scale = dy; 1457 scale = dy;
1453 1458
1454 p.translate( m.width()/10,m.width()/10 ); 1459 p.translate( m.width()/10,m.width()/10 );
1455 if ( scaleval == 2 || scaleval == 1 && scale < 1.0 ) { 1460 if ( scaleval == 2 || scaleval == 1 && scale < 1.0 ) {
1456 p.scale( scale, scale ); 1461 p.scale( scale, scale );
1457 } 1462 }
1458 1463
1459 int cou = header()->count(); 1464 int cou = header()->count();
1460 int iii; 1465 int iii;
1461 QRect rect ( 0,0,0, header()->height()); 1466 QRect rect ( 0,0,0, header()->height());
1462 for ( iii = 0; iii < cou; ++iii ) { 1467 for ( iii = 0; iii < cou; ++iii ) {
1463 rect.setLeft ( header()->sectionPos( iii ) ); 1468 rect.setLeft ( header()->sectionPos( iii ) );
1464 rect.setRight ( header()->sectionPos( iii ) + header()->sectionSize (iii)); 1469 rect.setRight ( header()->sectionPos( iii ) + header()->sectionSize (iii));
1465 header()->paintSection ( & p, header()->mapToIndex (iii), rect ); 1470 header()->paintSection ( & p, header()->mapToIndex (iii), rect );
1466 } 1471 }
1467 p.translate( 0, header()->height()); 1472 p.translate( 0, header()->height());
1468 drawContentsOffset ( &p, 0,0, 0,0, contentsWidth (), contentsHeight () ); 1473 drawContentsOffset ( &p, 0,0, 0,0, contentsWidth (), contentsHeight () );
1469 p.end(); 1474 p.end();
1470#endif 1475#endif
1471} 1476}