-rw-r--r-- | korganizer/koagenda.cpp | 42 |
1 files changed, 24 insertions, 18 deletions
diff --git a/korganizer/koagenda.cpp b/korganizer/koagenda.cpp index 88f5d99..796d633 100644 --- a/korganizer/koagenda.cpp +++ b/korganizer/koagenda.cpp | |||
@@ -957,10 +957,10 @@ void KOAgenda::performItemAction(QPoint viewportPos) | |||
957 | moveItem->moveRelative(gx - mCurrentCellX,dy); | 957 | moveItem->moveRelative(gx - mCurrentCellX,dy); |
958 | int x,y; | 958 | int x,y; |
959 | gridToContents(moveItem->cellX(),moveItem->cellYTop(),x,y); | 959 | gridToContents(moveItem->cellX(),moveItem->cellYTop(),x,y); |
960 | moveItem->resize(mGridSpacingX * moveItem->cellWidth(), | 960 | int diff = moveItem->resizeMe(mGridSpacingX, mGridSpacingX* moveItem->cellWidth(), |
961 | mGridSpacingY * moveItem->cellHeight()); | 961 | mGridSpacingY * moveItem->cellHeight()); |
962 | moveItem->raise(); | 962 | moveItem->raise(); |
963 | moveChild(moveItem,x,y); | 963 | moveChild(moveItem,x+diff,y); |
964 | moveItem = moveItem->nextMultiItem(); | 964 | moveItem = moveItem->nextMultiItem(); |
965 | } | 965 | } |
966 | } else if (mActionType == RESIZETOP) { | 966 | } else if (mActionType == RESIZETOP) { |
@@ -982,16 +982,17 @@ void KOAgenda::performItemAction(QPoint viewportPos) | |||
982 | } else if (mActionType == RESIZELEFT) { | 982 | } else if (mActionType == RESIZELEFT) { |
983 | if (mCurrentCellX <= mActionItem->cellXWidth()) { | 983 | if (mCurrentCellX <= mActionItem->cellXWidth()) { |
984 | mActionItem->expandLeft(gx - mCurrentCellX); | 984 | mActionItem->expandLeft(gx - mCurrentCellX); |
985 | mActionItem->resize(mGridSpacingX * mActionItem->cellWidth(), | 985 | int diff = mActionItem->resizeMe(mGridSpacingX , |
986 | mActionItem->height()); | 986 | mGridSpacingX * mActionItem->cellWidth(), |
987 | mActionItem->height()); | ||
987 | int x,y; | 988 | int x,y; |
988 | gridToContents(mActionItem->cellX(),mActionItem->cellYTop(),x,y); | 989 | gridToContents(mActionItem->cellX(),mActionItem->cellYTop(),x,y); |
989 | moveChild(mActionItem,x,childY(mActionItem)); | 990 | moveChild(mActionItem,x+diff,childY(mActionItem)); |
990 | } | 991 | } |
991 | } else if (mActionType == RESIZERIGHT) { | 992 | } else if (mActionType == RESIZERIGHT) { |
992 | if (mCurrentCellX >= mActionItem->cellX()) { | 993 | if (mCurrentCellX >= mActionItem->cellX()) { |
993 | mActionItem->expandRight(gx - mCurrentCellX); | 994 | mActionItem->expandRight(gx - mCurrentCellX); |
994 | mActionItem->resize(mGridSpacingX * mActionItem->cellWidth(), | 995 | mActionItem->resizeMe(mGridSpacingX, mGridSpacingX * mActionItem->cellWidth(), |
995 | mActionItem->height()); | 996 | mActionItem->height()); |
996 | } | 997 | } |
997 | } | 998 | } |
@@ -1217,8 +1218,9 @@ void KOAgenda::placeSubCells(KOAgendaItem *placeItem) | |||
1217 | for ( item=conflictItems.first(); item != 0; | 1218 | for ( item=conflictItems.first(); item != 0; |
1218 | item=conflictItems.next() ) { | 1219 | item=conflictItems.next() ) { |
1219 | item->setSubCells(maxSubCells); | 1220 | item->setSubCells(maxSubCells); |
1221 | int diff = 0; | ||
1220 | if (mAllDayMode) { | 1222 | if (mAllDayMode) { |
1221 | item->resize(item->cellWidth() * mGridSpacingX, newSubCellWidth); | 1223 | diff = item->resizeMe( mGridSpacingX, item->cellWidth() * mGridSpacingX, newSubCellWidth); |
1222 | } else { | 1224 | } else { |
1223 | item->resize(newSubCellWidth, item->cellHeight() * mGridSpacingY); | 1225 | item->resize(newSubCellWidth, item->cellHeight() * mGridSpacingY); |
1224 | } | 1226 | } |
@@ -1229,7 +1231,7 @@ void KOAgenda::placeSubCells(KOAgendaItem *placeItem) | |||
1229 | } else { | 1231 | } else { |
1230 | x += item->subCell() * newSubCellWidth; | 1232 | x += item->subCell() * newSubCellWidth; |
1231 | } | 1233 | } |
1232 | moveChild(item,x,y); | 1234 | moveChild(item,x+diff,y); |
1233 | // qDebug("moveChild %s %d %d ", item->incidence()->summary().latin1() ,x,y); | 1235 | // qDebug("moveChild %s %d %d ", item->incidence()->summary().latin1() ,x,y); |
1234 | //item->updateItem(); | 1236 | //item->updateItem(); |
1235 | } | 1237 | } |
@@ -1243,8 +1245,9 @@ void KOAgenda::placeSubCells(KOAgendaItem *placeItem) | |||
1243 | item2=conflictItems2.next() ) { | 1245 | item2=conflictItems2.next() ) { |
1244 | if ( item2->subCells() != maxSubCells) { | 1246 | if ( item2->subCells() != maxSubCells) { |
1245 | item2->setSubCells(maxSubCells); | 1247 | item2->setSubCells(maxSubCells); |
1248 | int diff = 0; | ||
1246 | if (mAllDayMode) { | 1249 | if (mAllDayMode) { |
1247 | item2->resize(item2->cellWidth() * mGridSpacingX, newSubCellWidth); | 1250 | diff = item2->resizeMe(mGridSpacingX, item2->cellWidth() * mGridSpacingX, newSubCellWidth); |
1248 | } else { | 1251 | } else { |
1249 | item2->resize(newSubCellWidth, item2->cellHeight() * mGridSpacingY); | 1252 | item2->resize(newSubCellWidth, item2->cellHeight() * mGridSpacingY); |
1250 | } | 1253 | } |
@@ -1255,7 +1258,7 @@ void KOAgenda::placeSubCells(KOAgendaItem *placeItem) | |||
1255 | } else { | 1258 | } else { |
1256 | x += item2->subCell() * newSubCellWidth; | 1259 | x += item2->subCell() * newSubCellWidth; |
1257 | } | 1260 | } |
1258 | moveChild(item2,x,y); | 1261 | moveChild(item2,x+diff,y); |
1259 | //qDebug("setttttt %d %s",maxSubCells, item2->text().latin1() ); | 1262 | //qDebug("setttttt %d %s",maxSubCells, item2->text().latin1() ); |
1260 | } | 1263 | } |
1261 | } | 1264 | } |
@@ -1264,11 +1267,12 @@ void KOAgenda::placeSubCells(KOAgendaItem *placeItem) | |||
1264 | } else { | 1267 | } else { |
1265 | placeItem->setSubCell(0); | 1268 | placeItem->setSubCell(0); |
1266 | placeItem->setSubCells(1); | 1269 | placeItem->setSubCells(1); |
1267 | if (mAllDayMode) placeItem->resize(placeItem->width(),mGridSpacingY); | 1270 | int diff = 0; |
1271 | if (mAllDayMode) diff = placeItem->resizeMe( mGridSpacingX, placeItem->width(),mGridSpacingY); | ||
1268 | else placeItem->resize(mGridSpacingX,placeItem->height()); | 1272 | else placeItem->resize(mGridSpacingX,placeItem->height()); |
1269 | int x,y; | 1273 | int x,y; |
1270 | gridToContents(placeItem->cellX(),placeItem->cellYTop(),x,y); | 1274 | gridToContents(placeItem->cellX(),placeItem->cellYTop(),x,y); |
1271 | moveChild(placeItem,x,y); | 1275 | moveChild(placeItem,x+diff,y); |
1272 | } | 1276 | } |
1273 | placeItem->setConflictItems(conflictItems); | 1277 | placeItem->setConflictItems(conflictItems); |
1274 | // for ( item=conflictItems.first(); item != 0; | 1278 | // for ( item=conflictItems.first(); item != 0; |
@@ -1395,11 +1399,12 @@ void KOAgenda::finishUpdate() | |||
1395 | if ( !item->checkLayout() ) { | 1399 | if ( !item->checkLayout() ) { |
1396 | //qDebug(" conflictitem found "); | 1400 | //qDebug(" conflictitem found "); |
1397 | int newSubCellWidth; | 1401 | int newSubCellWidth; |
1402 | int diff = 0; | ||
1398 | if (mAllDayMode) newSubCellWidth = mGridSpacingY / item->subCells(); | 1403 | if (mAllDayMode) newSubCellWidth = mGridSpacingY / item->subCells(); |
1399 | else newSubCellWidth = mGridSpacingX / item->subCells(); | 1404 | else newSubCellWidth = mGridSpacingX / item->subCells(); |
1400 | 1405 | ||
1401 | if (mAllDayMode) { | 1406 | if (mAllDayMode) { |
1402 | item->resize(item->cellWidth() * mGridSpacingX, newSubCellWidth); | 1407 | diff = item->resizeMe(mGridSpacingX, item->cellWidth() * mGridSpacingX, newSubCellWidth); |
1403 | } else { | 1408 | } else { |
1404 | item->resize(newSubCellWidth, item->cellHeight() * mGridSpacingY); | 1409 | item->resize(newSubCellWidth, item->cellHeight() * mGridSpacingY); |
1405 | } | 1410 | } |
@@ -1410,7 +1415,7 @@ void KOAgenda::finishUpdate() | |||
1410 | } else { | 1415 | } else { |
1411 | x += item->subCell() * newSubCellWidth; | 1416 | x += item->subCell() * newSubCellWidth; |
1412 | } | 1417 | } |
1413 | moveChild(item,x,y); | 1418 | moveChild(item,x+diff,y); |
1414 | } | 1419 | } |
1415 | } | 1420 | } |
1416 | for ( item=mItems.first(); item != 0; item=mItems.next() ) { | 1421 | for ( item=mItems.first(); item != 0; item=mItems.next() ) { |
@@ -1836,7 +1841,7 @@ KOAgendaItem *KOAgenda::insertAllDayItem (Incidence *event,QDate qd,int XBegin,i | |||
1836 | 1841 | ||
1837 | agendaItem->setCellXY(XBegin,0,0); | 1842 | agendaItem->setCellXY(XBegin,0,0); |
1838 | agendaItem->setCellXWidth(XEnd); | 1843 | agendaItem->setCellXWidth(XEnd); |
1839 | agendaItem->resize(mGridSpacingX * agendaItem->cellWidth(),mGridSpacingY); | 1844 | agendaItem->resizeMe(mGridSpacingX, mGridSpacingX * agendaItem->cellWidth(),mGridSpacingY); |
1840 | 1845 | ||
1841 | //addChild(agendaItem,XBegin*mGridSpacingX,0); | 1846 | //addChild(agendaItem,XBegin*mGridSpacingX,0); |
1842 | mItems.append(agendaItem); | 1847 | mItems.append(agendaItem); |
@@ -1942,10 +1947,11 @@ void KOAgenda::computeSizes() | |||
1942 | int subCellWidth; | 1947 | int subCellWidth; |
1943 | for ( item=mItems.first(); item != 0; item=mItems.next() ) { | 1948 | for ( item=mItems.first(); item != 0; item=mItems.next() ) { |
1944 | subCellWidth = mGridSpacingY / item->subCells(); | 1949 | subCellWidth = mGridSpacingY / item->subCells(); |
1945 | item->resize(mGridSpacingX * item->cellWidth(),subCellWidth); | 1950 | int diff = 0; |
1946 | moveChild(item,KOGlobals::self()->reverseLayout() ? | 1951 | diff = item->resizeMe(mGridSpacingX ,mGridSpacingX * item->cellWidth(),subCellWidth); |
1952 | moveChild(item,(KOGlobals::self()->reverseLayout() ? | ||
1947 | (mColumns - 1 - item->cellX()) * mGridSpacingX : | 1953 | (mColumns - 1 - item->cellX()) * mGridSpacingX : |
1948 | item->cellX() * mGridSpacingX, | 1954 | item->cellX() * mGridSpacingX) + diff, |
1949 | item->subCell() * subCellWidth); | 1955 | item->subCell() * subCellWidth); |
1950 | } | 1956 | } |
1951 | KOPrefs::instance()->mAllDaySize = mGridSpacingY; | 1957 | KOPrefs::instance()->mAllDaySize = mGridSpacingY; |