-rw-r--r-- | library/datebookmonth.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/library/datebookmonth.cpp b/library/datebookmonth.cpp index 2616b7b..ffdf335 100644 --- a/library/datebookmonth.cpp +++ b/library/datebookmonth.cpp | |||
@@ -1,776 +1,783 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of the Qtopia Environment. | 4 | ** This file is part of the Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #include "config.h" | 20 | #include "config.h" |
21 | #include "datebookmonth.h" | 21 | #include "datebookmonth.h" |
22 | #include "datebookdb.h" | 22 | #include "datebookdb.h" |
23 | #include "resource.h" | 23 | #include "resource.h" |
24 | #include <qpe/qpeapplication.h> | 24 | #include <qpe/qpeapplication.h> |
25 | 25 | ||
26 | #include <qtoolbutton.h> | 26 | #include <qtoolbutton.h> |
27 | #include <qspinbox.h> | 27 | #include <qspinbox.h> |
28 | #include <qcombobox.h> | 28 | #include <qcombobox.h> |
29 | #include <qvaluestack.h> | 29 | #include <qvaluestack.h> |
30 | #include <qwhatsthis.h> | 30 | #include <qwhatsthis.h> |
31 | 31 | ||
32 | static const QColor s_colorNormalLight = QColor(255, 150, 150); | 32 | static const QColor s_colorNormalLight = QColor(255, 150, 150); |
33 | static const QColor s_colorRepeatLight = QColor(150, 150, 255); | 33 | static const QColor s_colorRepeatLight = QColor(150, 150, 255); |
34 | static const QColor s_colorHolidayLight= QColor(150, 255, 150); | 34 | static const QColor s_colorHolidayLight= QColor(150, 255, 150); |
35 | 35 | ||
36 | DateBookMonthHeader::DateBookMonthHeader( QWidget *parent, const char *name ) | 36 | DateBookMonthHeader::DateBookMonthHeader( QWidget *parent, const char *name ) |
37 | : QHBox( parent, name ) | 37 | : QHBox( parent, name ) |
38 | { | 38 | { |
39 | setBackgroundMode( PaletteButton ); | 39 | setBackgroundMode( PaletteButton ); |
40 | 40 | ||
41 | begin = new QToolButton( this ); | 41 | begin = new QToolButton( this ); |
42 | begin->setFocusPolicy(NoFocus); | 42 | begin->setFocusPolicy(NoFocus); |
43 | begin->setPixmap( Resource::loadPixmap( "start" ) ); | 43 | begin->setPixmap( Resource::loadPixmap( "start" ) ); |
44 | begin->setAutoRaise( TRUE ); | 44 | begin->setAutoRaise( TRUE ); |
45 | begin->setFixedSize( begin->sizeHint() ); | 45 | begin->setFixedSize( begin->sizeHint() ); |
46 | QWhatsThis::add( begin, tr("Show January in the selected year") ); | 46 | QWhatsThis::add( begin, tr("Show January in the selected year") ); |
47 | 47 | ||
48 | back = new QToolButton( this ); | 48 | back = new QToolButton( this ); |
49 | back->setFocusPolicy(NoFocus); | 49 | back->setFocusPolicy(NoFocus); |
50 | back->setPixmap( Resource::loadPixmap( "back" ) ); | 50 | back->setPixmap( Resource::loadPixmap( "back" ) ); |
51 | back->setAutoRaise( TRUE ); | 51 | back->setAutoRaise( TRUE ); |
52 | back->setFixedSize( back->sizeHint() ); | 52 | back->setFixedSize( back->sizeHint() ); |
53 | QWhatsThis::add( back, tr("Show the previous month") ); | 53 | QWhatsThis::add( back, tr("Show the previous month") ); |
54 | 54 | ||
55 | month = new QComboBox( FALSE, this ); | 55 | month = new QComboBox( FALSE, this ); |
56 | for ( int i = 0; i < 12; ++i ) | 56 | for ( int i = 0; i < 12; ++i ) |
57 | month->insertItem( Calendar::nameOfMonth( i + 1 ) ); | 57 | month->insertItem( Calendar::nameOfMonth( i + 1 ) ); |
58 | 58 | ||
59 | year = new QSpinBox( 1752, 8000, 1, this ); | 59 | year = new QSpinBox( 1752, 8000, 1, this ); |
60 | 60 | ||
61 | next = new QToolButton( this ); | 61 | next = new QToolButton( this ); |
62 | next->setFocusPolicy(NoFocus); | 62 | next->setFocusPolicy(NoFocus); |
63 | next->setPixmap( Resource::loadPixmap( "forward" ) ); | 63 | next->setPixmap( Resource::loadPixmap( "forward" ) ); |
64 | next->setAutoRaise( TRUE ); | 64 | next->setAutoRaise( TRUE ); |
65 | next->setFixedSize( next->sizeHint() ); | 65 | next->setFixedSize( next->sizeHint() ); |
66 | QWhatsThis::add( next, tr("Show the next month") ); | 66 | QWhatsThis::add( next, tr("Show the next month") ); |
67 | 67 | ||
68 | end = new QToolButton( this ); | 68 | end = new QToolButton( this ); |
69 | end->setFocusPolicy(NoFocus); | 69 | end->setFocusPolicy(NoFocus); |
70 | end->setPixmap( Resource::loadPixmap( "finish" ) ); | 70 | end->setPixmap( Resource::loadPixmap( "finish" ) ); |
71 | end->setAutoRaise( TRUE ); | 71 | end->setAutoRaise( TRUE ); |
72 | end->setFixedSize( end->sizeHint() ); | 72 | end->setFixedSize( end->sizeHint() ); |
73 | QWhatsThis::add( end, tr("Show December in the selected year") ); | 73 | QWhatsThis::add( end, tr("Show December in the selected year") ); |
74 | 74 | ||
75 | connect( month, SIGNAL( activated(int) ), | 75 | connect( month, SIGNAL( activated(int) ), |
76 | this, SLOT( updateDate() ) ); | 76 | this, SLOT( updateDate() ) ); |
77 | connect( year, SIGNAL( valueChanged(int) ), | 77 | connect( year, SIGNAL( valueChanged(int) ), |
78 | this, SLOT( updateDate() ) ); | 78 | this, SLOT( updateDate() ) ); |
79 | connect( begin, SIGNAL( clicked() ), | 79 | connect( begin, SIGNAL( clicked() ), |
80 | this, SLOT( firstMonth() ) ); | 80 | this, SLOT( firstMonth() ) ); |
81 | connect( end, SIGNAL( clicked() ), | 81 | connect( end, SIGNAL( clicked() ), |
82 | this, SLOT( lastMonth() ) ); | 82 | this, SLOT( lastMonth() ) ); |
83 | connect( back, SIGNAL( clicked() ), | 83 | connect( back, SIGNAL( clicked() ), |
84 | this, SLOT( monthBack() ) ); | 84 | this, SLOT( monthBack() ) ); |
85 | connect( next, SIGNAL( clicked() ), | 85 | connect( next, SIGNAL( clicked() ), |
86 | this, SLOT( monthForward() ) ); | 86 | this, SLOT( monthForward() ) ); |
87 | back->setAutoRepeat( TRUE ); | 87 | back->setAutoRepeat( TRUE ); |
88 | next->setAutoRepeat( TRUE ); | 88 | next->setAutoRepeat( TRUE ); |
89 | } | 89 | } |
90 | 90 | ||
91 | 91 | ||
92 | DateBookMonthHeader::~DateBookMonthHeader() | 92 | DateBookMonthHeader::~DateBookMonthHeader() |
93 | { | 93 | { |
94 | 94 | ||
95 | } | 95 | } |
96 | 96 | ||
97 | void DateBookMonthHeader::updateDate() | 97 | void DateBookMonthHeader::updateDate() |
98 | { | 98 | { |
99 | emit dateChanged( year->value(), month->currentItem() + 1 ); | 99 | emit dateChanged( year->value(), month->currentItem() + 1 ); |
100 | } | 100 | } |
101 | 101 | ||
102 | void DateBookMonthHeader::firstMonth() | 102 | void DateBookMonthHeader::firstMonth() |
103 | { | 103 | { |
104 | emit dateChanged( year->value(), 1 ); | 104 | emit dateChanged( year->value(), 1 ); |
105 | month->setCurrentItem( 0 ); | 105 | month->setCurrentItem( 0 ); |
106 | } | 106 | } |
107 | 107 | ||
108 | void DateBookMonthHeader::lastMonth() | 108 | void DateBookMonthHeader::lastMonth() |
109 | { | 109 | { |
110 | emit dateChanged( year->value(), 12 ); | 110 | emit dateChanged( year->value(), 12 ); |
111 | month->setCurrentItem( 11 ); | 111 | month->setCurrentItem( 11 ); |
112 | } | 112 | } |
113 | 113 | ||
114 | void DateBookMonthHeader::monthBack() | 114 | void DateBookMonthHeader::monthBack() |
115 | { | 115 | { |
116 | if ( month->currentItem() > 0 ) { | 116 | if ( month->currentItem() > 0 ) { |
117 | emit dateChanged( year->value(), month->currentItem() ); | 117 | emit dateChanged( year->value(), month->currentItem() ); |
118 | month->setCurrentItem( month->currentItem() - 1 ); | 118 | month->setCurrentItem( month->currentItem() - 1 ); |
119 | } else { | 119 | } else { |
120 | emit dateChanged( year->value() - 1, 12 ); | 120 | emit dateChanged( year->value() - 1, 12 ); |
121 | // we have a signal set to a changed value in year so we only need to change | 121 | // we have a signal set to a changed value in year so we only need to change |
122 | // year to get the result... | 122 | // year to get the result... |
123 | month->setCurrentItem( 11 ); | 123 | month->setCurrentItem( 11 ); |
124 | year->setValue( year->value() - 1 ); | 124 | year->setValue( year->value() - 1 ); |
125 | } | 125 | } |
126 | } | 126 | } |
127 | 127 | ||
128 | void DateBookMonthHeader::monthForward() | 128 | void DateBookMonthHeader::monthForward() |
129 | { | 129 | { |
130 | if ( month->currentItem() < 11 ) { | 130 | if ( month->currentItem() < 11 ) { |
131 | emit dateChanged( year->value(), month->currentItem() + 2 ); | 131 | emit dateChanged( year->value(), month->currentItem() + 2 ); |
132 | month->setCurrentItem( month->currentItem() + 1 ); | 132 | month->setCurrentItem( month->currentItem() + 1 ); |
133 | } else { | 133 | } else { |
134 | // we have a signal set to a changed value in year so we only need to change | 134 | // we have a signal set to a changed value in year so we only need to change |
135 | // year to get the result... | 135 | // year to get the result... |
136 | month->setCurrentItem( 0 ); | 136 | month->setCurrentItem( 0 ); |
137 | year->setValue( year->value() + 1 ); | 137 | year->setValue( year->value() + 1 ); |
138 | } | 138 | } |
139 | } | 139 | } |
140 | 140 | ||
141 | void DateBookMonthHeader::setDate( int y, int m ) | 141 | void DateBookMonthHeader::setDate( int y, int m ) |
142 | { | 142 | { |
143 | year->setValue( y ); | 143 | year->setValue( y ); |
144 | month->setCurrentItem( m - 1 ); | 144 | month->setCurrentItem( m - 1 ); |
145 | } | 145 | } |
146 | 146 | ||
147 | //--------------------------------------------------------------------------- | 147 | //--------------------------------------------------------------------------- |
148 | 148 | ||
149 | class DateBookMonthTablePrivate | 149 | class DateBookMonthTablePrivate |
150 | { | 150 | { |
151 | public: | 151 | public: |
152 | DateBookMonthTablePrivate() {}; | 152 | DateBookMonthTablePrivate() {}; |
153 | ~DateBookMonthTablePrivate() { mMonthEvents.clear(); }; | 153 | ~DateBookMonthTablePrivate() { mMonthEvents.clear(); }; |
154 | 154 | ||
155 | QValueList<EffectiveEvent> mMonthEvents; | 155 | QValueList<EffectiveEvent> mMonthEvents; |
156 | bool onMonday; | 156 | bool onMonday; |
157 | }; | 157 | }; |
158 | 158 | ||
159 | DateBookMonthTable::DateBookMonthTable( QWidget *parent, const char *name, | 159 | DateBookMonthTable::DateBookMonthTable( QWidget *parent, const char *name, |
160 | DateBookDB *newDb ) | 160 | DateBookDB *newDb ) |
161 | : QTable( 6, 7, parent, name ), | 161 | : QTable( 6, 7, parent, name ), |
162 | db( newDb ) | 162 | db( newDb ) |
163 | { | 163 | { |
164 | d = new DateBookMonthTablePrivate(); | 164 | d = new DateBookMonthTablePrivate(); |
165 | selYear = -1; | 165 | selYear = -1; |
166 | selMonth = -1; | 166 | selMonth = -1; |
167 | selDay = -1; | 167 | selDay = -1; |
168 | 168 | ||
169 | /* init these as well make valgrind happy and be consistent with Qtopia1.6 -zecke */ | 169 | /* init these as well make valgrind happy and be consistent with Qtopia1.6 -zecke */ |
170 | year = -1; | 170 | year = -1; |
171 | month = -1; | 171 | month = -1; |
172 | day = -1; | 172 | day = -1; |
173 | 173 | ||
174 | Config cfg( "qpe" ); | 174 | Config cfg( "qpe" ); |
175 | cfg.setGroup( "Time" ); | 175 | cfg.setGroup( "Time" ); |
176 | d->onMonday = cfg.readBoolEntry( "MONDAY" ); | 176 | d->onMonday = cfg.readBoolEntry( "MONDAY" ); |
177 | 177 | ||
178 | horizontalHeader()->setResizeEnabled( FALSE ); | 178 | horizontalHeader()->setResizeEnabled( FALSE ); |
179 | // we have to do this here... or suffer the consequences later... | 179 | // we have to do this here... or suffer the consequences later... |
180 | for ( int i = 0; i < 7; i++ ){ | 180 | for ( int i = 0; i < 7; i++ ){ |
181 | horizontalHeader()->resizeSection( i, 30 ); | 181 | horizontalHeader()->resizeSection( i, 30 ); |
182 | setColumnStretchable( i, TRUE ); | 182 | setColumnStretchable( i, TRUE ); |
183 | } | 183 | } |
184 | setupLabels(); | 184 | setupLabels(); |
185 | 185 | ||
186 | verticalHeader()->hide(); | 186 | verticalHeader()->hide(); |
187 | setLeftMargin( 0 ); | 187 | setLeftMargin( 0 ); |
188 | for ( int i = 0; i < 6; ++i ) | 188 | for ( int i = 0; i < 6; ++i ) |
189 | setRowStretchable( i, TRUE ); | 189 | setRowStretchable( i, TRUE ); |
190 | 190 | ||
191 | setSelectionMode( NoSelection ); | 191 | setSelectionMode( NoSelection ); |
192 | 192 | ||
193 | connect( this, SIGNAL( clicked(int,int,int,const QPoint&) ), | 193 | connect( this, SIGNAL( clicked(int,int,int,const QPoint&) ), |
194 | this, SLOT( dayClicked(int,int) ) ); | 194 | this, SLOT( dayClicked(int,int) ) ); |
195 | connect( this, SIGNAL( currentChanged(int,int) ), | 195 | connect( this, SIGNAL( currentChanged(int,int) ), |
196 | this, SLOT( dragDay(int,int) ) ); | 196 | this, SLOT( dragDay(int,int) ) ); |
197 | setVScrollBarMode( AlwaysOff ); | 197 | setVScrollBarMode( AlwaysOff ); |
198 | setHScrollBarMode( AlwaysOff ); | 198 | setHScrollBarMode( AlwaysOff ); |
199 | } | 199 | } |
200 | 200 | ||
201 | DateBookMonthTable::~DateBookMonthTable() | 201 | DateBookMonthTable::~DateBookMonthTable() |
202 | { | 202 | { |
203 | monthsEvents.clear(); | 203 | monthsEvents.clear(); |
204 | delete d; | 204 | delete d; |
205 | } | 205 | } |
206 | 206 | ||
207 | void DateBookMonthTable::setDate(int y, int m, int d) | 207 | void DateBookMonthTable::setDate(int y, int m, int d) |
208 | { | 208 | { |
209 | if (month == m && year == y) { | 209 | if (month == m && year == y) { |
210 | if ( selYear == -1 ) | 210 | if ( selYear == -1 ) |
211 | year = selYear; | 211 | year = selYear; |
212 | if ( selMonth == -1 ) | 212 | if ( selMonth == -1 ) |
213 | month = selMonth; | 213 | month = selMonth; |
214 | int r1, c1, r2, c2; | 214 | int r1, c1, r2, c2; |
215 | findDay(selDay, r1, c1); | 215 | findDay(selDay, r1, c1); |
216 | selDay = day = d; | 216 | selDay = day = d; |
217 | findDay(selDay, r2, c2); | 217 | findDay(selDay, r2, c2); |
218 | setCurrentCell( r2, c2 ); | 218 | setCurrentCell( r2, c2 ); |
219 | //updateCell(r1,c1); | 219 | //updateCell(r1,c1); |
220 | //updateCell(r2,c2); | 220 | //updateCell(r2,c2); |
221 | } else { | 221 | } else { |
222 | selYear = year = y; | 222 | selYear = year = y; |
223 | selMonth = month = m; | 223 | selMonth = month = m; |
224 | selDay = day = d; | 224 | selDay = day = d; |
225 | setupTable(); | 225 | setupTable(); |
226 | } | 226 | } |
227 | } | 227 | } |
228 | 228 | ||
229 | void DateBookMonthTable::redraw() | 229 | void DateBookMonthTable::redraw() |
230 | { | 230 | { |
231 | setupLabels(); | 231 | setupLabels(); |
232 | setupTable(); | 232 | setupTable(); |
233 | } | 233 | } |
234 | 234 | ||
235 | void DateBookMonthTable::setWeekStart( bool onMonday ) | 235 | void DateBookMonthTable::setWeekStart( bool onMonday ) |
236 | { | 236 | { |
237 | d->onMonday = onMonday; | 237 | d->onMonday = onMonday; |
238 | setupLabels(); | 238 | setupLabels(); |
239 | setupTable(); | 239 | setupTable(); |
240 | } | 240 | } |
241 | 241 | ||
242 | void DateBookMonthTable::setupTable() | 242 | void DateBookMonthTable::setupTable() |
243 | { | 243 | { |
244 | QValueList<Calendar::Day> days = Calendar::daysOfMonth( year, month, d->onMonday ); | 244 | QValueList<Calendar::Day> days = Calendar::daysOfMonth( year, month, d->onMonday ); |
245 | QValueList<Calendar::Day>::Iterator it = days.begin(); | 245 | QValueList<Calendar::Day>::Iterator it = days.begin(); |
246 | int row = 0, col = 0; | 246 | int row = 0, col = 0; |
247 | int crow = 0; | 247 | int crow = 0; |
248 | int ccol = 0; | 248 | int ccol = 0; |
249 | for ( ; it != days.end(); ++it ) { | 249 | for ( ; it != days.end(); ++it ) { |
250 | DayItemMonth *i = (DayItemMonth *)item( row, col ); | 250 | DayItemMonth *i = (DayItemMonth *)item( row, col ); |
251 | if ( !i ) { | 251 | if ( !i ) { |
252 | i = new DayItemMonth( this, QTableItem::Never, "" ); | 252 | i = new DayItemMonth( this, QTableItem::Never, "" ); |
253 | setItem( row, col, i ); | 253 | setItem( row, col, i ); |
254 | } | 254 | } |
255 | Calendar::Day calDay = *it; | 255 | Calendar::Day calDay = *it; |
256 | i->clearEffEvents(); | 256 | i->clearEffEvents(); |
257 | i->setDay( calDay.date ); | 257 | i->setDay( calDay.date ); |
258 | i->setType( calDay.type ); | 258 | i->setType( calDay.type ); |
259 | if ( i->day() == day && calDay.type == Calendar::Day::ThisMonth ) { | 259 | if ( i->day() == day && calDay.type == Calendar::Day::ThisMonth ) { |
260 | crow = row; | 260 | crow = row; |
261 | ccol = col; | 261 | ccol = col; |
262 | } | 262 | } |
263 | 263 | ||
264 | updateCell( row, col ); | 264 | updateCell( row, col ); |
265 | 265 | ||
266 | if ( col == 6 ) { | 266 | if ( col == 6 ) { |
267 | ++row; | 267 | ++row; |
268 | col = 0; | 268 | col = 0; |
269 | } else { | 269 | } else { |
270 | ++col; | 270 | ++col; |
271 | } | 271 | } |
272 | } | 272 | } |
273 | setCurrentCell( crow, ccol ); | 273 | setCurrentCell( crow, ccol ); |
274 | getEvents(); | 274 | getEvents(); |
275 | } | 275 | } |
276 | 276 | ||
277 | void DateBookMonthTable::findDay( int day, int &row, int &col ) | 277 | void DateBookMonthTable::findDay( int day, int &row, int &col ) |
278 | { | 278 | { |
279 | QDate dtBegin( year, month, 1 ); | 279 | QDate dtBegin( year, month, 1 ); |
280 | int skips = dtBegin.dayOfWeek(); | 280 | int skips = dtBegin.dayOfWeek(); |
281 | int effective_day = day + skips - 1; // row/columns begin at 0 | 281 | int effective_day = day + skips - 1; // row/columns begin at 0 |
282 | // make an extra adjustment if we start on Mondays. | 282 | // make an extra adjustment if we start on Mondays. |
283 | if ( d->onMonday ) | 283 | if ( d->onMonday ) |
284 | effective_day--; | 284 | effective_day--; |
285 | row = effective_day / 7; | 285 | row = effective_day / 7; |
286 | col = effective_day % 7; | 286 | col = effective_day % 7; |
287 | } | 287 | } |
288 | 288 | ||
289 | void DateBookMonthTable::dayClicked( int row, int col ) | 289 | void DateBookMonthTable::dayClicked( int row, int col ) |
290 | { | 290 | { |
291 | changeDaySelection( row, col ); | 291 | changeDaySelection( row, col ); |
292 | emit dateClicked( selYear, selMonth, selDay ); | 292 | emit dateClicked( selYear, selMonth, selDay ); |
293 | } | 293 | } |
294 | 294 | ||
295 | void DateBookMonthTable::dragDay( int row, int col ) | 295 | void DateBookMonthTable::dragDay( int row, int col ) |
296 | { | 296 | { |
297 | changeDaySelection( row, col ); | 297 | changeDaySelection( row, col ); |
298 | } | 298 | } |
299 | 299 | ||
300 | void DateBookMonthTable::changeDaySelection( int row, int col ) | 300 | void DateBookMonthTable::changeDaySelection( int row, int col ) |
301 | { | 301 | { |
302 | DayItemMonth *i = (DayItemMonth*)item( row, col ); | 302 | DayItemMonth *i = (DayItemMonth*)item( row, col ); |
303 | if ( !i ) | 303 | if ( !i ) |
304 | return; | 304 | return; |
305 | switch ( i->type() ) { | 305 | switch ( i->type() ) { |
306 | case Calendar::Day::ThisMonth: | 306 | case Calendar::Day::ThisMonth: |
307 | selMonth = month; | 307 | selMonth = month; |
308 | break; | 308 | break; |
309 | case Calendar::Day::PrevMonth: | 309 | case Calendar::Day::PrevMonth: |
310 | selMonth = month-1; | 310 | selMonth = month-1; |
311 | break; | 311 | break; |
312 | default: | 312 | default: |
313 | selMonth = month+1; | 313 | selMonth = month+1; |
314 | } | 314 | } |
315 | 315 | ||
316 | selYear = year; | 316 | selYear = year; |
317 | if ( selMonth <= 0 ) { | 317 | if ( selMonth <= 0 ) { |
318 | selMonth = 12; | 318 | selMonth = 12; |
319 | selYear--; | 319 | selYear--; |
320 | } else if ( selMonth > 12 ) { | 320 | } else if ( selMonth > 12 ) { |
321 | selMonth = 1; | 321 | selMonth = 1; |
322 | selYear++; | 322 | selYear++; |
323 | } | 323 | } |
324 | selDay = i->day(); | 324 | selDay = i->day(); |
325 | } | 325 | } |
326 | 326 | ||
327 | 327 | ||
328 | void DateBookMonthTable::viewportMouseReleaseEvent( QMouseEvent * ) | 328 | void DateBookMonthTable::viewportMouseReleaseEvent( QMouseEvent * ) |
329 | { | 329 | { |
330 | dayClicked( currentRow(), currentColumn() ); | 330 | dayClicked( currentRow(), currentColumn() ); |
331 | } | 331 | } |
332 | 332 | ||
333 | void DateBookMonthTable::getEvents() | 333 | void DateBookMonthTable::getEvents() |
334 | { | 334 | { |
335 | if ( !db ) | 335 | if ( !db ) |
336 | return; | 336 | return; |
337 | 337 | ||
338 | QDate dtStart( year, month, 1 ); | 338 | QDate dtStart( year, month, 1 ); |
339 | d->mMonthEvents = db->getEffectiveEvents( dtStart, | 339 | d->mMonthEvents = db->getEffectiveEvents( dtStart, |
340 | QDate( year, month, | 340 | QDate( year, month, |
341 | dtStart.daysInMonth() ) ); | 341 | dtStart.daysInMonth() ) ); |
342 | QValueListIterator<EffectiveEvent> it = d->mMonthEvents.begin(); | 342 | QValueListIterator<EffectiveEvent> it = d->mMonthEvents.begin(); |
343 | // now that the events are sorted, basically go through the list, make | 343 | // now that the events are sorted, basically go through the list, make |
344 | // a small list for every day and set it for each item... | 344 | // a small list for every day and set it for each item... |
345 | // clear all the items... | 345 | // clear all the items... |
346 | while ( it != d->mMonthEvents.end() ) { | 346 | while ( it != d->mMonthEvents.end() ) { |
347 | QValueList<EffectiveEvent> dayEvent; | 347 | QValueList<EffectiveEvent> dayEvent; |
348 | EffectiveEvent e = *it; | 348 | EffectiveEvent e = *it; |
349 | ++it; | 349 | ++it; |
350 | dayEvent.append( e ); | 350 | dayEvent.append( e ); |
351 | while ( it != d->mMonthEvents.end() | 351 | while ( it != d->mMonthEvents.end() |
352 | && e.date() == (*it).date() ) { | 352 | && e.date() == (*it).date() ) { |
353 | dayEvent.append( *it ); | 353 | dayEvent.append( *it ); |
354 | ++it; | 354 | ++it; |
355 | } | 355 | } |
356 | int row, col; | 356 | int row, col; |
357 | findDay( e.date().day(), row, col ); | 357 | findDay( e.date().day(), row, col ); |
358 | DayItemMonth* w = static_cast<DayItemMonth*>( item( row, col ) ); | 358 | DayItemMonth* w = static_cast<DayItemMonth*>( item( row, col ) ); |
359 | w->setEvents( dayEvent ); | 359 | w->setEvents( dayEvent ); |
360 | updateCell( row, col ); | 360 | updateCell( row, col ); |
361 | dayEvent.clear(); | 361 | dayEvent.clear(); |
362 | } | 362 | } |
363 | } | 363 | } |
364 | 364 | ||
365 | 365 | ||
366 | void DateBookMonthTable::setupLabels() | 366 | void DateBookMonthTable::setupLabels() |
367 | { | 367 | { |
368 | for ( int i = 0; i < 7; ++i ) { | 368 | for ( int i = 0; i < 7; ++i ) { |
369 | // horizontalHeader()->resizeSection( i, 30 ); | 369 | // horizontalHeader()->resizeSection( i, 30 ); |
370 | // setColumnStretchable( i, TRUE ); | 370 | // setColumnStretchable( i, TRUE ); |
371 | if ( d->onMonday ) | 371 | if ( d->onMonday ) |
372 | horizontalHeader()->setLabel( i, Calendar::nameOfDay( i + 1 ) ); | 372 | horizontalHeader()->setLabel( i, Calendar::nameOfDay( i + 1 ) ); |
373 | else { | 373 | else { |
374 | if ( i == 0 ) | 374 | if ( i == 0 ) |
375 | horizontalHeader()->setLabel( i, Calendar::nameOfDay( 7 ) ); | 375 | horizontalHeader()->setLabel( i, Calendar::nameOfDay( 7 ) ); |
376 | else | 376 | else |
377 | horizontalHeader()->setLabel( i, Calendar::nameOfDay( i ) ); | 377 | horizontalHeader()->setLabel( i, Calendar::nameOfDay( i ) ); |
378 | } | 378 | } |
379 | } | 379 | } |
380 | } | 380 | } |
381 | 381 | ||
382 | 382 | ||
383 | //--------------------------------------------------------------------------- | 383 | //--------------------------------------------------------------------------- |
384 | 384 | ||
385 | DateBookMonth::DateBookMonth( QWidget *parent, const char *name, bool ac, | 385 | DateBookMonth::DateBookMonth( QWidget *parent, const char *name, bool ac, |
386 | DateBookDB *data ) | 386 | DateBookDB *data ) |
387 | : QVBox( parent, name ), | 387 | : QVBox( parent, name ), |
388 | autoClose( ac ) | 388 | autoClose( ac ) |
389 | { | 389 | { |
390 | setFocusPolicy(StrongFocus); | 390 | setFocusPolicy(StrongFocus); |
391 | year = QDate::currentDate().year(); | 391 | year = QDate::currentDate().year(); |
392 | month = QDate::currentDate().month(); | 392 | month = QDate::currentDate().month(); |
393 | day = QDate::currentDate().day(); | 393 | day = QDate::currentDate().day(); |
394 | header = new DateBookMonthHeader( this, "DateBookMonthHeader" ); | 394 | header = new DateBookMonthHeader( this, "DateBookMonthHeader" ); |
395 | table = new DateBookMonthTable( this, "DateBookMonthTable", data ); | 395 | table = new DateBookMonthTable( this, "DateBookMonthTable", data ); |
396 | header->setDate( year, month ); | 396 | header->setDate( year, month ); |
397 | table->setDate( year, month, QDate::currentDate().day() ); | 397 | table->setDate( year, month, QDate::currentDate().day() ); |
398 | header->setFocusPolicy(NoFocus); | 398 | header->setFocusPolicy(NoFocus); |
399 | table->setFocusPolicy(NoFocus); | 399 | table->setFocusPolicy(NoFocus); |
400 | connect( header, SIGNAL( dateChanged(int,int) ), | 400 | connect( header, SIGNAL( dateChanged(int,int) ), |
401 | this, SLOT( setDate(int,int) ) ); | 401 | this, SLOT( setDate(int,int) ) ); |
402 | connect( table, SIGNAL( dateClicked(int,int,int) ), | 402 | connect( table, SIGNAL( dateClicked(int,int,int) ), |
403 | this, SLOT( finalDate(int,int,int) ) ); | 403 | this, SLOT( finalDate(int,int,int) ) ); |
404 | connect( qApp, SIGNAL(weekChanged(bool)), this, | 404 | connect( qApp, SIGNAL(weekChanged(bool)), this, |
405 | SLOT(slotWeekChange(bool)) ); | 405 | SLOT(slotWeekChange(bool)) ); |
406 | table->setFocus(); | 406 | table->setFocus(); |
407 | } | 407 | } |
408 | 408 | ||
409 | DateBookMonth::~DateBookMonth() | 409 | DateBookMonth::~DateBookMonth() |
410 | { | 410 | { |
411 | 411 | ||
412 | } | 412 | } |
413 | 413 | ||
414 | void DateBookMonth::setDate( int y, int m ) | 414 | void DateBookMonth::setDate( int y, int m ) |
415 | { | 415 | { |
416 | /* only change the date if this is a different date, | 416 | /* only change the date if this is a different date, |
417 | * other wise we may mistakenly overide the day */ | 417 | * other wise we may mistakenly overide the day */ |
418 | if ( (y != year) || (m != month) ) { | 418 | if ( (y != year) || (m != month) ) { |
419 | year = y; | 419 | year = y; |
420 | month = m; | 420 | month = m; |
421 | QDate nd( y, m, 1 ); | 421 | QDate nd( y, m, 1 ); |
422 | if ( nd.daysInMonth() < day ) | 422 | if ( nd.daysInMonth() < day ) |
423 | day = nd.daysInMonth(); | 423 | day = nd.daysInMonth(); |
424 | table->setDate( year, month, day ); | 424 | table->setDate( year, month, day ); |
425 | } | 425 | } |
426 | } | 426 | } |
427 | 427 | ||
428 | void DateBookMonth::setDate( int y, int m, int d ) | 428 | void DateBookMonth::setDate( int y, int m, int d ) |
429 | { | 429 | { |
430 | header->setDate( y, m); | 430 | header->setDate( y, m); |
431 | table->setDate( y, m, d); | 431 | table->setDate( y, m, d); |
432 | year = y; | 432 | year = y; |
433 | month = m; | 433 | month = m; |
434 | day = d; | 434 | day = d; |
435 | } | 435 | } |
436 | 436 | ||
437 | /* called when we wish to close or pass back the date */ | 437 | /* called when we wish to close or pass back the date */ |
438 | void DateBookMonth::finalDate(int y, int m, int d) | 438 | void DateBookMonth::finalDate(int y, int m, int d) |
439 | { | 439 | { |
440 | setDate( y, m, d ); | 440 | setDate( y, m, d ); |
441 | 441 | ||
442 | emit dateClicked(y, m, d); | 442 | emit dateClicked(y, m, d); |
443 | // emit dateClicked(QDate(y, m, d).toString()); | 443 | // emit dateClicked(QDate(y, m, d).toString()); |
444 | 444 | ||
445 | if ( autoClose && parentWidget() ) | 445 | if ( autoClose && parentWidget() ) |
446 | parentWidget()->close(); | 446 | parentWidget()->close(); |
447 | } | 447 | } |
448 | 448 | ||
449 | void DateBookMonth::setDate( QDate d) | 449 | void DateBookMonth::setDate( QDate d) |
450 | { | 450 | { |
451 | setDate(d.year(), d.month(), d.day()); | 451 | setDate(d.year(), d.month(), d.day()); |
452 | } | 452 | } |
453 | 453 | ||
454 | void DateBookMonth::redraw() | 454 | void DateBookMonth::redraw() |
455 | { | 455 | { |
456 | table->setDate( year, month, day ); | 456 | table->setDate( year, month, day ); |
457 | table->redraw(); | 457 | table->redraw(); |
458 | } | 458 | } |
459 | 459 | ||
460 | QDate DateBookMonth::selectedDate() const | 460 | QDate DateBookMonth::selectedDate() const |
461 | { | 461 | { |
462 | if ( !table ) | 462 | if ( !table ) |
463 | return QDate::currentDate(); | 463 | return QDate::currentDate(); |
464 | int y, m, d; | 464 | int y, m, d; |
465 | table->getDate( y, m, d ); | 465 | table->getDate( y, m, d ); |
466 | return QDate( y, m, d ); | 466 | return QDate( y, m, d ); |
467 | } | 467 | } |
468 | 468 | ||
469 | void DateBookMonth::slotWeekChange( bool startOnMonday ) | 469 | void DateBookMonth::slotWeekChange( bool startOnMonday ) |
470 | { | 470 | { |
471 | table->setWeekStart( startOnMonday ); | 471 | table->setWeekStart( startOnMonday ); |
472 | } | 472 | } |
473 | 473 | ||
474 | void DateBookMonth::keyPressEvent( QKeyEvent *e ) | 474 | void DateBookMonth::keyPressEvent( QKeyEvent *e ) |
475 | { | 475 | { |
476 | switch(e->key()) { | 476 | switch(e->key()) { |
477 | case Key_Up: | 477 | case Key_Up: |
478 | setDate(QDate(year, month, day).addDays(-7)); | 478 | setDate(QDate(year, month, day).addDays(-7)); |
479 | break; | 479 | break; |
480 | case Key_Down: | 480 | case Key_Down: |
481 | setDate(QDate(year, month, day).addDays(7)); | 481 | setDate(QDate(year, month, day).addDays(7)); |
482 | break; | 482 | break; |
483 | case Key_Left: | 483 | case Key_Left: |
484 | setDate(QDate(year, month, day).addDays(-1)); | 484 | setDate(QDate(year, month, day).addDays(-1)); |
485 | break; | 485 | break; |
486 | case Key_Right: | 486 | case Key_Right: |
487 | setDate(QDate(year, month, day).addDays(1)); | 487 | setDate(QDate(year, month, day).addDays(1)); |
488 | break; | 488 | break; |
489 | case Key_Space: | 489 | case Key_Space: |
490 | qWarning("space"); | 490 | qWarning("space"); |
491 | emit dateClicked(year, month, day); | 491 | emit dateClicked(year, month, day); |
492 | if ( autoClose && parentWidget() ) | 492 | if ( autoClose && parentWidget() ) |
493 | parentWidget()->close(); | 493 | parentWidget()->close(); |
494 | break; | 494 | break; |
495 | default: | 495 | default: |
496 | qWarning("ignore"); | 496 | qWarning("ignore"); |
497 | e->ignore(); | 497 | e->ignore(); |
498 | break; | 498 | break; |
499 | } | 499 | } |
500 | } | 500 | } |
501 | 501 | ||
502 | //--------------------------------------------------------------------------- | 502 | //--------------------------------------------------------------------------- |
503 | class DayItemMonthPrivate | 503 | class DayItemMonthPrivate |
504 | { | 504 | { |
505 | public: | 505 | public: |
506 | DayItemMonthPrivate() {}; | 506 | DayItemMonthPrivate() {}; |
507 | ~DayItemMonthPrivate() { mDayEvents.clear(); }; | 507 | ~DayItemMonthPrivate() { mDayEvents.clear(); }; |
508 | QValueList<EffectiveEvent> mDayEvents; | 508 | QValueList<EffectiveEvent> mDayEvents; |
509 | }; | 509 | }; |
510 | 510 | ||
511 | DayItemMonth::DayItemMonth( QTable *table, EditType et, const QString &t ) | 511 | DayItemMonth::DayItemMonth( QTable *table, EditType et, const QString &t ) |
512 | : QTableItem( table, et, t ) | 512 | : QTableItem( table, et, t ) |
513 | { | 513 | { |
514 | d = new DayItemMonthPrivate(); | 514 | d = new DayItemMonthPrivate(); |
515 | } | 515 | } |
516 | 516 | ||
517 | DayItemMonth::~DayItemMonth() | 517 | DayItemMonth::~DayItemMonth() |
518 | { | 518 | { |
519 | daysEvents.clear(); | 519 | daysEvents.clear(); |
520 | delete d; | 520 | delete d; |
521 | } | 521 | } |
522 | 522 | ||
523 | void DayItemMonth::setEvents( const QValueList<EffectiveEvent> &effEv ) | 523 | void DayItemMonth::setEvents( const QValueList<EffectiveEvent> &effEv ) |
524 | { | 524 | { |
525 | d->mDayEvents = effEv; | 525 | d->mDayEvents = effEv; |
526 | } | 526 | } |
527 | 527 | ||
528 | void DayItemMonth::clearEffEvents() | 528 | void DayItemMonth::clearEffEvents() |
529 | { | 529 | { |
530 | d->mDayEvents.clear(); | 530 | d->mDayEvents.clear(); |
531 | } | 531 | } |
532 | 532 | ||
533 | void DayItemMonth::paint( QPainter *p, const QColorGroup &cg, | 533 | void DayItemMonth::paint( QPainter *p, const QColorGroup &cg, |
534 | const QRect &cr, bool selected ) | 534 | const QRect &cr, bool selected ) |
535 | { | 535 | { |
536 | p->save(); | 536 | p->save(); |
537 | 537 | ||
538 | QColorGroup g( cg ); | 538 | QColorGroup g( cg ); |
539 | g.setBrush( QColorGroup::Base, back ); | 539 | g.setBrush( QColorGroup::Base, back ); |
540 | g.setColor( QColorGroup::Text, forg ); | 540 | g.setColor( QColorGroup::Text, forg ); |
541 | if ( selected ) | 541 | if ( selected ) |
542 | p->setPen( g.highlightedText() ); | 542 | p->setPen( g.highlightedText() ); |
543 | else | 543 | else |
544 | p->setPen( g.text() ); | 544 | p->setPen( g.text() ); |
545 | 545 | ||
546 | QValueStack<int> normalLine; | 546 | QValueStack<int> normalLine; |
547 | QValueStack<int> repeatLine; | 547 | QValueStack<int> repeatLine; |
548 | QValueStack<int> travelLine; | 548 | QValueStack<int> travelLine; |
549 | 549 | ||
550 | bool normalAllDay = FALSE; | 550 | bool normalAllDay = FALSE; |
551 | bool repeatAllDay = FALSE; | 551 | bool repeatAllDay = FALSE; |
552 | bool travelAllDay = FALSE; | 552 | bool travelAllDay = FALSE; |
553 | bool holidayAllDay = FALSE; | 553 | bool holidayAllDay = FALSE; |
554 | 554 | ||
555 | QValueListIterator<EffectiveEvent> itDays = d->mDayEvents.begin(); | 555 | QValueListIterator<EffectiveEvent> itDays = d->mDayEvents.begin(); |
556 | 556 | ||
557 | for ( ; itDays != d->mDayEvents.end(); ++itDays ) { | 557 | for ( ; itDays != d->mDayEvents.end(); ++itDays ) { |
558 | int w = cr.width(); | 558 | int w = cr.width(); |
559 | Event ev = (*itDays).event(); | 559 | Event ev = (*itDays).event(); |
560 | 560 | ||
561 | int f = (*itDays).start().hour(); // assume Effective event | 561 | int f = (*itDays).start().hour(); // assume Effective event |
562 | int t = (*itDays).end().hour(); // is truncated. | 562 | int t = (*itDays).end().hour(); // is truncated. |
563 | 563 | ||
564 | if (ev.isAllDay()) { | 564 | if (ev.isAllDay()) { |
565 | if (!ev.hasRepeat()) { | 565 | if (!ev.hasRepeat()) { |
566 | normalAllDay = TRUE; | 566 | normalAllDay = TRUE; |
567 | if (!ev.isValidUid()) { | 567 | if (!ev.isValidUid()) { |
568 | holidayAllDay = TRUE; | 568 | holidayAllDay = TRUE; |
569 | } | 569 | } |
570 | } else { | 570 | } else { |
571 | repeatAllDay = TRUE; | 571 | repeatAllDay = TRUE; |
572 | } | 572 | } |
573 | } else { | 573 | } else { |
574 | int sLine, eLine; | 574 | int sLine, eLine; |
575 | if (f == 0) | 575 | if (f == 0) |
576 | sLine = 0; | 576 | sLine = 0; |
577 | else if (f < 8 ) | 577 | else if (f < 8 ) |
578 | sLine = 1; | 578 | sLine = 1; |
579 | else if (f >= 17) | 579 | else if (f >= 17) |
580 | sLine = w - 4; | 580 | sLine = w - 4; |
581 | else { | 581 | else { |
582 | sLine = (f - 8) * (w - 8); | 582 | sLine = (f - 8) * (w - 8); |
583 | if (sLine) | 583 | if (sLine) |
584 | sLine /= 8; | 584 | sLine /= 8; |
585 | sLine += 4; | 585 | sLine += 4; |
586 | } | 586 | } |
587 | if (t == 23) | 587 | if (t == 23) |
588 | eLine = w; | 588 | eLine = w; |
589 | else if (t < 8) | 589 | else if (t < 8) |
590 | eLine = 4; | 590 | eLine = 4; |
591 | else if (t >= 17) | 591 | else if (t >= 17) |
592 | eLine = w - 1; | 592 | eLine = w - 1; |
593 | else { | 593 | else { |
594 | eLine = (t - 8) * (w - 8); | 594 | eLine = (t - 8) * (w - 8); |
595 | if (eLine) | 595 | if (eLine) |
596 | eLine /= 8; | 596 | eLine /= 8; |
597 | eLine += 4; | 597 | eLine += 4; |
598 | } | 598 | } |
599 | if (!ev.hasRepeat()) { | 599 | if (!ev.hasRepeat()) { |
600 | normalLine.push(sLine); | 600 | normalLine.push(sLine); |
601 | normalLine.push(eLine); | 601 | normalLine.push(eLine); |
602 | } else { | 602 | } else { |
603 | repeatLine.push(sLine); | 603 | repeatLine.push(sLine); |
604 | repeatLine.push(eLine); | 604 | repeatLine.push(eLine); |
605 | } | 605 | } |
606 | } | 606 | } |
607 | } | 607 | } |
608 | 608 | ||
609 | // draw the background | 609 | // draw the background |
610 | if (normalAllDay || repeatAllDay || travelAllDay || holidayAllDay) { | 610 | if (normalAllDay || repeatAllDay || travelAllDay || holidayAllDay) { |
611 | p->save(); | 611 | p->save(); |
612 | 612 | ||
613 | if (normalAllDay) | 613 | if (normalAllDay) |
614 | if (repeatAllDay) { | 614 | if (repeatAllDay) { |
615 | p->fillRect( 0, 0, cr.width(), cr.height() / 2, | 615 | p->fillRect( 0, 0, cr.width(), cr.height() / 2, |
616 | s_colorNormalLight ); | 616 | s_colorNormalLight ); |
617 | p->fillRect( 0, cr.height() / 2, cr.width(), cr.height() / 2, | 617 | p->fillRect( 0, cr.height() / 2, cr.width(), cr.height() / 2, |
618 | colorRepeatLight ); | 618 | colorRepeatLight ); |
619 | } else { | 619 | } else { |
620 | if (!holidayAllDay) { | 620 | if (!holidayAllDay) { |
621 | p->fillRect( 0, 0, cr.width(), cr.height(), | 621 | p->fillRect( 0, 0, cr.width(), cr.height(), |
622 | s_colorNormalLight ); | 622 | s_colorNormalLight ); |
623 | } else { | 623 | } else { |
624 | p->fillRect( 0, 0, cr.width(), cr.height(), | 624 | p->fillRect( 0, 0, cr.width(), cr.height(), |
625 | s_colorHolidayLight ); | 625 | s_colorHolidayLight ); |
626 | } | 626 | } |
627 | } else if (repeatAllDay) { | 627 | } else if (repeatAllDay) { |
628 | p->fillRect( 0, 0, cr.width(), cr.height(), | 628 | p->fillRect( 0, 0, cr.width(), cr.height(), |
629 | s_colorRepeatLight ); | 629 | s_colorRepeatLight ); |
630 | } | 630 | } |
631 | } else { | 631 | } else { |
632 | p->fillRect( 0, 0, cr.width(), | 632 | p->fillRect( 0, 0, cr.width(), |
633 | cr.height(), selected | 633 | cr.height(), selected |
634 | ? g.brush( QColorGroup::Highlight ) | 634 | ? g.brush( QColorGroup::Highlight ) |
635 | : g.brush( QColorGroup::Base ) ); | 635 | : g.brush( QColorGroup::Base ) ); |
636 | } | 636 | } |
637 | 637 | ||
638 | // The lines | 638 | // The lines |
639 | // now for the lines. | 639 | // now for the lines. |
640 | int h = 5; | 640 | int h = 5; |
641 | int y = cr.height() / 2 - h; | 641 | int y = cr.height() / 2 - h; |
642 | 642 | ||
643 | while(normalLine.count() >= 2) { | 643 | while(normalLine.count() >= 2) { |
644 | int x2 = normalLine.pop(); | 644 | int x2 = normalLine.pop(); |
645 | int x1 = normalLine.pop(); | 645 | int x1 = normalLine.pop(); |
646 | if (x2 < x1 + 2) | 646 | if (x2 < x1 + 2) |
647 | x2 = x1 + 2; | 647 | x2 = x1 + 2; |
648 | p->fillRect(x1, y, x2 - x1, h, colorNormal); | 648 | p->fillRect(x1, y, x2 - x1, h, colorNormal); |
649 | } | 649 | } |
650 | 650 | ||
651 | y += h; | 651 | y += h; |
652 | 652 | ||
653 | while(repeatLine.count() >= 2) { | 653 | while(repeatLine.count() >= 2) { |
654 | int x2 = repeatLine.pop(); | 654 | int x2 = repeatLine.pop(); |
655 | int x1 = repeatLine.pop(); | 655 | int x1 = repeatLine.pop(); |
656 | if (x2 < x1 + 2) | 656 | if (x2 < x1 + 2) |
657 | x2 = x1 + 2; | 657 | x2 = x1 + 2; |
658 | p->fillRect(x1, y, x2 - x1, h, colorRepeat); | 658 | p->fillRect(x1, y, x2 - x1, h, colorRepeat); |
659 | } | 659 | } |
660 | 660 | ||
661 | 661 | ||
662 | // Finally, draw the number. | 662 | // Finally, draw the number. |
663 | QFont f = p->font(); | 663 | QFont f = p->font(); |
664 | f.setPointSize( ( f.pointSize() / 3 ) * 2 ); | 664 | if(qApp->desktop()->width() >= 480) |
665 | { | ||
666 | f.setPointSize( f.pointSize() - 2 ); | ||
667 | } | ||
668 | else | ||
669 | { | ||
670 | f.setPointSize( ( f.pointSize() / 3 ) * 2 ); | ||
671 | } | ||
665 | p->setFont( f ); | 672 | p->setFont( f ); |
666 | QFontMetrics fm( f ); | 673 | QFontMetrics fm( f ); |
667 | p->drawText( 1, 1 + fm.ascent(), QString::number( day() ) ); | 674 | p->drawText( 1, 1 + fm.ascent(), QString::number( day() ) ); |
668 | 675 | ||
669 | p->restore(); | 676 | p->restore(); |
670 | } | 677 | } |
671 | 678 | ||
672 | 679 | ||
673 | 680 | ||
674 | void DayItemMonth::setType( Calendar::Day::Type t ) | 681 | void DayItemMonth::setType( Calendar::Day::Type t ) |
675 | { | 682 | { |
676 | switch ( t ) { | 683 | switch ( t ) { |
677 | case Calendar::Day::PrevMonth: | 684 | case Calendar::Day::PrevMonth: |
678 | case Calendar::Day::NextMonth: | 685 | case Calendar::Day::NextMonth: |
679 | back = QBrush( QColor( 224, 224, 224 ) ); | 686 | back = QBrush( QColor( 224, 224, 224 ) ); |
680 | forg = black; | 687 | forg = black; |
681 | break; | 688 | break; |
682 | case Calendar::Day::ThisMonth: | 689 | case Calendar::Day::ThisMonth: |
683 | back = QBrush( white ); | 690 | back = QBrush( white ); |
684 | forg = black; | 691 | forg = black; |
685 | break; | 692 | break; |
686 | } | 693 | } |
687 | typ = t; | 694 | typ = t; |
688 | } | 695 | } |
689 | 696 | ||
690 | 697 | ||
691 | 698 | ||
692 | DateButton::DateButton( bool longDate, QWidget *parent, const char * name ) | 699 | DateButton::DateButton( bool longDate, QWidget *parent, const char * name ) |
693 | :QPushButton( parent, name ) | 700 | :QPushButton( parent, name ) |
694 | { | 701 | { |
695 | longFormat = longDate; | 702 | longFormat = longDate; |
696 | df = DateFormat('/', DateFormat::MonthDayYear, DateFormat::MonthDayYear); | 703 | df = DateFormat('/', DateFormat::MonthDayYear, DateFormat::MonthDayYear); |
697 | setDate( QDate::currentDate() ); | 704 | setDate( QDate::currentDate() ); |
698 | 705 | ||
699 | connect(this,SIGNAL(pressed()),this,SLOT(pickDate())); | 706 | connect(this,SIGNAL(pressed()),this,SLOT(pickDate())); |
700 | 707 | ||
701 | 708 | ||
702 | } | 709 | } |
703 | 710 | ||
704 | 711 | ||
705 | void DateButton::pickDate() | 712 | void DateButton::pickDate() |
706 | { | 713 | { |
707 | static QPopupMenu *m1 = 0; | 714 | static QPopupMenu *m1 = 0; |
708 | static DateBookMonth *picker = 0; | 715 | static DateBookMonth *picker = 0; |
709 | if ( !m1 ) { | 716 | if ( !m1 ) { |
710 | m1 = new QPopupMenu( this ); | 717 | m1 = new QPopupMenu( this ); |
711 | picker = new DateBookMonth( m1, 0, TRUE ); | 718 | picker = new DateBookMonth( m1, 0, TRUE ); |
712 | m1->insertItem( picker ); | 719 | m1->insertItem( picker ); |
713 | connect( picker, SIGNAL( dateClicked(int,int,int) ), | 720 | connect( picker, SIGNAL( dateClicked(int,int,int) ), |
714 | this, SLOT( setDate(int,int,int) ) ); | 721 | this, SLOT( setDate(int,int,int) ) ); |
715 | connect( picker, SIGNAL( dateClicked(int,int,int) ), | 722 | connect( picker, SIGNAL( dateClicked(int,int,int) ), |
716 | this, SIGNAL( dateSelected(int,int,int) ) ); | 723 | this, SIGNAL( dateSelected(int,int,int) ) ); |
717 | connect( m1, SIGNAL( aboutToHide() ), | 724 | connect( m1, SIGNAL( aboutToHide() ), |
718 | this, SLOT( gotHide() ) ); | 725 | this, SLOT( gotHide() ) ); |
719 | } | 726 | } |
720 | picker->slotWeekChange( weekStartsMonday ); | 727 | picker->slotWeekChange( weekStartsMonday ); |
721 | picker->setDate( currDate.year(), currDate.month(), currDate.day() ); | 728 | picker->setDate( currDate.year(), currDate.month(), currDate.day() ); |
722 | m1->popup(mapToGlobal(QPoint(0,height()))); | 729 | m1->popup(mapToGlobal(QPoint(0,height()))); |
723 | picker->setFocus(); | 730 | picker->setFocus(); |
724 | } | 731 | } |
725 | 732 | ||
726 | 733 | ||
727 | void DateButton::gotHide() | 734 | void DateButton::gotHide() |
728 | { | 735 | { |
729 | // we have to redo the button... | 736 | // we have to redo the button... |
730 | setDown( false ); | 737 | setDown( false ); |
731 | } | 738 | } |
732 | 739 | ||
733 | 740 | ||
734 | // void dateSelected( int year, int month, int day ); | 741 | // void dateSelected( int year, int month, int day ); |
735 | 742 | ||
736 | void DateButton::setWeekStartsMonday( int b ) | 743 | void DateButton::setWeekStartsMonday( int b ) |
737 | { | 744 | { |
738 | weekStartsMonday = b; | 745 | weekStartsMonday = b; |
739 | } | 746 | } |
740 | 747 | ||
741 | void DateButton::setDate( int y, int m, int d ) | 748 | void DateButton::setDate( int y, int m, int d ) |
742 | { | 749 | { |
743 | setDate( QDate( y,m,d) ); | 750 | setDate( QDate( y,m,d) ); |
744 | } | 751 | } |
745 | 752 | ||
746 | void DateButton::setDate( QDate d ) | 753 | void DateButton::setDate( QDate d ) |
747 | { | 754 | { |
748 | currDate = d; | 755 | currDate = d; |
749 | setText( longFormat ? TimeString::longDateString( d, df ) : | 756 | setText( longFormat ? TimeString::longDateString( d, df ) : |
750 | TimeString::shortDate( d, df ) ); | 757 | TimeString::shortDate( d, df ) ); |
751 | 758 | ||
752 | } | 759 | } |
753 | 760 | ||
754 | void DateButton::setDateFormat( DateFormat f ) | 761 | void DateButton::setDateFormat( DateFormat f ) |
755 | { | 762 | { |
756 | df = f; | 763 | df = f; |
757 | setDate( currDate ); | 764 | setDate( currDate ); |
758 | } | 765 | } |
759 | 766 | ||
760 | bool DateButton::customWhatsThis() const | 767 | bool DateButton::customWhatsThis() const |
761 | { | 768 | { |
762 | return TRUE; | 769 | return TRUE; |
763 | } | 770 | } |
764 | 771 | ||
765 | 772 | ||
766 | // this class is only here for Sharp ROM compatibility | 773 | // this class is only here for Sharp ROM compatibility |
767 | // I have reverse engineered this class and it seems to | 774 | // I have reverse engineered this class and it seems to |
768 | // work (only qtmail seems to use it) - sandman | 775 | // work (only qtmail seems to use it) - sandman |
769 | // DO NOT USE IT IN NEW CODE !! | 776 | // DO NOT USE IT IN NEW CODE !! |
770 | 777 | ||
771 | DateBookMonthPopup::DateBookMonthPopup ( QWidget *w ) | 778 | DateBookMonthPopup::DateBookMonthPopup ( QWidget *w ) |
772 | : QPopupMenu ( w ) | 779 | : QPopupMenu ( w ) |
773 | { | 780 | { |
774 | m_dbm = new DateBookMonth( this, 0, TRUE ); | 781 | m_dbm = new DateBookMonth( this, 0, TRUE ); |
775 | insertItem( m_dbm ); | 782 | insertItem( m_dbm ); |
776 | } | 783 | } |