-rw-r--r-- | korganizer/koagenda.cpp | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/korganizer/koagenda.cpp b/korganizer/koagenda.cpp index 14f52b8..ed7a443 100644 --- a/korganizer/koagenda.cpp +++ b/korganizer/koagenda.cpp @@ -345,23 +345,14 @@ void KOAgenda::marcus_bains() void KOAgenda::changeColumns(int columns) { if (columns == 0) { - kdDebug() << "KOAgenda::changeColumns() called with argument 0" << endl; + qDebug("KOAgenda::changeColumns() called with argument 0 "); return; } - clear(); - mColumns = columns; -// setMinimumSize(mColumns * 10, mGridSpacingY + 1); -// init(); -// update(); - //qDebug("KOAgenda::changeColumns "); computeSizes(); - // QResizeEvent event( size(), size() ); - - //QApplication::sendEvent( this, &event ); } /* This is the eventFilter function, which gets all events from the KOAgendaItems @@ -1747,21 +1738,18 @@ void KOAgenda::updateTodo( Todo * todo, int days, bool remove) Insert KOAgendaItem into agenda. */ KOAgendaItem *KOAgenda::insertItem (Incidence *event,QDate qd,int X,int YTop,int YBottom) { - //kdDebug() << "KOAgenda::insertItem:" << event->summary() << "-" << qd.toString() << " ;top, bottom:" << YTop << "," << YBottom << endl; - if (mAllDayMode) { - kdDebug() << "KOAgenda: calling insertItem in all-day mode is illegal." << endl; + qDebug("KOAgenda: calling insertItem in all-day mode is illegal. "); return 0; } KOAgendaItem *agendaItem = getNewItem(event,qd,viewport()); //agendaItem->setFrameStyle(WinPanel|Raised); int YSize = YBottom - YTop + 1; if (YSize < 0) { - kdDebug() << "KOAgenda::insertItem(): Text: " << agendaItem->text() << " YSize<0" << endl; YSize = 1; } int iheight = mGridSpacingY * YSize; @@ -1889,11 +1877,11 @@ void KOAgenda::resizeEvent ( QResizeEvent *ev ) void KOAgenda::computeSizes() { if ( globalFlagBlockStartup ) return; - + int frameOffset = frameWidth() * 2 +1; if (mAllDayMode) { - mGridSpacingX = (width()-3) / mColumns; + mGridSpacingX = (width()-frameOffset) / mColumns; mGridSpacingY = height() - 2 * frameWidth() - 1; resizeContents( mGridSpacingX * mColumns + 1 , mGridSpacingY + 1); // mGridSpacingY = height(); // resizeContents( mGridSpacingX * mColumns + 1 , mGridSpacingY * mRows + 1 ); @@ -1909,9 +1897,9 @@ void KOAgenda::computeSizes() item->subCell() * subCellWidth); } KOPrefs::instance()->mAllDaySize = mGridSpacingY; } else { - mGridSpacingX = (width() - verticalScrollBar()->width()-3)/mColumns; + mGridSpacingX = (width() - verticalScrollBar()->width()-frameOffset)/mColumns; if (height() > mGridSpacingY * mRows + 1 ) { KOPrefs::instance()->mHourSize = ((height())/mRows)+1; mGridSpacingY = KOPrefs::instance()->mHourSize ; resizeContents( mGridSpacingX * mColumns + 1 , mGridSpacingY * mRows + 1 ); |