LibreOffice Module cui (master) 1
page.hxx
Go to the documentation of this file.
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#pragma once
20
21#include <sfx2/tabdlg.hxx>
22#include <svx/pagectrl.hxx>
25#include <svx/frmdirlbox.hxx>
26#include <i18nutil/paper.hxx>
27#include <svx/flagsdef.hxx>
28#include <vcl/print.hxx>
29
30// class SvxPageDescPage -------------------------------------------------
31/*
32 [Description]
33 TabPage for page settings (size, margins, ...)
34
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>
45
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>
53
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>
61*/
62
63typedef sal_uInt16 MarginPosition;
64
66{
68private:
78
83
86
87 bool mbDelPrinter : 1;
89
91
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;
133
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 );
144
145 DECL_LINK(PaperSizeSelect_Impl, weld::ComboBox&, void );
146 DECL_LINK(PaperSizeModify_Impl, weld::MetricSpinButton&, void);
147
148 DECL_LINK(FrameDirectionModify_Impl, weld::ComboBox&, void );
149
150 void ResetBackground_Impl( const SfxItemSet& rSet );
151
152 void RangeHdl_Impl();
153 void CalcMargin_Impl();
154
155 DECL_LINK(RegisterModify, weld::Toggleable&, void);
156
157 // page direction
160
162 tools::Long nLastMargin, MarginPosition nPos);
163 void CheckMarginEdits( bool _bClear );
164 bool IsMarginOutOfRange() const;
165
166protected:
167 virtual void ActivatePage( const SfxItemSet& rSet ) override;
168 virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override;
169
170public:
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;
174
175 // returns the range of the Which values
177
178 virtual bool FillItemSet( SfxItemSet* rOutSet ) override;
179 virtual void Reset( const SfxItemSet* rSet ) override;
180 virtual void FillUserData() override;
181
183 { ePaperStart = eStart; }
184
185 void SetCollectionList(const std::vector<OUString> &aList);
186 virtual void PageCreated(const SfxAllItemSet& aSet) override;
187};
188
189/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
std::unique_ptr< weld::ComboBox > m_xGutterPositionLB
Definition: page.hxx:126
OUString sStandardRegister
Definition: page.hxx:69
std::unique_ptr< weld::Label > m_xInsideLbl
Definition: page.hxx:129
std::unique_ptr< weld::CheckButton > m_xRtlGutterCB
Definition: page.hxx:127
std::unique_ptr< weld::RadioButton > m_xPortraitBtn
Definition: page.hxx:96
std::unique_ptr< weld::Label > m_xGutterPositionFT
Definition: page.hxx:125
tools::Long nFirstTopMargin
Definition: page.hxx:72
DECL_LINK(GutterPositionHdl_Impl, weld::ComboBox &, void)
std::unique_ptr< weld::Label > m_xPageText
Definition: page.hxx:111
DECL_LINK(LayoutHdl_Impl, weld::ComboBox &, void)
std::unique_ptr< weld::CheckButton > m_xVertBox
Definition: page.hxx:118
tools::Long nFirstLeftMargin
Definition: page.hxx:70
std::unique_ptr< weld::MetricSpinButton > m_xPaperHeightEdit
Definition: page.hxx:95
tools::Long nFirstRightMargin
Definition: page.hxx:71
std::unique_ptr< weld::Label > m_xOutsideLbl
Definition: page.hxx:130
virtual ~SvxPageDescPage() override
Definition: page.cxx:296
virtual bool FillItemSet(SfxItemSet *rOutSet) override
Definition: page.cxx:618
std::unique_ptr< SvxPageNumberListBox > m_xNumberFormatBox
Definition: page.hxx:114
std::unique_ptr< weld::Label > m_xPrintRangeQueryText
Definition: page.hxx:131
bool mbDelPrinter
Definition: page.hxx:87
MarginPosition m_nPos
Definition: page.hxx:84
std::unique_ptr< weld::Label > m_xGutterMarginLbl
Definition: page.hxx:108
std::unique_ptr< weld::Label > m_xRegisterFT
Definition: page.hxx:123
tools::Long nLastTopMargin
Definition: page.hxx:76
std::unique_ptr< weld::ComboBox > m_xPaperTrayBox
Definition: page.hxx:100
std::unique_ptr< weld::Label > m_xNumberFormatText
Definition: page.hxx:113
bool bBorderModified
Definition: page.hxx:80
static WhichRangesContainer GetRanges()
Definition: page.hxx:176
std::unique_ptr< weld::ComboBox > m_xRegisterLB
Definition: page.hxx:124
void InitHeadFoot_Impl(const SfxItemSet &rSet)
Definition: page.cxx:1228
SvxPageWindow m_aBspWin
Definition: page.hxx:90
std::unique_ptr< weld::MetricSpinButton > m_xBottomMarginEdit
Definition: page.hxx:107
std::unique_ptr< weld::CheckButton > m_xRegisterCB
Definition: page.hxx:122
void DisableVerticalPageDir()
Disables vertical page direction entries in the text flow listbox.
Definition: page.cxx:1553
virtual void ActivatePage(const SfxItemSet &rSet) override
Definition: page.cxx:1347
DECL_LINK(CenterHdl_Impl, weld::Toggleable &, void)
DECL_LINK(RegisterModify, weld::Toggleable &, void)
DECL_LINK(BorderModify_Impl, weld::MetricSpinButton &, void)
std::unique_ptr< weld::CheckButton > m_xHorzBox
Definition: page.hxx:117
tools::Long nLastLeftMargin
Definition: page.hxx:74
std::unique_ptr< SvxPaperSizeListBox > m_xPaperSizeBox
Definition: page.hxx:93
void SetPaperFormatRanges(Paper eStart)
Definition: page.hxx:182
bool mbEnableDrawingLayerFillStyles
Definition: page.hxx:88
bool bLandscape
Definition: page.hxx:79
DECL_LINK(FrameDirectionModify_Impl, weld::ComboBox &, void)
tools::Long nFirstBottomMargin
Definition: page.hxx:73
VclPtr< Printer > mpDefPrinter
Definition: page.hxx:85
std::unique_ptr< weld::Label > m_xTextFlowLbl
Definition: page.hxx:98
virtual DeactivateRC DeactivatePage(SfxItemSet *pSet) override
Definition: page.cxx:1355
DECL_LINK(PaperBinHdl_Impl, weld::Widget &, void)
DECL_LINK(PaperSizeModify_Impl, weld::MetricSpinButton &, void)
void CalcMargin_Impl()
Definition: page.cxx:1476
bool IsMarginOutOfRange() const
Definition: page.cxx:1610
virtual void Reset(const SfxItemSet *rSet) override
Definition: page.cxx:328
SvxModeType eMode
Definition: page.hxx:81
std::unique_ptr< weld::MetricSpinButton > m_xLeftMarginEdit
Definition: page.hxx:103
void RangeHdl_Impl()
Definition: page.cxx:1410
tools::Long nLastBottomMargin
Definition: page.hxx:77
SvxPageDescPage(weld::Container *pPage, weld::DialogController *pController, const SfxItemSet &rSet)
Definition: page.cxx:140
std::unique_ptr< weld::Label > m_xLeftMarginLbl
Definition: page.hxx:102
void CheckMarginEdits(bool _bClear)
Check if a value of a margin edit is outside the printer paper margins and save this information.
Definition: page.cxx:1591
std::unique_ptr< weld::CheckButton > m_xAdaptBox
Definition: page.hxx:120
std::unique_ptr< weld::Label > m_xTblAlignFT
Definition: page.hxx:116
tools::Long nLastRightMargin
Definition: page.hxx:75
void UpdateExample_Impl(bool bResetbackground=false)
Definition: page.cxx:1096
std::unique_ptr< weld::Label > m_xRightMarginLbl
Definition: page.hxx:104
std::unique_ptr< svx::FrameDirectionListBox > m_xTextFlowBox
Definition: page.hxx:99
std::unique_ptr< weld::MetricSpinButton > m_xTopMarginEdit
Definition: page.hxx:106
void Init_Impl()
Definition: page.cxx:305
DECL_LINK(PaperSizeSelect_Impl, weld::ComboBox &, void)
static const WhichRangesContainer pRanges
Definition: page.hxx:67
void SetCollectionList(const std::vector< OUString > &aList)
Definition: page.cxx:1524
void SwapFirstValues_Impl(bool bSet)
Definition: page.cxx:1028
std::unique_ptr< weld::CustomWeld > m_xBspWin
Definition: page.hxx:132
void ResetBackground_Impl(const SfxItemSet &rSet)
Definition: page.cxx:1129
virtual void PageCreated(const SfxAllItemSet &aSet) override
Definition: page.cxx:1631
std::unique_ptr< weld::RadioButton > m_xLandscapeBtn
Definition: page.hxx:97
std::unique_ptr< weld::CheckButton > m_xBackgroundFullSizeCB
Definition: page.hxx:128
Paper ePaperStart
Definition: page.hxx:82
std::unique_ptr< weld::MetricSpinButton > m_xGutterMarginEdit
Definition: page.hxx:109
virtual void FillUserData() override
Definition: page.cxx:611
std::unique_ptr< weld::MetricSpinButton > m_xPaperWidthEdit
Definition: page.hxx:94
static std::unique_ptr< SfxTabPage > Create(weld::Container *pPage, weld::DialogController *pController, const SfxItemSet *rSet)
Definition: page.cxx:135
std::unique_ptr< weld::MetricSpinButton > m_xRightMarginEdit
Definition: page.hxx:105
bool IsPrinterRangeOverflow(weld::MetricSpinButton &rField, tools::Long nFirstMargin, tools::Long nLastMargin, MarginPosition nPos)
Definition: page.cxx:1571
std::unique_ptr< weld::ComboBox > m_xLayoutBox
Definition: page.hxx:112
DECL_LINK(SwapOrientation_Impl, weld::Toggleable &, void)
SvxModeType
long Long
sal_uInt16 MarginPosition
Definition: page.hxx:63
Paper
DeactivateRC