LCOV - code coverage report
Current view: top level - libreoffice/svx/source/dialog - pagectrl.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 217 0.0 %
Date: 2012-12-27 Functions: 0 18 0.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 <vcl/bitmap.hxx>
      21             : #include <editeng/frmdiritem.hxx>
      22             : #include <svx/pageitem.hxx>
      23             : #include <svx/pagectrl.hxx>
      24             : #include <editeng/boxitem.hxx>
      25             : 
      26             : #include <algorithm>
      27             : 
      28             : // struct PageWindow_Impl ------------------------------------------------
      29             : 
      30           0 : struct PageWindow_Impl
      31             : {
      32             :     SvxBoxItem*     pBorder;
      33             :     Bitmap          aBitmap;
      34             :     bool            bBitmap;
      35             :     sal_Bool        bResetBackground;
      36             :     sal_Bool        bFrameDirection;
      37             :     sal_Int32       nFrameDirection;
      38             : 
      39             : 
      40           0 :     PageWindow_Impl() :
      41             :         pBorder(0),
      42             :         bBitmap(sal_False),
      43             :         bResetBackground(sal_False),
      44             :         bFrameDirection(sal_False),
      45           0 :         nFrameDirection(0) {}
      46             : 
      47           0 :     void        EnableFrameDirection(sal_Bool bEnable){bFrameDirection = bEnable;}
      48           0 :     void        SetFrameDirection(sal_Int32 nDirection){nFrameDirection = nDirection;}
      49             : 
      50             : };
      51             : 
      52             : // STATIC DATA -----------------------------------------------------------
      53             : 
      54             : #define CELL_WIDTH      1600L
      55             : #define CELL_HEIGHT      800L
      56             : 
      57             : // class SvxPageWindow ---------------------------------------------------
      58             : 
      59           0 : SvxPageWindow::SvxPageWindow( Window* pParent, const ResId& rId ) :
      60             : 
      61             :     Window( pParent, rId ),
      62             : 
      63             :     nTop        ( 0 ),
      64             :     nBottom     ( 0 ),
      65             :     nLeft       ( 0 ),
      66             :     nRight      ( 0 ),
      67             :     aColor      ( COL_TRANSPARENT ),
      68             :     nHdLeft     ( 0 ),
      69             :     nHdRight    ( 0 ),
      70             :     nHdDist     ( 0 ),
      71             :     nHdHeight   ( 0 ),
      72             :     aHdColor    ( COL_TRANSPARENT ),
      73             :     pHdBorder   ( 0 ),
      74             :     nFtLeft     ( 0 ),
      75             :     nFtRight    ( 0 ),
      76             :     nFtDist     ( 0 ),
      77             :     nFtHeight   ( 0 ),
      78             :     aFtColor    ( COL_TRANSPARENT ),
      79             :     pFtBorder   ( 0 ),
      80             :     bFooter     ( sal_False ),
      81             :     bHeader     ( sal_False ),
      82             :     bTable      ( sal_False ),
      83             :     bHorz       ( sal_False ),
      84             :     bVert       ( sal_False ),
      85           0 :     eUsage      ( SVX_PAGE_ALL )
      86             : 
      87             : {
      88           0 :     pImpl = new PageWindow_Impl;
      89             : 
      90             :     // Count in Twips by default
      91           0 :     SetMapMode( MapMode( MAP_TWIP ) );
      92           0 :     aWinSize = GetOutputSizePixel();
      93           0 :     aWinSize.Height() -= 4;
      94           0 :     aWinSize.Width() -= 4;
      95             : 
      96           0 :     aWinSize = PixelToLogic( aWinSize );
      97           0 :     SetBackground();
      98           0 : }
      99             : 
     100           0 : SvxPageWindow::SvxPageWindow( Window* pParent ) :
     101             : 
     102             :     Window( pParent ),
     103             : 
     104             :     nTop        ( 0 ),
     105             :     nBottom     ( 0 ),
     106             :     nLeft       ( 0 ),
     107             :     nRight      ( 0 ),
     108             :     aColor      ( COL_TRANSPARENT ),
     109             :     nHdLeft     ( 0 ),
     110             :     nHdRight    ( 0 ),
     111             :     nHdDist     ( 0 ),
     112             :     nHdHeight   ( 0 ),
     113             :     aHdColor    ( COL_TRANSPARENT ),
     114             :     pHdBorder   ( 0 ),
     115             :     nFtLeft     ( 0 ),
     116             :     nFtRight    ( 0 ),
     117             :     nFtDist     ( 0 ),
     118             :     nFtHeight   ( 0 ),
     119             :     aFtColor    ( COL_TRANSPARENT ),
     120             :     pFtBorder   ( 0 ),
     121             :     bFooter     ( sal_False ),
     122             :     bHeader     ( sal_False ),
     123             :     bTable      ( sal_False ),
     124             :     bHorz       ( sal_False ),
     125             :     bVert       ( sal_False ),
     126           0 :     eUsage      ( SVX_PAGE_ALL )
     127             : {
     128           0 :     pImpl = new PageWindow_Impl;
     129             : 
     130             :     // Count in Twips by default
     131           0 :     SetMapMode( MapMode( MAP_TWIP ) );
     132           0 :     aWinSize = GetOptimalSize(WINDOWSIZE_PREFERRED);
     133           0 :     aWinSize.Height() -= 4;
     134           0 :     aWinSize.Width() -= 4;
     135             : 
     136           0 :     aWinSize = PixelToLogic( aWinSize );
     137           0 :     SetBackground();
     138           0 : }
     139             : 
     140             : // -----------------------------------------------------------------------
     141             : 
     142           0 : SvxPageWindow::~SvxPageWindow()
     143             : {
     144           0 :     delete pImpl;
     145           0 :     delete pHdBorder;
     146           0 :     delete pFtBorder;
     147           0 : }
     148             : 
     149             : // -----------------------------------------------------------------------
     150             : 
     151           0 : void SvxPageWindow::Paint( const Rectangle& )
     152             : {
     153           0 :     Fraction aXScale( aWinSize.Width(), std::max( (long) (aSize.Width() * 2 + aSize.Width() / 8), 1L ) );
     154           0 :     Fraction aYScale( aWinSize.Height(), std::max( aSize.Height(), 1L ) );
     155           0 :     MapMode aMapMode( GetMapMode() );
     156             : 
     157           0 :     if ( aYScale < aXScale )
     158             :     {
     159           0 :         aMapMode.SetScaleX( aYScale );
     160           0 :         aMapMode.SetScaleY( aYScale );
     161             :     }
     162             :     else
     163             :     {
     164           0 :         aMapMode.SetScaleX( aXScale );
     165           0 :         aMapMode.SetScaleY( aXScale );
     166             :     }
     167           0 :     SetMapMode( aMapMode );
     168           0 :     Size aSz( PixelToLogic( GetSizePixel() ) );
     169           0 :     long nYPos = ( aSz.Height() - aSize.Height() ) / 2;
     170             : 
     171           0 :     if ( eUsage == SVX_PAGE_ALL )
     172             :     {
     173             :         // all pages are equal -> draw one page
     174           0 :         if ( aSize.Width() > aSize.Height() )
     175             :         {
     176             :             // Draw Landscape page of the same size
     177           0 :             Fraction aX = aMapMode.GetScaleX();
     178           0 :             Fraction aY = aMapMode.GetScaleY();
     179           0 :             Fraction a2( 1.5 );
     180           0 :             aX *= a2;
     181           0 :             aY *= a2;
     182           0 :             aMapMode.SetScaleX( aX );
     183           0 :             aMapMode.SetScaleY( aY );
     184           0 :             SetMapMode( aMapMode );
     185           0 :             aSz = PixelToLogic( GetSizePixel() );
     186           0 :             nYPos = ( aSz.Height() - aSize.Height() ) / 2;
     187           0 :             long nXPos = ( aSz.Width() - aSize.Width() ) / 2;
     188           0 :             DrawPage( Point( nXPos, nYPos ), sal_True, sal_True );
     189             :         }
     190             :         else
     191             :             // Portrait
     192           0 :             DrawPage( Point( ( aSz.Width() - aSize.Width() ) / 2, nYPos ), sal_True, sal_True );
     193             :     }
     194             :     else
     195             :     {
     196             :         // Left and right page are different -> draw two pages if possible
     197           0 :         DrawPage( Point( 0, nYPos ), sal_False, (sal_Bool)( eUsage & SVX_PAGE_LEFT ) );
     198           0 :         DrawPage( Point( aSize.Width() + aSize.Width() / 8, nYPos ), sal_True,
     199           0 :                   (sal_Bool)( eUsage & SVX_PAGE_RIGHT ) );
     200           0 :     }
     201           0 : }
     202             : 
     203             : // -----------------------------------------------------------------------
     204           0 : void SvxPageWindow::DrawPage( const Point& rOrg, const sal_Bool bSecond, const sal_Bool bEnabled )
     205             : {
     206           0 :     const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
     207           0 :     const Color& rFieldColor = rStyleSettings.GetFieldColor();
     208           0 :     const Color& rFieldTextColor = rStyleSettings.GetFieldTextColor();
     209           0 :     const Color& rDisableColor = rStyleSettings.GetDisableColor();
     210           0 :     const Color& rDlgColor = rStyleSettings.GetDialogColor();
     211             : 
     212             :     // background
     213           0 :     if(!bSecond || pImpl->bResetBackground)
     214             :     {
     215           0 :         SetLineColor( Color(COL_TRANSPARENT) );
     216           0 :         SetFillColor( rDlgColor );
     217           0 :         Size winSize(GetOutputSize());
     218           0 :         DrawRect( Rectangle( Point(0,0), winSize ) );
     219             : 
     220           0 :         if ( pImpl->bResetBackground )
     221           0 :             pImpl->bResetBackground = sal_False;
     222             :     }
     223           0 :     SetLineColor( rFieldTextColor );
     224             :     // Shadow
     225           0 :     Size aTempSize = aSize;
     226             :     // Page
     227           0 :     if ( !bEnabled )
     228             :     {
     229           0 :         SetFillColor( rDisableColor );
     230           0 :         DrawRect( Rectangle( rOrg, aTempSize ) );
     231           0 :         return;
     232             :     }
     233           0 :     SetFillColor( rFieldColor );
     234           0 :     DrawRect( Rectangle( rOrg, aTempSize ) );
     235             : 
     236           0 :     long nL = nLeft;
     237           0 :     long nR = nRight;
     238             : 
     239           0 :     if ( eUsage == SVX_PAGE_MIRROR && !bSecond )
     240             :     {
     241             :         // turn for mirrored
     242           0 :         nL = nRight;
     243           0 :         nR = nLeft;
     244             :     }
     245             : 
     246           0 :     Rectangle aRect;
     247             : 
     248           0 :     aRect.Left()  = rOrg.X() + nL;
     249           0 :     aRect.Right() = rOrg.X() + aTempSize.Width() - nR;
     250           0 :     aRect.Top()   = rOrg.Y() + nTop;
     251           0 :     aRect.Bottom()= rOrg.Y() + aTempSize.Height() - nBottom;
     252             : 
     253           0 :     Rectangle aHdRect( aRect );
     254           0 :     Rectangle aFtRect( aRect );
     255             : 
     256           0 :     if ( bHeader )
     257             :     {
     258             :         // show headers if possible
     259           0 :         aHdRect.Left() += nHdLeft;
     260           0 :         aHdRect.Right() -= nHdRight;
     261           0 :         aHdRect.Bottom() = aRect.Top() + nHdHeight;
     262           0 :         aRect.Top() += nHdHeight + nHdDist;
     263           0 :         SetFillColor( aHdColor );
     264           0 :         DrawRect( aHdRect );
     265             :     }
     266             : 
     267           0 :     if ( bFooter )
     268             :     {
     269             :         // show footer if possible
     270           0 :         aFtRect.Left() += nFtLeft;
     271           0 :         aFtRect.Right() -= nFtRight;
     272           0 :         aFtRect.Top() = aRect.Bottom() - nFtHeight;
     273           0 :         aRect.Bottom() -= nFtHeight + nFtDist;
     274           0 :         SetFillColor( aFtColor );
     275           0 :         DrawRect( aFtRect );
     276             :     }
     277             : 
     278             :     // Paint Body
     279           0 :     SetFillColor( aColor );
     280           0 :     if ( pImpl->bBitmap )
     281             :     {
     282           0 :         DrawRect( aRect );
     283           0 :         Point aBmpPnt = aRect.TopLeft();
     284           0 :         Size aBmpSiz = aRect.GetSize();
     285           0 :         long nDeltaX = aBmpSiz.Width() / 15;
     286           0 :         long nDeltaY = aBmpSiz.Height() / 15;
     287           0 :         aBmpPnt.X() += nDeltaX;
     288           0 :         aBmpPnt.Y() += nDeltaY;
     289           0 :         aBmpSiz.Width() -= nDeltaX * 2;
     290           0 :         aBmpSiz.Height() -= nDeltaY * 2;
     291           0 :         DrawBitmap( aBmpPnt, aBmpSiz, pImpl->aBitmap );
     292             :     }
     293             :     else
     294           0 :         DrawRect( aRect );
     295             : 
     296           0 :     if(pImpl->bFrameDirection && !bTable)
     297             :     {
     298           0 :         Point aPos;
     299           0 :         Font aFont(GetFont());
     300           0 :         const Size aSaveSize = aFont.GetSize();
     301           0 :         Size aDrawSize( 0, aRect.GetHeight() / 6);
     302           0 :         aFont.SetSize(aDrawSize);
     303           0 :         SetFont(aFont);
     304           0 :         String sText(rtl::OUString("ABC"));
     305           0 :         Point aMove(1, GetTextHeight());
     306           0 :         sal_Unicode cArrow = 0x2193;
     307           0 :         long nAWidth = GetTextWidth(rtl::OUString(sText.GetChar(0)));
     308           0 :         switch(pImpl->nFrameDirection)
     309             :         {
     310             :             case FRMDIR_HORI_LEFT_TOP:
     311           0 :                 aPos = aRect.TopLeft();
     312           0 :                 aPos.X() += PixelToLogic(Point(1,1)).X();
     313           0 :                 aMove.Y() = 0;
     314           0 :                 cArrow = 0x2192;
     315           0 :             break;
     316             :             case FRMDIR_HORI_RIGHT_TOP:
     317           0 :                 aPos = aRect.TopRight();
     318           0 :                 aPos.X() -= nAWidth;
     319           0 :                 aMove.Y() = 0;
     320           0 :                 aMove.X() *= -1;
     321           0 :                 cArrow = 0x2190;
     322           0 :             break;
     323             :             case FRMDIR_VERT_TOP_LEFT:
     324           0 :                 aPos = aRect.TopLeft();
     325           0 :                 aPos.X() += PixelToLogic(Point(1,1)).X();
     326           0 :                 aMove.X() = 0;
     327           0 :             break;
     328             :             case FRMDIR_VERT_TOP_RIGHT:
     329           0 :                 aPos = aRect.TopRight();
     330           0 :                 aPos.X() -= nAWidth;
     331           0 :                 aMove.X() = 0;
     332           0 :             break;
     333             :         }
     334           0 :         sText.Append(cArrow);
     335           0 :         for(sal_uInt16 i = 0; i < sText.Len(); i++)
     336             :         {
     337           0 :             rtl::OUString sDraw(sText.GetChar(i));
     338           0 :             long nHDiff = 0;
     339           0 :             long nCharWidth = GetTextWidth(sDraw);
     340           0 :             sal_Bool bHorizontal = 0 == aMove.Y();
     341           0 :             if(!bHorizontal)
     342             :             {
     343           0 :                 nHDiff = (nAWidth - nCharWidth)/2;
     344           0 :                 aPos.X() += nHDiff;
     345             :             }
     346           0 :             DrawText(aPos, sDraw);
     347           0 :             if(bHorizontal)
     348             :             {
     349           0 :                 aPos.X() += aMove.X() < 0 ? - nCharWidth : nCharWidth;
     350             :             }
     351             :             else
     352             :             {
     353           0 :                 aPos.X() -= nHDiff;
     354           0 :                 aPos.Y() += aMove.Y();
     355             :             }
     356           0 :         }
     357           0 :         aFont.SetSize(aSaveSize);
     358           0 :         SetFont(aFont);
     359             : 
     360             :     }
     361           0 :     if ( bTable )
     362             :     {
     363             :         // Paint Table, if necessary center it
     364           0 :         SetLineColor( Color(COL_LIGHTGRAY) );
     365             : 
     366           0 :         long nW = aRect.GetWidth(), nH = aRect.GetHeight();
     367           0 :         long nTW = CELL_WIDTH * 3, nTH = CELL_HEIGHT * 3;
     368           0 :         long _nLeft = bHorz ? aRect.Left() + ((nW - nTW) / 2) : aRect.Left();
     369           0 :         long _nTop = bVert ? aRect.Top() + ((nH - nTH) / 2) : aRect.Top();
     370           0 :         Rectangle aCellRect( Point( _nLeft, _nTop ), Size( CELL_WIDTH, CELL_HEIGHT ) );
     371             : 
     372           0 :         for ( sal_uInt16 i = 0; i < 3; ++i )
     373             :         {
     374           0 :             aCellRect.Left() = _nLeft;
     375           0 :             aCellRect.Right() = _nLeft + CELL_WIDTH;
     376           0 :             if ( i > 0 )
     377           0 :                 aCellRect.Move( 0, CELL_HEIGHT );
     378             : 
     379           0 :             for ( sal_uInt16 j = 0; j < 3; ++j )
     380             :             {
     381           0 :                 if ( j > 0 )
     382           0 :                     aCellRect.Move( CELL_WIDTH, 0 );
     383           0 :                 DrawRect( aCellRect );
     384             :             }
     385             :         }
     386             :     }
     387             : }
     388             : 
     389             : // -----------------------------------------------------------------------
     390             : 
     391           0 : void SvxPageWindow::SetBorder( const SvxBoxItem& rNew )
     392             : {
     393           0 :     delete pImpl->pBorder;
     394           0 :     pImpl->pBorder = new SvxBoxItem( rNew );
     395           0 : }
     396             : 
     397             : // -----------------------------------------------------------------------
     398             : 
     399           0 : void SvxPageWindow::SetBitmap( Bitmap* pBmp )
     400             : {
     401           0 :     if ( pBmp )
     402             :     {
     403           0 :         pImpl->aBitmap = *pBmp;
     404           0 :         pImpl->bBitmap = sal_True;
     405             :     }
     406             :     else
     407           0 :         pImpl->bBitmap = sal_False;
     408           0 : }
     409             : 
     410             : // -----------------------------------------------------------------------
     411             : 
     412           0 : void SvxPageWindow::SetHdBorder( const SvxBoxItem& rNew )
     413             : {
     414           0 :     delete pHdBorder;
     415           0 :     pHdBorder = new SvxBoxItem( rNew );
     416           0 : }
     417             : // -----------------------------------------------------------------------
     418             : 
     419           0 : void SvxPageWindow::SetFtBorder( const SvxBoxItem& rNew )
     420             : {
     421           0 :     delete pFtBorder;
     422           0 :     pFtBorder = new SvxBoxItem( rNew );
     423           0 : }
     424             : 
     425           0 : void  SvxPageWindow::EnableFrameDirection(sal_Bool bEnable)
     426             : {
     427           0 :     pImpl->EnableFrameDirection(bEnable);
     428           0 : }
     429             : 
     430           0 : void  SvxPageWindow::SetFrameDirection(sal_Int32 nFrameDirection)
     431             : {
     432           0 :     pImpl->SetFrameDirection(nFrameDirection);
     433           0 : }
     434             : 
     435           0 : void SvxPageWindow::ResetBackground()
     436             : {
     437           0 :     pImpl->bResetBackground = sal_True;
     438           0 : }
     439             : 
     440           0 : Size SvxPageWindow::GetOptimalSize(WindowSizeType eType) const
     441             : {
     442           0 :     if (eType == WINDOWSIZE_PREFERRED)
     443           0 :         return LogicToPixel(Size(75, 46), MapMode(MAP_APPFONT));
     444           0 :     return Window::GetOptimalSize(eType);
     445             : }
     446             : 
     447             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10