summaryrefslogtreecommitdiff
path: root/core/pim/datebook/datebook.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/datebook/datebook.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/datebook/datebook.cpp106
1 files changed, 98 insertions, 8 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
@@ -25,8 +25,9 @@
#include "datebook.h"
#include "datebookday.h"
#include "datebooksettings.h"
#include "datebookweek.h"
+#include "datebookweeklst.h"
#include "dateentryimpl.h"
#include <qpe/datebookmonth.h>
#include <qpe/qpeapplication.h>
@@ -68,8 +69,9 @@
#include <stdlib.h>
#define DAY 1
#define WEEK 2
+#define WEEKLST 4
#define MONTH 3
DateBook::DateBook( QWidget *parent, const char *, WFlags f )
@@ -89,8 +91,16 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f )
setIcon( Resource::loadPixmap( "datebook_icon" ) );
setToolBarsMovable( FALSE );
+ views = new QWidgetStack( this );
+ setCentralWidget( views );
+
+ dayView = 0;
+ weekView = 0;
+ weekLstView = 0;
+ monthView = 0;
+
QPEToolBar *bar = new QPEToolBar( this );
bar->setHorizontalStretchable( TRUE );
QPEMenuBar *mb = new QPEMenuBar( bar );
@@ -123,14 +133,23 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f )
a->addTo( view );
a->setToggleAction( TRUE );
a->setOn( TRUE );
dayAction = a;
+
a = new QAction( tr( "Week" ), Resource::loadPixmap( "week" ), QString::null, 0, g, 0 );
connect( a, SIGNAL( activated() ), this, SLOT( viewWeek() ) );
a->addTo( sub_bar );
a->addTo( view );
a->setToggleAction( TRUE );
weekAction = a;
+
+ a = new QAction( tr( "WeekLst" ), Resource::loadPixmap( "weeklst" ), QString::null, 0, g, 0 );
+ connect( a, SIGNAL( activated() ), this, SLOT( viewWeekLst() ) );
+ a->addTo( sub_bar );
+ a->addTo( view );
+ a->setToggleAction( TRUE );
+ weekLstAction = a;
+
a = new QAction( tr( "Month" ), Resource::loadPixmap( "month" ), QString::null, 0, g, 0 );
connect( a, SIGNAL( activated() ), this, SLOT( viewMonth() ) );
a->addTo( sub_bar );
a->addTo( view );
@@ -144,16 +163,36 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f )
a = new QAction( tr( "Alarm and Start Time..." ), QString::null, 0, 0 );
connect( a, SIGNAL( activated() ), this, SLOT( slotSettings() ) );
a->addTo( settings );
- views = new QWidgetStack( this );
- setCentralWidget( views );
+ QPopupMenu *default_view = new QPopupMenu(this);
+ settings->insertItem( tr( "Default View" ),default_view );
+ default_view->setCheckable(TRUE);
- dayView = 0;
- weekView = 0;
- monthView = 0;
- viewDay();
+ Config config("DateBook");
+ config.setGroup("Main");
+ int current=config.readNumEntry("defaultview", DAY);
+
+ QActionGroup *ag = new QActionGroup(this);
+ a = new QAction( tr( "Day" ), QString::null, 0, 0, 0, true );
+ if (current==DAY) a->setOn(true), viewDay();
+ ag->insert(a);
+ a = new QAction( tr( "Week" ), QString::null, 0, 0, 0, true );
+ if (current==WEEK) a->setOn(true), viewWeek();
+ ag->insert(a);
+ a = new QAction( tr( "WeekLst" ), QString::null, 0, 0, 0, true );
+ if (current==WEEKLST) a->setOn(true), viewWeekLst();
+ ag->insert(a);
+ a = new QAction( tr( "Month" ), QString::null, 0, 0, 0, true );
+ if (current==MONTH) a->setOn(true), viewMonth();
+ ag->insert(a);
+
+ ag->addTo(default_view);
+ connect(ag, SIGNAL( selected ( QAction * ) ),
+ this, SLOT( newDefaultView(QAction *) )
+ );
+
connect( qApp, SIGNAL(clockChanged(bool)),
this, SLOT(changeClock(bool)) );
connect( qApp, SIGNAL(weekChanged(bool)),
this, SLOT(changeWeek(bool)) );
@@ -263,8 +302,10 @@ QDate DateBook::currentDate()
if ( dayView && views->visibleWidget() == dayView ) {
d = dayView->date();
} else if ( weekView && views->visibleWidget() == weekView ) {
d = weekView->date();
+ } else if ( weekLstView && views->visibleWidget() == weekLstView ) {
+ d = weekLstView->date();
} else if ( monthView && views->visibleWidget() == monthView ) {
d = monthView->selectedDate();
}
@@ -290,8 +331,17 @@ void DateBook::viewWeek()
views->raiseWidget( weekView );
weekView->redraw();
}
+void DateBook::viewWeekLst() {
+ initWeekLst();
+ weekLstAction->setOn( TRUE );
+ QDate d=currentDate();
+ weekLstView->setDate(d);
+ views->raiseWidget( weekLstView );
+ weekLstView->redraw();
+}
+
void DateBook::viewMonth()
{
initMonth();
monthAction->setOn( TRUE );
@@ -330,9 +380,10 @@ void DateBook::editEvent( const Event &e )
Event newEv = entry->event();
QString error = checkEvent(newEv);
if (!error.isNull()) {
if (QMessageBox::warning(this, "error box",
- error, "Fix it", "Continue", 0, 0, 1) == 0)
+ error, "Fix it", "Continue",
+ 0, 0, 1) == 0)
continue;
}
db->editEvent(e, newEv);
emit newEvent();
@@ -421,8 +472,30 @@ void DateBook::initWeek()
}
if ( totWeeks != weekView->totalWeeks() )
weekView->setTotalWeeks( totWeeks );
}
+void DateBook::initWeekLst() {
+ if ( !weekLstView ) {
+ weekLstView = new DateBookWeekLst( ampm, onMonday, db,
+ views, "weeklst view" );
+ views->addWidget( weekLstView, WEEKLST );
+
+ //weekLstView->setStartViewTime( startTime );
+ connect( weekLstView, SIGNAL( showDate( int, int, int ) ),
+ this, SLOT( showDay( int, int, int ) ) );
+ connect( weekLstView, SIGNAL( addEvent( const QDateTime &,
+ const QDateTime &,
+ const QString & ) ),
+ this, SLOT( slotNewEntry( const QDateTime &,
+ const QDateTime &,
+ const QString & ) ) );
+ connect( this, SIGNAL( newEvent() ),
+ weekLstView, SLOT( redraw() ) );
+ connect( weekLstView, SIGNAL( editEvent( const Event & ) ),
+ this, SLOT( editEvent( const Event & ) ) );
+ }
+}
+
void DateBook::initMonth()
{
if ( !monthView ) {
@@ -463,8 +536,20 @@ void DateBook::saveSettings()
configDB.writeEntry("alarmpreset",aPreset);
configDB.writeEntry("presettime",presetTime);
}
+void DateBook::newDefaultView(QAction *a) {
+ int val=DAY;
+ if (a->text() == "Day") val=DAY;
+ if (a->text() == "Week") val=WEEK;
+ if (a->text() == "WeekLst") val=WEEKLST;
+ if (a->text() == "Month") val=MONTH;
+
+ Config configDB( "DateBook" );
+ configDB.setGroup( "Main" );
+ configDB.writeEntry("defaultview",val);
+}
+
void DateBook::appMessage(const QCString& msg, const QByteArray& data)
{
bool needShow = FALSE;
if ( msg == "alarm(QDateTime,int)" ) {
@@ -535,8 +620,10 @@ void DateBook::appMessage(const QCString& msg, const QByteArray& data)
if ( cur ) {
if ( cur == dayView )
viewWeek();
else if ( cur == weekView )
+ viewWeekLst();
+ else if ( cur == weekLstView )
viewMonth();
else if ( cur == monthView )
viewDay();
needShow = TRUE;
@@ -589,8 +676,9 @@ void DateBook::changeClock( bool newClock )
ampm = newClock;
// repaint the affected objects...
if (dayView) dayView->redraw();
if (weekView) weekView->redraw();
+ if (weekLstView) weekLstView->redraw();
}
void DateBook::changeWeek( bool m )
{
@@ -659,9 +747,11 @@ void DateBook::slotNewEventFromKey( const QString &str )
start = end = d;
start.setTime( QTime( 10, 0 ) );
end.setTime( QTime( 12, 0 ) );
}
-
+ slotNewEntry(start, end, str);
+}
+void DateBook::slotNewEntry(const QDateTime &start, const QDateTime &end, const QString &str) {
// argh! This really needs to be encapsulated in a class
// or function.
QDialog newDlg( this, 0, TRUE );
newDlg.setCaption( DateEntryBase::tr("New Event") );