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_PAGE_HXX
20 #define INCLUDED_CUI_SOURCE_INC_PAGE_HXX
22 #include <sfx2/tabdlg.hxx>
23 #include <svx/pagectrl.hxx>
24 #include <svx/pagenumberlistbox.hxx>
25 #include <svx/papersizelistbox.hxx>
26 #include <svx/frmdirlbox.hxx>
27 #include <i18nutil/paper.hxx>
28 #include <svx/flagsdef.hxx>
30 // class SvxPageDescPage -------------------------------------------------
33 TabPage for page settings (size, margins, ...)
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 sal_uInt16 pRanges
[];
69 OUString sStandardRegister
;
70 long nFirstLeftMargin
;
71 long nFirstRightMargin
;
73 long nFirstBottomMargin
;
75 long nLastRightMargin
;
77 long nLastBottomMargin
;
84 MarginPosition m_nPos
;
85 VclPtr
<Printer
> mpDefPrinter
;
87 bool mbDelPrinter
: 1;
88 bool mbEnableDrawingLayerFillStyles
: 1;
90 SvxPageWindow m_aBspWin
;
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::Label
> m_xOrientationFT
;
97 std::unique_ptr
<weld::RadioButton
> m_xPortraitBtn
;
98 std::unique_ptr
<weld::RadioButton
> m_xLandscapeBtn
;
99 std::unique_ptr
<weld::Label
> m_xTextFlowLbl
;
100 std::unique_ptr
<svx::FrameDirectionListBox
> m_xTextFlowBox
;
101 std::unique_ptr
<weld::ComboBox
> m_xPaperTrayBox
;
103 std::unique_ptr
<weld::Label
> m_xLeftMarginLbl
;
104 std::unique_ptr
<weld::MetricSpinButton
> m_xLeftMarginEdit
;
105 std::unique_ptr
<weld::Label
> m_xRightMarginLbl
;
106 std::unique_ptr
<weld::MetricSpinButton
> m_xRightMarginEdit
;
107 std::unique_ptr
<weld::MetricSpinButton
> m_xTopMarginEdit
;
108 std::unique_ptr
<weld::MetricSpinButton
> m_xBottomMarginEdit
;
110 std::unique_ptr
<weld::Label
> m_xPageText
;
111 std::unique_ptr
<weld::ComboBox
> m_xLayoutBox
;
112 std::unique_ptr
<weld::Label
> m_xNumberFormatText
;
113 std::unique_ptr
<SvxPageNumberListBox
> m_xNumberFormatBox
;
115 std::unique_ptr
<weld::Label
> m_xTblAlignFT
;
116 std::unique_ptr
<weld::CheckButton
> m_xHorzBox
;
117 std::unique_ptr
<weld::CheckButton
> m_xVertBox
;
119 std::unique_ptr
<weld::CheckButton
> m_xAdaptBox
;
121 std::unique_ptr
<weld::CheckButton
> m_xRegisterCB
;
122 std::unique_ptr
<weld::Label
> m_xRegisterFT
;
123 std::unique_ptr
<weld::ComboBox
> m_xRegisterLB
;
124 std::unique_ptr
<weld::Label
> m_xInsideLbl
;
125 std::unique_ptr
<weld::Label
> m_xOutsideLbl
;
126 std::unique_ptr
<weld::Label
> m_xPrintRangeQueryText
;
127 std::unique_ptr
<weld::CustomWeld
> m_xBspWin
;
130 DECL_LINK(LayoutHdl_Impl
, weld::ComboBox
&, void);
131 DECL_LINK(PaperBinHdl_Impl
, weld::Widget
&, void);
132 DECL_LINK(SwapOrientation_Impl
, weld::Button
&, void);
133 void SwapFirstValues_Impl( bool bSet
);
134 DECL_LINK(BorderModify_Impl
, weld::MetricSpinButton
&, void);
135 void InitHeadFoot_Impl( const SfxItemSet
& rSet
);
136 DECL_LINK(CenterHdl_Impl
, weld::ToggleButton
&, void);
137 void UpdateExample_Impl( bool bResetbackground
= false );
139 DECL_LINK(PaperSizeSelect_Impl
, weld::ComboBox
&, void );
140 DECL_LINK(PaperSizeModify_Impl
, weld::MetricSpinButton
&, void);
142 DECL_LINK(FrameDirectionModify_Impl
, weld::ComboBox
&, void );
144 void ResetBackground_Impl( const SfxItemSet
& rSet
);
146 void RangeHdl_Impl();
147 void CalcMargin_Impl();
149 DECL_LINK(RegisterModify
, weld::ToggleButton
&, void);
152 /** Disables vertical page direction entries in the text flow listbox. */
153 void DisableVerticalPageDir();
155 bool IsPrinterRangeOverflow(weld::MetricSpinButton
& rField
, long nFirstMargin
,
156 long nLastMargin
, MarginPosition nPos
);
157 void CheckMarginEdits( bool _bClear
);
158 bool IsMarginOutOfRange() const;
161 virtual void ActivatePage( const SfxItemSet
& rSet
) override
;
162 virtual DeactivateRC
DeactivatePage( SfxItemSet
* pSet
) override
;
165 SvxPageDescPage(weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
& rSet
);
166 static std::unique_ptr
<SfxTabPage
> Create( weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
* rSet
);
167 virtual ~SvxPageDescPage() override
;
169 // returns the range of the Which values
170 static const sal_uInt16
* GetRanges() { return pRanges
; }
172 virtual bool FillItemSet( SfxItemSet
* rOutSet
) override
;
173 virtual void Reset( const SfxItemSet
* rSet
) override
;
174 virtual void FillUserData() override
;
176 void SetPaperFormatRanges( Paper eStart
)
177 { ePaperStart
= eStart
; }
179 void SetCollectionList(const std::vector
<OUString
> &aList
);
180 virtual void PageCreated(const SfxAllItemSet
& aSet
) override
;
183 #endif // INCLUDED_CUI_SOURCE_INC_PAGE_HXX
185 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */