From 20fa51b3d38725ca151364a14d8005b4e6c9b415 Mon Sep 17 00:00:00 2001 From: harlekin Date: Thu, 21 Mar 2002 10:57:44 +0000 Subject: fixes reagarding calendar part --- diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index 2dc96fc..58ba4f4 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp @@ -188,7 +188,6 @@ void Today::init() { QString time = (tr( date.toString()) ); TextLabel1->setText(QString("" + time + "")); - db = new DateBookDB; // read config Config cfg("today"); @@ -207,8 +206,9 @@ void Today::init() { SHOW_NOTES = cfg.readNumEntry("shownotes",0); // should only later appointments be shown or all for the current day. ONLY_LATER = cfg.readNumEntry("onlylater",1); -} + db = new DateBookDB; +} /* * The method for the configuration dialog. @@ -296,7 +296,7 @@ void Today::getDates() { if (!ONLY_LATER) { count++; - DateBookEvent *l=new DateBookEvent(*it, AllDateBookEvents); + DateBookEvent *l=new DateBookEvent(*it, AllDateBookEvents, SHOW_LOCATION, SHOW_NOTES); layoutDates->addWidget(l); connect (l, SIGNAL(editEvent(const Event &)), this, SLOT(editEvent(const Event &))); @@ -304,7 +304,7 @@ void Today::getDates() { count++; // show only later appointments - DateBookEventLater *l=new DateBookEventLater(*it, AllDateBookEvents); + DateBookEventLater *l=new DateBookEventLater(*it, AllDateBookEvents, SHOW_LOCATION, SHOW_NOTES); layoutDates->addWidget(l); connect (l, SIGNAL(editEvent(const Event &)), this, SLOT(editEvent(const Event &))); @@ -442,9 +442,11 @@ Today::~Today() { * Gets the events for the current day, if it should get all dates */ DateBookEvent::DateBookEvent(const EffectiveEvent &ev, - QWidget* parent = 0, - const char* name = 0, - WFlags fl = 0) : + QWidget* parent = 0, + int SHOW_LOCATION = 0, + int SHOW_NOTES = 0, + const char* name = 0, + WFlags fl = 0) : ClickableLabel(parent,name,fl), event(ev) { QString msg; @@ -457,8 +459,7 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev, } // include location or not if (SHOW_LOCATION == 1) { - msg += "
" + (ev).location(); - msg += ""; + msg += "
" + (ev).location() + ""; } if ( (TimeString::timeString(QTime((ev).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((ev).event().end().time()) ) == "23:59") ) { @@ -472,7 +473,7 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev, // include possible note or not if (SHOW_NOTES == 1) { - msg += "
note:" +((ev).notes()).mid(0, MAX_CHAR_CLIP) + "
"; + msg += "
note:" +((ev).notes()).mid(0, MAX_CHAR_CLIP); } } setText(msg); @@ -483,6 +484,8 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev, DateBookEventLater::DateBookEventLater(const EffectiveEvent &ev, QWidget* parent = 0, + int SHOW_LOCATION = 0, + int SHOW_NOTES = 0, const char* name = 0, WFlags fl = 0) : ClickableLabel(parent,name,fl), event(ev) { @@ -498,8 +501,7 @@ DateBookEventLater::DateBookEventLater(const EffectiveEvent &ev, } // include location or not if (SHOW_LOCATION == 1) { - msg += "
" + (ev).location(); - msg += ""; + msg += "
" + (ev).location() + ""; } if ( (TimeString::timeString(QTime((ev).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((ev).event().end().time()) ) == "23:59") ) { @@ -512,7 +514,7 @@ DateBookEventLater::DateBookEventLater(const EffectiveEvent &ev, } // include possible note or not if (SHOW_NOTES == 1) { - msg += "
note:" +((ev).notes()).mid(0, MAX_CHAR_CLIP) + "
"; + msg += "
note:" +((ev).notes()).mid(0, MAX_CHAR_CLIP); } } diff --git a/core/pim/today/today.h b/core/pim/today/today.h index 6048781..090e8f9 100644 --- a/core/pim/today/today.h +++ b/core/pim/today/today.h @@ -78,8 +78,11 @@ class DateBookEvent: public ClickableLabel { Q_OBJECT public: DateBookEvent(const EffectiveEvent &ev, - QWidget* parent = 0, const char* name = 0, - WFlags fl = 0); + QWidget* parent = 0, + int SHOW_LOCATION = 0, + int SHOW_NOTES = 0, + const char* name = 0, + WFlags fl = 0); signals: void editEvent(const Event &e); private slots: @@ -92,8 +95,11 @@ class DateBookEventLater: public ClickableLabel { Q_OBJECT public: DateBookEventLater(const EffectiveEvent &ev, - QWidget* parent = 0, const char* name = 0, - WFlags fl = 0); + QWidget* parent = 0, + int SHOW_LOCATION = 0, + int SHOW_NOTES = 0, + const char* name = 0, + WFlags fl = 0); signals: void editEvent(const Event &e); private slots: -- cgit v0.9.0.2