summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2005-06-15 16:07:02 (UTC)
committer zautrix <zautrix>2005-06-15 16:07:02 (UTC)
commit2a788f41ebeb7d8edab7010fb1a00799cb9e036d (patch) (side-by-side diff)
tree0d8f635abc48d64add3131f8b5891ee70a877802
parent40fa3e374fd96c0cb8925a1c3c46d40e1ea2b111 (diff)
downloadkdepimpi-2a788f41ebeb7d8edab7010fb1a00799cb9e036d.zip
kdepimpi-2a788f41ebeb7d8edab7010fb1a00799cb9e036d.tar.gz
kdepimpi-2a788f41ebeb7d8edab7010fb1a00799cb9e036d.tar.bz2
fixxx
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--korganizer/komonthview.cpp27
1 files changed, 21 insertions, 6 deletions
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp
index 2150654..475bb4a 100644
--- a/korganizer/komonthview.cpp
+++ b/korganizer/komonthview.cpp
@@ -316,22 +316,29 @@ void MonthViewItem::paint(QPainter *p)
bool sel = selected();
#endif
+ int heihei = height( listBox () );
+ int x = 1;
if (KOPrefs::instance()->mMonthViewUsesCategoryColor)
{
p->setBackgroundColor( palette().color( QPalette::Normal, \
sel ? QColorGroup::Highlight : QColorGroup::Background ) );
- p->eraseRect( 0, 0, listBox()->maxItemWidth(), height( listBox() ) );
+ p->eraseRect( 0, 0, listBox()->maxItemWidth(), heihei );
}
- int x = 1;
+
//int y = 3;//(height() - mRecurPixmap.height()) /2;
int size = PIXMAP_SIZE;
if ( QApplication::desktop()->width() < 300 )
size = 3;
- int heihei = height( listBox () );
int y = (heihei - size -1 ) /2;
+ if ( mIncidence->calID() > 1 ) {
+ p->fillRect ( x, y-2,size,size+4, KOPrefs::instance()->defaultColor( mIncidence->calID() ) );
+ p->drawRect ( x, y-2,size,size+4);
+ x += size + 1;
+ }
+
if ( KOPrefs::instance()->mMonthShowIcons ) {
if ( mInfo ) {
p->fillRect ( x, y,size,size, Qt::darkGreen );
x += size + 1;
@@ -609,8 +616,9 @@ void MonthViewCell::startUpdateCell()
if ( mAvailItemList.count() > 20 ) {
mAvailItemList.setAutoDelete( true );
mAvailItemList.clear();
mAvailItemList.setAutoDelete( false );
+ clear();
}
setPrimary( mDate.month()%2 );
setHoliday( KOGlobals::self()->calendarSystem()->dayOfWeek(mDate) == KOGlobals::self()->calendarSystem()->weekDayOfPray() || ( mDate.dayOfWeek() == 6 ) && KOPrefs::instance()-> mExcludeSaturdays);
@@ -762,16 +770,23 @@ int MonthViewCell::insertEvent(Event *event)
item->setReply(false);
} else
item->setReply(false);
#endif
+
item->setMultiDay( multiday );
if ( multiday ) {
insertItem( item ,mdayCount);
++mdayCount;
} else {
- uint i;
- int pos = mdayCount;
- for ( i = mdayCount; i < count();++i ) {
+ uint i = mdayCount;
+ uint pos = mdayCount;
+ uint itcount = count();
+ if ( itcount > 1000 ) {
+ qDebug("KO: Bug in MonthViewCell::insertEvent %u ", itcount);
+ itcount = 0;
+ }
+ for ( i = pos; i < itcount;++i ) {
+ // qDebug("i %d mday %u count %d ",i,itcount,mdayCount );
QListBoxItem* it = this->item ( i );
if ( it && text < it->text() ) {
pos = i;
break;