summaryrefslogtreecommitdiff
path: root/core/pim/datebook/dateentryimpl.cpp
Unidiff
Diffstat (limited to 'core/pim/datebook/dateentryimpl.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/datebook/dateentryimpl.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/pim/datebook/dateentryimpl.cpp b/core/pim/datebook/dateentryimpl.cpp
index 1122f79..b2e3e3a 100644
--- a/core/pim/datebook/dateentryimpl.cpp
+++ b/core/pim/datebook/dateentryimpl.cpp
@@ -38,12 +38,14 @@
38#include <qscrollview.h> 38#include <qscrollview.h>
39#include <qspinbox.h> 39#include <qspinbox.h>
40#include <qtoolbutton.h> 40#include <qtoolbutton.h>
41 41
42#include <stdlib.h> 42#include <stdlib.h>
43 43
44#include <stdiostream.h>
45
44/* 46/*
45 * Constructs a DateEntry which is a child of 'parent', with the 47 * Constructs a DateEntry which is a child of 'parent', with the
46 * name 'name' and widget flags set to 'f' 48 * name 'name' and widget flags set to 'f'
47 * 49 *
48 * The dialog will by default be modeless, unless you set 'modal' to 50 * The dialog will by default be modeless, unless you set 'modal' to
49 * TRUE to construct a modal dialog. 51 * TRUE to construct a modal dialog.
@@ -55,12 +57,13 @@ DateEntry::DateEntry( bool startOnMonday, const QDateTime &start,
55 : DateEntryBase( parent, name ), 57 : DateEntryBase( parent, name ),
56 ampm( whichClock ), 58 ampm( whichClock ),
57 startWeekOnMonday( startOnMonday ) 59 startWeekOnMonday( startOnMonday )
58{ 60{
59 init(); 61 init();
60 setDates(start,end); 62 setDates(start,end);
63 setFocusProxy(comboDescription);
61} 64}
62 65
63static void addOrPick( QComboBox* combo, const QString& t ) 66static void addOrPick( QComboBox* combo, const QString& t )
64{ 67{
65 for (int i=0; i<combo->count(); i++) { 68 for (int i=0; i<combo->count(); i++) {
66 if ( combo->text(i) == t ) { 69 if ( combo->text(i) == t ) {
@@ -173,12 +176,13 @@ void DateEntry::init()
173/* 176/*
174 * Destroys the object and frees any allocated resources 177 * Destroys the object and frees any allocated resources
175 */ 178 */
176DateEntry::~DateEntry() 179DateEntry::~DateEntry()
177{ 180{
178 // no need to delete child widgets, Qt does it all for us 181 // no need to delete child widgets, Qt does it all for us
182 //cout << "Del: " << comboStart->currentText() << endl;
179} 183}
180 184
181/* 185/*
182 * public slot 186 * public slot
183 */ 187 */
184void DateEntry::endDateChanged( int y, int m, int d ) 188void DateEntry::endDateChanged( int y, int m, int d )
@@ -267,12 +271,13 @@ void DateEntry::startDateChanged( int y, int m, int d )
267 * public slot 271 * public slot
268 */ 272 */
269void DateEntry::startTimeChanged( int index ) 273void DateEntry::startTimeChanged( int index )
270{ 274{
271 startTime = parseTime(comboStart->text(index),ampm); 275 startTime = parseTime(comboStart->text(index),ampm);
272 changeEndCombo( index ); 276 changeEndCombo( index );
277 //cout << "Start: " << comboStart->currentText() << endl;
273} 278}
274/* 279/*
275 * public slot 280 * public slot
276 */ 281 */
277void DateEntry::typeChanged( const QString &s ) 282void DateEntry::typeChanged( const QString &s )
278{ 283{
@@ -379,12 +384,15 @@ Event DateEntry::event()
379 else 384 else
380 st = Event::Silent; 385 st = Event::Silent;
381 ev.setAlarm( checkAlarm->isChecked(), spinAlarm->value(), st ); 386 ev.setAlarm( checkAlarm->isChecked(), spinAlarm->value(), st );
382 if ( rp.type != Event::NoRepeat ) 387 if ( rp.type != Event::NoRepeat )
383 ev.setRepeat( TRUE, rp ); 388 ev.setRepeat( TRUE, rp );
384 ev.setNotes( editNote->text() ); 389 ev.setNotes( editNote->text() );
390
391 //cout << "Start: " << comboStart->currentText() << endl;
392
385 return ev; 393 return ev;
386} 394}
387 395
388void DateEntry::setRepeatLabel() 396void DateEntry::setRepeatLabel()
389{ 397{
390 398