summaryrefslogtreecommitdiff
path: root/core/pim/datebook/datebook.cpp
authorhakan <hakan>2002-03-09 11:39:21 (UTC)
committer hakan <hakan>2002-03-09 11:39:21 (UTC)
commit603e969bb8cef91534a1785e27106ba71eb03ba6 (patch) (side-by-side diff)
tree20642ed29acb08ab0cecc1dffd1d63baa8914ae2 /core/pim/datebook/datebook.cpp
parent3d03d0e3f679578080bbbf7d8b7f9eba1b9560db (diff)
downloadopie-603e969bb8cef91534a1785e27106ba71eb03ba6.zip
opie-603e969bb8cef91534a1785e27106ba71eb03ba6.tar.gz
opie-603e969bb8cef91534a1785e27106ba71eb03ba6.tar.bz2
Added a WeekLst view showing an entire week and appointment descriptions and made default view configurable
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
@@ -27,4 +27,5 @@
#include "datebooksettings.h"
#include "datebookweek.h"
+#include "datebookweeklst.h"
#include "dateentryimpl.h"
@@ -70,4 +71,5 @@
#define DAY 1
#define WEEK 2
+#define WEEKLST 4
#define MONTH 3
@@ -91,4 +93,12 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f )
setToolBarsMovable( FALSE );
+ views = new QWidgetStack( this );
+ setCentralWidget( views );
+
+ dayView = 0;
+ weekView = 0;
+ weekLstView = 0;
+ monthView = 0;
+
QPEToolBar *bar = new QPEToolBar( this );
bar->setHorizontalStretchable( TRUE );
@@ -125,4 +135,5 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f )
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() ) );
@@ -131,4 +142,12 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f )
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() ) );
@@ -146,12 +165,32 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f )
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)) );
@@ -265,4 +304,6 @@ QDate DateBook::currentDate()
} 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();
@@ -292,4 +333,13 @@ void DateBook::viewWeek()
}
+void DateBook::viewWeekLst() {
+ initWeekLst();
+ weekLstAction->setOn( TRUE );
+ QDate d=currentDate();
+ weekLstView->setDate(d);
+ views->raiseWidget( weekLstView );
+ weekLstView->redraw();
+}
+
void DateBook::viewMonth()
{
@@ -332,5 +382,6 @@ void DateBook::editEvent( const Event &e )
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;
}
@@ -423,4 +474,26 @@ void DateBook::initWeek()
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()
@@ -465,4 +538,16 @@ void DateBook::saveSettings()
}
+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)
{
@@ -537,4 +622,6 @@ void DateBook::appMessage(const QCString& msg, const QByteArray& data)
viewWeek();
else if ( cur == weekView )
+ viewWeekLst();
+ else if ( cur == weekLstView )
viewMonth();
else if ( cur == monthView )
@@ -591,4 +678,5 @@ void DateBook::changeClock( bool newClock )
if (dayView) dayView->redraw();
if (weekView) weekView->redraw();
+ if (weekLstView) weekLstView->redraw();
}
@@ -661,5 +749,7 @@ void DateBook::slotNewEventFromKey( const QString &str )
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.