Change-Id: Iea29ce5fd6c620535197d3ca8538335078430e19 Reviewed-on: https://gerrit.libreoffice.org/15825 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
647 lines
21 KiB
C++
647 lines
21 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#include <com/sun/star/accessibility/AccessibleRole.hpp>
|
|
|
|
#include <vcl/svapp.hxx>
|
|
#include <vcl/settings.hxx>
|
|
|
|
#include "ipwin.hxx"
|
|
#include <hatchwindow.hxx>
|
|
|
|
/************************************************************************/
|
|
/*************************************************************************
|
|
|* SvResizeHelper::SvResizeHelper()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
SvResizeHelper::SvResizeHelper()
|
|
: aBorder( 5, 5 )
|
|
, nGrab( -1 )
|
|
, bResizeable( true )
|
|
{
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeHelper::FillHandleRects()
|
|
|*
|
|
|* Description: the eight handles to magnify
|
|
*************************************************************************/
|
|
void SvResizeHelper::FillHandleRectsPixel( Rectangle aRects[ 8 ] ) const
|
|
{
|
|
// only because of EMPTY_RECT
|
|
Point aBottomRight = aOuter.BottomRight();
|
|
|
|
// upper left
|
|
aRects[ 0 ] = Rectangle( aOuter.TopLeft(), aBorder );
|
|
// upper middle
|
|
aRects[ 1 ] = Rectangle( Point( aOuter.Center().X() - aBorder.Width() / 2,
|
|
aOuter.Top() ),
|
|
aBorder );
|
|
// upper right
|
|
aRects[ 2 ] = Rectangle( Point( aBottomRight.X() - aBorder.Width() +1,
|
|
aOuter.Top() ),
|
|
aBorder );
|
|
// middle right
|
|
aRects[ 3 ] = Rectangle( Point( aBottomRight.X() - aBorder.Width() +1,
|
|
aOuter.Center().Y() - aBorder.Height() / 2 ),
|
|
aBorder );
|
|
// lower right
|
|
aRects[ 4 ] = Rectangle( Point( aBottomRight.X() - aBorder.Width() +1,
|
|
aBottomRight.Y() - aBorder.Height() +1 ),
|
|
aBorder );
|
|
// lower middle
|
|
aRects[ 5 ] = Rectangle( Point( aOuter.Center().X() - aBorder.Width() / 2,
|
|
aBottomRight.Y() - aBorder.Height() +1),
|
|
aBorder );
|
|
// lower left
|
|
aRects[ 6 ] = Rectangle( Point( aOuter.Left(),
|
|
aBottomRight.Y() - aBorder.Height() +1),
|
|
aBorder );
|
|
// middle left
|
|
aRects[ 7 ] = Rectangle( Point( aOuter.Left(),
|
|
aOuter.Center().Y() - aBorder.Height() / 2 ),
|
|
aBorder );
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeHelper::FillMoveRectsPixel()
|
|
|*
|
|
|* Description: the four edges are calculated
|
|
*************************************************************************/
|
|
void SvResizeHelper::FillMoveRectsPixel( Rectangle aRects[ 4 ] ) const
|
|
{
|
|
// upper
|
|
aRects[ 0 ] = aOuter;
|
|
aRects[ 0 ].Bottom() = aRects[ 0 ].Top() + aBorder.Height() -1;
|
|
// right
|
|
aRects[ 1 ] = aOuter;
|
|
aRects[ 1 ].Left() = aRects[ 1 ].Right() - aBorder.Width() -1;
|
|
// lower
|
|
aRects[ 2 ] = aOuter;
|
|
aRects[ 2 ].Top() = aRects[ 2 ].Bottom() - aBorder.Height() -1;
|
|
// left
|
|
aRects[ 3 ] = aOuter;
|
|
aRects[ 3 ].Right() = aRects[ 3 ].Left() + aBorder.Width() -1;
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeHelper::Draw()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
void SvResizeHelper::Draw(vcl::RenderContext& rRenderContext)
|
|
{
|
|
rRenderContext.Push();
|
|
rRenderContext.SetMapMode( MapMode() );
|
|
Color aColBlack;
|
|
Color aFillColor( COL_LIGHTGRAY );
|
|
|
|
rRenderContext.SetFillColor( aFillColor );
|
|
rRenderContext.SetLineColor();
|
|
|
|
Rectangle aMoveRects[ 4 ];
|
|
FillMoveRectsPixel( aMoveRects );
|
|
sal_uInt16 i;
|
|
for (i = 0; i < 4; i++)
|
|
rRenderContext.DrawRect(aMoveRects[i]);
|
|
if (bResizeable)
|
|
{
|
|
// draw handles
|
|
rRenderContext.SetFillColor(aColBlack);
|
|
Rectangle aRects[ 8 ];
|
|
FillHandleRectsPixel(aRects);
|
|
for (i = 0; i < 8; i++)
|
|
rRenderContext.DrawRect( aRects[ i ] );
|
|
}
|
|
rRenderContext.Pop();
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeHelper::InvalidateBorder()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
void SvResizeHelper::InvalidateBorder( vcl::Window * pWin )
|
|
{
|
|
Rectangle aMoveRects[ 4 ];
|
|
FillMoveRectsPixel( aMoveRects );
|
|
for( sal_uInt16 i = 0; i < 4; i++ )
|
|
pWin->Invalidate( aMoveRects[ i ] );
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeHelper::SelectBegin()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
bool SvResizeHelper::SelectBegin( vcl::Window * pWin, const Point & rPos )
|
|
{
|
|
if( -1 == nGrab )
|
|
{
|
|
nGrab = SelectMove( pWin, rPos );
|
|
if( -1 != nGrab )
|
|
{
|
|
aSelPos = rPos; // store start position
|
|
pWin->CaptureMouse();
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeHelper::SelectMove()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
short SvResizeHelper::SelectMove( vcl::Window * pWin, const Point & rPos )
|
|
{
|
|
if( -1 == nGrab )
|
|
{
|
|
if( bResizeable )
|
|
{
|
|
Rectangle aRects[ 8 ];
|
|
FillHandleRectsPixel( aRects );
|
|
for( sal_uInt16 i = 0; i < 8; i++ )
|
|
if( aRects[ i ].IsInside( rPos ) )
|
|
return i;
|
|
}
|
|
// Move-Rect overlaps Handles
|
|
Rectangle aMoveRects[ 4 ];
|
|
FillMoveRectsPixel( aMoveRects );
|
|
for( sal_uInt16 i = 0; i < 4; i++ )
|
|
if( aMoveRects[ i ].IsInside( rPos ) )
|
|
return 8;
|
|
}
|
|
else
|
|
{
|
|
Rectangle aRect( GetTrackRectPixel( rPos ) );
|
|
aRect.SetSize( pWin->PixelToLogic( aRect.GetSize() ) );
|
|
aRect.SetPos( pWin->PixelToLogic( aRect.TopLeft() ) );
|
|
pWin->ShowTracking( aRect );
|
|
}
|
|
return nGrab;
|
|
}
|
|
|
|
Point SvResizeHelper::GetTrackPosPixel( const Rectangle & rRect ) const
|
|
{
|
|
// not important how the rectangle is returned, it is important
|
|
// which handle has been touched
|
|
Point aPos;
|
|
Rectangle aRect( rRect );
|
|
aRect.Justify();
|
|
// only because of EMPTY_RECT
|
|
Point aBR = aOuter.BottomRight();
|
|
Point aTR = aOuter.TopRight();
|
|
Point aBL = aOuter.BottomLeft();
|
|
bool bRTL = AllSettings::GetLayoutRTL();
|
|
switch( nGrab )
|
|
{
|
|
case 0:
|
|
// FIXME: disable it for RTL because it's wrong calculations
|
|
if( bRTL )
|
|
break;
|
|
aPos = aRect.TopLeft() - aOuter.TopLeft();
|
|
break;
|
|
case 1:
|
|
aPos.Y() = aRect.Top() - aOuter.Top();
|
|
break;
|
|
case 2:
|
|
// FIXME: disable it for RTL because it's wrong calculations
|
|
if( bRTL )
|
|
break;
|
|
aPos = aRect.TopRight() - aTR;
|
|
break;
|
|
case 3:
|
|
if( bRTL )
|
|
aPos.X() = aRect.Left() - aTR.X();
|
|
else
|
|
aPos.X() = aRect.Right() - aTR.X();
|
|
break;
|
|
case 4:
|
|
// FIXME: disable it for RTL because it's wrong calculations
|
|
if( bRTL )
|
|
break;
|
|
aPos = aRect.BottomRight() - aBR;
|
|
break;
|
|
case 5:
|
|
aPos.Y() = aRect.Bottom() - aBR.Y();
|
|
break;
|
|
case 6:
|
|
// FIXME: disable it for RTL because it's wrong calculations
|
|
if( bRTL )
|
|
break;
|
|
aPos = aRect.BottomLeft() - aBL;
|
|
break;
|
|
case 7:
|
|
if( bRTL )
|
|
aPos.X() = aRect.Right() + aOuter.Right() - aOuter.TopRight().X();
|
|
else
|
|
aPos.X() = aRect.Left() - aOuter.Left();
|
|
break;
|
|
case 8:
|
|
aPos = aRect.TopLeft() - aOuter.TopLeft();
|
|
break;
|
|
}
|
|
return aPos += aSelPos;
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeHelper::GetTrackRectPixel()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
Rectangle SvResizeHelper::GetTrackRectPixel( const Point & rTrackPos ) const
|
|
{
|
|
Rectangle aTrackRect;
|
|
if( -1 != nGrab )
|
|
{
|
|
Point aDiff = rTrackPos - aSelPos;
|
|
aTrackRect = aOuter;
|
|
Point aBR = aOuter.BottomRight();
|
|
bool bRTL = AllSettings::GetLayoutRTL();
|
|
switch( nGrab )
|
|
{
|
|
case 0:
|
|
aTrackRect.Top() += aDiff.Y();
|
|
// ugly solution for resizing OLE objects in RTL
|
|
if( bRTL )
|
|
aTrackRect.Right() = aBR.X() - aDiff.X();
|
|
else
|
|
aTrackRect.Left() += aDiff.X();
|
|
break;
|
|
case 1:
|
|
aTrackRect.Top() += aDiff.Y();
|
|
break;
|
|
case 2:
|
|
aTrackRect.Top() += aDiff.Y();
|
|
// ugly solution for resizing OLE objects in RTL
|
|
if( bRTL )
|
|
aTrackRect.Left() -= aDiff.X();
|
|
else
|
|
aTrackRect.Right() = aBR.X() + aDiff.X();
|
|
break;
|
|
case 3:
|
|
// ugly solution for resizing OLE objects in RTL
|
|
if( bRTL )
|
|
aTrackRect.Left() -= aDiff.X();
|
|
else
|
|
aTrackRect.Right() = aBR.X() + aDiff.X();
|
|
break;
|
|
case 4:
|
|
aTrackRect.Bottom() = aBR.Y() + aDiff.Y();
|
|
// ugly solution for resizing OLE objects in RTL
|
|
if( bRTL )
|
|
aTrackRect.Left() -= aDiff.X();
|
|
else
|
|
aTrackRect.Right() = aBR.X() + aDiff.X();
|
|
break;
|
|
case 5:
|
|
aTrackRect.Bottom() = aBR.Y() + aDiff.Y();
|
|
break;
|
|
case 6:
|
|
aTrackRect.Bottom() = aBR.Y() + aDiff.Y();
|
|
// ugly solution for resizing OLE objects in RTL
|
|
if( bRTL )
|
|
aTrackRect.Right() = aBR.X() - aDiff.X();
|
|
else
|
|
aTrackRect.Left() += aDiff.X();
|
|
break;
|
|
case 7:
|
|
// ugly solution for resizing OLE objects in RTL
|
|
if( bRTL )
|
|
aTrackRect.Right() = aBR.X() - aDiff.X();
|
|
else
|
|
aTrackRect.Left() += aDiff.X();
|
|
break;
|
|
case 8:
|
|
if( bRTL )
|
|
aDiff.X() = -aDiff.X(); // workaround for move in RTL mode
|
|
aTrackRect.SetPos( aTrackRect.TopLeft() + aDiff );
|
|
break;
|
|
}
|
|
}
|
|
return aTrackRect;
|
|
}
|
|
|
|
void SvResizeHelper::ValidateRect( Rectangle & rValidate ) const
|
|
{
|
|
switch( nGrab )
|
|
{
|
|
case 0:
|
|
if( rValidate.Top() > rValidate.Bottom() )
|
|
{
|
|
rValidate.Top() = rValidate.Bottom();
|
|
rValidate.Bottom() = RECT_EMPTY;
|
|
}
|
|
if( rValidate.Left() > rValidate.Right() )
|
|
{
|
|
rValidate.Left() = rValidate.Right();
|
|
rValidate.Right() = RECT_EMPTY;
|
|
}
|
|
break;
|
|
case 1:
|
|
if( rValidate.Top() > rValidate.Bottom() )
|
|
{
|
|
rValidate.Top() = rValidate.Bottom();
|
|
rValidate.Bottom() = RECT_EMPTY;
|
|
}
|
|
break;
|
|
case 2:
|
|
if( rValidate.Top() > rValidate.Bottom() )
|
|
{
|
|
rValidate.Top() = rValidate.Bottom();
|
|
rValidate.Bottom() = RECT_EMPTY;
|
|
}
|
|
if( rValidate.Left() > rValidate.Right() )
|
|
rValidate.Right() = RECT_EMPTY;
|
|
break;
|
|
case 3:
|
|
if( rValidate.Left() > rValidate.Right() )
|
|
rValidate.Right() = RECT_EMPTY;
|
|
break;
|
|
case 4:
|
|
if( rValidate.Top() > rValidate.Bottom() )
|
|
rValidate.Bottom() = RECT_EMPTY;
|
|
if( rValidate.Left() > rValidate.Right() )
|
|
rValidate.Right() = RECT_EMPTY;
|
|
break;
|
|
case 5:
|
|
if( rValidate.Top() > rValidate.Bottom() )
|
|
rValidate.Bottom() = RECT_EMPTY;
|
|
break;
|
|
case 6:
|
|
if( rValidate.Top() > rValidate.Bottom() )
|
|
rValidate.Bottom() = RECT_EMPTY;
|
|
if( rValidate.Left() > rValidate.Right() )
|
|
{
|
|
rValidate.Left() = rValidate.Right();
|
|
rValidate.Right() = RECT_EMPTY;
|
|
}
|
|
break;
|
|
case 7:
|
|
if( rValidate.Left() > rValidate.Right() )
|
|
{
|
|
rValidate.Left() = rValidate.Right();
|
|
rValidate.Right() = RECT_EMPTY;
|
|
}
|
|
break;
|
|
}
|
|
if( rValidate.Right() == RECT_EMPTY )
|
|
rValidate.Right() = rValidate.Left();
|
|
if( rValidate.Bottom() == RECT_EMPTY )
|
|
rValidate.Bottom() = rValidate.Top();
|
|
|
|
// Mindestgr"osse 5 x 5
|
|
if( rValidate.Left() + 5 > rValidate.Right() )
|
|
rValidate.Right() = rValidate.Left() +5;
|
|
if( rValidate.Top() + 5 > rValidate.Bottom() )
|
|
rValidate.Bottom() = rValidate.Top() +5;
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeHelper::SelectRelease()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
bool SvResizeHelper::SelectRelease( vcl::Window * pWin, const Point & rPos,
|
|
Rectangle & rOutPosSize )
|
|
{
|
|
if( -1 != nGrab )
|
|
{
|
|
rOutPosSize = GetTrackRectPixel( rPos );
|
|
rOutPosSize.Justify();
|
|
nGrab = -1;
|
|
pWin->ReleaseMouse();
|
|
pWin->HideTracking();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeHelper::Release()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
void SvResizeHelper::Release( vcl::Window * pWin )
|
|
{
|
|
if( nGrab != -1 )
|
|
{
|
|
pWin->ReleaseMouse();
|
|
pWin->HideTracking();
|
|
nGrab = -1;
|
|
}
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeWindow::SvResizeWindow()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
SvResizeWindow::SvResizeWindow
|
|
(
|
|
vcl::Window * pParent,
|
|
VCLXHatchWindow* pWrapper
|
|
)
|
|
: Window( pParent, WB_CLIPCHILDREN )
|
|
, m_nMoveGrab( -1 )
|
|
, m_bActive( false )
|
|
, m_pWrapper( pWrapper )
|
|
{
|
|
OSL_ENSURE( pParent != NULL && pWrapper != NULL, "Wrong initialization of hatch window!\n" );
|
|
SetBackground();
|
|
SetAccessibleRole( ::com::sun::star::accessibility::AccessibleRole::EMBEDDED_OBJECT );
|
|
m_aResizer.SetOuterRectPixel( Rectangle( Point(), GetOutputSizePixel() ) );
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeWindow::SetHatchBorderPixel()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
void SvResizeWindow::SetHatchBorderPixel( const Size & rSize )
|
|
{
|
|
m_aResizer.SetBorderPixel( rSize );
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeWindow::SelectMouse()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
void SvResizeWindow::SelectMouse( const Point & rPos )
|
|
{
|
|
short nGrab = m_aResizer.SelectMove( this, rPos );
|
|
if( nGrab >= 4 )
|
|
nGrab -= 4;
|
|
if( m_nMoveGrab != nGrab )
|
|
{ // Pointer did change
|
|
if( -1 == nGrab )
|
|
SetPointer( m_aOldPointer );
|
|
else
|
|
{
|
|
PointerStyle aStyle = PointerStyle::Move;
|
|
if( nGrab == 3 )
|
|
aStyle = PointerStyle::ESize;
|
|
else if( nGrab == 2 )
|
|
aStyle = PointerStyle::NESize;
|
|
else if( nGrab == 1 )
|
|
aStyle = PointerStyle::SSize;
|
|
else if( nGrab == 0 )
|
|
aStyle = PointerStyle::SESize;
|
|
if( m_nMoveGrab == -1 ) // the first time
|
|
{
|
|
m_aOldPointer = GetPointer();
|
|
SetPointer( Pointer( aStyle ) );
|
|
}
|
|
else
|
|
SetPointer( Pointer( aStyle ) );
|
|
}
|
|
m_nMoveGrab = nGrab;
|
|
}
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeWindow::MouseButtonDown()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
void SvResizeWindow::MouseButtonDown( const MouseEvent & rEvt )
|
|
{
|
|
if( m_aResizer.SelectBegin( this, rEvt.GetPosPixel() ) )
|
|
SelectMouse( rEvt.GetPosPixel() );
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeWindow::MouseMove()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
void SvResizeWindow::MouseMove( const MouseEvent & rEvt )
|
|
{
|
|
if( m_aResizer.GetGrab() == -1 )
|
|
SelectMouse( rEvt.GetPosPixel() );
|
|
else
|
|
{
|
|
Rectangle aRect( m_aResizer.GetTrackRectPixel( rEvt.GetPosPixel() ) );
|
|
Point aDiff = GetPosPixel();
|
|
aRect.SetPos( aRect.TopLeft() + aDiff );
|
|
m_aResizer.ValidateRect( aRect );
|
|
|
|
m_pWrapper->QueryObjAreaPixel( aRect );
|
|
aRect.SetPos( aRect.TopLeft() - aDiff );
|
|
Point aPos = m_aResizer.GetTrackPosPixel( aRect );
|
|
|
|
SelectMouse( aPos );
|
|
}
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeWindow::MouseButtonUp()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
void SvResizeWindow::MouseButtonUp( const MouseEvent & rEvt )
|
|
{
|
|
if( m_aResizer.GetGrab() != -1 )
|
|
{
|
|
Rectangle aRect( m_aResizer.GetTrackRectPixel( rEvt.GetPosPixel() ) );
|
|
Point aDiff = GetPosPixel();
|
|
aRect.SetPos( aRect.TopLeft() + aDiff );
|
|
// aRect -= GetAllBorderPixel();
|
|
m_aResizer.ValidateRect( aRect );
|
|
|
|
m_pWrapper->QueryObjAreaPixel( aRect );
|
|
|
|
Rectangle aOutRect;
|
|
if( m_aResizer.SelectRelease( this, rEvt.GetPosPixel(), aOutRect ) )
|
|
{
|
|
m_nMoveGrab = -1;
|
|
SetPointer( m_aOldPointer );
|
|
m_pWrapper->RequestObjAreaPixel( aRect );
|
|
}
|
|
}
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeWindow::KeyEvent()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
void SvResizeWindow::KeyInput( const KeyEvent & rEvt )
|
|
{
|
|
if( rEvt.GetKeyCode().GetCode() == KEY_ESCAPE )
|
|
{
|
|
m_aResizer.Release( this );
|
|
m_pWrapper->InplaceDeactivate();
|
|
}
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeWindow::Resize()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
void SvResizeWindow::Resize()
|
|
{
|
|
m_aResizer.InvalidateBorder( this ); // old area
|
|
m_aResizer.SetOuterRectPixel( Rectangle( Point(), GetOutputSizePixel() ) );
|
|
m_aResizer.InvalidateBorder( this ); // new area
|
|
}
|
|
|
|
/*************************************************************************
|
|
|* SvResizeWindow::Paint()
|
|
|*
|
|
|* Description
|
|
*************************************************************************/
|
|
void SvResizeWindow::Paint(vcl::RenderContext& rRenderContext, const Rectangle & /*rRect*/ )
|
|
{
|
|
m_aResizer.Draw(rRenderContext);
|
|
}
|
|
|
|
bool SvResizeWindow::PreNotify( NotifyEvent& rEvt )
|
|
{
|
|
if ( rEvt.GetType() == MouseNotifyEvent::GETFOCUS && !m_bActive )
|
|
{
|
|
m_bActive = true;
|
|
m_pWrapper->Activated();
|
|
}
|
|
|
|
return Window::PreNotify(rEvt);
|
|
}
|
|
|
|
bool SvResizeWindow::Notify( NotifyEvent& rEvt )
|
|
{
|
|
if ( rEvt.GetType() == MouseNotifyEvent::LOSEFOCUS && m_bActive )
|
|
{
|
|
bool bHasFocus = HasChildPathFocus(true);
|
|
if ( !bHasFocus )
|
|
{
|
|
m_bActive = false;
|
|
m_pWrapper->Deactivated();
|
|
}
|
|
}
|
|
|
|
return Window::Notify(rEvt);
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|