2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 08:12:45 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 08:12:45 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 08:12:45 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 08:12:45 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 08:12:45 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 08:12:45 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 11:20:46 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_vcl.hxx"
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
#include <tools/ref.hxx>
|
2007-06-27 19:33:17 +00:00
|
|
|
#include <vcl/window.hxx>
|
|
|
|
#include <vcl/seleng.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
#include <tools/debug.hxx>
|
|
|
|
|
2003-12-01 12:39:23 +00:00
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2002-04-04 08:22:32 +00:00
|
|
|
|
|
|
|
inline BOOL SelectionEngine::ShouldDeselect( BOOL bModifierKey1 ) const
|
|
|
|
{
|
|
|
|
// return !( eSelMode == MULTIPLE_SELECTION && bModifierKey1 );
|
|
|
|
return eSelMode != MULTIPLE_SELECTION || !bModifierKey1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
// TODO: FunctionSet::SelectAtPoint raus
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::SelectionEngine()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 10.10.94
|
|
|
|
|* Letzte Aenderung OV 10.10.94
|
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
SelectionEngine::SelectionEngine( Window* pWindow, FunctionSet* pFuncSet ) :
|
|
|
|
pWin( pWindow )
|
|
|
|
{
|
|
|
|
eSelMode = SINGLE_SELECTION;
|
|
|
|
pFunctionSet = pFuncSet;
|
|
|
|
nFlags = SELENG_EXPANDONMOVE;
|
|
|
|
nLockedMods = 0;
|
|
|
|
|
|
|
|
aWTimer.SetTimeoutHdl( LINK( this, SelectionEngine, ImpWatchDog ) );
|
|
|
|
aWTimer.SetTimeout( SELENG_AUTOREPEAT_INTERVAL );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::~SelectionEngine()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 10.10.94
|
|
|
|
|* Letzte Aenderung OV 10.10.94
|
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
SelectionEngine::~SelectionEngine()
|
|
|
|
{
|
|
|
|
aWTimer.Stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::ImpWatchDog()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 10.10.94
|
|
|
|
|* Letzte Aenderung OV 10.10.94
|
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
IMPL_LINK( SelectionEngine, ImpWatchDog, Timer*, EMPTYARG )
|
|
|
|
{
|
|
|
|
if ( !aArea.IsInside( aLastMove.GetPosPixel() ) )
|
|
|
|
SelMouseMove( aLastMove );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::SetSelectionMode()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 10.10.94
|
|
|
|
|* Letzte Aenderung OV 10.10.94
|
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
void SelectionEngine::SetSelectionMode( SelectionMode eMode )
|
|
|
|
{
|
|
|
|
eSelMode = eMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::ActivateDragMode()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 10.10.94
|
|
|
|
|* Letzte Aenderung OV 10.10.94
|
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
void SelectionEngine::ActivateDragMode()
|
|
|
|
{
|
|
|
|
DBG_ERRORFILE( "SelectionEngine::ActivateDragMode not implemented" );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::CursorPosChanging()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 10.10.94
|
2002-04-04 08:22:32 +00:00
|
|
|
|* Letzte Aenderung GT 2002-04-04
|
2000-09-18 16:07:07 +00:00
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
2002-04-04 08:22:32 +00:00
|
|
|
void SelectionEngine::CursorPosChanging( BOOL bShift, BOOL bMod1 )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( !pFunctionSet )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ( bShift && eSelMode != SINGLE_SELECTION )
|
|
|
|
{
|
|
|
|
if ( IsAddMode() )
|
|
|
|
{
|
|
|
|
if ( !(nFlags & SELENG_HAS_ANCH) )
|
|
|
|
{
|
|
|
|
pFunctionSet->CreateAnchor();
|
|
|
|
nFlags |= SELENG_HAS_ANCH;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( !(nFlags & SELENG_HAS_ANCH) )
|
|
|
|
{
|
2002-04-04 08:22:32 +00:00
|
|
|
if( ShouldDeselect( bMod1 ) )
|
|
|
|
pFunctionSet->DeselectAll();
|
2000-09-18 16:07:07 +00:00
|
|
|
pFunctionSet->CreateAnchor();
|
|
|
|
nFlags |= SELENG_HAS_ANCH;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( IsAddMode() )
|
|
|
|
{
|
|
|
|
if ( nFlags & SELENG_HAS_ANCH )
|
|
|
|
{
|
|
|
|
// pFunctionSet->CreateCursor();
|
|
|
|
pFunctionSet->DestroyAnchor();
|
|
|
|
nFlags &= (~SELENG_HAS_ANCH);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-04-04 08:22:32 +00:00
|
|
|
if( ShouldDeselect( bMod1 ) )
|
|
|
|
pFunctionSet->DeselectAll();
|
|
|
|
else
|
|
|
|
pFunctionSet->DestroyAnchor();
|
2000-09-18 16:07:07 +00:00
|
|
|
nFlags &= (~SELENG_HAS_ANCH);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::SelMouseButtonDown()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 10.10.94
|
|
|
|
|* Letzte Aenderung OV 07.06.95
|
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
BOOL SelectionEngine::SelMouseButtonDown( const MouseEvent& rMEvt )
|
|
|
|
{
|
|
|
|
nFlags &= (~SELENG_CMDEVT);
|
2009-11-25 16:49:20 +00:00
|
|
|
if ( !pFunctionSet || !pWin )
|
|
|
|
return FALSE;
|
|
|
|
const bool bRightClickCursorPositioning =
|
|
|
|
rMEvt.IsRight() && rMEvt.GetClicks() == 1 && !IsInSelection();
|
|
|
|
if ( (rMEvt.GetClicks() > 1 || rMEvt.IsRight()) && !bRightClickCursorPositioning )
|
2000-09-18 16:07:07 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
USHORT nModifier = rMEvt.GetModifier() | nLockedMods;
|
|
|
|
if ( nModifier & KEY_MOD2 )
|
|
|
|
return FALSE;
|
|
|
|
// in SingleSelection: Control-Taste filtern (damit auch
|
|
|
|
// mit Ctrl-Click ein D&D gestartet werden kann)
|
|
|
|
if ( nModifier == KEY_MOD1 && eSelMode == SINGLE_SELECTION )
|
|
|
|
nModifier = 0;
|
|
|
|
|
|
|
|
Point aPos = rMEvt.GetPosPixel();
|
|
|
|
aLastMove = rMEvt;
|
|
|
|
|
|
|
|
pWin->CaptureMouse();
|
|
|
|
nFlags |= SELENG_IN_SEL;
|
|
|
|
|
|
|
|
switch ( nModifier )
|
|
|
|
{
|
|
|
|
case 0: // KEY_NO_KEY
|
|
|
|
{
|
|
|
|
BOOL bSelAtPoint = pFunctionSet->IsSelectionAtPoint( aPos );
|
|
|
|
nFlags &= (~SELENG_IN_ADD);
|
|
|
|
if ( (nFlags & SELENG_DRG_ENAB) && bSelAtPoint )
|
|
|
|
{
|
|
|
|
nFlags |= SELENG_WAIT_UPEVT;
|
|
|
|
nFlags &= ~(SELENG_IN_SEL);
|
|
|
|
pWin->ReleaseMouse();
|
|
|
|
return TRUE; //auf STARTDRAG-Command-Event warten
|
|
|
|
}
|
|
|
|
if ( eSelMode != SINGLE_SELECTION )
|
|
|
|
{
|
|
|
|
if( !IsAddMode() )
|
|
|
|
pFunctionSet->DeselectAll();
|
|
|
|
else
|
|
|
|
pFunctionSet->DestroyAnchor();
|
|
|
|
nFlags &= (~SELENG_HAS_ANCH); // bHasAnchor = FALSE;
|
|
|
|
}
|
|
|
|
pFunctionSet->SetCursorAtPoint( aPos );
|
|
|
|
// Sonderbehandlung Single-Selection, damit Select+Drag
|
|
|
|
// in einem Zug moeglich ist
|
|
|
|
if (eSelMode == SINGLE_SELECTION && (nFlags & SELENG_DRG_ENAB))
|
|
|
|
nFlags |= SELENG_WAIT_UPEVT;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
case KEY_SHIFT:
|
|
|
|
if ( eSelMode == SINGLE_SELECTION )
|
|
|
|
{
|
|
|
|
pWin->ReleaseMouse();
|
|
|
|
nFlags &= (~SELENG_IN_SEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if ( nFlags & SELENG_ADD_ALW )
|
|
|
|
nFlags |= SELENG_IN_ADD;
|
|
|
|
else
|
|
|
|
nFlags &= (~SELENG_IN_ADD);
|
|
|
|
|
|
|
|
if( !(nFlags & SELENG_HAS_ANCH) )
|
|
|
|
{
|
|
|
|
if ( !(nFlags & SELENG_IN_ADD) )
|
|
|
|
pFunctionSet->DeselectAll();
|
|
|
|
pFunctionSet->CreateAnchor();
|
|
|
|
nFlags |= SELENG_HAS_ANCH;
|
|
|
|
}
|
|
|
|
pFunctionSet->SetCursorAtPoint( aPos );
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case KEY_MOD1:
|
|
|
|
// Control nur bei Mehrfachselektion erlaubt
|
|
|
|
if ( eSelMode != MULTIPLE_SELECTION )
|
|
|
|
{
|
|
|
|
nFlags &= (~SELENG_IN_SEL);
|
|
|
|
pWin->ReleaseMouse();
|
|
|
|
return TRUE; // Mausclick verschlucken
|
|
|
|
}
|
|
|
|
if ( nFlags & SELENG_HAS_ANCH )
|
|
|
|
{
|
|
|
|
// pFunctionSet->CreateCursor();
|
|
|
|
pFunctionSet->DestroyAnchor();
|
|
|
|
nFlags &= (~SELENG_HAS_ANCH);
|
|
|
|
}
|
|
|
|
if ( pFunctionSet->IsSelectionAtPoint( aPos ) )
|
|
|
|
{
|
|
|
|
pFunctionSet->DeselectAtPoint( aPos );
|
|
|
|
pFunctionSet->SetCursorAtPoint( aPos, TRUE );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pFunctionSet->SetCursorAtPoint( aPos );
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case KEY_SHIFT + KEY_MOD1:
|
|
|
|
if ( eSelMode != MULTIPLE_SELECTION )
|
|
|
|
{
|
|
|
|
pWin->ReleaseMouse();
|
|
|
|
nFlags &= (~SELENG_IN_SEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
nFlags |= SELENG_IN_ADD; //bIsInAddMode = TRUE;
|
|
|
|
if ( !(nFlags & SELENG_HAS_ANCH) )
|
|
|
|
{
|
|
|
|
pFunctionSet->CreateAnchor();
|
|
|
|
nFlags |= SELENG_HAS_ANCH;
|
|
|
|
}
|
|
|
|
pFunctionSet->SetCursorAtPoint( aPos );
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::SelMouseButtonUp()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 10.10.94
|
|
|
|
|* Letzte Aenderung OV 10.10.94
|
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
BOOL SelectionEngine::SelMouseButtonUp( const MouseEvent& /* rMEvt */ )
|
|
|
|
{
|
|
|
|
aWTimer.Stop();
|
|
|
|
//DbgOut("Up");
|
|
|
|
if( !pFunctionSet || !pWin )
|
|
|
|
{
|
|
|
|
nFlags &= ~(SELENG_CMDEVT | SELENG_WAIT_UPEVT | SELENG_IN_SEL);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
pWin->ReleaseMouse();
|
|
|
|
|
|
|
|
if( (nFlags & SELENG_WAIT_UPEVT) && !(nFlags & SELENG_CMDEVT) &&
|
|
|
|
eSelMode != SINGLE_SELECTION)
|
|
|
|
{
|
|
|
|
// MouseButtonDown in Sel aber kein CommandEvent eingetrudelt
|
|
|
|
// ==> deselektieren
|
|
|
|
USHORT nModifier = aLastMove.GetModifier() | nLockedMods;
|
|
|
|
if( nModifier == KEY_MOD1 || IsAlwaysAdding() )
|
|
|
|
{
|
|
|
|
if( !(nModifier & KEY_SHIFT) )
|
|
|
|
{
|
|
|
|
pFunctionSet->DestroyAnchor();
|
|
|
|
nFlags &= (~SELENG_HAS_ANCH); // nix Anker
|
|
|
|
}
|
|
|
|
pFunctionSet->DeselectAtPoint( aLastMove.GetPosPixel() );
|
|
|
|
nFlags &= (~SELENG_HAS_ANCH); // nix Anker
|
|
|
|
pFunctionSet->SetCursorAtPoint( aLastMove.GetPosPixel(), TRUE );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pFunctionSet->DeselectAll();
|
|
|
|
nFlags &= (~SELENG_HAS_ANCH); // nix Anker
|
|
|
|
pFunctionSet->SetCursorAtPoint( aLastMove.GetPosPixel() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nFlags &= ~(SELENG_CMDEVT | SELENG_WAIT_UPEVT | SELENG_IN_SEL);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::SelMouseMove()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 10.10.94
|
|
|
|
|* Letzte Aenderung OV 10.10.94
|
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
BOOL SelectionEngine::SelMouseMove( const MouseEvent& rMEvt )
|
|
|
|
{
|
|
|
|
|
|
|
|
if ( !pFunctionSet || !(nFlags & SELENG_IN_SEL) ||
|
|
|
|
(nFlags & (SELENG_CMDEVT | SELENG_WAIT_UPEVT)) )
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if( !(nFlags & SELENG_EXPANDONMOVE) )
|
|
|
|
return FALSE; // auf DragEvent warten!
|
|
|
|
|
|
|
|
aLastMove = rMEvt;
|
|
|
|
// wenn die Maus ausserhalb der Area steht, dann wird die
|
|
|
|
// Frequenz des SetCursorAtPoint() nur durch den Timer bestimmt
|
|
|
|
if( aWTimer.IsActive() && !aArea.IsInside( rMEvt.GetPosPixel() ))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
|
|
aWTimer.Start();
|
|
|
|
if ( eSelMode != SINGLE_SELECTION )
|
|
|
|
{
|
|
|
|
if ( !(nFlags & SELENG_HAS_ANCH) )
|
|
|
|
{
|
|
|
|
pFunctionSet->CreateAnchor();
|
|
|
|
//DbgOut("Move:Creating anchor");
|
|
|
|
nFlags |= SELENG_HAS_ANCH;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//DbgOut("Move:SetCursor");
|
|
|
|
pFunctionSet->SetCursorAtPoint( rMEvt.GetPosPixel() );
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::SetWindow()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 10.10.94
|
|
|
|
|* Letzte Aenderung OV 10.10.94
|
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
void SelectionEngine::SetWindow( Window* pNewWin )
|
|
|
|
{
|
|
|
|
if( pNewWin != pWin )
|
|
|
|
{
|
|
|
|
if ( pWin && (nFlags & SELENG_IN_SEL) )
|
|
|
|
pWin->ReleaseMouse();
|
|
|
|
pWin = pNewWin;
|
|
|
|
if ( pWin && ( nFlags & SELENG_IN_SEL ) )
|
|
|
|
pWin->CaptureMouse();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::Reset()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 07.07.95
|
|
|
|
|* Letzte Aenderung OV 07.07.95
|
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
void SelectionEngine::Reset()
|
|
|
|
{
|
|
|
|
aWTimer.Stop();
|
|
|
|
if ( nFlags & SELENG_IN_SEL )
|
|
|
|
pWin->ReleaseMouse();
|
|
|
|
nFlags &= ~(SELENG_HAS_ANCH | SELENG_IN_SEL);
|
|
|
|
nLockedMods = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* SelectionEngine::Command()
|
|
|
|
|*
|
|
|
|
|* Beschreibung SELENG.SDW
|
|
|
|
|* Ersterstellung OV 07.07.95
|
|
|
|
|* Letzte Aenderung OV 07.07.95
|
|
|
|
|*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
void SelectionEngine::Command( const CommandEvent& rCEvt )
|
|
|
|
{
|
|
|
|
// Timer aWTimer ist beim Aufspannen einer Selektion aktiv
|
|
|
|
if ( !pFunctionSet || !pWin || aWTimer.IsActive() )
|
|
|
|
return;
|
|
|
|
aWTimer.Stop();
|
|
|
|
nFlags |= SELENG_CMDEVT;
|
|
|
|
if ( rCEvt.GetCommand() == COMMAND_STARTDRAG )
|
|
|
|
{
|
|
|
|
if ( nFlags & SELENG_DRG_ENAB )
|
|
|
|
{
|
|
|
|
DBG_ASSERT( rCEvt.IsMouseEvent(), "STARTDRAG: Not a MouseEvent" );
|
|
|
|
if ( pFunctionSet->IsSelectionAtPoint( rCEvt.GetMousePosPixel() ) )
|
|
|
|
{
|
|
|
|
aLastMove = MouseEvent( rCEvt.GetMousePosPixel(),
|
|
|
|
aLastMove.GetClicks(), aLastMove.GetMode(),
|
|
|
|
aLastMove.GetButtons(), aLastMove.GetModifier() );
|
|
|
|
pFunctionSet->BeginDrag();
|
|
|
|
nFlags &= ~(SELENG_CMDEVT|SELENG_WAIT_UPEVT|SELENG_IN_SEL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
nFlags &= ~SELENG_CMDEVT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
nFlags &= ~SELENG_CMDEVT;
|
|
|
|
}
|
|
|
|
}
|