summaryrefslogtreecommitdiff
path: root/core/pim/datebook/datebook.cpp
Unidiff
Diffstat (limited to 'core/pim/datebook/datebook.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/datebook.cpp122
1 files changed, 106 insertions, 16 deletions
diff --git a/core/pim/datebook/datebook.cpp b/core/pim/datebook/datebook.cpp
index e8d808f..9880e2d 100644
--- a/core/pim/datebook/datebook.cpp
+++ b/core/pim/datebook/datebook.cpp
@@ -21,16 +21,17 @@
21**********************************************************************/ 21**********************************************************************/
22 22
23#define QTOPIA_INTERNAL_FD 23#define QTOPIA_INTERNAL_FD
24 24
25#include "datebook.h" 25#include "datebook.h"
26#include "datebookday.h" 26#include "datebookday.h"
27#include "datebooksettings.h" 27#include "datebooksettings.h"
28#include "datebookweek.h" 28#include "datebookweek.h"
29#include "datebookweeklst.h"
29#include "dateentryimpl.h" 30#include "dateentryimpl.h"
30 31
31#include <qpe/datebookmonth.h> 32#include <qpe/datebookmonth.h>
32#include <qpe/qpeapplication.h> 33#include <qpe/qpeapplication.h>
33#include <qpe/config.h> 34#include <qpe/config.h>
34#include <qpe/qpedebug.h> 35#include <qpe/qpedebug.h>
35#include <qpe/event.h> 36#include <qpe/event.h>
36#include <qpe/finddialog.h> 37#include <qpe/finddialog.h>
@@ -64,16 +65,17 @@
64#include <sys/types.h> 65#include <sys/types.h>
65#include <fcntl.h> 66#include <fcntl.h>
66#include <unistd.h> 67#include <unistd.h>
67 68
68#include <stdlib.h> 69#include <stdlib.h>
69 70
70#define DAY 1 71#define DAY 1
71#define WEEK 2 72#define WEEK 2
73#define WEEKLST 4
72#define MONTH 3 74#define MONTH 3
73 75
74 76
75DateBook::DateBook( QWidget *parent, const char *, WFlags f ) 77DateBook::DateBook( QWidget *parent, const char *, WFlags f )
76 : QMainWindow( parent, "datebook", f ), 78 : QMainWindow( parent, "datebook", f ),
77 aPreset( FALSE ), 79 aPreset( FALSE ),
78 presetTime( -1 ), 80 presetTime( -1 ),
79 startTime( 8 ), // an acceptable default 81 startTime( 8 ), // an acceptable default
@@ -85,16 +87,24 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f )
85 db = new DateBookDB; 87 db = new DateBookDB;
86 qDebug("loading db t=%d", t.elapsed() ); 88 qDebug("loading db t=%d", t.elapsed() );
87 loadSettings(); 89 loadSettings();
88 setCaption( tr("Calendar") ); 90 setCaption( tr("Calendar") );
89 setIcon( Resource::loadPixmap( "datebook_icon" ) ); 91 setIcon( Resource::loadPixmap( "datebook_icon" ) );
90 92
91 setToolBarsMovable( FALSE ); 93 setToolBarsMovable( FALSE );
92 94
95 views = new QWidgetStack( this );
96 setCentralWidget( views );
97
98 dayView = 0;
99 weekView = 0;
100 weekLstView = 0;
101 monthView = 0;
102
93 QPEToolBar *bar = new QPEToolBar( this ); 103 QPEToolBar *bar = new QPEToolBar( this );
94 bar->setHorizontalStretchable( TRUE ); 104 bar->setHorizontalStretchable( TRUE );
95 105
96 QPEMenuBar *mb = new QPEMenuBar( bar ); 106 QPEMenuBar *mb = new QPEMenuBar( bar );
97 mb->setMargin( 0 ); 107 mb->setMargin( 0 );
98 108
99 QPEToolBar *sub_bar = new QPEToolBar(this); 109 QPEToolBar *sub_bar = new QPEToolBar(this);
100 110
@@ -119,64 +129,93 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f )
119 129
120 a = new QAction( tr( "Day" ), Resource::loadPixmap( "day" ), QString::null, 0, g, 0 ); 130 a = new QAction( tr( "Day" ), Resource::loadPixmap( "day" ), QString::null, 0, g, 0 );
121 connect( a, SIGNAL( activated() ), this, SLOT( viewDay() ) ); 131 connect( a, SIGNAL( activated() ), this, SLOT( viewDay() ) );
122 a->addTo( sub_bar ); 132 a->addTo( sub_bar );
123 a->addTo( view ); 133 a->addTo( view );
124 a->setToggleAction( TRUE ); 134 a->setToggleAction( TRUE );
125 a->setOn( TRUE ); 135 a->setOn( TRUE );
126 dayAction = a; 136 dayAction = a;
137
127 a = new QAction( tr( "Week" ), Resource::loadPixmap( "week" ), QString::null, 0, g, 0 ); 138 a = new QAction( tr( "Week" ), Resource::loadPixmap( "week" ), QString::null, 0, g, 0 );
128 connect( a, SIGNAL( activated() ), this, SLOT( viewWeek() ) ); 139 connect( a, SIGNAL( activated() ), this, SLOT( viewWeek() ) );
129 a->addTo( sub_bar ); 140 a->addTo( sub_bar );
130 a->addTo( view ); 141 a->addTo( view );
131 a->setToggleAction( TRUE ); 142 a->setToggleAction( TRUE );
132 weekAction = a; 143 weekAction = a;
144
145 a = new QAction( tr( "WeekLst" ), Resource::loadPixmap( "weeklst" ), QString::null, 0, g, 0 );
146 connect( a, SIGNAL( activated() ), this, SLOT( viewWeekLst() ) );
147 a->addTo( sub_bar );
148 a->addTo( view );
149 a->setToggleAction( TRUE );
150 weekLstAction = a;
151
133 a = new QAction( tr( "Month" ), Resource::loadPixmap( "month" ), QString::null, 0, g, 0 ); 152 a = new QAction( tr( "Month" ), Resource::loadPixmap( "month" ), QString::null, 0, g, 0 );
134 connect( a, SIGNAL( activated() ), this, SLOT( viewMonth() ) ); 153 connect( a, SIGNAL( activated() ), this, SLOT( viewMonth() ) );
135 a->addTo( sub_bar ); 154 a->addTo( sub_bar );
136 a->addTo( view ); 155 a->addTo( view );
137 a->setToggleAction( TRUE ); 156 a->setToggleAction( TRUE );
138 monthAction = a; 157 monthAction = a;
139 158
140 a = new QAction( tr( "Find" ), Resource::loadPixmap( "mag" ), QString::null, 0, g, 0 ); 159 a = new QAction( tr( "Find" ), Resource::loadPixmap( "mag" ), QString::null, 0, g, 0 );
141 connect( a, SIGNAL(activated()), this, SLOT(slotFind()) ); 160 connect( a, SIGNAL(activated()), this, SLOT(slotFind()) );
142 a->addTo( sub_bar ); 161 a->addTo( sub_bar );
143 162
144 a = new QAction( tr( "Alarm and Start Time..." ), QString::null, 0, 0 ); 163 a = new QAction( tr( "Alarm and Start Time..." ), QString::null, 0, 0 );
145 connect( a, SIGNAL( activated() ), this, SLOT( slotSettings() ) ); 164 connect( a, SIGNAL( activated() ), this, SLOT( slotSettings() ) );
146 a->addTo( settings ); 165 a->addTo( settings );
147 166
148 views = new QWidgetStack( this ); 167 QPopupMenu *default_view = new QPopupMenu(this);
149 setCentralWidget( views ); 168 settings->insertItem( tr( "Default View" ),default_view );
150 169 default_view->setCheckable(TRUE);
151 dayView = 0;
152 weekView = 0;
153 monthView = 0;
154 170
155 viewDay(); 171
172 Config config("DateBook");
173 config.setGroup("Main");
174 int current=config.readNumEntry("defaultview", DAY);
175
176 QActionGroup *ag = new QActionGroup(this);
177 a = new QAction( tr( "Day" ), QString::null, 0, 0, 0, true );
178 if (current==DAY) a->setOn(true), viewDay();
179 ag->insert(a);
180 a = new QAction( tr( "Week" ), QString::null, 0, 0, 0, true );
181 if (current==WEEK) a->setOn(true), viewWeek();
182 ag->insert(a);
183 a = new QAction( tr( "WeekLst" ), QString::null, 0, 0, 0, true );
184 if (current==WEEKLST) a->setOn(true), viewWeekLst();
185 ag->insert(a);
186 a = new QAction( tr( "Month" ), QString::null, 0, 0, 0, true );
187 if (current==MONTH) a->setOn(true), viewMonth();
188 ag->insert(a);
189
190 ag->addTo(default_view);
191 connect(ag, SIGNAL( selected ( QAction * ) ),
192 this, SLOT( newDefaultView(QAction *) )
193 );
194
156 connect( qApp, SIGNAL(clockChanged(bool)), 195 connect( qApp, SIGNAL(clockChanged(bool)),
157 this, SLOT(changeClock(bool)) ); 196 this, SLOT(changeClock(bool)) );
158 connect( qApp, SIGNAL(weekChanged(bool)), 197 connect( qApp, SIGNAL(weekChanged(bool)),
159 this, SLOT(changeWeek(bool)) ); 198 this, SLOT(changeWeek(bool)) );
160 199
161#if defined(Q_WS_QWS) && !defined(QT_NO_COP) 200#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
162 connect( qApp, SIGNAL(appMessage(const QCString&, const QByteArray&)), 201 connect( qApp, SIGNAL(appMessage(const QCString&, const QByteArray&)),
163 this, SLOT(appMessage(const QCString&, const QByteArray&)) ); 202 this, SLOT(appMessage(const QCString&, const QByteArray&)) );
164#endif 203#endif
165 204
166 // listen on QPE/System 205 // listen on QPE/System
167#if defined(Q_WS_QWS) 206#if defined(Q_WS_QWS)
168#if !defined(QT_NO_COP) 207#if !defined(QT_NO_COP)
169 QCopChannel *channel = new QCopChannel( "QPE/System", this ); 208 QCopChannel *channel = new QCopChannel( "QPE/System", this );
170 connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), 209 connect( channel, SIGNAL(received(const QCString&, const QByteArray&)),
171 this, SLOT(receive(const QCString&, const QByteArray&)) ); 210 this, SLOT(receive(const QCString&, const QByteArray&)) );
172#endif 211#endif
173#endif 212#endif
174 213
175 qDebug("done t=%d", t.elapsed() ); 214 qDebug("done t=%d", t.elapsed() );
176 215
177} 216}
178 217
179void DateBook::receive( const QCString &msg, const QByteArray &data ) 218void DateBook::receive( const QCString &msg, const QByteArray &data )
180{ 219{
181 QDataStream stream( data, IO_ReadOnly ); 220 QDataStream stream( data, IO_ReadOnly );
182 if ( msg == "timeChange(QString)" ) { 221 if ( msg == "timeChange(QString)" ) {
@@ -259,16 +298,18 @@ QString DateBook::checkEvent(const Event &e)
259QDate DateBook::currentDate() 298QDate DateBook::currentDate()
260{ 299{
261 QDate d = QDate::currentDate(); 300 QDate d = QDate::currentDate();
262 301
263 if ( dayView && views->visibleWidget() == dayView ) { 302 if ( dayView && views->visibleWidget() == dayView ) {
264 d = dayView->date(); 303 d = dayView->date();
265 } else if ( weekView && views->visibleWidget() == weekView ) { 304 } else if ( weekView && views->visibleWidget() == weekView ) {
266 d = weekView->date(); 305 d = weekView->date();
306 } else if ( weekLstView && views->visibleWidget() == weekLstView ) {
307 d = weekLstView->date();
267 } else if ( monthView && views->visibleWidget() == monthView ) { 308 } else if ( monthView && views->visibleWidget() == monthView ) {
268 d = monthView->selectedDate(); 309 d = monthView->selectedDate();
269 } 310 }
270 311
271 return d; 312 return d;
272} 313}
273 314
274void DateBook::viewDay() 315void DateBook::viewDay()
@@ -286,16 +327,25 @@ void DateBook::viewWeek()
286 initWeek(); 327 initWeek();
287 weekAction->setOn( TRUE ); 328 weekAction->setOn( TRUE );
288 QDate d = currentDate(); 329 QDate d = currentDate();
289 weekView->setDate( d ); 330 weekView->setDate( d );
290 views->raiseWidget( weekView ); 331 views->raiseWidget( weekView );
291 weekView->redraw(); 332 weekView->redraw();
292} 333}
293 334
335void DateBook::viewWeekLst() {
336 initWeekLst();
337 weekLstAction->setOn( TRUE );
338 QDate d=currentDate();
339 weekLstView->setDate(d);
340 views->raiseWidget( weekLstView );
341 weekLstView->redraw();
342}
343
294void DateBook::viewMonth() 344void DateBook::viewMonth()
295{ 345{
296 initMonth(); 346 initMonth();
297 monthAction->setOn( TRUE ); 347 monthAction->setOn( TRUE );
298 QDate d = currentDate(); 348 QDate d = currentDate();
299 monthView->setDate( d.year(), d.month(), d.day() ); 349 monthView->setDate( d.year(), d.month(), d.day() );
300 views->raiseWidget( monthView ); 350 views->raiseWidget( monthView );
301 monthView->redraw(); 351 monthView->redraw();
@@ -326,17 +376,18 @@ void DateBook::editEvent( const Event &e )
326#if defined(Q_WS_QWS) || defined(_WS_QWS_) 376#if defined(Q_WS_QWS) || defined(_WS_QWS_)
327 editDlg.showMaximized(); 377 editDlg.showMaximized();
328#endif 378#endif
329 while (editDlg.exec() ) { 379 while (editDlg.exec() ) {
330 Event newEv = entry->event(); 380 Event newEv = entry->event();
331 QString error = checkEvent(newEv); 381 QString error = checkEvent(newEv);
332 if (!error.isNull()) { 382 if (!error.isNull()) {
333 if (QMessageBox::warning(this, "error box", 383 if (QMessageBox::warning(this, "error box",
334 error, "Fix it", "Continue", 0, 0, 1) == 0) 384 error, "Fix it", "Continue",
385 0, 0, 1) == 0)
335 continue; 386 continue;
336 } 387 }
337 db->editEvent(e, newEv); 388 db->editEvent(e, newEv);
338 emit newEvent(); 389 emit newEvent();
339 break; 390 break;
340 } 391 }
341} 392}
342 393
@@ -396,37 +447,59 @@ void DateBook::initDay()
396 447
397void DateBook::initWeek() 448void DateBook::initWeek()
398{ 449{
399 if ( !weekView ) { 450 if ( !weekView ) {
400 weekView = new DateBookWeek( ampm, onMonday, db, views, "week view" ); 451 weekView = new DateBookWeek( ampm, onMonday, db, views, "week view" );
401 weekView->setStartViewTime( startTime ); 452 weekView->setStartViewTime( startTime );
402 views->addWidget( weekView, WEEK ); 453 views->addWidget( weekView, WEEK );
403 connect( weekView, SIGNAL( showDate( int, int, int ) ), 454 connect( weekView, SIGNAL( showDate( int, int, int ) ),
404 this, SLOT( showDay( int, int, int ) ) ); 455 this, SLOT( showDay( int, int, int ) ) );
405 connect( this, SIGNAL( newEvent() ), 456 connect( this, SIGNAL( newEvent() ),
406 weekView, SLOT( redraw() ) ); 457 weekView, SLOT( redraw() ) );
407 } 458 }
408 //But also get it right: the year that we display can be different 459 //But also get it right: the year that we display can be different
409 //from the year of the current date. So, first find the year 460 //from the year of the current date. So, first find the year
410 //number of the current week. 461 //number of the current week.
411 462
412 int yearNumber, totWeeks; 463 int yearNumber, totWeeks;
413 calcWeek( currentDate(), totWeeks, yearNumber, onMonday ); 464 calcWeek( currentDate(), totWeeks, yearNumber, onMonday );
414 465
415 QDate d = QDate( yearNumber, 12, 31 ); 466 QDate d = QDate( yearNumber, 12, 31 );
416 calcWeek( d, totWeeks, yearNumber, onMonday ); 467 calcWeek( d, totWeeks, yearNumber, onMonday );
417 468
418 while ( totWeeks == 1 ) { 469 while ( totWeeks == 1 ) {
419 d = d.addDays( -1 ); 470 d = d.addDays( -1 );
420 calcWeek( d, totWeeks, yearNumber, onMonday ); 471 calcWeek( d, totWeeks, yearNumber, onMonday );
421 } 472 }
422 if ( totWeeks != weekView->totalWeeks() ) 473 if ( totWeeks != weekView->totalWeeks() )
423 weekView->setTotalWeeks( totWeeks ); 474 weekView->setTotalWeeks( totWeeks );
424} 475}
476void DateBook::initWeekLst() {
477 if ( !weekLstView ) {
478 weekLstView = new DateBookWeekLst( ampm, onMonday, db,
479 views, "weeklst view" );
480 views->addWidget( weekLstView, WEEKLST );
481
482 //weekLstView->setStartViewTime( startTime );
483 connect( weekLstView, SIGNAL( showDate( int, int, int ) ),
484 this, SLOT( showDay( int, int, int ) ) );
485 connect( weekLstView, SIGNAL( addEvent( const QDateTime &,
486 const QDateTime &,
487 const QString & ) ),
488 this, SLOT( slotNewEntry( const QDateTime &,
489 const QDateTime &,
490 const QString & ) ) );
491 connect( this, SIGNAL( newEvent() ),
492 weekLstView, SLOT( redraw() ) );
493 connect( weekLstView, SIGNAL( editEvent( const Event & ) ),
494 this, SLOT( editEvent( const Event & ) ) );
495 }
496}
497
425 498
426void DateBook::initMonth() 499void DateBook::initMonth()
427{ 500{
428 if ( !monthView ) { 501 if ( !monthView ) {
429 monthView = new DateBookMonth( views, "month view", FALSE, db ); 502 monthView = new DateBookMonth( views, "month view", FALSE, db );
430 views->addWidget( monthView, MONTH ); 503 views->addWidget( monthView, MONTH );
431 connect( monthView, SIGNAL( dateClicked( int, int, int ) ), 504 connect( monthView, SIGNAL( dateClicked( int, int, int ) ),
432 this, SLOT( showDay( int, int, int ) ) ); 505 this, SLOT( showDay( int, int, int ) ) );
@@ -439,17 +512,17 @@ void DateBook::initMonth()
439void DateBook::loadSettings() 512void DateBook::loadSettings()
440{ 513{
441 { 514 {
442 Config config( "qpe" ); 515 Config config( "qpe" );
443 config.setGroup("Time"); 516 config.setGroup("Time");
444 ampm = config.readBoolEntry( "AMPM", TRUE ); 517 ampm = config.readBoolEntry( "AMPM", TRUE );
445 onMonday = config.readBoolEntry( "MONDAY" ); 518 onMonday = config.readBoolEntry( "MONDAY" );
446 } 519 }
447 520
448 { 521 {
449 Config config("DateBook"); 522 Config config("DateBook");
450 config.setGroup("Main"); 523 config.setGroup("Main");
451 startTime = config.readNumEntry("startviewtime", 8); 524 startTime = config.readNumEntry("startviewtime", 8);
452 aPreset = config.readBoolEntry("alarmpreset"); 525 aPreset = config.readBoolEntry("alarmpreset");
453 presetTime = config.readNumEntry("presettime"); 526 presetTime = config.readNumEntry("presettime");
454 } 527 }
455} 528}
@@ -459,16 +532,28 @@ void DateBook::saveSettings()
459 Config config( "qpe" ); 532 Config config( "qpe" );
460 Config configDB( "DateBook" ); 533 Config configDB( "DateBook" );
461 configDB.setGroup( "Main" ); 534 configDB.setGroup( "Main" );
462 configDB.writeEntry("startviewtime",startTime); 535 configDB.writeEntry("startviewtime",startTime);
463 configDB.writeEntry("alarmpreset",aPreset); 536 configDB.writeEntry("alarmpreset",aPreset);
464 configDB.writeEntry("presettime",presetTime); 537 configDB.writeEntry("presettime",presetTime);
465} 538}
466 539
540void DateBook::newDefaultView(QAction *a) {
541 int val=DAY;
542 if (a->text() == "Day") val=DAY;
543 if (a->text() == "Week") val=WEEK;
544 if (a->text() == "WeekLst") val=WEEKLST;
545 if (a->text() == "Month") val=MONTH;
546
547 Config configDB( "DateBook" );
548 configDB.setGroup( "Main" );
549 configDB.writeEntry("defaultview",val);
550}
551
467void DateBook::appMessage(const QCString& msg, const QByteArray& data) 552void DateBook::appMessage(const QCString& msg, const QByteArray& data)
468{ 553{
469 bool needShow = FALSE; 554 bool needShow = FALSE;
470 if ( msg == "alarm(QDateTime,int)" ) { 555 if ( msg == "alarm(QDateTime,int)" ) {
471 QDataStream ds(data,IO_ReadOnly); 556 QDataStream ds(data,IO_ReadOnly);
472 QDateTime when; int warn; 557 QDateTime when; int warn;
473 ds >> when >> warn; 558 ds >> when >> warn;
474 559
@@ -531,16 +616,18 @@ void DateBook::appMessage(const QCString& msg, const QByteArray& data)
531 } 616 }
532 } 617 }
533 } else if ( msg == "nextView()" ) { 618 } else if ( msg == "nextView()" ) {
534 QWidget* cur = views->visibleWidget(); 619 QWidget* cur = views->visibleWidget();
535 if ( cur ) { 620 if ( cur ) {
536 if ( cur == dayView ) 621 if ( cur == dayView )
537 viewWeek(); 622 viewWeek();
538 else if ( cur == weekView ) 623 else if ( cur == weekView )
624 viewWeekLst();
625 else if ( cur == weekLstView )
539 viewMonth(); 626 viewMonth();
540 else if ( cur == monthView ) 627 else if ( cur == monthView )
541 viewDay(); 628 viewDay();
542 needShow = TRUE; 629 needShow = TRUE;
543 } 630 }
544 } 631 }
545 if ( needShow ) { 632 if ( needShow ) {
546#if defined(Q_WS_QWS) || defined(_WS_QWS_) 633#if defined(Q_WS_QWS) || defined(_WS_QWS_)
@@ -585,16 +672,17 @@ void DateBook::timerEvent( QTimerEvent *e )
585} 672}
586 673
587void DateBook::changeClock( bool newClock ) 674void DateBook::changeClock( bool newClock )
588{ 675{
589 ampm = newClock; 676 ampm = newClock;
590 // repaint the affected objects... 677 // repaint the affected objects...
591 if (dayView) dayView->redraw(); 678 if (dayView) dayView->redraw();
592 if (weekView) weekView->redraw(); 679 if (weekView) weekView->redraw();
680 if (weekLstView) weekLstView->redraw();
593} 681}
594 682
595void DateBook::changeWeek( bool m ) 683void DateBook::changeWeek( bool m )
596{ 684{
597 /* no need to redraw, each widget catches. Do need to 685 /* no need to redraw, each widget catches. Do need to
598 store though for widgets we haven't made yet */ 686 store though for widgets we haven't made yet */
599 onMonday = m; 687 onMonday = m;
600} 688}
@@ -655,17 +743,19 @@ void DateBook::slotNewEventFromKey( const QString &str )
655 start.setTime( QTime( 10, 0 ) ); 743 start.setTime( QTime( 10, 0 ) );
656 end.setTime( QTime( 12, 0 ) ); 744 end.setTime( QTime( 12, 0 ) );
657 } else if ( views->visibleWidget() == weekView ) { 745 } else if ( views->visibleWidget() == weekView ) {
658 QDate d = weekView->date(); 746 QDate d = weekView->date();
659 start = end = d; 747 start = end = d;
660 start.setTime( QTime( 10, 0 ) ); 748 start.setTime( QTime( 10, 0 ) );
661 end.setTime( QTime( 12, 0 ) ); 749 end.setTime( QTime( 12, 0 ) );
662 } 750 }
663 751 slotNewEntry(start, end, str);
752}
753void DateBook::slotNewEntry(const QDateTime &start, const QDateTime &end, const QString &str) {
664 // argh! This really needs to be encapsulated in a class 754 // argh! This really needs to be encapsulated in a class
665 // or function. 755 // or function.
666 QDialog newDlg( this, 0, TRUE ); 756 QDialog newDlg( this, 0, TRUE );
667 newDlg.setCaption( DateEntryBase::tr("New Event") ); 757 newDlg.setCaption( DateEntryBase::tr("New Event") );
668 DateEntry *e; 758 DateEntry *e;
669 QVBoxLayout *vb = new QVBoxLayout( &newDlg ); 759 QVBoxLayout *vb = new QVBoxLayout( &newDlg );
670 QScrollView *sv = new QScrollView( &newDlg ); 760 QScrollView *sv = new QScrollView( &newDlg );
671 sv->setResizePolicy( QScrollView::AutoOneFit ); 761 sv->setResizePolicy( QScrollView::AutoOneFit );