summaryrefslogtreecommitdiffabout
path: root/korganizer
authorzautrix <zautrix>2005-02-07 13:33:33 (UTC)
committer zautrix <zautrix>2005-02-07 13:33:33 (UTC)
commitd3b63db1205720e0a78cdc1a3cd11b2d02c98c6a (patch) (unidiff)
treee6c9f78b146bd1a05509795c884f4a8d9be039d7 /korganizer
parent7de846e9f01ce27b622541493e6a02e26e37bf2c (diff)
downloadkdepimpi-d3b63db1205720e0a78cdc1a3cd11b2d02c98c6a.zip
kdepimpi-d3b63db1205720e0a78cdc1a3cd11b2d02c98c6a.tar.gz
kdepimpi-d3b63db1205720e0a78cdc1a3cd11b2d02c98c6a.tar.bz2
desktop compile fix
Diffstat (limited to 'korganizer') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/komonthview.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp
index 7ba0b2f..9b9e164 100644
--- a/korganizer/komonthview.cpp
+++ b/korganizer/komonthview.cpp
@@ -1,1053 +1,1054 @@
1/* 1/*
2 This file is part of KOrganizer. 2 This file is part of KOrganizer.
3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> 3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>
4 4
5 This program is free software; you can redistribute it and/or modify 5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
9 9
10 This program is distributed in the hope that it will be useful, 10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details. 13 GNU General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software 16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18*/ 18*/
19 19
20#include <qpopupmenu.h> 20#include <qpopupmenu.h>
21#include <qfont.h> 21#include <qfont.h>
22#include <qfontmetrics.h> 22#include <qfontmetrics.h>
23#include <qkeycode.h> 23#include <qkeycode.h>
24#include <qhbox.h> 24#include <qhbox.h>
25#include <qvbox.h> 25#include <qvbox.h>
26#include <qwidgetstack.h> 26#include <qwidgetstack.h>
27#include <qpushbutton.h> 27#include <qpushbutton.h>
28#include <qtooltip.h> 28#include <qtooltip.h>
29#include <qpainter.h> 29#include <qpainter.h>
30#include <qtimer.h>
30#include <qwhatsthis.h> 31#include <qwhatsthis.h>
31#ifndef DESKTOP_VERSION 32#ifndef DESKTOP_VERSION
32#include <qpe/qpeapplication.h> 33#include <qpe/qpeapplication.h>
33#else 34#else
34#include <qapplication.h> 35#include <qapplication.h>
35#endif 36#endif
36 37
37#include <kdebug.h> 38#include <kdebug.h>
38#include <klocale.h> 39#include <klocale.h>
39#include <kglobal.h> 40#include <kglobal.h>
40#include <kconfig.h> 41#include <kconfig.h>
41#include <kiconloader.h> 42#include <kiconloader.h>
42 43
43#include <kcalendarsystem.h> 44#include <kcalendarsystem.h>
44 45
45#ifndef KORG_NOPRINTER 46#ifndef KORG_NOPRINTER
46#include "calprinter.h" 47#include "calprinter.h"
47#endif 48#endif
48#include "koprefs.h" 49#include "koprefs.h"
49#ifndef KORG_NOPLUGINS 50#ifndef KORG_NOPLUGINS
50#include "kocore.h" 51#include "kocore.h"
51#endif 52#endif
52#include "koglobals.h" 53#include "koglobals.h"
53#include <libkcal/kincidenceformatter.h> 54#include <libkcal/kincidenceformatter.h>
54 55
55#include "komonthview.h" 56#include "komonthview.h"
56 57
57#define PIXMAP_SIZE 5 58#define PIXMAP_SIZE 5
58#ifdef DESKTOP_VERSION 59#ifdef DESKTOP_VERSION
59QToolTipGroup *MonthViewCell::mToolTipGroup = 0; 60QToolTipGroup *MonthViewCell::mToolTipGroup = 0;
60#endif 61#endif
61class KNOWhatsThis :public QWhatsThis 62class KNOWhatsThis :public QWhatsThis
62{ 63{
63public: 64public:
64 KNOWhatsThis( KNoScrollListBox* sbox ) : QWhatsThis( sbox ), _wid( sbox) { }; 65 KNOWhatsThis( KNoScrollListBox* sbox ) : QWhatsThis( sbox ), _wid( sbox) { };
65 //~KNOWhatsThis( ) {qDebug("~KNOWhatsThis( ) "); }; 66 //~KNOWhatsThis( ) {qDebug("~KNOWhatsThis( ) "); };
66 67
67protected: 68protected:
68 virtual QString text( const QPoint& p) 69 virtual QString text( const QPoint& p)
69 { 70 {
70 return _wid->getWhatsThisText(p) ; 71 return _wid->getWhatsThisText(p) ;
71 }; 72 };
72private: 73private:
73 KNoScrollListBox* _wid; 74 KNoScrollListBox* _wid;
74 75
75}; 76};
76 77
77 78
78KNoScrollListBox::KNoScrollListBox(QWidget *parent,const char *name) 79KNoScrollListBox::KNoScrollListBox(QWidget *parent,const char *name)
79 : QListBox(parent, name, WRepaintNoErase) 80 : QListBox(parent, name, WRepaintNoErase)
80{ 81{
81#ifndef DESKTOP_VERSION 82#ifndef DESKTOP_VERSION
82 QPEApplication::setStylusOperation( viewport(), QPEApplication::RightOnHold ); 83 QPEApplication::setStylusOperation( viewport(), QPEApplication::RightOnHold );
83#endif 84#endif
84 mWT = new KNOWhatsThis(this); 85 mWT = new KNOWhatsThis(this);
85} 86}
86KNoScrollListBox::~KNoScrollListBox() 87KNoScrollListBox::~KNoScrollListBox()
87{ 88{
88 89
89} 90}
90QString KNoScrollListBox::getWhatsThisText(QPoint p) 91QString KNoScrollListBox::getWhatsThisText(QPoint p)
91{ 92{
92 QListBoxItem* item = itemAt ( p ); 93 QListBoxItem* item = itemAt ( p );
93 if ( ! item ) { 94 if ( ! item ) {
94 return i18n("Click in the cell\nto add an event!"); 95 return i18n("Click in the cell\nto add an event!");
95 } 96 }
96 return KIncidenceFormatter::instance()->getFormattedText(((MonthViewItem*) item)->incidence()); 97 return KIncidenceFormatter::instance()->getFormattedText(((MonthViewItem*) item)->incidence());
97} 98}
98void KNoScrollListBox::keyPressEvent(QKeyEvent *e) 99void KNoScrollListBox::keyPressEvent(QKeyEvent *e)
99{ 100{
100 101
101 switch(e->key()) { 102 switch(e->key()) {
102 case Key_Right: 103 case Key_Right:
103 if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) 104 if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton )
104 { 105 {
105 e->ignore(); 106 e->ignore();
106 return; 107 return;
107 } 108 }
108 scrollBy(10,0); 109 scrollBy(10,0);
109 break; 110 break;
110 case Key_Left: 111 case Key_Left:
111 if (e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) 112 if (e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton )
112 { 113 {
113 e->ignore(); 114 e->ignore();
114 return; 115 return;
115 } 116 }
116 scrollBy(-10,0); 117 scrollBy(-10,0);
117 break; 118 break;
118 case Key_Up: 119 case Key_Up:
119 if( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton) { 120 if( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton) {
120 e->ignore(); 121 e->ignore();
121 break; 122 break;
122 } 123 }
123 setCurrentItem((currentItem()+count()-1)%count()); 124 setCurrentItem((currentItem()+count()-1)%count());
124 if(!itemVisible(currentItem())) { 125 if(!itemVisible(currentItem())) {
125 if((unsigned int) currentItem() == (count()-1)) { 126 if((unsigned int) currentItem() == (count()-1)) {
126 setTopItem(currentItem()-numItemsVisible()+1); 127 setTopItem(currentItem()-numItemsVisible()+1);
127 } else { 128 } else {
128 setTopItem(topItem()-1); 129 setTopItem(topItem()-1);
129 } 130 }
130 } 131 }
131 break; 132 break;
132 case Key_Down: 133 case Key_Down:
133 if(e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton) { 134 if(e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton) {
134 e->ignore(); 135 e->ignore();
135 break; 136 break;
136 } 137 }
137 setCurrentItem((currentItem()+1)%count()); 138 setCurrentItem((currentItem()+1)%count());
138 if(!itemVisible(currentItem())) { 139 if(!itemVisible(currentItem())) {
139 if(currentItem() == 0) { 140 if(currentItem() == 0) {
140 setTopItem(0); 141 setTopItem(0);
141 } else { 142 } else {
142 setTopItem(topItem()+1); 143 setTopItem(topItem()+1);
143 } 144 }
144 } 145 }
145 break; 146 break;
146 case Key_I: 147 case Key_I:
147 QTimer::singleShot( 11, this, SLOT ( oneDown() ) ); 148 QTimer::singleShot( 11, this, SLOT ( oneDown() ) );
148 e->ignore(); 149 e->ignore();
149 break; 150 break;
150 case Key_Shift: 151 case Key_Shift:
151 emit shiftDown(); 152 emit shiftDown();
152 break; 153 break;
153 default: 154 default:
154 e->ignore(); 155 e->ignore();
155 break; 156 break;
156 } 157 }
157} 158}
158 159
159void KNoScrollListBox::oneDown() 160void KNoScrollListBox::oneDown()
160{ 161{
161 setCurrentItem((currentItem()+1)%count()); 162 setCurrentItem((currentItem()+1)%count());
162 if(!itemVisible(currentItem())) { 163 if(!itemVisible(currentItem())) {
163 if(currentItem() == 0) { 164 if(currentItem() == 0) {
164 setTopItem(0); 165 setTopItem(0);
165 } else { 166 } else {
166 setTopItem(topItem()+1); 167 setTopItem(topItem()+1);
167 } 168 }
168 } 169 }
169} 170}
170void KNoScrollListBox::keyReleaseEvent(QKeyEvent *e) 171void KNoScrollListBox::keyReleaseEvent(QKeyEvent *e)
171{ 172{
172 switch(e->key()) { 173 switch(e->key()) {
173 case Key_Shift: 174 case Key_Shift:
174 emit shiftUp(); 175 emit shiftUp();
175 break; 176 break;
176 default: 177 default:
177 break; 178 break;
178 } 179 }
179} 180}
180 181
181void KNoScrollListBox::mousePressEvent(QMouseEvent *e) 182void KNoScrollListBox::mousePressEvent(QMouseEvent *e)
182{ 183{
183 QListBox::mousePressEvent(e); 184 QListBox::mousePressEvent(e);
184 185
185 if(e->button() == RightButton) { 186 if(e->button() == RightButton) {
186 emit rightClick(); 187 emit rightClick();
187 } 188 }
188} 189}
189 190
190MonthViewItem::MonthViewItem( Incidence *incidence, QDate qd, const QString & s) 191MonthViewItem::MonthViewItem( Incidence *incidence, QDate qd, const QString & s)
191 : QListBoxItem() 192 : QListBoxItem()
192{ 193{
193 setText( s ); 194 setText( s );
194 195
195 mIncidence = incidence; 196 mIncidence = incidence;
196 mDate = qd; 197 mDate = qd;
197 // QWhatsThis::add(this,KIncidenceFormatter::instance()->getFormattedText( mIncidence )); 198 // QWhatsThis::add(this,KIncidenceFormatter::instance()->getFormattedText( mIncidence ));
198 mRecur = false; 199 mRecur = false;
199 mAlarm = false; 200 mAlarm = false;
200 mReply = false; 201 mReply = false;
201 mInfo = false; 202 mInfo = false;
202} 203}
203 204
204void MonthViewItem::paint(QPainter *p) 205void MonthViewItem::paint(QPainter *p)
205{ 206{
206#if QT_VERSION >= 0x030000 207#if QT_VERSION >= 0x030000
207 bool sel = isSelected(); 208 bool sel = isSelected();
208#else 209#else
209 bool sel = selected(); 210 bool sel = selected();
210#endif 211#endif
211 212
212 213
213 if (KOPrefs::instance()->mMonthViewUsesCategoryColor) 214 if (KOPrefs::instance()->mMonthViewUsesCategoryColor)
214 { 215 {
215 p->setBackgroundColor( palette().color( QPalette::Normal, \ 216 p->setBackgroundColor( palette().color( QPalette::Normal, \
216 sel ? QColorGroup::Highlight : QColorGroup::Background ) ); 217 sel ? QColorGroup::Highlight : QColorGroup::Background ) );
217 p->eraseRect( 0, 0, listBox()->maxItemWidth(), height( listBox() ) ); 218 p->eraseRect( 0, 0, listBox()->maxItemWidth(), height( listBox() ) );
218 } 219 }
219 int x = 1; 220 int x = 1;
220 int y = 3;//(height() - mRecurPixmap.height()) /2; 221 int y = 3;//(height() - mRecurPixmap.height()) /2;
221 int size = PIXMAP_SIZE; 222 int size = PIXMAP_SIZE;
222 if ( QApplication::desktop()->width() < 300 ) 223 if ( QApplication::desktop()->width() < 300 )
223 size = 3; 224 size = 3;
224 if ( KOPrefs::instance()->mMonthShowIcons ) { 225 if ( KOPrefs::instance()->mMonthShowIcons ) {
225 if ( mInfo ) { 226 if ( mInfo ) {
226 p->fillRect ( x, y,size,size, Qt::darkGreen ); 227 p->fillRect ( x, y,size,size, Qt::darkGreen );
227 x += size + 1; 228 x += size + 1;
228 } 229 }
229 if ( mRecur ) { 230 if ( mRecur ) {
230 p->fillRect ( x, y,size,size, Qt::blue ); 231 p->fillRect ( x, y,size,size, Qt::blue );
231 x += size + 1; 232 x += size + 1;
232 } 233 }
233 if ( mAlarm ) { 234 if ( mAlarm ) {
234 p->fillRect ( x, y,size,size, Qt::red ); 235 p->fillRect ( x, y,size,size, Qt::red );
235 x += size + 1; 236 x += size + 1;
236 } 237 }
237 if ( mReply ) { 238 if ( mReply ) {
238 p->fillRect ( x, y,size,size, Qt::yellow ); 239 p->fillRect ( x, y,size,size, Qt::yellow );
239 x += size + 1; 240 x += size + 1;
240 } 241 }
241 } 242 }
242 QFontMetrics fm = p->fontMetrics(); 243 QFontMetrics fm = p->fontMetrics();
243 int yPos; 244 int yPos;
244 int pmheight = size; 245 int pmheight = size;
245 if( pmheight < fm.height() ) 246 if( pmheight < fm.height() )
246 yPos = fm.ascent() + fm.leading()/2; 247 yPos = fm.ascent() + fm.leading()/2;
247 else 248 else
248 yPos = pmheight/2 - fm.height()/2 + fm.ascent(); 249 yPos = pmheight/2 - fm.height()/2 + fm.ascent();
249 p->setPen( palette().color( QPalette::Normal, sel ? \ 250 p->setPen( palette().color( QPalette::Normal, sel ? \
250 QColorGroup::HighlightedText : QColorGroup::Foreground ) ); 251 QColorGroup::HighlightedText : QColorGroup::Foreground ) );
251 p->drawText( x, yPos, text() ); 252 p->drawText( x, yPos, text() );
252 if ( mIncidence->cancelled() ) { 253 if ( mIncidence->cancelled() ) {
253 int wid = fm.width( text() ); 254 int wid = fm.width( text() );
254 p->drawLine( x, yPos- fm.height()/2+3,x+wid, yPos- fm.height()/2 +3); 255 p->drawLine( x, yPos- fm.height()/2+3,x+wid, yPos- fm.height()/2 +3);
255 } 256 }
256 257
257} 258}
258 259
259int MonthViewItem::height(const QListBox *lb) const 260int MonthViewItem::height(const QListBox *lb) const
260{ 261{
261 return lb->fontMetrics().lineSpacing()+1; 262 return lb->fontMetrics().lineSpacing()+1;
262} 263}
263 264
264int MonthViewItem::width(const QListBox *lb) const 265int MonthViewItem::width(const QListBox *lb) const
265{ 266{
266 int size = PIXMAP_SIZE; 267 int size = PIXMAP_SIZE;
267 if ( QApplication::desktop()->width() < 300 ) 268 if ( QApplication::desktop()->width() < 300 )
268 size = 3; 269 size = 3;
269 int x = 1; 270 int x = 1;
270 if ( mInfo ) { 271 if ( mInfo ) {
271 x += size + 1; 272 x += size + 1;
272 } 273 }
273 if( mRecur ) { 274 if( mRecur ) {
274 x += size+1; 275 x += size+1;
275 } 276 }
276 if( mAlarm ) { 277 if( mAlarm ) {
277 x += size+1; 278 x += size+1;
278 } 279 }
279 if( mReply ) { 280 if( mReply ) {
280 x += size+1; 281 x += size+1;
281 } 282 }
282 283
283 return( x + lb->fontMetrics().width( text() ) + 1 ); 284 return( x + lb->fontMetrics().width( text() ) + 1 );
284} 285}
285 286
286 287
287MonthViewCell::MonthViewCell( KOMonthView *parent,QWidget* par ) 288MonthViewCell::MonthViewCell( KOMonthView *parent,QWidget* par )
288 : QWidget( par ), 289 : QWidget( par ),
289 mMonthView( parent ) 290 mMonthView( parent )
290{ 291{
291 292
292 QVBoxLayout *topLayout = new QVBoxLayout( this ); 293 QVBoxLayout *topLayout = new QVBoxLayout( this );
293 294
294 // mLabel = new QLabel( this );QPushButton 295 // mLabel = new QLabel( this );QPushButton
295 mLabel = new QPushButton( this ); 296 mLabel = new QPushButton( this );
296 //mLabel->setFrameStyle( QFrame::Panel | QFrame::Plain ); 297 //mLabel->setFrameStyle( QFrame::Panel | QFrame::Plain );
297 //mLabel->setLineWidth( 1 ); 298 //mLabel->setLineWidth( 1 );
298 //mLabel->setAlignment( AlignCenter ); 299 //mLabel->setAlignment( AlignCenter );
299 mLabel->setFlat( true ); 300 mLabel->setFlat( true );
300 mLabel->setFocusPolicy(NoFocus); 301 mLabel->setFocusPolicy(NoFocus);
301 mItemList = new KNoScrollListBox( this ); 302 mItemList = new KNoScrollListBox( this );
302 mItemList->setMinimumSize( 10, 10 ); 303 mItemList->setMinimumSize( 10, 10 );
303 mItemList->setFrameStyle( QFrame::Panel | QFrame::Plain ); 304 mItemList->setFrameStyle( QFrame::Panel | QFrame::Plain );
304 mItemList->setLineWidth( 1 ); 305 mItemList->setLineWidth( 1 );
305 topLayout->addWidget( mItemList ); 306 topLayout->addWidget( mItemList );
306 mLabel->raise(); 307 mLabel->raise();
307 // QColor( 0,0,255 ) QColor( 160,1600,255 ) 308 // QColor( 0,0,255 ) QColor( 160,1600,255 )
308 mStandardPalette = palette(); 309 mStandardPalette = palette();
309 mStandardPalette.setColor(QColorGroup::Base, mStandardPalette.color( QPalette::Normal, QColorGroup::Background ) ); 310 mStandardPalette.setColor(QColorGroup::Base, mStandardPalette.color( QPalette::Normal, QColorGroup::Background ) );
310 311
311 enableScrollBars( false ); 312 enableScrollBars( false );
312 updateConfig(); 313 updateConfig();
313 //connect( mLabel, SIGNAL( clicked( )), SLOT( newEvent() )); 314 //connect( mLabel, SIGNAL( clicked( )), SLOT( newEvent() ));
314 connect( mLabel, SIGNAL( clicked( )), SLOT( showDay() )); 315 connect( mLabel, SIGNAL( clicked( )), SLOT( showDay() ));
315 connect( mItemList, SIGNAL( doubleClicked( QListBoxItem *) ), 316 connect( mItemList, SIGNAL( doubleClicked( QListBoxItem *) ),
316 SLOT( defaultAction( QListBoxItem * ) ) ); 317 SLOT( defaultAction( QListBoxItem * ) ) );
317 connect( mItemList, SIGNAL( rightButtonPressed( QListBoxItem *, 318 connect( mItemList, SIGNAL( rightButtonPressed( QListBoxItem *,
318 const QPoint &) ), 319 const QPoint &) ),
319 SLOT( contextMenu( QListBoxItem * ) ) ); 320 SLOT( contextMenu( QListBoxItem * ) ) );
320 connect( mItemList, SIGNAL( highlighted( QListBoxItem *) ), 321 connect( mItemList, SIGNAL( highlighted( QListBoxItem *) ),
321 SLOT( selection( QListBoxItem * ) ) ); 322 SLOT( selection( QListBoxItem * ) ) );
322 connect( mItemList, SIGNAL( clicked( QListBoxItem * ) ), 323 connect( mItemList, SIGNAL( clicked( QListBoxItem * ) ),
323 SLOT( cellClicked( QListBoxItem * ) ) ); 324 SLOT( cellClicked( QListBoxItem * ) ) );
324 connect( mItemList, SIGNAL( clicked( QListBoxItem * ) ), 325 connect( mItemList, SIGNAL( clicked( QListBoxItem * ) ),
325 SLOT( selection( QListBoxItem * ) ) ); 326 SLOT( selection( QListBoxItem * ) ) );
326} 327}
327#ifdef DESKTOP_VERSION 328#ifdef DESKTOP_VERSION
328QToolTipGroup *MonthViewCell::toolTipGroup() 329QToolTipGroup *MonthViewCell::toolTipGroup()
329{ 330{
330 if (!mToolTipGroup) mToolTipGroup = new QToolTipGroup(0); 331 if (!mToolTipGroup) mToolTipGroup = new QToolTipGroup(0);
331 return mToolTipGroup; 332 return mToolTipGroup;
332} 333}
333#endif 334#endif
334 335
335void MonthViewCell::setDate( const QDate &date ) 336void MonthViewCell::setDate( const QDate &date )
336{ 337{
337 // kdDebug() << "MonthViewCell::setDate(): " << date.toString() << endl; 338 // kdDebug() << "MonthViewCell::setDate(): " << date.toString() << endl;
338 mDate = date; 339 mDate = date;
339 340
340 341
341 342
342 //resizeEvent( 0 ); 343 //resizeEvent( 0 );
343} 344}
344 345
345QDate MonthViewCell::date() const 346QDate MonthViewCell::date() const
346{ 347{
347 return mDate; 348 return mDate;
348} 349}
349 350
350void MonthViewCell::setPrimary( bool primary ) 351void MonthViewCell::setPrimary( bool primary )
351{ 352{
352 mPrimary = primary; 353 mPrimary = primary;
353 //setMyPalette(); 354 //setMyPalette();
354} 355}
355void MonthViewCell::setMyPalette() 356void MonthViewCell::setMyPalette()
356{ 357{
357 358
358 if ( mHoliday) { 359 if ( mHoliday) {
359 setPalette( mHolidayPalette ); 360 setPalette( mHolidayPalette );
360 } else { 361 } else {
361 if ( mPrimary ) { 362 if ( mPrimary ) {
362 setPalette( mPrimaryPalette ); 363 setPalette( mPrimaryPalette );
363 } else { 364 } else {
364 setPalette( mNonPrimaryPalette ); 365 setPalette( mNonPrimaryPalette );
365 } 366 }
366 } 367 }
367 QPalette pal = palette(); 368 QPalette pal = palette();
368 369
369 mLabel->setPalette( QPalette ( pal.color( QPalette::Normal,QColorGroup::Base),pal.color(QPalette::Normal,QColorGroup::Base ) )); 370 mLabel->setPalette( QPalette ( pal.color( QPalette::Normal,QColorGroup::Base),pal.color(QPalette::Normal,QColorGroup::Base ) ));
370} 371}
371QPalette MonthViewCell::getPalette () 372QPalette MonthViewCell::getPalette ()
372{ 373{
373 if ( !KOPrefs::instance()->mMonthViewUsesDayColors ) 374 if ( !KOPrefs::instance()->mMonthViewUsesDayColors )
374 return mStandardPalette; 375 return mStandardPalette;
375 if ( mHoliday) { 376 if ( mHoliday) {
376 return mHolidayPalette ; 377 return mHolidayPalette ;
377 } else { 378 } else {
378 if ( mPrimary ) { 379 if ( mPrimary ) {
379 return mPrimaryPalette ; 380 return mPrimaryPalette ;
380 } 381 }
381 } 382 }
382 return mNonPrimaryPalette; 383 return mNonPrimaryPalette;
383} 384}
384bool MonthViewCell::isPrimary() const 385bool MonthViewCell::isPrimary() const
385{ 386{
386 return mPrimary; 387 return mPrimary;
387} 388}
388 389
389void MonthViewCell::setHoliday( bool holiday ) 390void MonthViewCell::setHoliday( bool holiday )
390{ 391{
391 mHoliday = holiday; 392 mHoliday = holiday;
392 //setMyPalette(); 393 //setMyPalette();
393} 394}
394 395
395void MonthViewCell::setHoliday( const QString &holiday ) 396void MonthViewCell::setHoliday( const QString &holiday )
396{ 397{
397 mHolidayString = holiday; 398 mHolidayString = holiday;
398 399
399 if ( !holiday.isEmpty() ) { 400 if ( !holiday.isEmpty() ) {
400 setHoliday( true ); 401 setHoliday( true );
401 } 402 }
402} 403}
403void MonthViewCell::keyPressEvent ( QKeyEvent * e ) 404void MonthViewCell::keyPressEvent ( QKeyEvent * e )
404{ 405{
405 406
406 e->ignore(); 407 e->ignore();
407 408
408} 409}
409 410
410void MonthViewCell::startUpdateCell() 411void MonthViewCell::startUpdateCell()
411{ 412{
412 413
413 mItemList->setFocusPolicy(NoFocus); 414 mItemList->setFocusPolicy(NoFocus);
414 if ( !mMonthView->isUpdatePossible() ) 415 if ( !mMonthView->isUpdatePossible() )
415 return; 416 return;
416 417
417 /* 418 /*
418 if ( !isVisible() ){ 419 if ( !isVisible() ){
419 return; 420 return;
420 } 421 }
421 */ 422 */
422 // qDebug("MonthViewCell::updateCell() "); 423 // qDebug("MonthViewCell::updateCell() ");
423 setPrimary( mDate.month()%2 ); 424 setPrimary( mDate.month()%2 );
424 setHoliday( KOGlobals::self()->calendarSystem()->dayOfWeek(mDate) == KOGlobals::self()->calendarSystem()->weekDayOfPray() || ( mDate.dayOfWeek() == 6 ) && KOPrefs::instance()-> mExcludeSaturdays); 425 setHoliday( KOGlobals::self()->calendarSystem()->dayOfWeek(mDate) == KOGlobals::self()->calendarSystem()->weekDayOfPray() || ( mDate.dayOfWeek() == 6 ) && KOPrefs::instance()-> mExcludeSaturdays);
425 if ( mDate == QDate::currentDate() ) { 426 if ( mDate == QDate::currentDate() ) {
426 mItemList->setLineWidth( 3 ); 427 mItemList->setLineWidth( 3 );
427 } else { 428 } else {
428 mItemList->setLineWidth( 1 ); 429 mItemList->setLineWidth( 1 );
429 } 430 }
430 mItemList->clear(); 431 mItemList->clear();
431 432
432#ifdef DESKTOP_VERSION 433#ifdef DESKTOP_VERSION
433 QToolTip::remove(this); 434 QToolTip::remove(this);
434#endif 435#endif
435 mToolTip = ""; 436 mToolTip = "";
436 //qApp->processEvents(); 437 //qApp->processEvents();
437 if ( !mHolidayString.isEmpty() ) { 438 if ( !mHolidayString.isEmpty() ) {
438 MonthViewItem *item = new MonthViewItem( 0, mDate, mHolidayString ); 439 MonthViewItem *item = new MonthViewItem( 0, mDate, mHolidayString );
439 item->setPalette( mHolidayPalette ); 440 item->setPalette( mHolidayPalette );
440 mItemList->insertItem( item ); 441 mItemList->insertItem( item );
441 mToolTip += mHolidayString+"\n"; 442 mToolTip += mHolidayString+"\n";
442 } 443 }
443} 444}
444 445
445void MonthViewCell::insertEvent(Event *event) 446void MonthViewCell::insertEvent(Event *event)
446{ 447{
447 448
448 mItemList->setFocusPolicy(WheelFocus); 449 mItemList->setFocusPolicy(WheelFocus);
449 if ( !(event->doesRecur() == Recurrence::rNone) ) { 450 if ( !(event->doesRecur() == Recurrence::rNone) ) {
450 if ( !KOPrefs::instance()->mMonthDailyRecur && event->doesRecur() == Recurrence::rDaily ) 451 if ( !KOPrefs::instance()->mMonthDailyRecur && event->doesRecur() == Recurrence::rDaily )
451 return; 452 return;
452 else 453 else
453 if ( !KOPrefs::instance()->mMonthWeeklyRecur && event->doesRecur() == Recurrence::rWeekly ) 454 if ( !KOPrefs::instance()->mMonthWeeklyRecur && event->doesRecur() == Recurrence::rWeekly )
454 return; 455 return;
455 } 456 }
456 457
457 if ( event->categories().contains("Holiday") || 458 if ( event->categories().contains("Holiday") ||
458 event->categories().contains(i18n("Holiday"))) { 459 event->categories().contains(i18n("Holiday"))) {
459 setHoliday( true ); 460 setHoliday( true );
460 if ( mDate.dayOfWeek() == 7 ) 461 if ( mDate.dayOfWeek() == 7 )
461 mItemList->setLineWidth( 3 ); 462 mItemList->setLineWidth( 3 );
462 } 463 }
463 QString text; 464 QString text;
464 if (event->isMultiDay()) { 465 if (event->isMultiDay()) {
465 QString prefix = "<->"; 466 QString prefix = "<->";
466 if ( event->doesRecur() ) { 467 if ( event->doesRecur() ) {
467 if ( event->recursOn( mDate) ) 468 if ( event->recursOn( mDate) )
468 prefix ="->" ; 469 prefix ="->" ;
469 else { 470 else {
470 int days = event->dtStart().date().daysTo ( event->dtEnd().date() ); 471 int days = event->dtStart().date().daysTo ( event->dtEnd().date() );
471 if ( event->recursOn( mDate.addDays( -days)) ) 472 if ( event->recursOn( mDate.addDays( -days)) )
472 prefix ="<-" ; 473 prefix ="<-" ;
473 } 474 }
474 475
475 } else { 476 } else {
476 if (mDate == event->dtStart().date()) { 477 if (mDate == event->dtStart().date()) {
477 prefix ="->" ; 478 prefix ="->" ;
478 } else if (mDate == event->dtEnd().date()) { 479 } else if (mDate == event->dtEnd().date()) {
479 prefix ="<-" ; 480 prefix ="<-" ;
480 } 481 }
481 } 482 }
482 if ( !event->doesFloat() ) { 483 if ( !event->doesFloat() ) {
483 if ( mDate == event->dtStart().date () ) 484 if ( mDate == event->dtStart().date () )
484 prefix += KGlobal::locale()->formatTime(event->dtStart().time())+" "; 485 prefix += KGlobal::locale()->formatTime(event->dtStart().time())+" ";
485 else if ( mDate == event->dtEnd().date () ) 486 else if ( mDate == event->dtEnd().date () )
486 prefix += KGlobal::locale()->formatTime(event->dtEnd().time())+" "; 487 prefix += KGlobal::locale()->formatTime(event->dtEnd().time())+" ";
487 488
488 } 489 }
489 text = prefix + event->summary(); 490 text = prefix + event->summary();
490 mToolTip += text; 491 mToolTip += text;
491 } else { 492 } else {
492 if (event->doesFloat()) { 493 if (event->doesFloat()) {
493 text = event->summary(); 494 text = event->summary();
494 mToolTip += text; 495 mToolTip += text;
495 } 496 }
496 else { 497 else {
497 text = KGlobal::locale()->formatTime(event->dtStart().time()); 498 text = KGlobal::locale()->formatTime(event->dtStart().time());
498 text += " " + event->summary(); 499 text += " " + event->summary();
499 mToolTip += KGlobal::locale()->formatTime(event->dtStart().time()) +"-"+KGlobal::locale()->formatTime(event->dtEnd().time())+" " + event->summary(); 500 mToolTip += KGlobal::locale()->formatTime(event->dtStart().time()) +"-"+KGlobal::locale()->formatTime(event->dtEnd().time())+" " + event->summary();
500 } 501 }
501 } 502 }
502 503
503 MonthViewItem *item = new MonthViewItem( event, mDate, text ); 504 MonthViewItem *item = new MonthViewItem( event, mDate, text );
504 QPalette pal; 505 QPalette pal;
505 if (KOPrefs::instance()->mMonthViewUsesCategoryColor) { 506 if (KOPrefs::instance()->mMonthViewUsesCategoryColor) {
506 QStringList categories = event->categories(); 507 QStringList categories = event->categories();
507 QString cat = categories.first(); 508 QString cat = categories.first();
508 if ( KOPrefs::instance()->mMonthViewUsesForegroundColor ) { 509 if ( KOPrefs::instance()->mMonthViewUsesForegroundColor ) {
509 pal = getPalette(); 510 pal = getPalette();
510 if (cat.isEmpty()) { 511 if (cat.isEmpty()) {
511 pal.setColor(QColorGroup::Foreground,KOPrefs::instance()->mEventColor); 512 pal.setColor(QColorGroup::Foreground,KOPrefs::instance()->mEventColor);
512 } else { 513 } else {
513 pal.setColor(QColorGroup::Foreground, *(KOPrefs::instance()->categoryColor(cat))); 514 pal.setColor(QColorGroup::Foreground, *(KOPrefs::instance()->categoryColor(cat)));
514 } 515 }
515 516
516 } else { 517 } else {
517 if (cat.isEmpty()) { 518 if (cat.isEmpty()) {
518 pal = QPalette(KOPrefs::instance()->mEventColor, KOPrefs::instance()->mEventColor); 519 pal = QPalette(KOPrefs::instance()->mEventColor, KOPrefs::instance()->mEventColor);
519 } else { 520 } else {
520 pal = QPalette(*(KOPrefs::instance()->categoryColor(cat)), *(KOPrefs::instance()->categoryColor(cat))); 521 pal = QPalette(*(KOPrefs::instance()->categoryColor(cat)), *(KOPrefs::instance()->categoryColor(cat)));
521 } 522 }
522 } 523 }
523 524
524 } else { 525 } else {
525 pal = mStandardPalette ; 526 pal = mStandardPalette ;
526 } 527 }
527 item->setPalette( pal ); 528 item->setPalette( pal );
528 item->setRecur( event->recurrence()->doesRecur() ); 529 item->setRecur( event->recurrence()->doesRecur() );
529 item->setAlarm( event->isAlarmEnabled() ); 530 item->setAlarm( event->isAlarmEnabled() );
530 item->setMoreInfo( event->description().length() > 0 ); 531 item->setMoreInfo( event->description().length() > 0 );
531#ifdef DESKTOP_VERSION 532#ifdef DESKTOP_VERSION
532 Attendee *me = event->attendeeByMails(KOPrefs::instance()->mAdditionalMails, 533 Attendee *me = event->attendeeByMails(KOPrefs::instance()->mAdditionalMails,
533 KOPrefs::instance()->email()); 534 KOPrefs::instance()->email());
534 if ( me != 0 ) { 535 if ( me != 0 ) {
535 if ( me->status() == Attendee::NeedsAction && me->RSVP()) 536 if ( me->status() == Attendee::NeedsAction && me->RSVP())
536 item->setReply(true); 537 item->setReply(true);
537 else 538 else
538 item->setReply(false); 539 item->setReply(false);
539 } else 540 } else
540 item->setReply(false); 541 item->setReply(false);
541#endif 542#endif
542 mItemList->insertItem( item ); 543 mItemList->insertItem( item );
543 mToolTip += "\n"; 544 mToolTip += "\n";
544} 545}
545void MonthViewCell::insertTodo(Todo *todo) 546void MonthViewCell::insertTodo(Todo *todo)
546{ 547{
547 mItemList->setFocusPolicy(WheelFocus); 548 mItemList->setFocusPolicy(WheelFocus);
548 QString text; 549 QString text;
549 if (todo->hasDueDate()) { 550 if (todo->hasDueDate()) {
550 if (!todo->doesFloat()) { 551 if (!todo->doesFloat()) {
551 text += KGlobal::locale()->formatTime(todo->dtDue().time()); 552 text += KGlobal::locale()->formatTime(todo->dtDue().time());
552 text += " "; 553 text += " ";
553 } 554 }
554 } 555 }
555 text += i18n("Td: %1").arg(todo->summary()); 556 text += i18n("Td: %1").arg(todo->summary());
556 557
557 MonthViewItem *item = new MonthViewItem( todo, mDate, text ); 558 MonthViewItem *item = new MonthViewItem( todo, mDate, text );
558 //item->setPalette( mStandardPalette ); 559 //item->setPalette( mStandardPalette );
559 QPalette pal; 560 QPalette pal;
560 if (KOPrefs::instance()->mMonthViewUsesCategoryColor) { 561 if (KOPrefs::instance()->mMonthViewUsesCategoryColor) {
561 QStringList categories = todo->categories(); 562 QStringList categories = todo->categories();
562 QString cat = categories.first(); 563 QString cat = categories.first();
563 if ( KOPrefs::instance()->mMonthViewUsesForegroundColor ) { 564 if ( KOPrefs::instance()->mMonthViewUsesForegroundColor ) {
564 pal = getPalette(); 565 pal = getPalette();
565 if (cat.isEmpty()) { 566 if (cat.isEmpty()) {
566 pal.setColor(QColorGroup::Foreground,KOPrefs::instance()->mEventColor); 567 pal.setColor(QColorGroup::Foreground,KOPrefs::instance()->mEventColor);
567 } else { 568 } else {
568 pal.setColor(QColorGroup::Foreground, *(KOPrefs::instance()->categoryColor(cat))); 569 pal.setColor(QColorGroup::Foreground, *(KOPrefs::instance()->categoryColor(cat)));
569 } 570 }
570 571
571 } else { 572 } else {
572 if (cat.isEmpty()) { 573 if (cat.isEmpty()) {
573 pal = QPalette(KOPrefs::instance()->mEventColor, KOPrefs::instance()->mEventColor); 574 pal = QPalette(KOPrefs::instance()->mEventColor, KOPrefs::instance()->mEventColor);
574 } else { 575 } else {
575 pal = QPalette(*(KOPrefs::instance()->categoryColor(cat)), *(KOPrefs::instance()->categoryColor(cat))); 576 pal = QPalette(*(KOPrefs::instance()->categoryColor(cat)), *(KOPrefs::instance()->categoryColor(cat)));
576 } 577 }
577 } 578 }
578 579
579 } else { 580 } else {
580 pal = mStandardPalette ; 581 pal = mStandardPalette ;
581 } 582 }
582 item->setPalette( pal ); 583 item->setPalette( pal );
583 mItemList->insertItem( item ); 584 mItemList->insertItem( item );
584 mToolTip += text+"\n"; 585 mToolTip += text+"\n";
585} 586}
586void MonthViewCell::finishUpdateCell() 587void MonthViewCell::finishUpdateCell()
587{ 588{
588#ifdef DESKTOP_VERSION 589#ifdef DESKTOP_VERSION
589 if (mToolTip != "") 590 if (mToolTip != "")
590 QToolTip::add(this,mToolTip,toolTipGroup(),""); 591 QToolTip::add(this,mToolTip,toolTipGroup(),"");
591#endif 592#endif
592 mItemList->sort(); 593 mItemList->sort();
593 //setMyPalette(); 594 //setMyPalette();
594 setMyPalette(); 595 setMyPalette();
595 QString text; 596 QString text;
596 bool smallDisplay = QApplication::desktop()->width() < 320 && KOPrefs::instance()->mMonthViewSatSunTog; 597 bool smallDisplay = QApplication::desktop()->width() < 320 && KOPrefs::instance()->mMonthViewSatSunTog;
597 if ( KOPrefs::instance()->mMonthViewWeek || KOGlobals::self()->calendarSystem()->day( mDate ) == 1 || (mDate.dayOfWeek() == 7 && !smallDisplay ) || KOPrefs::instance()->mMonthShowShort) { 598 if ( KOPrefs::instance()->mMonthViewWeek || KOGlobals::self()->calendarSystem()->day( mDate ) == 1 || (mDate.dayOfWeek() == 7 && !smallDisplay ) || KOPrefs::instance()->mMonthShowShort) {
598 text = KOGlobals::self()->calendarSystem()->monthName( mDate, true ) + " "; 599 text = KOGlobals::self()->calendarSystem()->monthName( mDate, true ) + " ";
599 mLabel->resize( mLabelBigSize ); 600 mLabel->resize( mLabelBigSize );
600 text += QString::number( KOGlobals::self()->calendarSystem()->day(mDate) ); 601 text += QString::number( KOGlobals::self()->calendarSystem()->day(mDate) );
601 } else { 602 } else {
602 mLabel->resize( mLabelSize ); 603 mLabel->resize( mLabelSize );
603 text += QString::number( KOGlobals::self()->calendarSystem()->day(mDate) ); 604 text += QString::number( KOGlobals::self()->calendarSystem()->day(mDate) );
604 } 605 }
605 606
606 mLabel->setText( text ); 607 mLabel->setText( text );
607 resizeEvent( 0 ); 608 resizeEvent( 0 );
608} 609}
609void MonthViewCell::updateCell() 610void MonthViewCell::updateCell()
610{ 611{
611 qDebug("MonthViewCell::updateCell() "); 612 qDebug("MonthViewCell::updateCell() ");
612 if ( !mMonthView->isUpdatePossible() ) 613 if ( !mMonthView->isUpdatePossible() )
613 return; 614 return;
614 startUpdateCell(); 615 startUpdateCell();
615 //mLabel->setMaximumWidth( width() - mItemList->lineWidth()*2); 616 //mLabel->setMaximumWidth( width() - mItemList->lineWidth()*2);
616 QPtrList<Event> events = mMonthView->calendar()->events( mDate, true ); 617 QPtrList<Event> events = mMonthView->calendar()->events( mDate, true );
617 Event *event; 618 Event *event;
618 for( event = events.first(); event; event = events.next() ) { // for event 619 for( event = events.first(); event; event = events.next() ) { // for event
619 insertEvent(event); 620 insertEvent(event);
620 } 621 }
621 // insert due todos 622 // insert due todos
622 QPtrList<Todo> todos = mMonthView->calendar()->todos( mDate ); 623 QPtrList<Todo> todos = mMonthView->calendar()->todos( mDate );
623 Todo *todo; 624 Todo *todo;
624 for(todo = todos.first(); todo; todo = todos.next()) { 625 for(todo = todos.first(); todo; todo = todos.next()) {
625 insertTodo( todo ); 626 insertTodo( todo );
626 } 627 }
627 finishUpdateCell(); 628 finishUpdateCell();
628 // if ( isVisible()) 629 // if ( isVisible())
629 //qApp->processEvents(); 630 //qApp->processEvents();
630} 631}
631 632
632void MonthViewCell::updateConfig( bool bigFont ) // = false 633void MonthViewCell::updateConfig( bool bigFont ) // = false
633{ 634{
634 635
635 if ( bigFont ) { 636 if ( bigFont ) {
636 QFont fo = KOPrefs::instance()->mMonthViewFont; 637 QFont fo = KOPrefs::instance()->mMonthViewFont;
637 int ps = fo.pointSize() + 2; 638 int ps = fo.pointSize() + 2;
638 if ( ps < 18 ) 639 if ( ps < 18 )
639 ps += 2; 640 ps += 2;
640 fo.setPointSize( ps ); 641 fo.setPointSize( ps );
641 setFont( fo ); 642 setFont( fo );
642 } else 643 } else
643 setFont( KOPrefs::instance()->mMonthViewFont ); 644 setFont( KOPrefs::instance()->mMonthViewFont );
644 645
645 QFontMetrics fm( font() ); 646 QFontMetrics fm( font() );
646 mLabelSize = fm.size( 0, "30" ) + QSize( 4, 2 ); 647 mLabelSize = fm.size( 0, "30" ) + QSize( 4, 2 );
647 mLabelBigSize = fm.size( 0, "Mag 30" ) + QSize( 2, 2 ); 648 mLabelBigSize = fm.size( 0, "Mag 30" ) + QSize( 2, 2 );
648 mHolidayPalette = mStandardPalette; 649 mHolidayPalette = mStandardPalette;
649 mPrimaryPalette = mStandardPalette; 650 mPrimaryPalette = mStandardPalette;
650 mNonPrimaryPalette = mStandardPalette; 651 mNonPrimaryPalette = mStandardPalette;
651 if ( KOPrefs::instance()->mMonthViewUsesDayColors ) { 652 if ( KOPrefs::instance()->mMonthViewUsesDayColors ) {
652 mHolidayPalette.setColor(QColorGroup::Base, KOPrefs::instance()->mMonthViewHolidayColor ); 653 mHolidayPalette.setColor(QColorGroup::Base, KOPrefs::instance()->mMonthViewHolidayColor );
653 mHolidayPalette.setColor(QColorGroup::Background, KOPrefs::instance()->mMonthViewHolidayColor ); 654 mHolidayPalette.setColor(QColorGroup::Background, KOPrefs::instance()->mMonthViewHolidayColor );
654 mHolidayPalette.setColor(QColorGroup::Foreground, KOPrefs::instance()->mMonthViewHolidayColor.dark()); 655 mHolidayPalette.setColor(QColorGroup::Foreground, KOPrefs::instance()->mMonthViewHolidayColor.dark());
655 mPrimaryPalette.setColor(QColorGroup::Foreground,KOPrefs::instance()->mMonthViewOddColor.dark()); 656 mPrimaryPalette.setColor(QColorGroup::Foreground,KOPrefs::instance()->mMonthViewOddColor.dark());
656 mPrimaryPalette.setColor(QColorGroup::Base,KOPrefs::instance()->mMonthViewOddColor); 657 mPrimaryPalette.setColor(QColorGroup::Base,KOPrefs::instance()->mMonthViewOddColor);
657 mPrimaryPalette.setColor(QColorGroup::Background,KOPrefs::instance()->mMonthViewOddColor); 658 mPrimaryPalette.setColor(QColorGroup::Background,KOPrefs::instance()->mMonthViewOddColor);
658 mNonPrimaryPalette.setColor(QColorGroup::Foreground,KOPrefs::instance()->mMonthViewEvenColor.dark()); 659 mNonPrimaryPalette.setColor(QColorGroup::Foreground,KOPrefs::instance()->mMonthViewEvenColor.dark());
659 mNonPrimaryPalette.setColor(QColorGroup::Base,KOPrefs::instance()->mMonthViewEvenColor); 660 mNonPrimaryPalette.setColor(QColorGroup::Base,KOPrefs::instance()->mMonthViewEvenColor);
660 mNonPrimaryPalette.setColor(QColorGroup::Background,KOPrefs::instance()->mMonthViewEvenColor); 661 mNonPrimaryPalette.setColor(QColorGroup::Background,KOPrefs::instance()->mMonthViewEvenColor);
661 } 662 }
662 //updateCell(); 663 //updateCell();
663} 664}
664 665
665void MonthViewCell::enableScrollBars( bool enabled ) 666void MonthViewCell::enableScrollBars( bool enabled )
666{ 667{
667 if ( enabled ) { 668 if ( enabled ) {
668 mItemList->setVScrollBarMode(QScrollView::Auto); 669 mItemList->setVScrollBarMode(QScrollView::Auto);
669 mItemList->setHScrollBarMode(QScrollView::Auto); 670 mItemList->setHScrollBarMode(QScrollView::Auto);
670 } else { 671 } else {
671 mItemList->setVScrollBarMode(QScrollView::AlwaysOff); 672 mItemList->setVScrollBarMode(QScrollView::AlwaysOff);
672 mItemList->setHScrollBarMode(QScrollView::AlwaysOff); 673 mItemList->setHScrollBarMode(QScrollView::AlwaysOff);
673 } 674 }
674} 675}
675 676
676Incidence *MonthViewCell::selectedIncidence() 677Incidence *MonthViewCell::selectedIncidence()
677{ 678{
678 int index = mItemList->currentItem(); 679 int index = mItemList->currentItem();
679 if ( index < 0 ) return 0; 680 if ( index < 0 ) return 0;
680 681
681 MonthViewItem *item = 682 MonthViewItem *item =
682 static_cast<MonthViewItem *>( mItemList->item( index ) ); 683 static_cast<MonthViewItem *>( mItemList->item( index ) );
683 684
684 if ( !item ) return 0; 685 if ( !item ) return 0;
685 686
686 return item->incidence(); 687 return item->incidence();
687} 688}
688 689
689QDate MonthViewCell::selectedIncidenceDate() 690QDate MonthViewCell::selectedIncidenceDate()
690{ 691{
691 QDate qd; 692 QDate qd;
692 int index = mItemList->currentItem(); 693 int index = mItemList->currentItem();
693 if ( index < 0 ) return qd; 694 if ( index < 0 ) return qd;
694 695
695 MonthViewItem *item = 696 MonthViewItem *item =
696 static_cast<MonthViewItem *>( mItemList->item( index ) ); 697 static_cast<MonthViewItem *>( mItemList->item( index ) );
697 698
698 if ( !item ) return qd; 699 if ( !item ) return qd;
699 700
700 return item->incidenceDate(); 701 return item->incidenceDate();
701} 702}
702 703
703void MonthViewCell::deselect() 704void MonthViewCell::deselect()
704{ 705{
705 mItemList->clearSelection(); 706 mItemList->clearSelection();
706 enableScrollBars( false ); 707 enableScrollBars( false );
707 // updateCell(); 708 // updateCell();
708} 709}
709void MonthViewCell::select() 710void MonthViewCell::select()
710{ 711{
711 ;// updateCell(); 712 ;// updateCell();
712} 713}
713 714
714void MonthViewCell::resizeEvent ( QResizeEvent * ) 715void MonthViewCell::resizeEvent ( QResizeEvent * )
715{ 716{
716 if ( !mMonthView->isUpdatePossible() ) 717 if ( !mMonthView->isUpdatePossible() )
717 return; 718 return;
718 719
719 int size = height() - mLabel->height() - 2; 720 int size = height() - mLabel->height() - 2;
720 if ( size > 0 ) 721 if ( size > 0 )
721 mItemList->verticalScrollBar()->setMaximumHeight( size ); 722 mItemList->verticalScrollBar()->setMaximumHeight( size );
722 size = width() - mLabel->width() -2; 723 size = width() - mLabel->width() -2;
723 if ( size > 0 ) 724 if ( size > 0 )
724 mItemList->horizontalScrollBar()->setMaximumWidth( size ); 725 mItemList->horizontalScrollBar()->setMaximumWidth( size );
725 mLabel->move( width()-mItemList->lineWidth() - mLabel->width(), height()-mItemList->lineWidth() - mLabel->height() ); 726 mLabel->move( width()-mItemList->lineWidth() - mLabel->width(), height()-mItemList->lineWidth() - mLabel->height() );
726 //mLabel->setMaximumWidth( width() - mItemList->lineWidth()*2); 727 //mLabel->setMaximumWidth( width() - mItemList->lineWidth()*2);
727} 728}
728 729
729void MonthViewCell::defaultAction( QListBoxItem *item ) 730void MonthViewCell::defaultAction( QListBoxItem *item )
730{ 731{
731 if ( !item ) return; 732 if ( !item ) return;
732 733
733 MonthViewItem *eventItem = static_cast<MonthViewItem *>( item ); 734 MonthViewItem *eventItem = static_cast<MonthViewItem *>( item );
734 Incidence *incidence = eventItem->incidence(); 735 Incidence *incidence = eventItem->incidence();
735 if ( incidence ) mMonthView->defaultAction( incidence ); 736 if ( incidence ) mMonthView->defaultAction( incidence );
736} 737}
737void MonthViewCell::showDay() 738void MonthViewCell::showDay()
738{ 739{
739 emit showDaySignal( date() ); 740 emit showDaySignal( date() );
740} 741}
741void MonthViewCell::newEvent() 742void MonthViewCell::newEvent()
742{ 743{
743 QDateTime dt( date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); 744 QDateTime dt( date(), QTime( KOPrefs::instance()->mStartTime, 0 ) );
744 emit newEventSignal( dt ); 745 emit newEventSignal( dt );
745} 746}
746void MonthViewCell::cellClicked( QListBoxItem *item ) 747void MonthViewCell::cellClicked( QListBoxItem *item )
747{ 748{
748 static QListBoxItem * lastClicked = 0; 749 static QListBoxItem * lastClicked = 0;
749 if ( item == 0 ) { 750 if ( item == 0 ) {
750 QDateTime dt( date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); 751 QDateTime dt( date(), QTime( KOPrefs::instance()->mStartTime, 0 ) );
751 emit newEventSignal( dt ); 752 emit newEventSignal( dt );
752 return; 753 return;
753 } 754 }
754 /* 755 /*
755 if ( lastClicked ) 756 if ( lastClicked )
756 if ( ! item ) { 757 if ( ! item ) {
757 if ( lastClicked->listBox() != item->listBox() ) 758 if ( lastClicked->listBox() != item->listBox() )
758 lastClicked->listBox()->clearSelection(); 759 lastClicked->listBox()->clearSelection();
759 } 760 }
760 */ 761 */
761 762
762 mMonthView->setSelectedCell( this ); 763 mMonthView->setSelectedCell( this );
763 if( KOPrefs::instance()->mEnableMonthScroll || KOPrefs::instance()->mMonthViewWeek ) enableScrollBars( true ); 764 if( KOPrefs::instance()->mEnableMonthScroll || KOPrefs::instance()->mMonthViewWeek ) enableScrollBars( true );
764 select(); 765 select();
765} 766}
766 767
767void MonthViewCell::contextMenu( QListBoxItem *item ) 768void MonthViewCell::contextMenu( QListBoxItem *item )
768{ 769{
769 if ( !item ) return; 770 if ( !item ) return;
770 771
771 MonthViewItem *eventItem = static_cast<MonthViewItem *>( item ); 772 MonthViewItem *eventItem = static_cast<MonthViewItem *>( item );
772 Incidence *incidence = eventItem->incidence(); 773 Incidence *incidence = eventItem->incidence();
773 if ( incidence ) mMonthView->showContextMenu( incidence ); 774 if ( incidence ) mMonthView->showContextMenu( incidence );
774} 775}
775 776
776void MonthViewCell::selection( QListBoxItem *item ) 777void MonthViewCell::selection( QListBoxItem *item )
777{ 778{
778 if ( !item ) return; 779 if ( !item ) return;
779 780
780 mMonthView->setSelectedCell( this ); 781 mMonthView->setSelectedCell( this );
781} 782}
782 783
783 784
784// ******************************************************************************* 785// *******************************************************************************
785// ******************************************************************************* 786// *******************************************************************************
786// ******************************************************************************* 787// *******************************************************************************
787 788
788 789
789KOMonthView::KOMonthView(Calendar *calendar, QWidget *parent, const char *name) 790KOMonthView::KOMonthView(Calendar *calendar, QWidget *parent, const char *name)
790 : KOEventView( calendar, parent, name ), 791 : KOEventView( calendar, parent, name ),
791 mDaysPerWeek( 7 ), mNumWeeks( 6 ), mNumCells( mDaysPerWeek * mNumWeeks ), 792 mDaysPerWeek( 7 ), mNumWeeks( 6 ), mNumCells( mDaysPerWeek * mNumWeeks ),
792 mShortDayLabels( false ), mWidthLongDayLabel( 0 ), mSelectedCell( 0 ) 793 mShortDayLabels( false ), mWidthLongDayLabel( 0 ), mSelectedCell( 0 )
793{ 794{
794 skipResize = false; 795 skipResize = false;
795 clPending = true; 796 clPending = true;
796 mNavigatorBar = new NavigatorBar( QDate::currentDate(), this, "useBigPixmaps" ); 797 mNavigatorBar = new NavigatorBar( QDate::currentDate(), this, "useBigPixmaps" );
797 mWidStack = new QWidgetStack( this ); 798 mWidStack = new QWidgetStack( this );
798 QVBoxLayout* hb = new QVBoxLayout( this ); 799 QVBoxLayout* hb = new QVBoxLayout( this );
799 mMonthView = new QWidget( mWidStack ); 800 mMonthView = new QWidget( mWidStack );
800 mWeekView = new QWidget( mWidStack ); 801 mWeekView = new QWidget( mWidStack );
801#if QT_VERSION >= 0x030000 802#if QT_VERSION >= 0x030000
802 mWidStack->addWidget(mMonthView ); 803 mWidStack->addWidget(mMonthView );
803 mWidStack->addWidget(mWeekView ); 804 mWidStack->addWidget(mWeekView );
804#else 805#else
805 mWidStack->addWidget( mMonthView, 1 ); 806 mWidStack->addWidget( mMonthView, 1 );
806 mWidStack->addWidget( mWeekView , 1 ); 807 mWidStack->addWidget( mWeekView , 1 );
807#endif 808#endif
808 hb->addWidget( mNavigatorBar ); 809 hb->addWidget( mNavigatorBar );
809 hb->addWidget( mWidStack ); 810 hb->addWidget( mWidStack );
810 mWeekStartsMonday = KGlobal::locale()->weekStartsMonday(); 811 mWeekStartsMonday = KGlobal::locale()->weekStartsMonday();
811 mShowWeekView = KOPrefs::instance()->mMonthViewWeek; 812 mShowWeekView = KOPrefs::instance()->mMonthViewWeek;
812 if ( mShowWeekView ) 813 if ( mShowWeekView )
813 mWeekStartsMonday = true; 814 mWeekStartsMonday = true;
814 updatePossible = false; 815 updatePossible = false;
815 //updatePossible = true; 816 //updatePossible = true;
816 mCells.setAutoDelete( true ); 817 mCells.setAutoDelete( true );
817 mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ; 818 mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ;
818 mDayLabels.resize( mDaysPerWeek ); 819 mDayLabels.resize( mDaysPerWeek );
819 mDayLabelsW.resize( mDaysPerWeek ); 820 mDayLabelsW.resize( mDaysPerWeek );
820 QFont bfont = font(); 821 QFont bfont = font();
821 if ( QApplication::desktop()->width() < 650 ) { 822 if ( QApplication::desktop()->width() < 650 ) {
822 bfont.setPointSize( bfont.pointSize() - 2 ); 823 bfont.setPointSize( bfont.pointSize() - 2 );
823 } 824 }
824 bfont.setBold( true ); 825 bfont.setBold( true );
825 int i; 826 int i;
826 827
827 for( i = 0; i < mDaysPerWeek; i++ ) { 828 for( i = 0; i < mDaysPerWeek; i++ ) {
828 QLabel *label = new QLabel( mMonthView ); 829 QLabel *label = new QLabel( mMonthView );
829 label->setFont(bfont); 830 label->setFont(bfont);
830 label->setFrameStyle(QFrame::Panel|QFrame::Raised); 831 label->setFrameStyle(QFrame::Panel|QFrame::Raised);
831 label->setLineWidth(1); 832 label->setLineWidth(1);
832 label->setAlignment(AlignCenter); 833 label->setAlignment(AlignCenter);
833 mDayLabels.insert( i, label ); 834 mDayLabels.insert( i, label );
834 label = new QLabel( mWeekView ); 835 label = new QLabel( mWeekView );
835 label->setFont(bfont); 836 label->setFont(bfont);
836 label->setFrameStyle(QFrame::Panel|QFrame::Raised); 837 label->setFrameStyle(QFrame::Panel|QFrame::Raised);
837 label->setLineWidth(1); 838 label->setLineWidth(1);
838 label->setAlignment(AlignCenter); 839 label->setAlignment(AlignCenter);
839 mDayLabelsW.insert( i, label ); 840 mDayLabelsW.insert( i, label );
840 } 841 }
841 842
842 bfont.setBold( false ); 843 bfont.setBold( false );
843 mWeekLabels.resize( mNumWeeks+1 ); 844 mWeekLabels.resize( mNumWeeks+1 );
844 mWeekLabelsW.resize( 2 ); 845 mWeekLabelsW.resize( 2 );
845 for( i = 0; i < mNumWeeks+1; i++ ) { 846 for( i = 0; i < mNumWeeks+1; i++ ) {
846 KOWeekButton *label = new KOWeekButton( mMonthView ); 847 KOWeekButton *label = new KOWeekButton( mMonthView );
847 label->setFocusPolicy(NoFocus); 848 label->setFocusPolicy(NoFocus);
848 label->setFont(bfont); 849 label->setFont(bfont);
849 connect( label, SIGNAL( selectWeekNum ( int )),this, SLOT( selectInternalWeekNum ( int )) ); 850 connect( label, SIGNAL( selectWeekNum ( int )),this, SLOT( selectInternalWeekNum ( int )) );
850 label->setFlat(true); 851 label->setFlat(true);
851 QWhatsThis::add(label,i18n("Click on the week number to\nshow week zoomed")); 852 QWhatsThis::add(label,i18n("Click on the week number to\nshow week zoomed"));
852 //label->setFrameStyle(QFrame::Panel|QFrame::Raised); 853 //label->setFrameStyle(QFrame::Panel|QFrame::Raised);
853 //label->setLineWidth(1); 854 //label->setLineWidth(1);
854 //label->setAlignment(AlignCenter); 855 //label->setAlignment(AlignCenter);
855 mWeekLabels.insert( i, label ); 856 mWeekLabels.insert( i, label );
856 } 857 }
857 mWeekLabels[mNumWeeks]->setText( i18n("W")); 858 mWeekLabels[mNumWeeks]->setText( i18n("W"));
858 QWhatsThis::add(mWeekLabels[mNumWeeks],i18n("Click on this to\nselect week number")); 859 QWhatsThis::add(mWeekLabels[mNumWeeks],i18n("Click on this to\nselect week number"));
859 860
860 for( i = 0; i < 1+1; i++ ) { 861 for( i = 0; i < 1+1; i++ ) {
861 KOWeekButton *label = new KOWeekButton( mWeekView ); 862 KOWeekButton *label = new KOWeekButton( mWeekView );
862 label->setFocusPolicy(NoFocus); 863 label->setFocusPolicy(NoFocus);
863 label->setFont(bfont); 864 label->setFont(bfont);
864 connect( label, SIGNAL( selectWeekNum ( int )),this, SLOT( selectInternalWeekNum ( int )) ); 865 connect( label, SIGNAL( selectWeekNum ( int )),this, SLOT( selectInternalWeekNum ( int )) );
865 label->setFlat(true); 866 label->setFlat(true);
866 QWhatsThis::add(label,i18n("Click on the week number to\nshow week zoomed")); 867 QWhatsThis::add(label,i18n("Click on the week number to\nshow week zoomed"));
867 //label->setFrameStyle(QFrame::Panel|QFrame::Raised); 868 //label->setFrameStyle(QFrame::Panel|QFrame::Raised);
868 //label->setLineWidth(1); 869 //label->setLineWidth(1);
869 //label->setAlignment(AlignCenter); 870 //label->setAlignment(AlignCenter);
870 mWeekLabelsW.insert( i, label ); 871 mWeekLabelsW.insert( i, label );
871 } 872 }
872 mWeekLabelsW[1]->setText( i18n("W")); 873 mWeekLabelsW[1]->setText( i18n("W"));
873 874
874 875
875 int row, col; 876 int row, col;
876 mCells.resize( mNumCells ); 877 mCells.resize( mNumCells );
877 for( row = 0; row < mNumWeeks; ++row ) { 878 for( row = 0; row < mNumWeeks; ++row ) {
878 for( col = 0; col < mDaysPerWeek; ++col ) { 879 for( col = 0; col < mDaysPerWeek; ++col ) {
879 MonthViewCell *cell = new MonthViewCell( this, mMonthView ); 880 MonthViewCell *cell = new MonthViewCell( this, mMonthView );
880 mCells.insert( row * mDaysPerWeek + col, cell ); 881 mCells.insert( row * mDaysPerWeek + col, cell );
881 882
882 connect( cell, SIGNAL( defaultAction( Incidence * ) ), 883 connect( cell, SIGNAL( defaultAction( Incidence * ) ),
883 SLOT( defaultAction( Incidence * ) ) ); 884 SLOT( defaultAction( Incidence * ) ) );
884 connect( cell, SIGNAL( newEventSignal( QDateTime ) ), 885 connect( cell, SIGNAL( newEventSignal( QDateTime ) ),
885 SIGNAL( newEventSignal( QDateTime ) ) ); 886 SIGNAL( newEventSignal( QDateTime ) ) );
886 connect( cell, SIGNAL( showDaySignal( QDate ) ), 887 connect( cell, SIGNAL( showDaySignal( QDate ) ),
887 SIGNAL( showDaySignal( QDate ) ) ); 888 SIGNAL( showDaySignal( QDate ) ) );
888 } 889 }
889 } 890 }
890 mCellsW.resize( mDaysPerWeek ); 891 mCellsW.resize( mDaysPerWeek );
891 for( col = 0; col < mDaysPerWeek; ++col ) { 892 for( col = 0; col < mDaysPerWeek; ++col ) {
892 MonthViewCell *cell = new MonthViewCell( this, mWeekView ); 893 MonthViewCell *cell = new MonthViewCell( this, mWeekView );
893 mCellsW.insert( col, cell ); 894 mCellsW.insert( col, cell );
894 895
895 connect( cell, SIGNAL( defaultAction( Incidence * ) ), 896 connect( cell, SIGNAL( defaultAction( Incidence * ) ),
896 SLOT( defaultAction( Incidence * ) ) ); 897 SLOT( defaultAction( Incidence * ) ) );
897 connect( cell, SIGNAL( newEventSignal( QDateTime ) ), 898 connect( cell, SIGNAL( newEventSignal( QDateTime ) ),
898 SIGNAL( newEventSignal( QDateTime ) ) ); 899 SIGNAL( newEventSignal( QDateTime ) ) );
899 connect( cell, SIGNAL( showDaySignal( QDate ) ), 900 connect( cell, SIGNAL( showDaySignal( QDate ) ),
900 SIGNAL( showDaySignal( QDate ) ) ); 901 SIGNAL( showDaySignal( QDate ) ) );
901 cell->updateConfig(KOPrefs::instance()->mMonthViewUsesBigFont ); 902 cell->updateConfig(KOPrefs::instance()->mMonthViewUsesBigFont );
902 } 903 }
903 904
904 //connect( mWeekLabels[mNumWeeks], SIGNAL( clicked() ), SLOT( switchView() ) ); 905 //connect( mWeekLabels[mNumWeeks], SIGNAL( clicked() ), SLOT( switchView() ) );
905 mContextMenu = eventPopup(); 906 mContextMenu = eventPopup();
906 // updateConfig(); //useless here... 907 // updateConfig(); //useless here...
907 // ... but we need mWidthLongDayLabel computed 908 // ... but we need mWidthLongDayLabel computed
908 QFontMetrics fontmetric(mDayLabels[0]->font()); 909 QFontMetrics fontmetric(mDayLabels[0]->font());
909 mWidthLongDayLabel = 0; 910 mWidthLongDayLabel = 0;
910 for (int i = 0; i < 7; i++) { 911 for (int i = 0; i < 7; i++) {
911 int width = fontmetric.width(KOGlobals::self()->calendarSystem()->weekDayName(i+1)); 912 int width = fontmetric.width(KOGlobals::self()->calendarSystem()->weekDayName(i+1));
912 if ( width > mWidthLongDayLabel ) mWidthLongDayLabel = width; 913 if ( width > mWidthLongDayLabel ) mWidthLongDayLabel = width;
913 } 914 }
914 915
915 //mWeekLabels[mNumWeeks]->setText( i18n("W")); 916 //mWeekLabels[mNumWeeks]->setText( i18n("W"));
916 917
917 if ( mShowWeekView ) 918 if ( mShowWeekView )
918 mWidStack->raiseWidget( mWeekView ); 919 mWidStack->raiseWidget( mWeekView );
919 else 920 else
920 mWidStack->raiseWidget( mMonthView ); 921 mWidStack->raiseWidget( mMonthView );
921 922
922 emit incidenceSelected( 0 ); 923 emit incidenceSelected( 0 );
923#ifndef DESKTOP_VERSION 924#ifndef DESKTOP_VERSION
924 resize( QApplication::desktop()->size() ); 925 resize( QApplication::desktop()->size() );
925 computeLayout(); 926 computeLayout();
926#endif 927#endif
927} 928}
928 929
929KOMonthView::~KOMonthView() 930KOMonthView::~KOMonthView()
930{ 931{
931 delete mContextMenu; 932 delete mContextMenu;
932} 933}
933 934
934void KOMonthView::selectInternalWeekNum ( int n ) 935void KOMonthView::selectInternalWeekNum ( int n )
935{ 936{
936 switchView(); 937 switchView();
937 emit selectWeekNum ( n ); 938 emit selectWeekNum ( n );
938} 939}
939 940
940int KOMonthView::currentWeek() 941int KOMonthView::currentWeek()
941{ 942{
942 if ( mShowWeekView ) 943 if ( mShowWeekView )
943 return mWeekLabelsW[0]->getWeekNum(); 944 return mWeekLabelsW[0]->getWeekNum();
944 return mWeekLabels[0]->getWeekNum(); 945 return mWeekLabels[0]->getWeekNum();
945} 946}
946void KOMonthView::switchView() 947void KOMonthView::switchView()
947{ 948{
948 949
949 if ( selectedCell( ) ) 950 if ( selectedCell( ) )
950 selectedCell()->deselect(); 951 selectedCell()->deselect();
951 mShowWeekView = !mShowWeekView; 952 mShowWeekView = !mShowWeekView;
952 KOPrefs::instance()->mMonthViewWeek = mShowWeekView; 953 KOPrefs::instance()->mMonthViewWeek = mShowWeekView;
953 if ( clPending ) { 954 if ( clPending ) {
954 computeLayout(); 955 computeLayout();
955 updateConfig(); 956 updateConfig();
956 } 957 }
957 if ( mShowWeekView ) 958 if ( mShowWeekView )
958 mWidStack->raiseWidget( mWeekView ); 959 mWidStack->raiseWidget( mWeekView );
959 else 960 else
960 mWidStack->raiseWidget( mMonthView ); 961 mWidStack->raiseWidget( mMonthView );
961 clPending = false; 962 clPending = false;
962} 963}
963 964
964int KOMonthView::maxDatesHint() 965int KOMonthView::maxDatesHint()
965{ 966{
966 return mNumCells; 967 return mNumCells;
967} 968}
968 969
969int KOMonthView::currentDateCount() 970int KOMonthView::currentDateCount()
970{ 971{
971 return mNumCells; 972 return mNumCells;
972} 973}
973 974
974QPtrList<Incidence> KOMonthView::selectedIncidences() 975QPtrList<Incidence> KOMonthView::selectedIncidences()
975{ 976{
976 QPtrList<Incidence> selected; 977 QPtrList<Incidence> selected;
977 978
978 if ( mSelectedCell ) { 979 if ( mSelectedCell ) {
979 Incidence *incidence = mSelectedCell->selectedIncidence(); 980 Incidence *incidence = mSelectedCell->selectedIncidence();
980 if ( incidence ) selected.append( incidence ); 981 if ( incidence ) selected.append( incidence );
981 } 982 }
982 983
983 return selected; 984 return selected;
984} 985}
985 986
986DateList KOMonthView::selectedDates() 987DateList KOMonthView::selectedDates()
987{ 988{
988 DateList selected; 989 DateList selected;
989 990
990 if ( mSelectedCell ) { 991 if ( mSelectedCell ) {
991 QDate qd = mSelectedCell->selectedIncidenceDate(); 992 QDate qd = mSelectedCell->selectedIncidenceDate();
992 if ( qd.isValid() ) selected.append( qd ); 993 if ( qd.isValid() ) selected.append( qd );
993 } 994 }
994 995
995 return selected; 996 return selected;
996} 997}
997 998
998void KOMonthView::printPreview(CalPrinter *calPrinter, const QDate &fd, 999void KOMonthView::printPreview(CalPrinter *calPrinter, const QDate &fd,
999 const QDate &td) 1000 const QDate &td)
1000{ 1001{
1001#ifndef KORG_NOPRINTER 1002#ifndef KORG_NOPRINTER
1002 calPrinter->preview(CalPrinter::Month, fd, td); 1003 calPrinter->preview(CalPrinter::Month, fd, td);
1003#endif 1004#endif
1004} 1005}
1005 1006
1006void KOMonthView::updateConfig() 1007void KOMonthView::updateConfig()
1007{ 1008{
1008 1009
1009 mWeekStartsMonday = KGlobal::locale()->weekStartsMonday(); 1010 mWeekStartsMonday = KGlobal::locale()->weekStartsMonday();
1010 1011
1011 if ( mShowWeekView ) { 1012 if ( mShowWeekView ) {
1012 mWeekStartsMonday = true; 1013 mWeekStartsMonday = true;
1013 } 1014 }
1014 QFontMetrics fontmetric(mDayLabels[0]->font()); 1015 QFontMetrics fontmetric(mDayLabels[0]->font());
1015 mWidthLongDayLabel = 0; 1016 mWidthLongDayLabel = 0;
1016 1017
1017 for (int i = 0; i < 7; i++) { 1018 for (int i = 0; i < 7; i++) {
1018 int width = fontmetric.width(KOGlobals::self()->calendarSystem()->weekDayName(i+1)); 1019 int width = fontmetric.width(KOGlobals::self()->calendarSystem()->weekDayName(i+1));
1019 if ( width > mWidthLongDayLabel ) mWidthLongDayLabel = width; 1020 if ( width > mWidthLongDayLabel ) mWidthLongDayLabel = width;
1020 } 1021 }
1021 bool temp = mShowSatSunComp ; 1022 bool temp = mShowSatSunComp ;
1022 mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ; 1023 mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ;
1023 if ( ! mShowWeekView ) { 1024 if ( ! mShowWeekView ) {
1024 if ( temp != KOPrefs::instance()->mMonthViewSatSunTog ) 1025 if ( temp != KOPrefs::instance()->mMonthViewSatSunTog )
1025 computeLayout(); 1026 computeLayout();
1026 } 1027 }
1027 updateDayLabels(); 1028 updateDayLabels();
1028 //qDebug("KOMonthView::updateConfig() %d %d %d ",height(), mDayLabels[0]->sizeHint().height() ,mNumWeeks); 1029 //qDebug("KOMonthView::updateConfig() %d %d %d ",height(), mDayLabels[0]->sizeHint().height() ,mNumWeeks);
1029 //int cellHeight = (height() - mDayLabels[0]->sizeHint().height()) /mNumWeeks; 1030 //int cellHeight = (height() - mDayLabels[0]->sizeHint().height()) /mNumWeeks;
1030 //resizeEvent( 0 ); 1031 //resizeEvent( 0 );
1031 for (uint i = 0; i < mCells.count(); ++i) { 1032 for (uint i = 0; i < mCells.count(); ++i) {
1032 mCells[i]->updateConfig(); 1033 mCells[i]->updateConfig();
1033 } 1034 }
1034 1035
1035 for (uint i = 0; i < mCellsW.count(); ++i) { 1036 for (uint i = 0; i < mCellsW.count(); ++i) {
1036 mCellsW[i]->updateConfig(KOPrefs::instance()->mMonthViewUsesBigFont); 1037 mCellsW[i]->updateConfig(KOPrefs::instance()->mMonthViewUsesBigFont);
1037 } 1038 }
1038#ifdef DESKTOP_VERSION 1039#ifdef DESKTOP_VERSION
1039 MonthViewCell::toolTipGroup()->setEnabled(KOPrefs::instance()->mEnableToolTips); 1040 MonthViewCell::toolTipGroup()->setEnabled(KOPrefs::instance()->mEnableToolTips);
1040#endif 1041#endif
1041 updateView(); 1042 updateView();
1042} 1043}
1043 1044
1044void KOMonthView::updateDayLabels() 1045void KOMonthView::updateDayLabels()
1045{ 1046{
1046 1047
1047 QPtrVector<QLabel> *mDayLabelsT; 1048 QPtrVector<QLabel> *mDayLabelsT;
1048 1049
1049 mDayLabelsT = &mDayLabelsW; 1050 mDayLabelsT = &mDayLabelsW;
1050 for (int i = 0; i < 7; i++) { 1051 for (int i = 0; i < 7; i++) {
1051 if (mWeekStartsMonday) { 1052 if (mWeekStartsMonday) {
1052 bool show = mShortDayLabels; 1053 bool show = mShortDayLabels;
1053 if ( i > 4 && mShowSatSunComp && mWidthLongDayLabel > (*mDayLabelsT)[i]->width() ) 1054 if ( i > 4 && mShowSatSunComp && mWidthLongDayLabel > (*mDayLabelsT)[i]->width() )