LCOV - code coverage report
Current view: top level - cui/source/inc - transfrm.hxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 6 0.0 %
Date: 2014-04-14 Functions: 0 9 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             : #ifndef INCLUDED_CUI_SOURCE_INC_TRANSFRM_HXX
      20             : #define INCLUDED_CUI_SOURCE_INC_TRANSFRM_HXX
      21             : 
      22             : #include <svx/dlgctrl.hxx>
      23             : #include <svx/dialcontrol.hxx>
      24             : 
      25             : #include <vcl/fixed.hxx>
      26             : 
      27             : // #i75273#
      28             : #include <basegfx/range/b2drange.hxx>
      29             : 
      30             : // predefines
      31             : class SdrView;
      32             : 
      33             : /*************************************************************************
      34             : |*
      35             : |* Transform-Tab-Dialog
      36             : |*
      37             : \************************************************************************/
      38             : 
      39             : /** put this into the nAnchorTypes parameter of the SvxTransformTabDialog c'tor
      40             :     to disable the size controls */
      41             : const sal_uInt16 SVX_OBJ_NORESIZE = 0x0100;
      42             : 
      43             : /** put this into the nAnchorTypes parameter of the SvxTransformTabDialog c'tor
      44             :     to disable the protect controls */
      45             : const sal_uInt16 SVX_OBJ_NOPROTECT = 0x0200;
      46             : 
      47             : class SvxTransformTabDialog : public SfxTabDialog
      48             : {
      49             :     sal_uInt16         nPosSize;
      50             :     sal_uInt16         nSWPosSize;
      51             :     sal_uInt16         nRotation;
      52             :     sal_uInt16         nSlant;
      53             : private:
      54             :     const SdrView*      pView;
      55             : 
      56             :     sal_uInt16          nAnchorCtrls;
      57             :     Link                aValidateLink;
      58             : 
      59             :     virtual void        PageCreated( sal_uInt16 nId, SfxTabPage &rPage ) SAL_OVERRIDE;
      60             : 
      61             : public:
      62             : 
      63             :             SvxTransformTabDialog( Window* pParent, const SfxItemSet* pAttr,
      64             :                             const SdrView* pView,
      65             :                             sal_uInt16 nAnchorTypes = 0);
      66             :             virtual ~SvxTransformTabDialog();
      67             : 
      68             :             //link for the Writer to validate positions
      69             :             void SetValidateFramePosLink( const Link& rLink );
      70             : };
      71             : 
      72             : /*************************************************************************
      73             : |*
      74             : |* position and size tab page
      75             : |*
      76             : \************************************************************************/
      77             : 
      78           0 : class SvxPositionSizeTabPage : public SvxTabPage
      79             : {
      80             :     using TabPage::ActivatePage;
      81             :     using TabPage::DeactivatePage;
      82             : 
      83             : private:
      84             :     // position
      85             :     VclFrame*            m_pFlPosition;
      86             :     MetricField*         m_pMtrPosX;
      87             :     MetricField*         m_pMtrPosY;
      88             :     SvxRectCtl*          m_pCtlPos;
      89             : 
      90             :     // size
      91             :     VclFrame*            m_pFlSize;
      92             :     FixedText*           m_pFtWidth;
      93             :     MetricField*         m_pMtrWidth;
      94             :     FixedText*           m_pFtHeight;
      95             :     MetricField*         m_pMtrHeight;
      96             :     CheckBox*            m_pCbxScale;
      97             :     SvxRectCtl*          m_pCtlSize;
      98             : 
      99             :     // protect
     100             :     VclFrame*            m_pFlProtect;
     101             :     TriStateBox*         m_pTsbPosProtect;
     102             :     TriStateBox*         m_pTsbSizeProtect;
     103             : 
     104             :     // adjust
     105             :     VclFrame*            m_pFlAdjust;
     106             :     TriStateBox*         m_pTsbAutoGrowWidth;
     107             :     TriStateBox*         m_pTsbAutoGrowHeight;
     108             : 
     109             : private:
     110             :     const SfxItemSet&   mrOutAttrs;
     111             : 
     112             :     const SdrView*      mpView;
     113             : 
     114             :     // #i75273#
     115             :     basegfx::B2DRange   maRange;
     116             :     basegfx::B2DRange   maWorkRange;
     117             :     basegfx::B2DPoint   maAnchor;
     118             : 
     119             :     SfxMapUnit          mePoolUnit;
     120             :     FieldUnit           meDlgUnit;
     121             :     MapUnit             meMapUnit;
     122             :     TriState            mnProtectSizeState;
     123             :     bool                mbPageDisabled;
     124             :     bool                mbProtectDisabled;
     125             :     bool                mbSizeDisabled;
     126             :     bool                mbAdjustDisabled;
     127             : 
     128             :     // frome size
     129             :     // #i75273#
     130             :     double              mfOldWidth;
     131             :     double              mfOldHeight;
     132             :     RECT_POINT          meRP;
     133             : 
     134             : 
     135             :     DECL_LINK( ChangePosProtectHdl, void * );
     136             :     DECL_LINK( ChangeSizeProtectHdl, void * );
     137             : 
     138             :     void SetMinMaxPosition();
     139             :     void GetTopLeftPosition(double& rfX, double& rfY, const basegfx::B2DRange& rRange);
     140             : 
     141             :     DECL_LINK( ChangeWidthHdl, void * );
     142             :     DECL_LINK( ChangeHeightHdl, void * );
     143             :     DECL_LINK( ClickSizeProtectHdl, void * );
     144             :     DECL_LINK( ClickAutoHdl, void * );
     145             : 
     146             :     void        SetMaxSize( Rectangle aRect );
     147             : 
     148             : public:
     149             :     SvxPositionSizeTabPage( Window* pParent, const SfxItemSet& rInAttrs  );
     150             : 
     151             :     static SfxTabPage* Create( Window*, const SfxItemSet& );
     152             :     static sal_uInt16*     GetRanges();
     153             : 
     154             :     virtual bool FillItemSet( SfxItemSet& ) SAL_OVERRIDE;
     155             :     virtual void Reset( const SfxItemSet & ) SAL_OVERRIDE;
     156             : 
     157             :     virtual void ActivatePage( const SfxItemSet& rSet ) SAL_OVERRIDE;
     158             :     virtual int  DeactivatePage( SfxItemSet* pSet ) SAL_OVERRIDE;
     159             : 
     160             :     virtual void PointChanged( Window* pWindow, RECT_POINT eRP ) SAL_OVERRIDE;
     161             : 
     162             :     void         Construct();
     163           0 :     void         SetView( const SdrView* pSdrView ) { mpView = pSdrView; }
     164             : 
     165             :     virtual void FillUserData() SAL_OVERRIDE;
     166             : 
     167             :     void        DisableResize();
     168             :     void        DisableProtect();
     169             : 
     170             :     void        UpdateControlStates();
     171             : };
     172             : 
     173             : /*************************************************************************
     174             : |*
     175             : |* rotation angle tab page
     176             : |*
     177             : \************************************************************************/
     178           0 : class SvxAngleTabPage : public SvxTabPage
     179             : {
     180             :     using TabPage::ActivatePage;
     181             :     using TabPage::DeactivatePage;
     182             : 
     183             : private:
     184             :     VclFrame*            m_pFlPosition;
     185             :     MetricField*         m_pMtrPosX;
     186             :     MetricField*         m_pMtrPosY;
     187             :     SvxRectCtl*          m_pCtlRect;
     188             : 
     189             :     VclFrame*            m_pFlAngle;
     190             :     NumericField*        m_pNfAngle;
     191             :     svx::DialControl*    m_pCtlAngle;
     192             : 
     193             :     const SfxItemSet&   rOutAttrs;
     194             :     const SdrView*      pView;
     195             : 
     196             :     // #i75273#
     197             :     basegfx::B2DRange   maRange;
     198             :     basegfx::B2DPoint   maAnchor;
     199             : 
     200             :     SfxMapUnit          ePoolUnit;
     201             :     FieldUnit           eDlgUnit;
     202             : 
     203             : public:
     204             :          SvxAngleTabPage( Window* pParent, const SfxItemSet& rInAttrs  );
     205             : 
     206             :     static SfxTabPage* Create( Window*, const SfxItemSet& );
     207             :     static sal_uInt16*     GetRanges();
     208             : 
     209             :     virtual bool FillItemSet( SfxItemSet& ) SAL_OVERRIDE;
     210             :     virtual void Reset( const SfxItemSet & ) SAL_OVERRIDE;
     211             : 
     212             :     virtual void ActivatePage( const SfxItemSet& rSet ) SAL_OVERRIDE;
     213             :     virtual int  DeactivatePage( SfxItemSet* pSet ) SAL_OVERRIDE;
     214             : 
     215             :     virtual void PointChanged( Window* pWindow, RECT_POINT eRP ) SAL_OVERRIDE;
     216             : 
     217             :     void         Construct();
     218           0 :     void         SetView( const SdrView* pSdrView ) { pView = pSdrView; }
     219             : };
     220             : 
     221             : /*************************************************************************
     222             : |*
     223             : |* slant/corner radius tab page
     224             : |*
     225             : \************************************************************************/
     226           0 : class SvxSlantTabPage : public SvxTabPage
     227             : {
     228             :     using TabPage::ActivatePage;
     229             :     using TabPage::DeactivatePage;
     230             : 
     231             : private:
     232             :     VclFrame*            m_pFlRadius;
     233             :     MetricField*         m_pMtrRadius;
     234             :     VclFrame*            m_pFlAngle;
     235             :     MetricField*         m_pMtrAngle;
     236             : 
     237             :     const SfxItemSet&   rOutAttrs;
     238             : 
     239             :     const SdrView*      pView;
     240             : 
     241             :     // #i75273#
     242             :     basegfx::B2DRange   maRange;
     243             : 
     244             :     SfxMapUnit          ePoolUnit;
     245             :     FieldUnit           eDlgUnit;
     246             : 
     247             : public:
     248             :          SvxSlantTabPage( Window* pParent, const SfxItemSet& rInAttrs  );
     249             : 
     250             :     static SfxTabPage* Create( Window*, const SfxItemSet& );
     251             :     static sal_uInt16*     GetRanges();
     252             : 
     253             :     virtual bool FillItemSet( SfxItemSet& ) SAL_OVERRIDE;
     254             :     virtual void Reset( const SfxItemSet & ) SAL_OVERRIDE;
     255             : 
     256             :     virtual void ActivatePage( const SfxItemSet& rSet ) SAL_OVERRIDE;
     257             :     virtual int  DeactivatePage( SfxItemSet* pSet ) SAL_OVERRIDE;
     258             : 
     259             :     virtual void PointChanged( Window* pWindow, RECT_POINT eRP ) SAL_OVERRIDE;
     260             : 
     261             :     void         Construct();
     262           0 :     void         SetView( const SdrView* pSdrView ) { pView = pSdrView; }
     263             : };
     264             : 
     265             : 
     266             : 
     267             : #endif // INCLUDED_CUI_SOURCE_INC_TRANSFRM_HXX
     268             : 
     269             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10