author | zautrix <zautrix> | 2004-10-29 21:05:07 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-29 21:05:07 (UTC) |
commit | 3c0edb4b4c4a77b334331749dfde776911c3a3a0 (patch) (unidiff) | |
tree | 89de7078a1a062c19b2f13ededd49f471c362abf /korganizer | |
parent | a7e2fe5bb10af47a239b8b014a210568cc79287a (diff) | |
download | kdepimpi-3c0edb4b4c4a77b334331749dfde776911c3a3a0.zip kdepimpi-3c0edb4b4c4a77b334331749dfde776911c3a3a0.tar.gz kdepimpi-3c0edb4b4c4a77b334331749dfde776911c3a3a0.tar.bz2 |
KO WN view fix
-rw-r--r-- | korganizer/kowhatsnextview.cpp | 42 | ||||
-rw-r--r-- | korganizer/kowhatsnextview.h | 2 |
2 files changed, 22 insertions, 22 deletions
diff --git a/korganizer/kowhatsnextview.cpp b/korganizer/kowhatsnextview.cpp index aa33588..2f7409d 100644 --- a/korganizer/kowhatsnextview.cpp +++ b/korganizer/kowhatsnextview.cpp | |||
@@ -72,6 +72,2 @@ KOWhatsNextView::KOWhatsNextView(Calendar *calendar, QWidget *parent, | |||
72 | QStyleSheetItem * style ; | 72 | QStyleSheetItem * style ; |
73 | style = stsh->item ("a" ); | ||
74 | if ( style ) { | ||
75 | style->setMargin(QStyleSheetItem::MarginAll,0); | ||
76 | } | ||
77 | style = stsh->item ("h2" ); | 73 | style = stsh->item ("h2" ); |
@@ -84,6 +80,2 @@ KOWhatsNextView::KOWhatsNextView(Calendar *calendar, QWidget *parent, | |||
84 | } | 80 | } |
85 | style = stsh->item ("table" ); | ||
86 | if ( style ) { | ||
87 | style->setMargin(QStyleSheetItem::MarginAll,0); | ||
88 | } | ||
89 | mEventViewer = 0; | 81 | mEventViewer = 0; |
@@ -163,3 +155,3 @@ void KOWhatsNextView::updateView() | |||
163 | //<big><big><strong>" + date + "</strong></big></big>\n"; | 155 | //<big><big><strong>" + date + "</strong></big></big>\n"; |
164 | mText = "<qt><table width=\"100%\">\n"; | 156 | mText = "<table width=\"100%\">\n"; |
165 | //mText += "<tr bgcolor=\"#3679AD\"><td><h2>"; | 157 | //mText += "<tr bgcolor=\"#3679AD\"><td><h2>"; |
@@ -218,5 +210,8 @@ void KOWhatsNextView::updateView() | |||
218 | appendDay ( iii, mEventDate ); | 210 | appendDay ( iii, mEventDate ); |
219 | itemAdded = true; | ||
220 | 211 | ||
221 | } | 212 | } |
213 | // for first day (iii == 0) | ||
214 | // we may have syncevents, or events in the past, which maybe should nor be diaplayed | ||
215 | // for that reason we cannot append <table> in appendDay () for iii == 0 | ||
216 | // we must append it in the first successful call of appendEvent() | ||
222 | Event *ev = events.first(); | 217 | Event *ev = events.first(); |
@@ -225,3 +220,4 @@ void KOWhatsNextView::updateView() | |||
225 | if ( true /*!ev->recurrence()->doesRecur() || ev->recursOn( mEventDate)*/) { | 220 | if ( true /*!ev->recurrence()->doesRecur() || ev->recursOn( mEventDate)*/) { |
226 | appendEvent(ev, false , iii!= 0 ); | 221 | if ( appendEvent(ev, false , iii!= 0,!itemAdded ) ) |
222 | itemAdded = true; | ||
227 | } | 223 | } |
@@ -244,3 +240,3 @@ void KOWhatsNextView::updateView() | |||
244 | } | 240 | } |
245 | if ( !itemAdded && iii == 0 ) { | 241 | if ( !itemAdded && iii == 0 ) { |
246 | // appendDay ( iii, mEventDate ); | 242 | // appendDay ( iii, mEventDate ); |
@@ -251,3 +247,3 @@ void KOWhatsNextView::updateView() | |||
251 | } | 247 | } |
252 | if ( itemAdded ) | 248 | if ( itemAdded ) |
253 | mText += "</table>\n"; | 249 | mText += "</table>\n"; |
@@ -345,3 +341,3 @@ void KOWhatsNextView::updateView() | |||
345 | 341 | ||
346 | mText += "</td></tr>\n</table></qt>\n"; | 342 | mText += "</td></tr>\n</table>\n"; |
347 | 343 | ||
@@ -359,3 +355,3 @@ void KOWhatsNextView::updateView() | |||
359 | // mView->setBackgroundPixmap ( bPix ); | 355 | // mView->setBackgroundPixmap ( bPix ); |
360 | // qDebug("%s ",mText.latin1()); | 356 | qDebug("%s ",mText.latin1()); |
361 | } | 357 | } |
@@ -368,3 +364,3 @@ void KOWhatsNextView::appendDay( int i, QDate eventDate ) | |||
368 | if ( i == 0 ) { | 364 | if ( i == 0 ) { |
369 | mText += "<table>\n"; | 365 | //mText += "<table>\n"; |
370 | return;//date = "<em><font color=\"#008000\"><em>" + day+"</font></em>"; | 366 | return;//date = "<em><font color=\"#008000\"><em>" + day+"</font></em>"; |
@@ -382,3 +378,3 @@ void KOWhatsNextView::appendDay( int i, QDate eventDate ) | |||
382 | if ( i == 0 ) { | 378 | if ( i == 0 ) { |
383 | mText += "<table>\n"; | 379 | //mText += "<table>\n"; |
384 | return;// date = "<font color=\"#008000\"><em>" +i18n("Today: ") +"</em>" + day+"</font>"; | 380 | return;// date = "<font color=\"#008000\"><em>" +i18n("Today: ") +"</em>" + day+"</font>"; |
@@ -432,6 +428,6 @@ void KOWhatsNextView::changeEventDisplay(Event *, int action) | |||
432 | 428 | ||
433 | void KOWhatsNextView::appendEvent(Incidence *ev, bool reply, bool notRed ) | 429 | bool KOWhatsNextView::appendEvent(Incidence *ev, bool reply, bool notRed, bool appendTable ) |
434 | { | 430 | { |
435 | if ( !KOPrefs::instance()->mShowSyncEvents && ev->uid().left(15) == QString("last-syncEvent-") ) | 431 | if ( !KOPrefs::instance()->mShowSyncEvents && ev->uid().left(15) == QString("last-syncEvent-") ) |
436 | return; | 432 | return false; |
437 | QDateTime cdt = QDateTime::currentDateTime(); | 433 | QDateTime cdt = QDateTime::currentDateTime(); |
@@ -439,2 +435,5 @@ void KOWhatsNextView::appendEvent(Incidence *ev, bool reply, bool notRed ) | |||
439 | QString tempText; | 435 | QString tempText; |
436 | if ( appendTable && !notRed ) { | ||
437 | tempText = "<table>"; | ||
438 | } | ||
440 | bool ok = true; | 439 | bool ok = true; |
@@ -443,3 +442,3 @@ void KOWhatsNextView::appendEvent(Incidence *ev, bool reply, bool notRed ) | |||
443 | if (! ok && ev->type() == "Event") | 442 | if (! ok && ev->type() == "Event") |
444 | return; | 443 | return false; |
445 | } | 444 | } |
@@ -488,3 +487,3 @@ void KOWhatsNextView::appendEvent(Incidence *ev, bool reply, bool notRed ) | |||
488 | if ( !KOPrefs::instance()->mWNViewShowsPast ) | 487 | if ( !KOPrefs::instance()->mWNViewShowsPast ) |
489 | return; | 488 | return false; |
490 | tempText += "<font color=\"#F00000\">" + dateText + "</font>"; | 489 | tempText += "<font color=\"#F00000\">" + dateText + "</font>"; |
@@ -577,2 +576,3 @@ void KOWhatsNextView::appendEvent(Incidence *ev, bool reply, bool notRed ) | |||
577 | mText += tempText; | 576 | mText += tempText; |
577 | return true; | ||
578 | } | 578 | } |
diff --git a/korganizer/kowhatsnextview.h b/korganizer/kowhatsnextview.h index 1118bdd..9049268 100644 --- a/korganizer/kowhatsnextview.h +++ b/korganizer/kowhatsnextview.h | |||
@@ -72,3 +72,3 @@ class KOWhatsNextView : public KOrg::BaseView | |||
72 | protected: | 72 | protected: |
73 | void appendEvent(Incidence *, bool reply=false, bool notRed = true); | 73 | bool appendEvent(Incidence *, bool reply=false, bool notRed = true, bool appendTable = false); |
74 | bool appendTodo(Incidence *, QString ind = "", bool isSub = false ); | 74 | bool appendTodo(Incidence *, QString ind = "", bool isSub = false ); |