summaryrefslogtreecommitdiffabout
path: root/korganizer/komonthview.cpp
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 /korganizer/komonthview.cpp
parent40fa3e374fd96c0cb8925a1c3c46d40e1ea2b111 (diff)
downloadkdepimpi-2a788f41ebeb7d8edab7010fb1a00799cb9e036d.zip
kdepimpi-2a788f41ebeb7d8edab7010fb1a00799cb9e036d.tar.gz
kdepimpi-2a788f41ebeb7d8edab7010fb1a00799cb9e036d.tar.bz2
fixxx
Diffstat (limited to 'korganizer/komonthview.cpp') (more/less context) (ignore 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
@@ -317,20 +317,27 @@ void MonthViewItem::paint(QPainter *p)
#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 );
@@ -610,6 +617,7 @@ void MonthViewCell::startUpdateCell()
mAvailItemList.setAutoDelete( true );
mAvailItemList.clear();
mAvailItemList.setAutoDelete( false );
+ clear();
}
setPrimary( mDate.month()%2 );
@@ -763,14 +771,21 @@ int MonthViewCell::insertEvent(Event *event)
} 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;