office-gobmx/sd/source/ui/func/fuzoom.cxx

263 lines
7.1 KiB
C++
Raw Normal View History

2000-09-18 11:07:07 -05:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 11:07:07 -05:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 11:07:07 -05:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 11:07:07 -05:00
*
* This file is part of OpenOffice.org.
2000-09-18 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sd.hxx"
2000-09-18 11:07:07 -05:00
#include "fuzoom.hxx"
2000-09-18 11:07:07 -05:00
#include <svx/svxids.hrc>
#include <sfx2/bindings.hxx>
#include <sfx2/viewfrm.hxx>
2000-09-18 11:07:07 -05:00
#include "app.hrc"
#include <svx/svdpagv.hxx>
#ifndef SD_FRAMW_VIEW_HXX
#include "FrameView.hxx"
#endif
#include "ViewShell.hxx"
#include "View.hxx"
#ifndef SD_WINDOW_SHELL_HXX
#include "Window.hxx"
#endif
2000-09-18 11:07:07 -05:00
#include "drawdoc.hxx"
#include "zoomlist.hxx"
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
|*
\************************************************************************/
FuZoom::FuZoom(
ViewShell* pViewSh,
::sd::Window* pWin,
::sd::View* pView,
SdDrawDocument* pDoc,
SfxRequest& rReq)
: FuPoor(pViewSh, pWin, pView, pDoc, rReq),
bVisible(FALSE),
bStartDrag(FALSE)
2000-09-18 11:07:07 -05:00
{
}
/*************************************************************************
|*
|* Destruktor
|*
\************************************************************************/
FuZoom::~FuZoom()
{
if (bVisible)
{
// Hide ZoomRect
mpViewShell->DrawMarkRect(aZoomRect);
2000-09-18 11:07:07 -05:00
bVisible = FALSE;
bStartDrag = FALSE;
}
}
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)
{
// #95491# remember button state for creation of own MouseEvents
SetMouseButtonCode(rMEvt.GetButtons());
mpWindow->CaptureMouse();
2000-09-18 11:07:07 -05:00
bStartDrag = TRUE;
aBeginPosPix = rMEvt.GetPosPixel();
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)
{
mpViewShell->DrawMarkRect(aZoomRect);
2000-09-18 11:07:07 -05:00
}
Point aPosPix = rMEvt.GetPosPixel();
ForceScroll(aPosPix);
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;
// #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)
{
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();
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();
mpViewShell->DrawMarkRect(aZoomRect);
2000-09-18 11:07:07 -05:00
}
bVisible = TRUE;
}
return bStartDrag;
}
/*************************************************************************
|*
|* MouseButtonUp-event
|*
\************************************************************************/
BOOL FuZoom::MouseButtonUp(const MouseEvent& rMEvt)
{
// #95491# remember button state for creation of own MouseEvents
SetMouseButtonCode(rMEvt.GetButtons());
2000-09-18 11:07:07 -05:00
if (bVisible)
{
// Hide ZoomRect
mpViewShell->DrawMarkRect(aZoomRect);
2000-09-18 11:07:07 -05:00
bVisible = FALSE;
}
Point aPosPix = rMEvt.GetPosPixel();
if(SID_ZOOM_PANNING != nSlotId)
2000-09-18 11:07:07 -05:00
{
// Zoom
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
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);
}
mpViewShell->SetZoomRect(aZoomRect);
2000-09-18 11:07:07 -05: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;
mpWindow->ReleaseMouse();
mpViewShell->Cancel();
2000-09-18 11:07:07 -05:00
return TRUE;
}
/*************************************************************************
|*
|* Function aktivieren
|*
\************************************************************************/
void FuZoom::Activate()
{
aPtr = mpWindow->GetPointer();
2000-09-18 11:07:07 -05:00
if (nSlotId == SID_ZOOM_PANNING)
{
mpWindow->SetPointer(Pointer(POINTER_HAND));
2000-09-18 11:07:07 -05:00
}
else
{
mpWindow->SetPointer(Pointer(POINTER_MAGNIFY));
2000-09-18 11:07:07 -05:00
}
}
/*************************************************************************
|*
|* Function deaktivieren
|*
\************************************************************************/
void FuZoom::Deactivate()
{
mpWindow->SetPointer( aPtr );
mpViewShell->GetViewFrame()->GetBindings().Invalidate( SidArrayZoom );
2000-09-18 11:07:07 -05:00
}
} // end of namespace sd