LCOV - code coverage report
Current view: top level - sd/source/ui/view - viewshe2.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 144 470 30.6 %
Date: 2014-11-03 Functions: 14 40 35.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include <com/sun/star/embed/NoVisualAreaSizeException.hpp>
      21             : #include <com/sun/star/beans/XPropertySet.hpp>
      22             : #include <com/sun/star/chart2/XChartDocument.hpp>
      23             : #include <com/sun/star/drawing/FillStyle.hpp>
      24             : #include <com/sun/star/drawing/LineStyle.hpp>
      25             : 
      26             : #include "ViewShell.hxx"
      27             : #include "ViewShellHint.hxx"
      28             : 
      29             : #include "ViewShellImplementation.hxx"
      30             : #include "FactoryIds.hxx"
      31             : 
      32             : #include <svx/svxids.hrc>
      33             : #include <vcl/scrbar.hxx>
      34             : #include <svx/svdpagv.hxx>
      35             : #include <sfx2/dispatch.hxx>
      36             : #include <sfx2/app.hxx>
      37             : #include <svx/ruler.hxx>
      38             : #include <editeng/outliner.hxx>
      39             : #include <svtools/ehdl.hxx>
      40             : #include <svx/svdoole2.hxx>
      41             : #include <svtools/sfxecode.hxx>
      42             : #include <svx/fmshell.hxx>
      43             : #include <rtl/ustrbuf.hxx>
      44             : #include <unotools/moduleoptions.hxx>
      45             : #include <svx/dialogs.hrc>
      46             : #include <comphelper/classids.hxx>
      47             : 
      48             : #include "strings.hrc"
      49             : #include "app.hrc"
      50             : #include "unokywds.hxx"
      51             : 
      52             : #include "sdundogr.hxx"
      53             : #include "FrameView.hxx"
      54             : #include "undopage.hxx"
      55             : #include "sdresid.hxx"
      56             : #include "drawdoc.hxx"
      57             : #include "View.hxx"
      58             : #include "fupoor.hxx"
      59             : #include "Client.hxx"
      60             : #include "DrawDocShell.hxx"
      61             : #include "fusearch.hxx"
      62             : #include "slideshow.hxx"
      63             : #include "sdpage.hxx"
      64             : #include "DrawViewShell.hxx"
      65             : #include "ViewShellBase.hxx"
      66             : 
      67             : #include "Window.hxx"
      68             : 
      69             : #include <sfx2/viewfrm.hxx>
      70             : #include <svtools/soerr.hxx>
      71             : #include <toolkit/helper/vclunohelper.hxx>
      72             : #include <svx/charthelper.hxx>
      73             : 
      74             : using namespace com::sun::star;
      75             : 
      76             : namespace sd {
      77             : 
      78          38 : const OUString aEmptyStr;
      79             : 
      80             : /**
      81             :  * adjust Thumbpos and VisibleSize
      82             :  */
      83        1608 : void ViewShell::UpdateScrollBars()
      84             : {
      85        1608 :     if (mpHorizontalScrollBar.get() != NULL)
      86             :     {
      87        1608 :         long nW = (long)(mpContentWindow->GetVisibleWidth() * 32000);
      88        1608 :         long nX = (long)(mpContentWindow->GetVisibleX() * 32000);
      89        1608 :         mpHorizontalScrollBar->SetVisibleSize(nW);
      90        1608 :         mpHorizontalScrollBar->SetThumbPos(nX);
      91        1608 :         nW = 32000 - nW;
      92        1608 :         long nLine = (long) (mpContentWindow->GetScrlLineWidth() * nW);
      93        1608 :         long nPage = (long) (mpContentWindow->GetScrlPageWidth() * nW);
      94        1608 :         mpHorizontalScrollBar->SetLineSize(nLine);
      95        1608 :         mpHorizontalScrollBar->SetPageSize(nPage);
      96             :     }
      97             : 
      98        1608 :     if (mpVerticalScrollBar.get() != NULL)
      99             :     {
     100        1608 :         long nH = (long)(mpContentWindow->GetVisibleHeight() * 32000);
     101        1608 :         long nY = (long)(mpContentWindow->GetVisibleY() * 32000);
     102             : 
     103        1608 :         if(IsPageFlipMode()) // ie in zoom mode where no panning
     104             :         {
     105          76 :             SdPage* pPage = static_cast<DrawViewShell*>(this)->GetActualPage();
     106          76 :             sal_uInt16 nCurPage = (pPage->GetPageNum() - 1) / 2;
     107          76 :             sal_uInt16 nTotalPages = GetDoc()->GetSdPageCount(pPage->GetPageKind());
     108          76 :             mpVerticalScrollBar->SetRange(Range(0,256*nTotalPages));
     109          76 :             mpVerticalScrollBar->SetVisibleSize(256);
     110          76 :             mpVerticalScrollBar->SetThumbPos(256*nCurPage);
     111          76 :             mpVerticalScrollBar->SetLineSize(256);
     112          76 :             mpVerticalScrollBar->SetPageSize(256);
     113             :         }
     114             :         else
     115             :         {
     116        1532 :             mpVerticalScrollBar->SetRange(Range(0,32000));
     117        1532 :             mpVerticalScrollBar->SetVisibleSize(nH);
     118        1532 :             mpVerticalScrollBar->SetThumbPos(nY);
     119        1532 :             nH = 32000 - nH;
     120        1532 :             long nLine = (long) (mpContentWindow->GetScrlLineHeight() * nH);
     121        1532 :             long nPage = (long) (mpContentWindow->GetScrlPageHeight() * nH);
     122        1532 :             mpVerticalScrollBar->SetLineSize(nLine);
     123        1532 :             mpVerticalScrollBar->SetPageSize(nPage);
     124             :         }
     125             :     }
     126             : 
     127        1608 :     if (mbHasRulers)
     128             :     {
     129        1102 :         UpdateHRuler();
     130        1102 :         UpdateVRuler();
     131             :     }
     132             : 
     133        1608 : }
     134             : /**
     135             :  * Handling for horizontal Scrollbars
     136             :  */
     137           4 : IMPL_LINK_INLINE_START(ViewShell, HScrollHdl, ScrollBar *, pHScroll )
     138             : {
     139           4 :     return VirtHScrollHdl(pHScroll);
     140             : }
     141           4 : IMPL_LINK_INLINE_END(ViewShell, HScrollHdl, ScrollBar *, pHScroll )
     142             : 
     143             : /**
     144             :  * virtual scroll handler for horizontal Scrollbars
     145             :  */
     146           4 : long ViewShell::VirtHScrollHdl(ScrollBar* pHScroll)
     147             : {
     148           4 :     long nDelta = pHScroll->GetDelta();
     149             : 
     150           4 :     if (nDelta != 0)
     151             :     {
     152           4 :         double fX = (double) pHScroll->GetThumbPos() / pHScroll->GetRange().Len();
     153             : 
     154             :         // scroll all windows of the column
     155           4 :         ::sd::View* pView = GetView();
     156           4 :         OutlinerView* pOLV = NULL;
     157             : 
     158           4 :         if (pView)
     159           4 :             pOLV = pView->GetTextEditOutlinerView();
     160             : 
     161           4 :         if (pOLV)
     162           0 :             pOLV->HideCursor();
     163             : 
     164           4 :         mpContentWindow->SetVisibleXY(fX, -1);
     165             : 
     166           4 :         Rectangle aVisArea = GetDocSh()->GetVisArea(ASPECT_CONTENT);
     167           4 :         Point aVisAreaPos = GetActiveWindow()->PixelToLogic( Point(0,0) );
     168           4 :         aVisArea.SetPos(aVisAreaPos);
     169           4 :         GetDocSh()->SetVisArea(aVisArea);
     170             : 
     171           4 :         Size aVisSizePixel = GetActiveWindow()->GetOutputSizePixel();
     172           4 :         Rectangle aVisAreaWin = GetActiveWindow()->PixelToLogic( Rectangle( Point(0,0), aVisSizePixel) );
     173           4 :         VisAreaChanged(aVisAreaWin);
     174             : 
     175           4 :         if (pView)
     176             :         {
     177           4 :             pView->VisAreaChanged(GetActiveWindow());
     178             :         }
     179             : 
     180           4 :         if (pOLV)
     181           0 :             pOLV->ShowCursor();
     182             : 
     183           4 :         if (mbHasRulers)
     184           4 :             UpdateHRuler();
     185             : 
     186             :     }
     187             : 
     188           4 :     return 0;
     189             : }
     190             : 
     191             : /**
     192             :  * handling for vertical Scrollbars
     193             :  */
     194           0 : IMPL_LINK_INLINE_START(ViewShell, VScrollHdl, ScrollBar *, pVScroll )
     195             : {
     196           0 :     return VirtVScrollHdl(pVScroll);
     197             : }
     198           0 : IMPL_LINK_INLINE_END(ViewShell, VScrollHdl, ScrollBar *, pVScroll )
     199             : 
     200             : /**
     201             :  * handling for vertical Scrollbars
     202             :  */
     203           0 : long ViewShell::VirtVScrollHdl(ScrollBar* pVScroll)
     204             : {
     205           0 :     if(IsPageFlipMode())
     206             :     {
     207           0 :         SdPage* pPage = static_cast<DrawViewShell*>(this)->GetActualPage();
     208           0 :         sal_uInt16 nCurPage = (pPage->GetPageNum() - 1) >> 1;
     209           0 :         sal_uInt16 nNewPage = (sal_uInt16)pVScroll->GetThumbPos()/256;
     210           0 :         if( nCurPage != nNewPage )
     211           0 :             static_cast<DrawViewShell*>(this)->SwitchPage(nNewPage);
     212             :     }
     213             :     else //panning mode
     214             :     {
     215           0 :         double fY = (double) pVScroll->GetThumbPos() / pVScroll->GetRange().Len();
     216             : 
     217           0 :         ::sd::View* pView = GetView();
     218           0 :         OutlinerView* pOLV = NULL;
     219             : 
     220           0 :         if (pView)
     221           0 :             pOLV = pView->GetTextEditOutlinerView();
     222             : 
     223           0 :         if (pOLV)
     224           0 :             pOLV->HideCursor();
     225             : 
     226           0 :         mpContentWindow->SetVisibleXY(-1, fY);
     227             : 
     228           0 :         Rectangle aVisArea = GetDocSh()->GetVisArea(ASPECT_CONTENT);
     229           0 :         Point aVisAreaPos = GetActiveWindow()->PixelToLogic( Point(0,0) );
     230           0 :         aVisArea.SetPos(aVisAreaPos);
     231           0 :         GetDocSh()->SetVisArea(aVisArea);
     232             : 
     233           0 :         Size aVisSizePixel = GetActiveWindow()->GetOutputSizePixel();
     234           0 :         Rectangle aVisAreaWin = GetActiveWindow()->PixelToLogic( Rectangle( Point(0,0), aVisSizePixel) );
     235           0 :         VisAreaChanged(aVisAreaWin);
     236             : 
     237           0 :         if (pView)
     238             :         {
     239           0 :             pView->VisAreaChanged(GetActiveWindow());
     240             :         }
     241             : 
     242           0 :         if (pOLV)
     243           0 :             pOLV->ShowCursor();
     244             : 
     245           0 :         if (mbHasRulers)
     246           0 :             UpdateVRuler();
     247             : 
     248             :     }
     249             : 
     250           0 :     return 0;
     251             : }
     252             : 
     253           0 : SvxRuler* ViewShell::CreateHRuler(::sd::Window* , bool )
     254             : {
     255           0 :     return NULL;
     256             : }
     257             : 
     258           0 : SvxRuler* ViewShell::CreateVRuler(::sd::Window* )
     259             : {
     260           0 :     return NULL;
     261             : }
     262             : 
     263           0 : void ViewShell::UpdateHRuler()
     264             : {
     265           0 : }
     266             : 
     267           0 : void ViewShell::UpdateVRuler()
     268             : {
     269           0 : }
     270             : 
     271             : /**
     272             :  * Scroll a specific number of lines. Is used in the automatic scrolling
     273             :  * (character/drag).
     274             :  */
     275           0 : void ViewShell::ScrollLines(long nLinesX, long nLinesY)
     276             : {
     277           0 :     if ( nLinesX )
     278             :     {
     279           0 :         nLinesX *= mpHorizontalScrollBar->GetLineSize();
     280             :     }
     281           0 :     if ( nLinesY )
     282             :     {
     283           0 :         nLinesY *= mpVerticalScrollBar->GetLineSize();
     284             :     }
     285             : 
     286           0 :     Scroll(nLinesX, nLinesY);
     287           0 : }
     288             : 
     289           0 : void ViewShell::Scroll(long nScrollX, long nScrollY)
     290             : {
     291           0 :     if (nScrollX)
     292             :     {
     293           0 :         long nNewThumb = mpHorizontalScrollBar->GetThumbPos() + nScrollX;
     294           0 :         mpHorizontalScrollBar->SetThumbPos(nNewThumb);
     295             :     }
     296           0 :     if (nScrollY)
     297             :     {
     298           0 :         long nNewThumb = mpVerticalScrollBar->GetThumbPos() + nScrollY;
     299           0 :         mpVerticalScrollBar->SetThumbPos(nNewThumb);
     300             :     }
     301           0 :     double  fX = (double) mpHorizontalScrollBar->GetThumbPos() /
     302           0 :                             mpHorizontalScrollBar->GetRange().Len();
     303           0 :     double  fY = (double) mpVerticalScrollBar->GetThumbPos() /
     304           0 :                             mpVerticalScrollBar->GetRange().Len();
     305             : 
     306           0 :     GetActiveWindow()->SetVisibleXY(fX, fY);
     307             : 
     308           0 :     Rectangle aVisArea = GetDocSh()->GetVisArea(ASPECT_CONTENT);
     309           0 :     Point aVisAreaPos = GetActiveWindow()->PixelToLogic( Point(0,0) );
     310           0 :     aVisArea.SetPos(aVisAreaPos);
     311           0 :     GetDocSh()->SetVisArea(aVisArea);
     312             : 
     313           0 :     Size aVisSizePixel = GetActiveWindow()->GetOutputSizePixel();
     314           0 :     Rectangle aVisAreaWin = GetActiveWindow()->PixelToLogic( Rectangle( Point(0,0), aVisSizePixel) );
     315           0 :     VisAreaChanged(aVisAreaWin);
     316             : 
     317           0 :     ::sd::View* pView = GetView();
     318           0 :     if (pView)
     319             :     {
     320           0 :         pView->VisAreaChanged(GetActiveWindow());
     321             :     }
     322             : 
     323           0 :     if (mbHasRulers)
     324             :     {
     325           0 :         UpdateHRuler();
     326           0 :         UpdateVRuler();
     327             :     }
     328           0 : }
     329             : 
     330             : /**
     331             :  * Set zoom factor for all split windows.
     332             :  */
     333           0 : void ViewShell::SetZoom(long nZoom)
     334             : {
     335           0 :     Fraction aUIScale(nZoom, 100);
     336           0 :     aUIScale *= GetDoc()->GetUIScale();
     337             : 
     338           0 :     if (mpHorizontalRuler.get() != NULL)
     339           0 :         mpHorizontalRuler->SetZoom(aUIScale);
     340             : 
     341           0 :     if (mpVerticalRuler.get() != NULL)
     342           0 :         mpVerticalRuler->SetZoom(aUIScale);
     343             : 
     344           0 :     if (mpContentWindow.get() != NULL)
     345             :     {
     346           0 :         mpContentWindow->SetZoomIntegral(nZoom);
     347             : 
     348             :         // #i74769# Here is a 2nd way (besides Window::Scroll) to set the visible prt
     349             :         // of the window. It needs - like Scroll(SCROLL_CHILDREN) does - also to move
     350             :         // the child windows. I am trying INVALIDATE_CHILDREN here which makes things better,
     351             :         // but does not solve the problem completely. Neet to ask PL.
     352           0 :         mpContentWindow->Invalidate(INVALIDATE_CHILDREN);
     353             :     }
     354             : 
     355           0 :     Size aVisSizePixel = GetActiveWindow()->GetOutputSizePixel();
     356           0 :     Rectangle aVisAreaWin = GetActiveWindow()->PixelToLogic( Rectangle( Point(0,0), aVisSizePixel) );
     357           0 :     VisAreaChanged(aVisAreaWin);
     358             : 
     359           0 :     ::sd::View* pView = GetView();
     360           0 :     if (pView)
     361             :     {
     362           0 :         pView->VisAreaChanged(GetActiveWindow());
     363             :     }
     364             : 
     365           0 :     UpdateScrollBars();
     366           0 : }
     367             : 
     368             : /**
     369             :  * Set zoom rectangle for active window. Sets all split windows to the same zoom
     370             :  * factor.
     371             :  */
     372         726 : void ViewShell::SetZoomRect(const Rectangle& rZoomRect)
     373             : {
     374         726 :     long nZoom = GetActiveWindow()->SetZoomRect(rZoomRect);
     375         726 :     Fraction aUIScale(nZoom, 100);
     376         726 :     aUIScale *= GetDoc()->GetUIScale();
     377             : 
     378         726 :     Point aPos = GetActiveWindow()->GetWinViewPos();
     379             : 
     380         726 :     if (mpHorizontalRuler.get() != NULL)
     381         483 :         mpHorizontalRuler->SetZoom(aUIScale);
     382             : 
     383         726 :     if (mpVerticalRuler.get() != NULL)
     384         483 :         mpVerticalRuler->SetZoom(aUIScale);
     385             : 
     386         726 :     if (mpContentWindow.get() != NULL)
     387             :     {
     388         726 :         Point aNewPos = mpContentWindow->GetWinViewPos();
     389         726 :         aNewPos.X() = aPos.X();
     390         726 :         aNewPos.Y() = aPos.Y();
     391         726 :         mpContentWindow->SetZoomIntegral(nZoom);
     392         726 :         mpContentWindow->SetWinViewPos(aNewPos);
     393         726 :         mpContentWindow->UpdateMapOrigin();
     394             : 
     395             :         // #i74769# see above
     396         726 :         mpContentWindow->Invalidate(INVALIDATE_CHILDREN);
     397             :     }
     398             : 
     399         726 :     Size aVisSizePixel = GetActiveWindow()->GetOutputSizePixel();
     400         726 :     Rectangle aVisAreaWin = GetActiveWindow()->PixelToLogic( Rectangle( Point(0,0), aVisSizePixel) );
     401         726 :     VisAreaChanged(aVisAreaWin);
     402             : 
     403         726 :     ::sd::View* pView = GetView();
     404         726 :     if (pView)
     405             :     {
     406         726 :         pView->VisAreaChanged(GetActiveWindow());
     407             :     }
     408             : 
     409         726 :     UpdateScrollBars();
     410         726 : }
     411             : 
     412             : /**
     413             :  * Initialize imaging parameters for all split windows.
     414             :  */
     415         368 : void ViewShell::InitWindows(const Point& rViewOrigin, const Size& rViewSize,
     416             :                               const Point& rWinPos, bool bUpdate)
     417             : {
     418         368 :     if (mpContentWindow.get() != NULL)
     419             :     {
     420         368 :         mpContentWindow->SetViewOrigin(rViewOrigin);
     421         368 :         mpContentWindow->SetViewSize(rViewSize);
     422         368 :         mpContentWindow->SetWinViewPos(rWinPos);
     423             : 
     424         368 :         if ( bUpdate )
     425             :         {
     426         156 :             mpContentWindow->UpdateMapOrigin();
     427         156 :             mpContentWindow->Invalidate();
     428             :         }
     429             :     }
     430             : 
     431         368 :     Size aVisSizePixel = GetActiveWindow()->GetOutputSizePixel();
     432         368 :     Rectangle aVisAreaWin = GetActiveWindow()->PixelToLogic( Rectangle( Point(0,0), aVisSizePixel) );
     433         368 :     VisAreaChanged(aVisAreaWin);
     434             : 
     435         368 :     ::sd::View* pView = GetView();
     436         368 :     if (pView)
     437             :     {
     438         368 :         pView->VisAreaChanged(GetActiveWindow());
     439             :     }
     440         368 : }
     441             : 
     442             : /**
     443             :  * Invalidate all split windows below the ?provided rectangle.
     444             :  */
     445         155 : void ViewShell::InvalidateWindows()
     446             : {
     447         155 :     if (mpContentWindow.get() != NULL)
     448         155 :         mpContentWindow->Invalidate();
     449         155 : }
     450             : 
     451             : /**
     452             :  * Draw a selection rectangle with the ?provided pen on all split windows.
     453             :  */
     454           0 : void ViewShell::DrawMarkRect(const Rectangle& rRect) const
     455             : {
     456           0 :     if (mpContentWindow.get() != NULL)
     457             :     {
     458           0 :         mpContentWindow->InvertTracking(rRect, SHOWTRACK_OBJECT | SHOWTRACK_WINDOW);
     459             :     }
     460           0 : }
     461             : 
     462           0 : void ViewShell::SetPageSizeAndBorder(PageKind ePageKind, const Size& rNewSize,
     463             :                                        long nLeft, long nRight,
     464             :                                        long nUpper, long nLower, bool bScaleAll,
     465             :                                        Orientation eOrientation, sal_uInt16 nPaperBin,
     466             :                                        bool bBackgroundFullSize)
     467             : {
     468           0 :     SdPage* pPage = 0;
     469           0 :     SdUndoGroup* pUndoGroup = NULL;
     470           0 :     pUndoGroup = new SdUndoGroup(GetDoc());
     471           0 :     OUString aString(SdResId(STR_UNDO_CHANGE_PAGEFORMAT));
     472           0 :     pUndoGroup->SetComment(aString);
     473           0 :     SfxViewShell* pViewShell = GetViewShell();
     474             :     OSL_ASSERT (pViewShell!=NULL);
     475             : 
     476           0 :     sal_uInt16 i, nPageCnt = GetDoc()->GetMasterSdPageCount(ePageKind);
     477             : 
     478           0 :     Broadcast (ViewShellHint(ViewShellHint::HINT_PAGE_RESIZE_START));
     479             : 
     480           0 :     for (i = 0; i < nPageCnt; i++)
     481             :     {
     482             :         // first, handle all master pages
     483           0 :         pPage = GetDoc()->GetMasterSdPage(i, ePageKind);
     484             : 
     485             :         SdUndoAction* pUndo = new SdPageFormatUndoAction(GetDoc(), pPage,
     486           0 :                             pPage->GetSize(),
     487           0 :                             pPage->GetLftBorder(), pPage->GetRgtBorder(),
     488           0 :                             pPage->GetUppBorder(), pPage->GetLwrBorder(),
     489           0 :                             pPage->GetOrientation(),
     490           0 :                             pPage->GetPaperBin(),
     491           0 :                             pPage->IsBackgroundFullSize(),
     492             :                             rNewSize,
     493             :                             nLeft, nRight,
     494             :                             nUpper, nLower,
     495             :                             bScaleAll,
     496             :                             eOrientation,
     497             :                             nPaperBin,
     498           0 :                             bBackgroundFullSize);
     499           0 :         pUndoGroup->AddAction(pUndo);
     500             : 
     501           0 :         if (rNewSize.Width() > 0 ||
     502           0 :             nLeft  >= 0 || nRight >= 0 || nUpper >= 0 || nLower >= 0)
     503             :         {
     504           0 :             Rectangle aNewBorderRect(nLeft, nUpper, nRight, nLower);
     505           0 :             pPage->ScaleObjects(rNewSize, aNewBorderRect, bScaleAll);
     506             : 
     507           0 :             if (rNewSize.Width() > 0)
     508           0 :                 pPage->SetSize(rNewSize);
     509             :         }
     510             : 
     511           0 :         if( nLeft  >= 0 || nRight >= 0 || nUpper >= 0 || nLower >= 0 )
     512             :         {
     513           0 :             pPage->SetBorder(nLeft, nUpper, nRight, nLower);
     514             :         }
     515             : 
     516           0 :         pPage->SetOrientation(eOrientation);
     517           0 :         pPage->SetPaperBin( nPaperBin );
     518           0 :         pPage->SetBackgroundFullSize( bBackgroundFullSize );
     519             : 
     520           0 :         if ( ePageKind == PK_STANDARD )
     521           0 :             GetDoc()->GetMasterSdPage(i, PK_NOTES)->CreateTitleAndLayout();
     522             : 
     523           0 :         pPage->CreateTitleAndLayout();
     524             :     }
     525             : 
     526           0 :     nPageCnt = GetDoc()->GetSdPageCount(ePageKind);
     527             : 
     528           0 :     for (i = 0; i < nPageCnt; i++)
     529             :     {
     530             :         // then, handle all pages
     531           0 :         pPage = GetDoc()->GetSdPage(i, ePageKind);
     532             : 
     533             :         SdUndoAction* pUndo = new SdPageFormatUndoAction(GetDoc(), pPage,
     534           0 :                                 pPage->GetSize(),
     535           0 :                                 pPage->GetLftBorder(), pPage->GetRgtBorder(),
     536           0 :                                 pPage->GetUppBorder(), pPage->GetLwrBorder(),
     537           0 :                                 pPage->GetOrientation(),
     538           0 :                                 pPage->GetPaperBin(),
     539           0 :                                 pPage->IsBackgroundFullSize(),
     540             :                                 rNewSize,
     541             :                                 nLeft, nRight,
     542             :                                 nUpper, nLower,
     543             :                                 bScaleAll,
     544             :                                 eOrientation,
     545             :                                 nPaperBin,
     546           0 :                                 bBackgroundFullSize);
     547           0 :         pUndoGroup->AddAction(pUndo);
     548             : 
     549           0 :         if (rNewSize.Width() > 0 ||
     550           0 :             nLeft  >= 0 || nRight >= 0 || nUpper >= 0 || nLower >= 0)
     551             :         {
     552           0 :             Rectangle aNewBorderRect(nLeft, nUpper, nRight, nLower);
     553           0 :             pPage->ScaleObjects(rNewSize, aNewBorderRect, bScaleAll);
     554             : 
     555           0 :             if (rNewSize.Width() > 0)
     556           0 :                 pPage->SetSize(rNewSize);
     557             :         }
     558             : 
     559           0 :         if( nLeft  >= 0 || nRight >= 0 || nUpper >= 0 || nLower >= 0 )
     560             :         {
     561           0 :             pPage->SetBorder(nLeft, nUpper, nRight, nLower);
     562             :         }
     563             : 
     564           0 :         pPage->SetOrientation(eOrientation);
     565           0 :         pPage->SetPaperBin( nPaperBin );
     566           0 :         pPage->SetBackgroundFullSize( bBackgroundFullSize );
     567             : 
     568           0 :         if ( ePageKind == PK_STANDARD )
     569             :         {
     570           0 :             SdPage* pNotesPage = GetDoc()->GetSdPage(i, PK_NOTES);
     571           0 :             pNotesPage->SetAutoLayout( pNotesPage->GetAutoLayout() );
     572             :         }
     573             : 
     574           0 :         pPage->SetAutoLayout( pPage->GetAutoLayout() );
     575             :     }
     576             : 
     577             :     // adjust handout page to new format of the standard page
     578           0 :     if( (ePageKind == PK_STANDARD) || (ePageKind == PK_HANDOUT) )
     579           0 :         GetDoc()->GetSdPage(0, PK_HANDOUT)->CreateTitleAndLayout(true);
     580             : 
     581             :     // handed over undo group to undo manager
     582           0 :     pViewShell->GetViewFrame()->GetObjectShell()
     583           0 :         ->GetUndoManager()->AddUndoAction(pUndoGroup);
     584             : 
     585           0 :     long nWidth = pPage->GetSize().Width();
     586           0 :     long nHeight = pPage->GetSize().Height();
     587             : 
     588           0 :     Point aPageOrg = Point(nWidth, nHeight / 2);
     589           0 :     Size aViewSize = Size(nWidth * 3, nHeight * 2);
     590             : 
     591           0 :     InitWindows(aPageOrg, aViewSize, Point(-1, -1), true);
     592             : 
     593           0 :     Point aVisAreaPos;
     594             : 
     595           0 :     if ( GetDocSh()->GetCreateMode() == SFX_CREATE_MODE_EMBEDDED )
     596             :     {
     597           0 :         aVisAreaPos = GetDocSh()->GetVisArea(ASPECT_CONTENT).TopLeft();
     598             :     }
     599             : 
     600           0 :     ::sd::View* pView = GetView();
     601           0 :     if (pView)
     602             :     {
     603           0 :         pView->SetWorkArea(Rectangle(Point() - aVisAreaPos - aPageOrg, aViewSize));
     604             :     }
     605             : 
     606           0 :     UpdateScrollBars();
     607             : 
     608           0 :     Point aNewOrigin(pPage->GetLftBorder(), pPage->GetUppBorder());
     609             : 
     610           0 :     if (pView)
     611             :     {
     612           0 :         pView->GetSdrPageView()->SetPageOrigin(aNewOrigin);
     613             :     }
     614             : 
     615           0 :     pViewShell->GetViewFrame()->GetBindings().Invalidate(SID_RULER_NULL_OFFSET);
     616             : 
     617             :     // zoom onto (new) page size
     618             :     pViewShell->GetViewFrame()->GetDispatcher()->Execute(SID_SIZE_PAGE,
     619           0 :             SfxCallMode::ASYNCHRON | SfxCallMode::RECORD);
     620             : 
     621           0 :     Broadcast (ViewShellHint(ViewShellHint::HINT_PAGE_RESIZE_END));
     622           0 : }
     623             : 
     624             : /**
     625             :  * Set zoom factor for InPlace
     626             :  */
     627           0 : void ViewShell::SetZoomFactor(const Fraction& rZoomX, const Fraction&)
     628             : {
     629           0 :     long nZoom = (long)((double) rZoomX * 100);
     630           0 :     SetZoom(nZoom);
     631           0 : }
     632             : 
     633         981 : void ViewShell::SetActiveWindow (::sd::Window* pWin)
     634             : {
     635         981 :     SfxViewShell* pViewShell = GetViewShell();
     636             :     OSL_ASSERT (pViewShell!=NULL);
     637             : 
     638         981 :     if (pViewShell->GetWindow() != pWin)
     639             :     {
     640             :         // #i31551# was wrong, it may have been a problem with the repaint at that time.
     641             :         // For transparent form controls, it is necessary to have that flag set, all apps
     642             :         // do set it. Enabling again.
     643         981 :         if (pWin)
     644             :         {
     645         981 :             pWin->EnableChildTransparentMode();
     646             :         }
     647             :     }
     648             : 
     649         981 :     if (mpActiveWindow != pWin)
     650         338 :         mpActiveWindow = pWin;
     651             : 
     652             :     // The rest of this function is not guarded anymore against calling this
     653             :     // method with an already active window because the functions may still
     654             :     // point to the old window when the new one has already been assigned to
     655             :     // pWindow elsewhere.
     656         981 :     ::sd::View* pView = GetView();
     657         981 :     if (pView)
     658             :     {
     659         643 :         pView->SetActualWin(pWin);
     660             :     }
     661         981 :     if(HasCurrentFunction())
     662             :     {
     663         643 :         GetCurrentFunction()->SetWindow(pWin);
     664             :     }
     665         981 : }
     666             : 
     667           0 : bool ViewShell::RequestHelp(const HelpEvent& rHEvt, ::sd::Window*)
     668             : {
     669           0 :     bool bReturn = false;
     670             : 
     671           0 :     if (rHEvt.GetMode())
     672             :     {
     673           0 :         if( GetView() )
     674           0 :             bReturn = GetView()->getSmartTags().RequestHelp(rHEvt);
     675             : 
     676           0 :         if(!bReturn && HasCurrentFunction())
     677             :         {
     678           0 :             bReturn = GetCurrentFunction()->RequestHelp(rHEvt);
     679             :         }
     680             :     }
     681             : 
     682           0 :     return(bReturn);
     683             : }
     684             : 
     685           0 : void ViewShell::SetFrameView (FrameView* pNewFrameView)
     686             : {
     687           0 :     mpFrameView = pNewFrameView;
     688           0 :     ReadFrameViewData (mpFrameView);
     689           0 : }
     690             : 
     691             : /*************************************************************************
     692             : |*
     693             : |* Read FrameViews data and set actual views data
     694             : |*
     695             : \************************************************************************/
     696             : 
     697           0 : void ViewShell::ReadFrameViewData(FrameView*)
     698             : {
     699           0 : }
     700             : 
     701             : /*************************************************************************
     702             : |*
     703             : |* Write actual views data to FrameView
     704             : |*
     705             : \************************************************************************/
     706             : 
     707           0 : void ViewShell::WriteFrameViewData()
     708             : {
     709           0 : }
     710             : 
     711           0 : bool ViewShell::ActivateObject(SdrOle2Obj* pObj, long nVerb)
     712             : {
     713           0 :     ErrCode aErrCode = 0;
     714             : 
     715           0 :     SfxErrorContext aEC(ERRCTX_SO_DOVERB, GetActiveWindow(), RID_SO_ERRCTX);
     716           0 :     bool bAbort = false;
     717           0 :     GetDocSh()->SetWaitCursor( true );
     718           0 :     SfxViewShell* pViewShell = GetViewShell();
     719             :     OSL_ASSERT (pViewShell!=NULL);
     720           0 :     bool bChangeDefaultsForChart = false;
     721           0 :     OUString aName;
     722             : 
     723           0 :     uno::Reference < embed::XEmbeddedObject > xObj = pObj->GetObjRef();
     724           0 :     if ( !xObj.is() )
     725             :     {
     726             :         // provide OLE object to empty OLE object
     727           0 :         aName = pObj->GetProgName();
     728           0 :         OUString aObjName;
     729           0 :         SvGlobalName aClass;
     730             : 
     731           0 :         if( aName == "StarChart"  || aName == "StarOrg" )
     732             :         {
     733           0 :             if( SvtModuleOptions().IsChart() )
     734             :             {
     735           0 :                 aClass = SvGlobalName( SO3_SCH_CLASSID );
     736           0 :                 bChangeDefaultsForChart = true;
     737             :             }
     738             :         }
     739           0 :         else if( aName == "StarCalc" )
     740             :         {
     741           0 :             if( SvtModuleOptions().IsCalc() )
     742           0 :                 aClass = SvGlobalName( SO3_SC_CLASSID );
     743             :         }
     744           0 :         else if( aName == "StarMath" )
     745             :         {
     746           0 :             if( SvtModuleOptions().IsMath() )
     747           0 :                 aClass = SvGlobalName( SO3_SM_CLASSID );
     748             :         }
     749             : 
     750           0 :         if ( aClass != SvGlobalName() )
     751           0 :             xObj = GetDocSh()->GetEmbeddedObjectContainer().CreateEmbeddedObject( aClass.GetByteSequence(), aObjName );
     752             : 
     753           0 :         if( !xObj.is() )
     754             :         {
     755           0 :             aName = "";
     756             : 
     757             :             // call dialog "insert OLE object"
     758           0 :             GetDocSh()->SetWaitCursor( false );
     759             :             pViewShell->GetViewFrame()->GetDispatcher()->Execute(
     760             :                 SID_INSERT_OBJECT,
     761           0 :                 SfxCallMode::SYNCHRON | SfxCallMode::RECORD);
     762           0 :             xObj = pObj->GetObjRef();
     763           0 :             GetDocSh()->SetWaitCursor( true );
     764             : 
     765           0 :             if (!xObj.is())
     766             :             {
     767           0 :                 bAbort = true;
     768             :             }
     769             :         }
     770             : 
     771           0 :         if ( xObj.is() )
     772             :         {
     773             :             // OLE object is no longer empty
     774           0 :             pObj->SetEmptyPresObj(false);
     775           0 :             pObj->SetOutlinerParaObject(NULL);
     776           0 :             pObj->SetGraphic(NULL);
     777             : 
     778             :             // the empty OLE object gets a new IPObj
     779           0 :             if (!aName.isEmpty())
     780             :             {
     781           0 :                 pObj->SetObjRef(xObj);
     782           0 :                 pObj->SetName(aObjName);
     783           0 :                 pObj->SetPersistName(aObjName);
     784             :             }
     785             :             else
     786             :             {
     787             :                 // insertion was done by the dialog
     788           0 :                 pObj->SetObjRef(xObj);
     789             :             }
     790             : 
     791           0 :             Rectangle aRect = pObj->GetLogicRect();
     792             : 
     793           0 :             if ( pObj->GetAspect() != embed::Aspects::MSOLE_ICON )
     794             :             {
     795           0 :                 awt::Size aSz;
     796           0 :                 aSz.Width = aRect.GetWidth();
     797           0 :                 aSz.Height = aRect.GetHeight();
     798           0 :                 xObj->setVisualAreaSize( pObj->GetAspect(), aSz );
     799             :             }
     800             : 
     801           0 :             GetViewShellBase().SetVerbs( xObj->getSupportedVerbs() );
     802             : 
     803           0 :             nVerb = SVVERB_SHOW;
     804             :         }
     805             :         else
     806             :         {
     807           0 :             aErrCode = ERRCODE_SFX_OLEGENERAL;
     808           0 :         }
     809             :     }
     810             : 
     811           0 :     if( aErrCode == 0 )
     812             :     {
     813           0 :         ::sd::View* pView = GetView();
     814             : 
     815           0 :         if (pView->IsTextEdit())
     816             :         {
     817           0 :             pView->SdrEndTextEdit();
     818             :         }
     819             : 
     820             :         SfxInPlaceClient* pSdClient =
     821             :             static_cast<Client*>(pViewShell->FindIPClient(
     822           0 :                 pObj->GetObjRef(), GetActiveWindow()));
     823             : 
     824           0 :         if ( !pSdClient )
     825             :         {
     826           0 :             pSdClient = new Client(pObj, this, GetActiveWindow());
     827             :         }
     828             : 
     829           0 :         Rectangle aRect = pObj->GetLogicRect();
     830             : 
     831             :         {
     832             :             // #i118485# center on BoundRect for activation,
     833             :             // OLE may be sheared/rotated now
     834           0 :             const Rectangle& rBoundRect = pObj->GetCurrentBoundRect();
     835           0 :             const Point aDelta(rBoundRect.Center() - aRect.Center());
     836           0 :             aRect.Move(aDelta.X(), aDelta.Y());
     837             :         }
     838             : 
     839           0 :         Size aDrawSize = aRect.GetSize();
     840             : 
     841           0 :         MapMode aMapMode( GetDoc()->GetScaleUnit() );
     842           0 :         Size aObjAreaSize = pObj->GetOrigObjSize( &aMapMode );
     843           0 :         if( pObj->IsChart() ) //charts never should be stretched see #i84323# for example
     844           0 :             aObjAreaSize = aDrawSize;
     845             : 
     846           0 :         Fraction aScaleWidth (aDrawSize.Width(),  aObjAreaSize.Width() );
     847           0 :         Fraction aScaleHeight(aDrawSize.Height(), aObjAreaSize.Height() );
     848           0 :         aScaleWidth.ReduceInaccurate(10);       // kompatibel zum SdrOle2Obj
     849           0 :         aScaleHeight.ReduceInaccurate(10);
     850           0 :         pSdClient->SetSizeScale(aScaleWidth, aScaleHeight);
     851             : 
     852             :         // visible section is only changed in-place!
     853           0 :         aRect.SetSize(aObjAreaSize);
     854             :         // the object area size must be set after scaling, since it triggers the resizing
     855           0 :         pSdClient->SetObjArea(aRect);
     856             : 
     857           0 :         if( bChangeDefaultsForChart && xObj.is())
     858             :         {
     859           0 :             ChartHelper::AdaptDefaultsForChart( xObj );
     860             :         }
     861             : 
     862           0 :         pSdClient->DoVerb(nVerb);   // if necessary, ErrCode is outputted by Sfx
     863           0 :         pViewShell->GetViewFrame()->GetBindings().Invalidate(
     864           0 :             SID_NAVIGATOR_STATE, true, false);
     865             :     }
     866             : 
     867           0 :     GetDocSh()->SetWaitCursor( false );
     868             : 
     869           0 :     if (aErrCode != 0 && !bAbort)
     870             :     {
     871           0 :         ErrorHandler::HandleError(* new StringErrorInfo(aErrCode, OUString() ) );
     872             :     }
     873             : 
     874           0 :     return aErrCode == 0;
     875             : }
     876             : 
     877             : /**
     878             :  * @returns enclosing rectangle of all (split-) windows.
     879             :  */
     880           0 : const Rectangle& ViewShell::GetAllWindowRect()
     881             : {
     882             :     maAllWindowRectangle.SetPos(
     883           0 :         mpContentWindow->OutputToScreenPixel(Point(0,0)));
     884           0 :     return maAllWindowRectangle;
     885             : }
     886             : 
     887           0 : void ViewShell::ReadUserData(const OUString&)
     888             : {
     889             :     // zoom onto VisArea from FrameView
     890             :     GetViewShell()->GetViewFrame()->GetDispatcher()->Execute(SID_SIZE_VISAREA,
     891           0 :         SfxCallMode::ASYNCHRON | SfxCallMode::RECORD);
     892           0 : }
     893             : 
     894           0 : void ViewShell::WriteUserData(OUString&)
     895             : {
     896             :     // writing of our data is always done in WriteFrameViewData()
     897           0 :     WriteFrameViewData();
     898           0 : }
     899             : 
     900             : /**
     901             :  * Switch ruler on/off
     902             :  */
     903         160 : void ViewShell::SetRuler(bool bRuler)
     904             : {
     905         160 :     mbHasRulers = ( bRuler && !GetDocSh()->IsPreview() ); // no rulers on preview mode
     906             : 
     907         160 :     if (mpHorizontalRuler.get() != NULL)
     908             :     {
     909           0 :         if (mbHasRulers)
     910             :         {
     911           0 :             mpHorizontalRuler->Show();
     912             :         }
     913             :         else
     914             :         {
     915           0 :             mpHorizontalRuler->Hide();
     916             :         }
     917             :     }
     918             : 
     919         160 :     if (mpVerticalRuler.get() != NULL)
     920             :     {
     921           0 :         if (mbHasRulers)
     922             :         {
     923           0 :             mpVerticalRuler->Show();
     924             :         }
     925             :         else
     926             :         {
     927           0 :             mpVerticalRuler->Hide();
     928             :         }
     929             :     }
     930             : 
     931             :     OSL_ASSERT(GetViewShell()!=NULL);
     932         160 :     if (IsMainViewShell())
     933           0 :         GetViewShell()->InvalidateBorder();
     934         160 : }
     935             : 
     936           0 : sal_Int8 ViewShell::AcceptDrop (
     937             :     const AcceptDropEvent& rEvt,
     938             :     DropTargetHelper& rTargetHelper,
     939             :     ::sd::Window* pTargetWindow,
     940             :     sal_uInt16 nPage,
     941             :     sal_uInt16 nLayer)
     942             : {
     943           0 :     ::sd::View* pView = GetView();
     944           0 :     return( pView ? pView->AcceptDrop( rEvt, rTargetHelper, pTargetWindow, nPage, nLayer ) : DND_ACTION_NONE );
     945             : }
     946             : 
     947           0 : sal_Int8 ViewShell::ExecuteDrop (
     948             :     const ExecuteDropEvent& rEvt,
     949             :     DropTargetHelper& rTargetHelper,
     950             :     ::sd::Window* pTargetWindow,
     951             :     sal_uInt16 nPage,
     952             :     sal_uInt16 nLayer)
     953             : {
     954           0 :     ::sd::View* pView = GetView();
     955           0 :     return( pView ? pView->ExecuteDrop( rEvt, rTargetHelper, pTargetWindow, nPage, nLayer ) : DND_ACTION_NONE );
     956             : }
     957             : 
     958         214 : void ViewShell::WriteUserDataSequence ( css::uno::Sequence < css::beans::PropertyValue >& rSequence, bool bBrowse)
     959             : {
     960         214 :     const sal_Int32 nIndex = rSequence.getLength();
     961         214 :     rSequence.realloc( nIndex + 1 );
     962             : 
     963             :     OSL_ASSERT (GetViewShell()!=NULL);
     964             :     // Get the view id from the view shell in the center pane.  This will
     965             :     // usually be the called view shell, but to be on the safe side we call
     966             :     // the main view shell explicitly.
     967         214 :     sal_uInt16 nViewID (IMPRESS_FACTORY_ID);
     968         214 :     if (GetViewShellBase().GetMainViewShell().get() != NULL)
     969         214 :         nViewID = GetViewShellBase().GetMainViewShell()->mpImpl->GetViewId();
     970         214 :     rSequence[nIndex].Name = OUString( sUNO_View_ViewId );
     971         214 :     OUStringBuffer sBuffer( "view" );
     972         214 :     sBuffer.append( static_cast<sal_Int32>(nViewID));
     973         214 :     rSequence[nIndex].Value <<= sBuffer.makeStringAndClear();
     974             : 
     975         214 :     mpFrameView->WriteUserDataSequence( rSequence, bBrowse );
     976         214 : }
     977             : 
     978         212 : void ViewShell::ReadUserDataSequence ( const css::uno::Sequence < css::beans::PropertyValue >& rSequence, bool bBrowse )
     979             : {
     980         212 :     mpFrameView->ReadUserDataSequence( rSequence, bBrowse );
     981         212 : }
     982             : 
     983        1538 : void ViewShell::VisAreaChanged(const Rectangle& rRect)
     984             : {
     985             :     OSL_ASSERT (GetViewShell()!=NULL);
     986        1538 :     GetViewShell()->VisAreaChanged(rRect);
     987        1538 : }
     988             : 
     989           0 : void ViewShell::SetWinViewPos(const Point& rWinPos, bool bUpdate)
     990             : {
     991           0 :     if (mpContentWindow.get() != NULL)
     992             :     {
     993           0 :         mpContentWindow->SetWinViewPos(rWinPos);
     994             : 
     995           0 :         if ( bUpdate )
     996             :         {
     997           0 :             mpContentWindow->UpdateMapOrigin();
     998           0 :             mpContentWindow->Invalidate();
     999             :         }
    1000             :     }
    1001             : 
    1002           0 :     if (mbHasRulers)
    1003             :     {
    1004           0 :         UpdateHRuler();
    1005           0 :         UpdateVRuler();
    1006             :     }
    1007             : 
    1008           0 :     UpdateScrollBars();
    1009             : 
    1010           0 :     Size aVisSizePixel = GetActiveWindow()->GetOutputSizePixel();
    1011           0 :     Rectangle aVisAreaWin = GetActiveWindow()->PixelToLogic( Rectangle( Point(0,0), aVisSizePixel) );
    1012           0 :     VisAreaChanged(aVisAreaWin);
    1013             : 
    1014           0 :     ::sd::View* pView = GetView();
    1015           0 :     if (pView)
    1016             :     {
    1017           0 :         pView->VisAreaChanged(GetActiveWindow());
    1018             :     }
    1019           0 : }
    1020             : 
    1021           0 : Point ViewShell::GetWinViewPos() const
    1022             : {
    1023           0 :     return mpContentWindow->GetWinViewPos();
    1024             : }
    1025             : 
    1026           0 : Point ViewShell::GetViewOrigin() const
    1027             : {
    1028           0 :     return mpContentWindow->GetViewOrigin();
    1029             : }
    1030             : 
    1031         114 : } // end of namespace sd
    1032             : 
    1033             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10