summaryrefslogtreecommitdiffabout
path: root/korganizer/koagenda.cpp
authorzautrix <zautrix>2005-04-17 12:17:07 (UTC)
committer zautrix <zautrix>2005-04-17 12:17:07 (UTC)
commit2d81c75c4ffb8f144ae58e90e68496500d07a19e (patch) (side-by-side diff)
tree1b27958fdc2948c1235579029188b1de78d7b820 /korganizer/koagenda.cpp
parentf64384edcc1e3b3f7511480866b0900aa1ebdda6 (diff)
downloadkdepimpi-2d81c75c4ffb8f144ae58e90e68496500d07a19e.zip
kdepimpi-2d81c75c4ffb8f144ae58e90e68496500d07a19e.tar.gz
kdepimpi-2d81c75c4ffb8f144ae58e90e68496500d07a19e.tar.bz2
fixx
Diffstat (limited to 'korganizer/koagenda.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/koagenda.cpp264
1 files changed, 35 insertions, 229 deletions
diff --git a/korganizer/koagenda.cpp b/korganizer/koagenda.cpp
index 114ed75..355f4bb 100644
--- a/korganizer/koagenda.cpp
+++ b/korganizer/koagenda.cpp
@@ -474,15 +474,8 @@ bool KOAgenda::eventFilter_mouse(QObject *object, QMouseEvent *me)
} else if (me->button() == LeftButton) {
mActionItem = (KOAgendaItem *)object;
if (mActionItem) {
- if ( mSelectionHeight > 0 ) {
- int selectionCellX = mSelectionCellX * mGridSpacingX;
- int selectionYTop = mSelectionYTop;
- int gridSpacingX = mGridSpacingX;
- int selectionHeight = mSelectionHeight;
- clearSelection();
- repaintContents( selectionCellX, selectionYTop,
- gridSpacingX, selectionHeight,false );
- }
+ emit signalClearSelection();
+ slotClearSelection();
selectItem(mActionItem);
Incidence *incidence = mActionItem->incidence();
if ( incidence->isReadOnly() /*|| incidence->recurrence()->doesRecur() */) {
@@ -610,181 +603,7 @@ bool KOAgenda::eventFilter_mouse(QObject *object, QMouseEvent *me)
break;
}
return true;
-#if 0
- //qDebug("KOAgenda::eventFilter_mous ");
- QPoint viewportPos;
- if (object != viewport()) {
- viewportPos = ((QWidget *)object)->mapToParent(me->pos());
- } else {
- viewportPos = me->pos();
- }
- static int startX = 0;
- static int startY = 0;
- static int blockmoveDist = ( QApplication::desktop()->width() < 480 ? 15 : 20 );
- static bool blockMoving = true;
- static bool leftMouseDown = false;
- bool rightButtonPressed = false;
- switch (me->type()) {
- case QEvent::MouseButtonPress:
- if (me->button() == LeftButton) {
- leftMouseDown = true;
- }
- else if (me->button() == RightButton) {
- leftMouseDown = false;
- }
- blockMoving = true;
- startX = viewportPos.x();
- startY = viewportPos.y();
- if (object != viewport()) { // item clicked **************
- if (me->button() == RightButton) {
- leftMouseDown = false;
- mClickedItem = (KOAgendaItem *)object;
- if (mActionItem ) {
- endItemAction();
- }
- if (mClickedItem) {
- selectItem(mClickedItem);
- emit showIncidencePopupSignal(mClickedItem->incidence());
- }
- return true;
- } else if (me->button() == LeftButton) {
- mActionItem = (KOAgendaItem *)object;
- if (mActionItem) {
- if ( mSelectionHeight > 0 ) {
- int selectionCellX = mSelectionCellX * mGridSpacingX;
- int selectionYTop = mSelectionYTop;
- int gridSpacingX = mGridSpacingX;
- int selectionHeight = mSelectionHeight;
- clearSelection();
- repaintContents( selectionCellX, selectionYTop,
- gridSpacingX, selectionHeight,false );
- }
- selectItem(mActionItem);
- Incidence *incidence = mActionItem->incidence();
- if ( incidence->isReadOnly() /*|| incidence->recurrence()->doesRecur() */) {
- mActionItem = 0;
- } else {
- startItemAction(viewportPos);
- }
- }
- }
- } else { // ---------- viewport()
- selectItem(0);
- mActionItem = 0;
- if (me->button() == LeftButton ) {
- setCursor(arrowCursor);
- startSelectAction(viewportPos);
- } else if (me->button() == RightButton ) {
- setCursor(arrowCursor);
- if ( leftMouseDown ) { // we have a simulated right click - clear left mouse action
- endSelectAction( false ); // do not emit new event signal
- leftMouseDown = false; // no more leftMouse computation
- }
- int x,y;
- viewportToContents(viewportPos.x(),viewportPos.y(),x,y);
- int gx,gy;
- contentsToGrid(x,y,gx,gy);
- mCurrentCellX = gx;
- mCurrentCellY = gy;
- mStartCellX = gx;
- mStartCellY = gy;
- mNewItemPopup->popup( viewport()->mapToGlobal( me->pos() ) );
- }
- }
- break;
-
- case QEvent::MouseButtonRelease:
-
- if (object != viewport()) {
- if (me->button() == LeftButton && leftMouseDown) {
- if (mActionItem) {
- QPoint clipperPos = clipper()->mapFromGlobal(viewport()->mapToGlobal(viewportPos));
- //qDebug(" %d %d %d ",clipperPos.y(),visibleHeight() , 9 );
- if ( mActionType == MOVE && (clipperPos.y() > visibleHeight()-2 ||clipperPos.y() < 0 ) ) {
- mScrollUpTimer.stop();
- mScrollDownTimer.stop();
- mActionItem->resetMove();
- placeSubCells( mActionItem );
- // emit startDragSignal( mActionItem->incidence() );
- setCursor( arrowCursor );
- mActionItem = 0;
- mActionType = NOP;
- mItemMoved = 0;
- leftMouseDown = false;
- return true;
- }
- endItemAction();
- }
- }
-
- } else { // ---------- viewport()
- if (me->button() == LeftButton && leftMouseDown ) { //left click
- endSelectAction( true ); // emit new event signal
- }
- }
- if (me->button() == LeftButton)
- leftMouseDown = false;
-
- break;
- case QEvent::MouseMove:
- if ( !leftMouseDown )
- return true;
- if ( blockMoving ) {
- int dX, dY;
- dX = startX - viewportPos.x();
- if ( dX < 0 )
- dX = -dX;
- dY = viewportPos.y() - startY;
- if ( dY < 0 )
- dY = -dY;
- //qDebug("%d %d %d ", dX, dY , blockmoveDist );
- if ( dX > blockmoveDist || dY > blockmoveDist ) {
- blockMoving = false;
- }
- }
- if (object != viewport()) {
- KOAgendaItem *moveItem = (KOAgendaItem *)object;
- if (!moveItem->incidence()->isReadOnly() ) {
- if (!mActionItem)
- setNoActionCursor(moveItem,viewportPos);
- else {
- if ( !blockMoving )
- performItemAction(viewportPos);
- }
- }
- } else { // ---------- viewport()
- if ( mActionType == SELECT ) {
- performSelectAction( viewportPos );
- }
- }
- break;
-
- case QEvent::MouseButtonDblClick:
- blockMoving = false;
- leftMouseDown = false;
- if (object == viewport()) {
- selectItem(0);
- int x,y;
- viewportToContents(viewportPos.x(),viewportPos.y(),x,y);
- int gx,gy;
- contentsToGrid(x,y,gx,gy);
- emit newEventSignal(gx,gy);
- } else {
- KOAgendaItem *doubleClickedItem = (KOAgendaItem *)object;
- selectItem(doubleClickedItem);
- if ( KOPrefs::instance()->mEditOnDoubleClick )
- emit editIncidenceSignal(doubleClickedItem->incidence());
- else
- emit showIncidenceSignal(doubleClickedItem->incidence());
- }
- break;
-
- default:
- break;
- }
- return true;
-#endif
}
void KOAgenda::newItem( int item )
@@ -803,39 +622,44 @@ void KOAgenda::newItem( int item )
// 6Journal view
}
}
+void KOAgenda::slotClearSelection()
+{
+ if (mSelectionHeight) {
+ int selectionX = mSelectionCellX * mGridSpacingX;
+ int top = mSelectionYTop - 2 *mGridSpacingY;
+ int hei = mSelectionHeight + 4 *mGridSpacingY;
+ clearSelection();
+ repaintContents( selectionX, top,
+ mGridSpacingX, hei ,false );
+ }
+
+}
void KOAgenda::startSelectAction(QPoint viewportPos)
{
- //emit newStartSelectSignal();
+
+ emit signalClearSelection();
+ slotClearSelection();
- mActionType = SELECT;
+ mActionType = SELECT;
- int x,y;
- viewportToContents(viewportPos.x(),viewportPos.y(),x,y);
- int gx,gy;
- contentsToGrid(x,y,gx,gy);
+ int x,y;
+ viewportToContents(viewportPos.x(),viewportPos.y(),x,y);
+ int gx,gy;
+ contentsToGrid(x,y,gx,gy);
- mStartCellX = gx;
- mStartCellY = gy;
- mCurrentCellX = gx;
- mCurrentCellY = gy;
-
- // Store coordinates of old selection
- int selectionX = mSelectionCellX * mGridSpacingX;
- int selectionYTop = mSelectionYTop;
- int selectionHeight = mSelectionHeight;
+ mStartCellX = gx;
+ mStartCellY = gy;
+ mCurrentCellX = gx;
+ mCurrentCellY = gy;
- // Store new selection
- mSelectionCellX = gx;
- mSelectionYTop = gy * mGridSpacingY;
- mSelectionHeight = mGridSpacingY;
+ // Store new selection
+ mSelectionCellX = gx;
+ mSelectionYTop = gy * mGridSpacingY;
+ mSelectionHeight = mGridSpacingY;
- // Clear old selection
- repaintContents( selectionX, selectionYTop,
- mGridSpacingX, selectionHeight,false );
-
- // Paint new selection
- // repaintContents( mSelectionCellX * mGridSpacingX, mSelectionYTop,
- // mGridSpacingX, mSelectionHeight );
+ // Paint new selection
+ repaintContents( mSelectionCellX * mGridSpacingX+1, mSelectionYTop,
+ mGridSpacingX-1, mSelectionHeight );
}
void KOAgenda::performSelectAction(QPoint viewportPos)
@@ -862,18 +686,11 @@ void KOAgenda::performSelectAction(QPoint viewportPos)
if ( gy > mCurrentCellY ) {
mSelectionHeight = ( gy + 1 ) * mGridSpacingY - mSelectionYTop;
-#if 0
- // FIXME: Repaint only the newly selected region
- repaintContents( mSelectionCellX * mGridSpacingX,
- mCurrentCellY + mGridSpacingY,
- mGridSpacingX,
- mSelectionHeight - ( gy - mCurrentCellY - 1 ) * mGridSpacingY );
-#else
+
repaintContents( (KOGlobals::self()->reverseLayout() ?
mColumns - 1 - mSelectionCellX : mSelectionCellX) *
mGridSpacingX, mSelectionYTop,
mGridSpacingX, mSelectionHeight , false);
-#endif
mCurrentCellY = gy;
} else if ( gy < mCurrentCellY ) {
@@ -900,7 +717,6 @@ void KOAgenda::endSelectAction( bool emitNewEvent )
emit newTimeSpanSignal(mStartCellX,mStartCellY,mCurrentCellX,mCurrentCellY);
if ( emitNewEvent && mStartCellY < mCurrentCellY ) {
- qDebug("ew event signal ");
emit newEventSignal(mStartCellX,mStartCellY,mCurrentCellX,mCurrentCellY);
}
}
@@ -1100,17 +916,7 @@ void KOAgenda::endItemAction()
emit itemModified( modifiedItem, mActionType );
}
else {
-#if 0
- for ( item=oldconflictItems.first(); item != 0;
- item=oldconflictItems.next() ) {
- placeSubCells(item);
- }
- while ( placeItem ) {
- //qDebug("placeItem %s ", placeItem->incidence()->summary().latin1());
- placeSubCells( placeItem );
- placeItem = placeItem->nextMultiItem();
- }
-#endif
+
globalFlagBlockAgendaItemPaint = 1;
for ( item=oldconflictItems.first(); item != 0;