Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / cui / source / inc / page.hxx
blob3d3ccff65ab25cd02ea178f06939b816ad1531ac
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 #pragma once
21 #include <sfx2/tabdlg.hxx>
22 #include <svx/pagectrl.hxx>
23 #include <svx/pagenumberlistbox.hxx>
24 #include <svx/papersizelistbox.hxx>
25 #include <svx/frmdirlbox.hxx>
26 #include <i18nutil/paper.hxx>
27 #include <svx/flagsdef.hxx>
28 #include <vcl/print.hxx>
30 // class SvxPageDescPage -------------------------------------------------
32 [Description]
33 TabPage for page settings (size, margins, ...)
35 [Items]
36 <SvxPageItem>: <SID_ATTR_PAGE>
37 <SvxSizeItem>: <SID_ATTR_SIZE>
38 <SvxSizeItem>: <SID_ATTR_MAXSIZE>
39 <SvxULSpaceItem>: <SID_ATTR_LRSPACE>
40 <SvxLRSpaceItem>: <SID_ATTR_ULSPACE>
41 <SfxAllEnumItem>: <SID_ATTR_PAPERTRAY>
42 <SvxPaperBinItem>: <SID_ATTR_PAPERBIN>
43 <SvxBoolItem>: <SID_ATTR_EXT1>
44 <SvxBoolItem>: <SID_ATTR_EXT2>
46 <SfxSetItem>: <SID_ATTR_HEADERSET>
47 <SfxBoolItem>: <SID_ATTR_ON>
48 <SfxBoolItem>: <SID_ATTR_DYNAMIC>
49 <SfxBoolItem>: <SID_ATTR_SHARED>
50 <SvxSizeItem>: <SID_ATTR_SIZE>
51 <SvxULSpaceItem>: <SID_ATTR_ULSPACE>
52 <SvxLRSpaceItem>: <SID_ATTR_LRSPACE>
54 <SfxSetItem>: <SID_ATTR_FOOTERSET>
55 <SfxBoolItem>: <SID_ATTR_ON>
56 <SfxBoolItem>: <SID_ATTR_DYNAMIC>
57 <SfxBoolItem>: <SID_ATTR_SHARED>
58 <SvxSizeItem>: <SID_ATTR_SIZE>
59 <SvxULSpaceItem>: <SID_ATTR_ULSPACE>
60 <SvxLRSpaceItem>: <SID_ATTR_LRSPACE>
63 typedef sal_uInt16 MarginPosition;
65 class SvxPageDescPage : public SfxTabPage
67 static const WhichRangesContainer pRanges;
68 private:
69 OUString sStandardRegister;
70 tools::Long nFirstLeftMargin;
71 tools::Long nFirstRightMargin;
72 tools::Long nFirstTopMargin;
73 tools::Long nFirstBottomMargin;
74 tools::Long nLastLeftMargin;
75 tools::Long nLastRightMargin;
76 tools::Long nLastTopMargin;
77 tools::Long nLastBottomMargin;
79 bool bLandscape;
80 bool bBorderModified;
81 SvxModeType eMode;
82 Paper ePaperStart;
84 MarginPosition m_nPos;
85 VclPtr<Printer> mpDefPrinter;
87 bool mbDelPrinter : 1;
88 bool mbEnableDrawingLayerFillStyles : 1;
90 SvxPageWindow m_aBspWin;
92 // paper format
93 std::unique_ptr<SvxPaperSizeListBox> m_xPaperSizeBox;
94 std::unique_ptr<weld::MetricSpinButton> m_xPaperWidthEdit;
95 std::unique_ptr<weld::MetricSpinButton> m_xPaperHeightEdit;
96 std::unique_ptr<weld::RadioButton> m_xPortraitBtn;
97 std::unique_ptr<weld::RadioButton> m_xLandscapeBtn;
98 std::unique_ptr<weld::Label> m_xTextFlowLbl;
99 std::unique_ptr<svx::FrameDirectionListBox> m_xTextFlowBox;
100 std::unique_ptr<weld::ComboBox> m_xPaperTrayBox;
101 // Margins
102 std::unique_ptr<weld::Label> m_xLeftMarginLbl;
103 std::unique_ptr<weld::MetricSpinButton> m_xLeftMarginEdit;
104 std::unique_ptr<weld::Label> m_xRightMarginLbl;
105 std::unique_ptr<weld::MetricSpinButton> m_xRightMarginEdit;
106 std::unique_ptr<weld::MetricSpinButton> m_xTopMarginEdit;
107 std::unique_ptr<weld::MetricSpinButton> m_xBottomMarginEdit;
108 std::unique_ptr<weld::Label> m_xGutterMarginLbl;
109 std::unique_ptr<weld::MetricSpinButton> m_xGutterMarginEdit;
110 // layout settings
111 std::unique_ptr<weld::Label> m_xPageText;
112 std::unique_ptr<weld::ComboBox> m_xLayoutBox;
113 std::unique_ptr<weld::Label> m_xNumberFormatText;
114 std::unique_ptr<SvxPageNumberListBox> m_xNumberFormatBox;
115 //Extras Calc
116 std::unique_ptr<weld::Label> m_xTblAlignFT;
117 std::unique_ptr<weld::CheckButton> m_xHorzBox;
118 std::unique_ptr<weld::CheckButton> m_xVertBox;
119 // Impress and Draw
120 std::unique_ptr<weld::CheckButton> m_xAdaptBox;
121 //Register Writer
122 std::unique_ptr<weld::CheckButton> m_xRegisterCB;
123 std::unique_ptr<weld::Label> m_xRegisterFT;
124 std::unique_ptr<weld::ComboBox> m_xRegisterLB;
125 std::unique_ptr<weld::Label> m_xGutterPositionFT;
126 std::unique_ptr<weld::ComboBox> m_xGutterPositionLB;
127 std::unique_ptr<weld::CheckButton> m_xRtlGutterCB;
128 std::unique_ptr<weld::CheckButton> m_xBackgroundFullSizeCB;
129 std::unique_ptr<weld::Label> m_xInsideLbl;
130 std::unique_ptr<weld::Label> m_xOutsideLbl;
131 std::unique_ptr<weld::Label> m_xPrintRangeQueryText;
132 std::unique_ptr<weld::CustomWeld> m_xBspWin;
134 void Init_Impl();
135 DECL_LINK(LayoutHdl_Impl, weld::ComboBox&, void);
136 DECL_LINK(GutterPositionHdl_Impl, weld::ComboBox&, void);
137 DECL_LINK(PaperBinHdl_Impl, weld::Widget&, void);
138 DECL_LINK(SwapOrientation_Impl, weld::Toggleable&, void);
139 void SwapFirstValues_Impl( bool bSet );
140 DECL_LINK(BorderModify_Impl, weld::MetricSpinButton&, void);
141 void InitHeadFoot_Impl( const SfxItemSet& rSet );
142 DECL_LINK(CenterHdl_Impl, weld::Toggleable&, void);
143 void UpdateExample_Impl( bool bResetbackground = false );
145 DECL_LINK(PaperSizeSelect_Impl, weld::ComboBox&, void );
146 DECL_LINK(PaperSizeModify_Impl, weld::MetricSpinButton&, void);
148 DECL_LINK(FrameDirectionModify_Impl, weld::ComboBox&, void );
150 void ResetBackground_Impl( const SfxItemSet& rSet );
152 void RangeHdl_Impl();
153 void CalcMargin_Impl();
155 DECL_LINK(RegisterModify, weld::Toggleable&, void);
157 // page direction
158 /** Disables vertical page direction entries in the text flow listbox. */
159 void DisableVerticalPageDir();
161 bool IsPrinterRangeOverflow(weld::MetricSpinButton& rField, tools::Long nFirstMargin,
162 tools::Long nLastMargin, MarginPosition nPos);
163 void CheckMarginEdits( bool _bClear );
164 bool IsMarginOutOfRange() const;
166 protected:
167 virtual void ActivatePage( const SfxItemSet& rSet ) override;
168 virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override;
170 public:
171 SvxPageDescPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
172 static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet );
173 virtual ~SvxPageDescPage() override;
175 // returns the range of the Which values
176 static WhichRangesContainer GetRanges() { return pRanges; }
178 virtual bool FillItemSet( SfxItemSet* rOutSet ) override;
179 virtual void Reset( const SfxItemSet* rSet ) override;
180 virtual void FillUserData() override;
182 void SetPaperFormatRanges( Paper eStart )
183 { ePaperStart = eStart; }
185 void SetCollectionList(const std::vector<OUString> &aList);
186 virtual void PageCreated(const SfxAllItemSet& aSet) override;
189 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */