1*5b190011SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*5b190011SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*5b190011SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*5b190011SAndrew Rist * distributed with this work for additional information 6*5b190011SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*5b190011SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*5b190011SAndrew Rist * "License"); you may not use this file except in compliance 9*5b190011SAndrew Rist * with the License. You may obtain a copy of the License at 10*5b190011SAndrew Rist * 11*5b190011SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*5b190011SAndrew Rist * 13*5b190011SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*5b190011SAndrew Rist * software distributed under the License is distributed on an 15*5b190011SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*5b190011SAndrew Rist * KIND, either express or implied. See the License for the 17*5b190011SAndrew Rist * specific language governing permissions and limitations 18*5b190011SAndrew Rist * under the License. 19*5b190011SAndrew Rist * 20*5b190011SAndrew Rist *************************************************************/ 21*5b190011SAndrew Rist 22*5b190011SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir #include "precompiled_sd.hxx" 26cdf0e10cSrcweir 27cdf0e10cSrcweir 28cdf0e10cSrcweir #include "fuscale.hxx" 29cdf0e10cSrcweir 30cdf0e10cSrcweir #include <svx/dialogs.hrc> 31cdf0e10cSrcweir 32cdf0e10cSrcweir #include "app.hrc" 33cdf0e10cSrcweir #include "View.hxx" 34cdf0e10cSrcweir #ifndef SD_WINDOW_SHELL_HXX 35cdf0e10cSrcweir #include "Window.hxx" 36cdf0e10cSrcweir #endif 37cdf0e10cSrcweir #include "OutlineViewShell.hxx" 38cdf0e10cSrcweir #include "drawview.hxx" 39cdf0e10cSrcweir #include "drawdoc.hxx" 40cdf0e10cSrcweir #include "DrawViewShell.hxx" 41cdf0e10cSrcweir #include "ViewShell.hxx" 42cdf0e10cSrcweir #include "fuzoom.hxx" // wegen SidArrayZoom[] 43cdf0e10cSrcweir 44cdf0e10cSrcweir #ifndef _MSGBOX_HXX //autogen 45cdf0e10cSrcweir #include <vcl/msgbox.hxx> 46cdf0e10cSrcweir #endif 47cdf0e10cSrcweir #include <svx/svdpagv.hxx> 48cdf0e10cSrcweir #include <sfx2/viewfrm.hxx> 49cdf0e10cSrcweir #include <sfx2/dispatch.hxx> 50cdf0e10cSrcweir #include <svx/zoom_def.hxx> 51cdf0e10cSrcweir #include <svx/zoomitem.hxx> 52cdf0e10cSrcweir #include <sfx2/request.hxx> 53cdf0e10cSrcweir #include <svx/svxdlg.hxx> 54cdf0e10cSrcweir #include <svx/dialogs.hrc> 55cdf0e10cSrcweir 56cdf0e10cSrcweir namespace sd { 57cdf0e10cSrcweir 58cdf0e10cSrcweir TYPEINIT1( FuScale, FuPoor ); 59cdf0e10cSrcweir 60cdf0e10cSrcweir /************************************************************************* 61cdf0e10cSrcweir |* 62cdf0e10cSrcweir |* Konstruktor 63cdf0e10cSrcweir |* 64cdf0e10cSrcweir \************************************************************************/ 65cdf0e10cSrcweir 66cdf0e10cSrcweir FuScale::FuScale ( 67cdf0e10cSrcweir ViewShell* pViewSh, 68cdf0e10cSrcweir ::sd::Window* pWin, 69cdf0e10cSrcweir ::sd::View* pView, 70cdf0e10cSrcweir SdDrawDocument* pDoc, 71cdf0e10cSrcweir SfxRequest& rReq) 72cdf0e10cSrcweir : FuPoor(pViewSh, pWin, pView, pDoc, rReq) 73cdf0e10cSrcweir { 74cdf0e10cSrcweir } 75cdf0e10cSrcweir 76cdf0e10cSrcweir FunctionReference FuScale::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq ) 77cdf0e10cSrcweir { 78cdf0e10cSrcweir FunctionReference xFunc( new FuScale( pViewSh, pWin, pView, pDoc, rReq ) ); 79cdf0e10cSrcweir xFunc->DoExecute(rReq); 80cdf0e10cSrcweir return xFunc; 81cdf0e10cSrcweir } 82cdf0e10cSrcweir 83cdf0e10cSrcweir void FuScale::DoExecute( SfxRequest& rReq ) 84cdf0e10cSrcweir { 85cdf0e10cSrcweir sal_Int16 nValue; 86cdf0e10cSrcweir 87cdf0e10cSrcweir const SfxItemSet* pArgs = rReq.GetArgs(); 88cdf0e10cSrcweir 89cdf0e10cSrcweir if( !pArgs ) 90cdf0e10cSrcweir { 91cdf0e10cSrcweir SfxItemSet aNewAttr( mpDoc->GetPool(), SID_ATTR_ZOOM, SID_ATTR_ZOOM ); 92cdf0e10cSrcweir SvxZoomItem* pZoomItem; 93cdf0e10cSrcweir sal_uInt16 nZoomValues = SVX_ZOOM_ENABLE_ALL; 94cdf0e10cSrcweir 95cdf0e10cSrcweir nValue = (sal_Int16) mpWindow->GetZoom(); 96cdf0e10cSrcweir 97cdf0e10cSrcweir // Zoom auf Seitengroesse ? 98cdf0e10cSrcweir if( mpViewShell && mpViewShell->ISA( DrawViewShell ) && 99cdf0e10cSrcweir static_cast<DrawViewShell*>(mpViewShell)->IsZoomOnPage() ) 100cdf0e10cSrcweir { 101cdf0e10cSrcweir pZoomItem = new SvxZoomItem( SVX_ZOOM_WHOLEPAGE, nValue ); 102cdf0e10cSrcweir } 103cdf0e10cSrcweir else 104cdf0e10cSrcweir { 105cdf0e10cSrcweir pZoomItem = new SvxZoomItem( SVX_ZOOM_PERCENT, nValue ); 106cdf0e10cSrcweir } 107cdf0e10cSrcweir 108cdf0e10cSrcweir // Bereich einschraenken 109cdf0e10cSrcweir if( mpViewShell ) 110cdf0e10cSrcweir { 111cdf0e10cSrcweir if( mpViewShell->ISA( DrawViewShell ) ) 112cdf0e10cSrcweir { 113cdf0e10cSrcweir SdrPageView* pPageView = mpView->GetSdrPageView(); 114cdf0e10cSrcweir if( ( pPageView && pPageView->GetObjList()->GetObjCount() == 0 ) ) 115cdf0e10cSrcweir // || ( mpView->GetMarkedObjectList().GetMarkCount() == 0 ) ) 116cdf0e10cSrcweir { 117cdf0e10cSrcweir nZoomValues &= ~SVX_ZOOM_ENABLE_OPTIMAL; 118cdf0e10cSrcweir } 119cdf0e10cSrcweir } 120cdf0e10cSrcweir else if( mpViewShell->ISA( OutlineViewShell ) ) 121cdf0e10cSrcweir { 122cdf0e10cSrcweir nZoomValues &= ~SVX_ZOOM_ENABLE_OPTIMAL; 123cdf0e10cSrcweir nZoomValues &= ~SVX_ZOOM_ENABLE_WHOLEPAGE; 124cdf0e10cSrcweir nZoomValues &= ~SVX_ZOOM_ENABLE_PAGEWIDTH; 125cdf0e10cSrcweir } 126cdf0e10cSrcweir } 127cdf0e10cSrcweir 128cdf0e10cSrcweir pZoomItem->SetValueSet( nZoomValues ); 129cdf0e10cSrcweir aNewAttr.Put( *pZoomItem ); 130cdf0e10cSrcweir 131cdf0e10cSrcweir AbstractSvxZoomDialog* pDlg=NULL; 132cdf0e10cSrcweir SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); 133cdf0e10cSrcweir if(pFact) 134cdf0e10cSrcweir { 135cdf0e10cSrcweir pDlg = pFact->CreateSvxZoomDialog(NULL, aNewAttr); 136cdf0e10cSrcweir } 137cdf0e10cSrcweir 138cdf0e10cSrcweir if( pDlg ) 139cdf0e10cSrcweir { 140cdf0e10cSrcweir pDlg->SetLimits( (sal_uInt16)mpWindow->GetMinZoom(), (sal_uInt16)mpWindow->GetMaxZoom() ); 141cdf0e10cSrcweir sal_uInt16 nResult = pDlg->Execute(); 142cdf0e10cSrcweir switch( nResult ) 143cdf0e10cSrcweir { 144cdf0e10cSrcweir case RET_CANCEL: 145cdf0e10cSrcweir { 146cdf0e10cSrcweir delete pDlg; 147cdf0e10cSrcweir delete pZoomItem; 148cdf0e10cSrcweir rReq.Ignore (); 149cdf0e10cSrcweir return; // Abbruch 150cdf0e10cSrcweir } 151cdf0e10cSrcweir default: 152cdf0e10cSrcweir { 153cdf0e10cSrcweir rReq.Ignore (); 154cdf0e10cSrcweir /* 155cdf0e10cSrcweir rReq.Done( *( pDlg->GetOutputItemSet() ) ); 156cdf0e10cSrcweir pArgs = rReq.GetArgs();*/ 157cdf0e10cSrcweir } 158cdf0e10cSrcweir break; 159cdf0e10cSrcweir } 160cdf0e10cSrcweir 161cdf0e10cSrcweir const SfxItemSet aArgs (*(pDlg->GetOutputItemSet ())); 162cdf0e10cSrcweir 163cdf0e10cSrcweir delete pDlg; 164cdf0e10cSrcweir 165cdf0e10cSrcweir switch (((const SvxZoomItem &) aArgs.Get (SID_ATTR_ZOOM)).GetType ()) 166cdf0e10cSrcweir { 167cdf0e10cSrcweir case SVX_ZOOM_PERCENT: 168cdf0e10cSrcweir { 169cdf0e10cSrcweir nValue = ((const SvxZoomItem &) aArgs.Get (SID_ATTR_ZOOM)).GetValue (); 170cdf0e10cSrcweir 171cdf0e10cSrcweir mpViewShell->SetZoom( nValue ); 172cdf0e10cSrcweir 173cdf0e10cSrcweir mpViewShell->GetViewFrame()->GetBindings().Invalidate( SidArrayZoom ); 174cdf0e10cSrcweir } 175cdf0e10cSrcweir break; 176cdf0e10cSrcweir 177cdf0e10cSrcweir case SVX_ZOOM_OPTIMAL: 178cdf0e10cSrcweir { 179cdf0e10cSrcweir if( mpViewShell->ISA( DrawViewShell ) ) 180cdf0e10cSrcweir { 181cdf0e10cSrcweir // Namensverwirrung: SID_SIZE_ALL -> Zoom auf alle Objekte 182cdf0e10cSrcweir // --> Wird als Optimal im Programm angeboten 183cdf0e10cSrcweir mpViewShell->GetViewFrame()->GetDispatcher()->Execute( SID_SIZE_ALL, SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD); 184cdf0e10cSrcweir } 185cdf0e10cSrcweir } 186cdf0e10cSrcweir break; 187cdf0e10cSrcweir 188cdf0e10cSrcweir case SVX_ZOOM_PAGEWIDTH: 189cdf0e10cSrcweir mpViewShell->GetViewFrame()->GetDispatcher()->Execute( SID_SIZE_PAGE_WIDTH, SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD); 190cdf0e10cSrcweir break; 191cdf0e10cSrcweir 192cdf0e10cSrcweir case SVX_ZOOM_WHOLEPAGE: 193cdf0e10cSrcweir mpViewShell->GetViewFrame()->GetDispatcher()->Execute(SID_SIZE_PAGE, SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD); 194cdf0e10cSrcweir break; 195cdf0e10cSrcweir default: 196cdf0e10cSrcweir break; 197cdf0e10cSrcweir } 198cdf0e10cSrcweir } 199cdf0e10cSrcweir 200cdf0e10cSrcweir delete pZoomItem; 201cdf0e10cSrcweir } 202cdf0e10cSrcweir else if(mpViewShell && (pArgs->Count () == 1)) 203cdf0e10cSrcweir { 204cdf0e10cSrcweir SFX_REQUEST_ARG (rReq, pScale, SfxUInt32Item, ID_VAL_ZOOM, sal_False); 205cdf0e10cSrcweir mpViewShell->SetZoom (pScale->GetValue ()); 206cdf0e10cSrcweir 207cdf0e10cSrcweir mpViewShell->GetViewFrame()->GetBindings().Invalidate( SidArrayZoom ); 208cdf0e10cSrcweir } 209cdf0e10cSrcweir 210cdf0e10cSrcweir } 211cdf0e10cSrcweir 212cdf0e10cSrcweir } // end of namespace sd 213