1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_CUI_SOURCE_INC_SWPOSSIZETABPAGE_HXX
20 #define INCLUDED_CUI_SOURCE_INC_SWPOSSIZETABPAGE_HXX
22 #include <sfx2/tabdlg.hxx>
23 #include <svx/swframeexample.hxx>
24 #include <vcl/weld.hxx>
26 // SvxSwPosSizeTabPage - position and size page for Writer drawing objects
29 struct SvxSwFrameValidation
;
30 enum class SvxAnchorIds
;
32 class SvxSwPosSizeTabPage
: public SfxTabPage
34 Link
<SvxSwFrameValidation
&,void> m_aValidateLink
;
36 ::tools::Rectangle m_aRect
; //size of all selected objects
37 ::tools::Rectangle m_aWorkArea
;
40 FrmMap
const * m_pVMap
;
41 FrmMap
const * m_pHMap
;
42 const SdrView
* m_pSdrView
;
50 double m_fWidthHeightRatio
; //width-to-height ratio to support the KeepRatio button
52 bool m_bIsVerticalFrame
;
53 bool m_bPositioningDisabled
;
54 bool m_bIsMultiSelection
;
55 bool m_bIsInRightToLeft
;
56 TriState m_nProtectSizeState
;
58 SwFrameExample m_aExampleWN
;
60 std::unique_ptr
<weld::MetricSpinButton
> m_xWidthMF
;
61 std::unique_ptr
<weld::MetricSpinButton
> m_xHeightMF
;
62 std::unique_ptr
<weld::CheckButton
> m_xKeepRatioCB
;
63 std::unique_ptr
<weld::RadioButton
> m_xToPageRB
;
64 std::unique_ptr
<weld::RadioButton
> m_xToParaRB
;
65 std::unique_ptr
<weld::RadioButton
> m_xToCharRB
;
66 std::unique_ptr
<weld::RadioButton
> m_xAsCharRB
;
67 std::unique_ptr
<weld::RadioButton
> m_xToFrameRB
;
68 std::unique_ptr
<weld::CheckButton
> m_xPositionCB
;
69 std::unique_ptr
<weld::CheckButton
> m_xSizeCB
;
70 std::unique_ptr
<weld::Widget
> m_xPosFrame
;
71 std::unique_ptr
<weld::Label
> m_xHoriFT
;
72 std::unique_ptr
<weld::ComboBox
> m_xHoriLB
;
73 std::unique_ptr
<weld::Label
> m_xHoriByFT
;
74 std::unique_ptr
<weld::MetricSpinButton
> m_xHoriByMF
;
75 std::unique_ptr
<weld::Label
> m_xHoriToFT
;
76 std::unique_ptr
<weld::ComboBox
> m_xHoriToLB
;
77 std::unique_ptr
<weld::CheckButton
> m_xHoriMirrorCB
;
78 std::unique_ptr
<weld::Label
> m_xVertFT
;
79 std::unique_ptr
<weld::ComboBox
> m_xVertLB
;
80 std::unique_ptr
<weld::Label
> m_xVertByFT
;
81 std::unique_ptr
<weld::MetricSpinButton
> m_xVertByMF
;
82 std::unique_ptr
<weld::Label
> m_xVertToFT
;
83 std::unique_ptr
<weld::ComboBox
> m_xVertToLB
;
84 std::unique_ptr
<weld::CheckButton
> m_xFollowCB
;
85 std::unique_ptr
<weld::CustomWeld
> m_xExampleWN
;
87 DECL_LINK(RangeModifyHdl
, weld::Widget
&, void);
88 DECL_LINK(RangeModifyClickHdl
, weld::ToggleButton
&, void);
89 DECL_LINK(AnchorTypeHdl
, weld::ToggleButton
&, void);
90 DECL_LINK(PosHdl
, weld::ComboBox
&, void);
91 DECL_LINK(RelHdl
, weld::ComboBox
&, void);
92 DECL_LINK(MirrorHdl
, weld::ToggleButton
&, void);
93 DECL_LINK(ModifyHdl
, weld::MetricSpinButton
&, void);
94 DECL_LINK(ProtectHdl
, weld::ToggleButton
&, void);
96 void InitPos(RndStdIds nAnchorType
, sal_uInt16 nH
, sal_uInt16 nHRel
,
97 sal_uInt16 nV
, sal_uInt16 nVRel
,
99 static sal_uInt16
GetMapPos(FrmMap
const *pMap
, const weld::ComboBox
& rAlignLB
);
100 static short GetAlignment(FrmMap
const *pMap
, sal_uInt16 nMapPos
, const weld::ComboBox
& rRelationLB
);
101 static short GetRelation(const weld::ComboBox
& rRelationLB
);
102 RndStdIds
GetAnchorType(bool* pbHasChanged
= nullptr);
103 void FillRelLB(FrmMap
const *pMap
, sal_uInt16 nLBSelPos
, sal_uInt16 nAlign
, sal_uInt16 nRel
, weld::ComboBox
& rLB
, weld::Label
& rFT
);
104 sal_uInt16
FillPosLB(FrmMap
const *pMap
, sal_uInt16 nAlign
, const sal_uInt16 _nRel
, weld::ComboBox
& rLB
);
106 void UpdateExample();
108 void setOptimalFrmWidth();
109 void setOptimalRelWidth();
112 SvxSwPosSizeTabPage(weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
& rInAttrs
);
113 static std::unique_ptr
<SfxTabPage
> Create( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* );
114 virtual ~SvxSwPosSizeTabPage() override
;
116 static const sal_uInt16
* GetRanges();
118 virtual bool FillItemSet( SfxItemSet
* ) override
;
119 virtual void Reset( const SfxItemSet
* ) override
;
121 virtual DeactivateRC
DeactivatePage( SfxItemSet
* pSet
) override
;
123 void EnableAnchorTypes(SvxAnchorIds nAnchorEnable
);
125 void SetValidateFramePosLink( const Link
<SvxSwFrameValidation
&,void>& rLink
)
126 {m_aValidateLink
= rLink
;}
128 void SetView( const SdrView
* pSdrView
);
133 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */