-rw-r--r-- | core/pim/today/TODO | 11 | ||||
-rw-r--r-- | core/pim/today/changelog | 4 | ||||
-rw-r--r-- | core/pim/today/today.cpp | 159 | ||||
-rw-r--r-- | core/pim/today/today.h | 25 | ||||
-rw-r--r-- | core/pim/today/today.pro | 5 | ||||
-rw-r--r-- | core/pim/today/todaybase.cpp | 16 | ||||
-rw-r--r-- | core/pim/today/todaybase.h | 6 | ||||
-rw-r--r-- | core/pim/today/todayconfig.h | 2 |
8 files changed, 147 insertions, 81 deletions
diff --git a/core/pim/today/TODO b/core/pim/today/TODO index 5876e2b..a3b01d2 100644 --- a/core/pim/today/TODO +++ b/core/pim/today/TODO @@ -2,5 +2,5 @@ TODO for today: -* start the app on "resume" +* start the app on "resume" (partly done) -* show alarm icons on alarm events +* show alarm icons on alarm events (partly done) @@ -8,6 +8,7 @@ TODO for today: -* fix 23 pm bug (done??) - * qcop integration for updating events? -* sort todos by pri.
\ No newline at end of file +* sort todos by pri. + +* make Opiezilla a clickable label wich is allway on the far right side of +the screen , klick will open credits ,)
\ No newline at end of file diff --git a/core/pim/today/changelog b/core/pim/today/changelog index 7111154..333326d 100644 --- a/core/pim/today/changelog +++ b/core/pim/today/changelog @@ -1 +1,5 @@ + +* Appointments are now clickable (connection to datebook still missing) +* autostart support (opie only) + 0.2.7 diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index d715fc1..69bcb68 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp @@ -41,2 +41,3 @@ #include <qfileinfo.h> +#include <qlayout.h> @@ -47,2 +48,3 @@ + int MAX_LINES_TASK; @@ -55,2 +57,4 @@ int ONLY_LATER; int AUTOSTART; + +int NEW_START=1; /* @@ -71,3 +75,2 @@ Today::Today( QWidget* parent, const char* name, WFlags fl ) - void Today::autoStart() { @@ -205,3 +208,6 @@ void Today::getDates() { QDate date = QDate::currentDate(); - QTime time = QTime::currentTime(); + QWidget* AllDateBookEvents = new QWidget( ); + QVBoxLayout* layoutDates = new QVBoxLayout(AllDateBookEvents); + //QTime time = QTime::currentTime(); + QValueList<EffectiveEvent> list = db->getEffectiveEvents(date, date); @@ -223,64 +229,21 @@ void Today::getDates() { if ( count <= MAX_LINES_MEET ) { - //cout << time.toString() << endl; - //cout << TimeString::dateString((*it).event().end()) << endl; - - // decide if to get all day or only later appointments - if (!ONLY_LATER) { - msg += "<B>" + (*it).description() + "</B>"; - if ( (*it).event().hasAlarm() ) { - msg += " <b>[with alarm]</b>"; - } - // include location or not - if (SHOW_LOCATION == 1) { - msg += "<BR><i>" + (*it).location(); - msg += "</i>"; - } - - if ( (TimeString::timeString(QTime((*it).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((*it).event().end().time()) ) == "23:59") ) { - msg += "<br>All day"; - } else { - // start time of event - msg += "<br>" + TimeString::timeString(QTime((*it).event().start().time()) ) - // end time of event - + "<b> - </b>" + TimeString::timeString(QTime((*it).event().end().time()) ); - } - msg += "<BR>"; - // include possible note or not - if (SHOW_NOTES == 1) { - msg += " <i>note</i>:" +((*it).notes()).mid(0, MAX_CHAR_CLIP) + "<br>"; - } - } else if ((time.toString() <= TimeString::dateString((*it).event().end())) ) { - msg += "<B>" + (*it).description() + "</B>"; - if ( (*it).event().hasAlarm() ) { - msg += " <b>[with alarm]</b>"; - } - // include location or not - if (SHOW_LOCATION == 1) { - msg+= "<BR><i>" + (*it).location(); - msg += "</i>"; - } - - if ( (TimeString::timeString(QTime((*it).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((*it).event().end().time()) ) == "23:59") ) { - msg += "<br>All day"; - } else { - // start time of event - msg += "<br>" + TimeString::timeString(QTime((*it).event().start().time()) ) - // end time of event - + "<b> - </b>" + TimeString::timeString(QTime((*it).event().end().time()) ); - } - msg += "<BR>"; - // include possible note or not - if (SHOW_NOTES == 1) { - msg += " <i>note</i>:" +((*it).notes()).mid(0, MAX_CHAR_CLIP) + "<br>"; - } - } + + + DateBookEvent *l=new DateBookEvent(*it, AllDateBookEvents); + layoutDates->addWidget(l); + connect (l, SIGNAL(editEvent(const Event &)), + this, SIGNAL(editEvent(const Event &))); } - } - if (msg.isEmpty()) { - msg = tr("No more appointments today"); - } - DatesField->setText(msg); + + } + layoutDates->addItem(new QSpacerItem(1,1, QSizePolicy::Minimum, QSizePolicy::Expanding)); + sv1->addChild(AllDateBookEvents); + + //if (msg.isEmpty()) { + // msg = tr("No more appointments today"); + //} + //DatesField->setText(msg); } } - + /* @@ -373,5 +336,6 @@ void Today::getTodo() { // if the todolist.xml file was not modified in between, do not parse it. - if (!checkIfModified()) { + if (!checkIfModified() && !NEW_START) { return; } + NEW_START=0; @@ -443 +407,72 @@ Today::~Today() { } + + +DateBookEvent::DateBookEvent(const EffectiveEvent &ev, + QWidget* parent = 0, + const char* name = 0, + WFlags fl = 0) : + ClickableLabel(parent,name,fl), event(ev) { + + QString msg; + QTime time = QTime::currentTime(); + + if (!ONLY_LATER) { + msg += "<B>" + (ev).description() + "</B>"; + if ( (ev).event().hasAlarm() ) { + msg += " <b>[with alarm]</b>"; + } + // include location or not + if (SHOW_LOCATION == 1) { + msg += "<BR><i>" + (ev).location(); + msg += "</i>"; + } + + if ( (TimeString::timeString(QTime((ev).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((ev).event().end().time()) ) == "23:59") ) { + msg += "<br>All day"; + } else { + // start time of event + msg += "<br>" + TimeString::timeString(QTime((ev).event().start().time()) ) + // end time of event + + "<b> - </b>" + TimeString::timeString(QTime((ev).event().end().time()) ); + } + msg += "<BR>"; + // include possible note or not + if (SHOW_NOTES == 1) { + msg += " <i>note</i>:" +((ev).notes()).mid(0, MAX_CHAR_CLIP) + "<br>"; + } + } else if ((time.toString() <= TimeString::dateString((ev).event().end())) ) { + msg += "<B>" + (ev).description() + "</B>"; + if ( (ev).event().hasAlarm() ) { + msg += " <b>[with alarm]</b>"; + } + // include location or not + if (SHOW_LOCATION == 1) { + msg+= "<BR><i>" + (ev).location(); + msg += "</i>"; + } + + if ( (TimeString::timeString(QTime((ev).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((ev).event().end().time()) ) == "23:59") ) { + msg += "<br>All day"; + } else { + // start time of event + msg += "<br>" + TimeString::timeString(QTime((ev).event().start().time()) ) + // end time of event + + "<b> - </b>" + TimeString::timeString(QTime((ev).event().end().time()) ); + } + // include possible note or not + if (SHOW_NOTES == 1) { + msg += "<br> <i>note</i>:" +((ev).notes()).mid(0, MAX_CHAR_CLIP) + "<br>"; + } + } + + setText(msg); + connect(this, SIGNAL(clicked()), this, SLOT(editMe())); + setAlignment( int( QLabel::WordBreak | QLabel::AlignLeft ) ); +} + +void DateBookEvent::editMe() { + emit editEvent(event.event()); +} + + + diff --git a/core/pim/today/today.h b/core/pim/today/today.h index b3b7d01..0a0837c 100644 --- a/core/pim/today/today.h +++ b/core/pim/today/today.h @@ -22,5 +22,5 @@ #define TODAY_H -#include "todaybase.h" #include <qpe/datebookdb.h> +#include <qpe/event.h> @@ -28,7 +28,11 @@ #include <qlist.h> + #include "TodoItem.h" #include "todayconfig.h" +#include "todaybase.h" +#include "clickablelabel.h" + +class QVBoxLayout; -class Today : public TodayBase -{ +class Today : public TodayBase { Q_OBJECT @@ -63,2 +67,17 @@ class Today : public TodayBase }; + +class DateBookEvent: public ClickableLabel { + Q_OBJECT +public: + DateBookEvent(const EffectiveEvent &ev, + QWidget* parent = 0, const char* name = 0, + WFlags fl = 0); +signals: + void editEvent(const Event &e); +private slots: + void editMe(); +private: + const EffectiveEvent event; +}; + #endif // TODAY_H diff --git a/core/pim/today/today.pro b/core/pim/today/today.pro index 7d56e71..454b3ff 100644 --- a/core/pim/today/today.pro +++ b/core/pim/today/today.pro @@ -3,4 +3,5 @@ TEMPLATE = app CONFIG = qt warn_on release -HEADERS = today.h TodoItem.h minidom.h todaybase.h todayconfig.h -SOURCES = main.cpp today.cpp todaybase.cpp todayconfig.cpp minidom.c TodoItem.cpp +HEADERS = today.h TodoItem.h minidom.h todaybase.h todayconfig.h clickablelabel.h +SOURCES = main.cpp today.cpp todaybase.cpp todayconfig.cpp minidom.c TodoItem.cpp clickablelabel.cpp + INCLUDEPATH += $(OPIEDIR)/include diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp index 5c1dc24..552e2eb 100644 --- a/core/pim/today/todaybase.cpp +++ b/core/pim/today/todaybase.cpp @@ -53,2 +53,3 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl ) + QWidget *d = QApplication::desktop(); @@ -97,3 +98,4 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl ) - QScrollView* sv1 = new QScrollView( Frame4 ); + // QScrollView* sv1 = new QScrollView( Frame4 ); + sv1 = new QScrollView( Frame4 ); sv1->setResizePolicy(QScrollView::AutoOneFit); @@ -111,9 +113,11 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl ) - DatesField = new QLabel( sv1->viewport(), "DatesField" ); - sv1->addChild(DatesField); - DatesField->setText( tr( "No appointments today" ) ); - DatesField->setAlignment( int( QLabel::AlignTop | QLabel::AlignLeft ) ); + //DatesField = new QLabel( sv1->viewport(), "DatesField" ); + //DatesField = new QVBox(sv1->viewport()); + //QWidget *dummy = new QWidget(sv1->viewport()); + //sv1->addChild(DatesField); + //DatesField->setText( tr( "No appointments today" ) ); + // DatesField->setAlignment( int( QLabel::AlignTop | QLabel::AlignLeft ) ); - // --- mail section --- + // --- mail section ---) MailFrame = new QFrame( this ,"MailFrame" ); diff --git a/core/pim/today/todaybase.h b/core/pim/today/todaybase.h index 13fbb8d..8840125 100644 --- a/core/pim/today/todaybase.h +++ b/core/pim/today/todaybase.h @@ -16,3 +16,3 @@ -class QVBoxLayout; +class QVBox; class QHBoxLayout; @@ -34,3 +34,3 @@ public: QPushButton* DatesButton; - QLabel* DatesField; + //QLabel* DatesField; QLabel* Frame; @@ -38,2 +38,4 @@ public: QLabel* TextLabel1; + QScrollView* sv1; + QVBox* DatesField; QFrame* Frame15; diff --git a/core/pim/today/todayconfig.h b/core/pim/today/todayconfig.h index 020097d..4739b5a 100644 --- a/core/pim/today/todayconfig.h +++ b/core/pim/today/todayconfig.h @@ -13,3 +13,3 @@ #include <qdialog.h> -class QVBoxLayout; +//class QVBoxLayout; class QHBoxLayout; |