2000-09-18 11:07:07 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 22:53:51 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 22:53:51 -05:00
|
|
|
* $RCSfile: fuzoom.cxx,v $
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2007-11-26 07:35:33 -06:00
|
|
|
* $Revision: 1.12 $
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2007-11-26 07:35:33 -06:00
|
|
|
* last change: $Author: ihi $ $Date: 2007-11-26 14:35:33 $
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 22:53:51 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 22:53:51 -05:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 22:53:51 -05:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 22:53:51 -05:00
|
|
|
* This library 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 for more details.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 22:53:51 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 12:58:37 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sd.hxx"
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2004-01-20 04:22:18 -06:00
|
|
|
#include "fuzoom.hxx"
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
#include <svx/svxids.hrc>
|
|
|
|
#ifndef _SFX_BINDINGS_HXX //autogen
|
|
|
|
#include <sfx2/bindings.hxx>
|
|
|
|
#endif
|
2000-09-21 10:12:50 -05:00
|
|
|
#ifndef _SFXVIEWFRM_HXX
|
|
|
|
#include <sfx2/viewfrm.hxx>
|
|
|
|
#endif
|
2000-09-18 11:07:07 -05:00
|
|
|
#include "app.hrc"
|
|
|
|
|
|
|
|
#ifndef _SVDPAGV_HXX //autogen
|
|
|
|
#include <svx/svdpagv.hxx>
|
|
|
|
#endif
|
|
|
|
|
2004-01-20 04:22:18 -06:00
|
|
|
#ifndef SD_FRAMW_VIEW_HXX
|
|
|
|
#include "FrameView.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef SD_VIEW_SHELL_HXX
|
|
|
|
#include "ViewShell.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef SD_VIEW_HXX
|
|
|
|
#include "View.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef SD_WINDOW_SHELL_HXX
|
|
|
|
#include "Window.hxx"
|
|
|
|
#endif
|
2000-09-18 11:07:07 -05:00
|
|
|
#include "drawdoc.hxx"
|
|
|
|
#include "zoomlist.hxx"
|
|
|
|
|
2004-01-20 04:22:18 -06:00
|
|
|
namespace sd {
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
USHORT SidArrayZoom[] = {
|
|
|
|
SID_ATTR_ZOOM,
|
|
|
|
SID_ZOOM_OUT,
|
|
|
|
SID_ZOOM_IN,
|
|
|
|
0 };
|
|
|
|
|
|
|
|
TYPEINIT1( FuZoom, FuPoor );
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Konstruktor
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
2004-01-20 04:22:18 -06:00
|
|
|
FuZoom::FuZoom(
|
|
|
|
ViewShell* pViewSh,
|
|
|
|
::sd::Window* pWin,
|
|
|
|
::sd::View* pView,
|
|
|
|
SdDrawDocument* pDoc,
|
|
|
|
SfxRequest& rReq)
|
|
|
|
: FuPoor(pViewSh, pWin, pView, pDoc, rReq),
|
|
|
|
bVisible(FALSE),
|
2007-11-26 07:35:33 -06:00
|
|
|
bStartDrag(FALSE)
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Destruktor
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
FuZoom::~FuZoom()
|
|
|
|
{
|
|
|
|
if (bVisible)
|
|
|
|
{
|
|
|
|
// Hide ZoomRect
|
2006-12-12 10:27:11 -06:00
|
|
|
mpViewShell->DrawMarkRect(aZoomRect);
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
bVisible = FALSE;
|
|
|
|
bStartDrag = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-14 10:06:27 -06:00
|
|
|
FunctionReference FuZoom::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq )
|
|
|
|
{
|
|
|
|
FunctionReference xFunc( new FuZoom( pViewSh, pWin, pView, pDoc, rReq ) );
|
|
|
|
return xFunc;
|
|
|
|
}
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* MouseButtonDown-event
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
BOOL FuZoom::MouseButtonDown(const MouseEvent& rMEvt)
|
|
|
|
{
|
2002-03-01 03:04:09 -06:00
|
|
|
// #95491# remember button state for creation of own MouseEvents
|
|
|
|
SetMouseButtonCode(rMEvt.GetButtons());
|
|
|
|
|
2006-12-12 10:27:11 -06:00
|
|
|
mpWindow->CaptureMouse();
|
2000-09-18 11:07:07 -05:00
|
|
|
bStartDrag = TRUE;
|
|
|
|
|
|
|
|
aBeginPosPix = rMEvt.GetPosPixel();
|
2006-12-12 10:27:11 -06:00
|
|
|
aBeginPos = mpWindow->PixelToLogic(aBeginPosPix);
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* MouseMove-event
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
BOOL FuZoom::MouseMove(const MouseEvent& rMEvt)
|
|
|
|
{
|
|
|
|
if (bStartDrag)
|
|
|
|
{
|
|
|
|
if (bVisible)
|
|
|
|
{
|
2006-12-12 10:27:11 -06:00
|
|
|
mpViewShell->DrawMarkRect(aZoomRect);
|
2000-09-18 11:07:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Point aPosPix = rMEvt.GetPosPixel();
|
|
|
|
ForceScroll(aPosPix);
|
|
|
|
|
2006-12-12 10:27:11 -06:00
|
|
|
aEndPos = mpWindow->PixelToLogic(aPosPix);
|
|
|
|
aBeginPos = mpWindow->PixelToLogic(aBeginPosPix);
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
if (nSlotId == SID_ZOOM_PANNING)
|
|
|
|
{
|
|
|
|
// Panning
|
|
|
|
|
|
|
|
Point aScroll = aBeginPos - aEndPos;
|
|
|
|
|
2003-03-27 03:58:12 -06:00
|
|
|
// #i2237#
|
|
|
|
// removed old stuff here which still forced zoom to be
|
|
|
|
// %BRUSH_SIZE which is outdated now
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
if (aScroll.X() != 0 || aScroll.Y() != 0)
|
|
|
|
{
|
2006-12-12 10:27:11 -06:00
|
|
|
Size aWorkSize = mpView->GetWorkArea().GetSize();
|
|
|
|
Size aPageSize = mpView->GetSdrPageView()->GetPage()->GetSize();
|
2000-09-18 11:07:07 -05:00
|
|
|
aScroll.X() /= aWorkSize.Width() / aPageSize.Width();
|
|
|
|
aScroll.Y() /= aWorkSize.Height() / aPageSize.Height();
|
2006-12-12 10:27:11 -06:00
|
|
|
mpViewShell->Scroll(aScroll.X(), aScroll.Y());
|
2000-09-18 11:07:07 -05:00
|
|
|
aBeginPosPix = aPosPix;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Rectangle aRect(aBeginPos, aEndPos);
|
|
|
|
aZoomRect = aRect;
|
|
|
|
aZoomRect.Justify();
|
2006-12-12 10:27:11 -06:00
|
|
|
mpViewShell->DrawMarkRect(aZoomRect);
|
2000-09-18 11:07:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bVisible = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bStartDrag;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* MouseButtonUp-event
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
BOOL FuZoom::MouseButtonUp(const MouseEvent& rMEvt)
|
|
|
|
{
|
2002-03-01 03:04:09 -06:00
|
|
|
// #95491# remember button state for creation of own MouseEvents
|
|
|
|
SetMouseButtonCode(rMEvt.GetButtons());
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
if (bVisible)
|
|
|
|
{
|
|
|
|
// Hide ZoomRect
|
2006-12-12 10:27:11 -06:00
|
|
|
mpViewShell->DrawMarkRect(aZoomRect);
|
2000-09-18 11:07:07 -05:00
|
|
|
bVisible = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Point aPosPix = rMEvt.GetPosPixel();
|
|
|
|
|
2007-11-26 07:35:33 -06:00
|
|
|
if(SID_ZOOM_PANNING != nSlotId)
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
// Zoom
|
2006-12-12 10:27:11 -06:00
|
|
|
Size aZoomSizePixel = mpWindow->LogicToPixel(aZoomRect).GetSize();
|
2000-09-18 11:07:07 -05:00
|
|
|
ULONG nTol = DRGPIX + DRGPIX;
|
|
|
|
|
2001-03-08 04:12:28 -06:00
|
|
|
if ( aZoomSizePixel.Width() < (long) nTol && aZoomSizePixel.Height() < (long) nTol )
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
// Klick auf der Stelle: Zoomfaktor verdoppeln
|
2006-12-12 10:27:11 -06:00
|
|
|
Point aPos = mpWindow->PixelToLogic(aPosPix);
|
|
|
|
Size aSize = mpWindow->PixelToLogic(mpWindow->GetOutputSizePixel());
|
2000-09-18 11:07:07 -05:00
|
|
|
aSize.Width() /= 2;
|
|
|
|
aSize.Height() /= 2;
|
|
|
|
aPos.X() -= aSize.Width() / 2;
|
|
|
|
aPos.Y() -= aSize.Height() / 2;
|
|
|
|
aZoomRect.SetPos(aPos);
|
|
|
|
aZoomRect.SetSize(aSize);
|
|
|
|
}
|
|
|
|
|
2006-12-12 10:27:11 -06:00
|
|
|
mpViewShell->SetZoomRect(aZoomRect);
|
2000-09-18 11:07:07 -05:00
|
|
|
}
|
|
|
|
|
2006-12-12 10:27:11 -06:00
|
|
|
Rectangle aVisAreaWin = mpWindow->PixelToLogic(Rectangle(Point(0,0),
|
|
|
|
mpWindow->GetOutputSizePixel()));
|
|
|
|
mpViewShell->GetZoomList()->InsertZoomRect(aVisAreaWin);
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
bStartDrag = FALSE;
|
2006-12-12 10:27:11 -06:00
|
|
|
mpWindow->ReleaseMouse();
|
|
|
|
mpViewShell->Cancel();
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Function aktivieren
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
void FuZoom::Activate()
|
|
|
|
{
|
2006-12-12 10:27:11 -06:00
|
|
|
aPtr = mpWindow->GetPointer();
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
if (nSlotId == SID_ZOOM_PANNING)
|
|
|
|
{
|
2006-12-12 10:27:11 -06:00
|
|
|
mpWindow->SetPointer(Pointer(POINTER_HAND));
|
2000-09-18 11:07:07 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-12-12 10:27:11 -06:00
|
|
|
mpWindow->SetPointer(Pointer(POINTER_MAGNIFY));
|
2000-09-18 11:07:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Function deaktivieren
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
void FuZoom::Deactivate()
|
|
|
|
{
|
2006-12-12 10:27:11 -06:00
|
|
|
mpWindow->SetPointer( aPtr );
|
|
|
|
mpViewShell->GetViewFrame()->GetBindings().Invalidate( SidArrayZoom );
|
2000-09-18 11:07:07 -05:00
|
|
|
}
|
2004-01-20 04:22:18 -06:00
|
|
|
} // end of namespace sd
|