nss: upgrade to release 3.73
[LibreOffice.git] / sw / source / uibase / sidebar / PageMarginControl.hxx
blob88e2d0e11e97cd9db82c4efbedeca899629bdac6
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 #ifndef INCLUDED_SW_SOURCE_UIBASE_SIDEBAR_PAGEMARGINCONTROL_HXX
20 #define INCLUDED_SW_SOURCE_UIBASE_SIDEBAR_PAGEMARGINCONTROL_HXX
22 #include <svtools/toolbarmenu.hxx>
24 #define SWPAGE_NARROW_VALUE 720
25 #define SWPAGE_NORMAL_VALUE 1136
26 #define SWPAGE_WIDE_VALUE1 1440
27 #define SWPAGE_WIDE_VALUE2 2880
28 #define SWPAGE_WIDE_VALUE3 1800
30 // #i19922# - tdf#126051 see cui/source/tabpages/page.cxx and svx/source/dialog/hdft.cxx
31 const tools::Long MINBODY = 56; // 1mm in twips rounded
33 class PageMarginPopup;
35 namespace sw::sidebar {
37 class PageMarginControl final : public WeldToolbarPopup
39 public:
40 explicit PageMarginControl(PageMarginPopup* pControl, weld::Widget* pParent);
41 virtual void GrabFocus() override;
42 virtual ~PageMarginControl() override;
44 private:
45 std::unique_ptr<weld::Button> m_xNarrow;
46 std::unique_ptr<weld::Button> m_xNormal;
47 std::unique_ptr<weld::Button> m_xWide;
48 std::unique_ptr<weld::Button> m_xMirrored;
49 std::unique_ptr<weld::Button> m_xLast;
51 std::unique_ptr<weld::Label> m_xLeft;
52 std::unique_ptr<weld::Label> m_xRight;
53 std::unique_ptr<weld::Label> m_xInner;
54 std::unique_ptr<weld::Label> m_xOuter;
56 std::unique_ptr<weld::MetricSpinButton> m_xLeftMarginEdit;
57 std::unique_ptr<weld::MetricSpinButton> m_xRightMarginEdit;
58 std::unique_ptr<weld::MetricSpinButton> m_xTopMarginEdit;
59 std::unique_ptr<weld::MetricSpinButton> m_xBottomMarginEdit;
61 // hidden metric field
62 std::unique_ptr<weld::MetricSpinButton> m_xWidthHeightField;
64 rtl::Reference<PageMarginPopup> m_xControl;
66 tools::Long m_nPageLeftMargin;
67 tools::Long m_nPageRightMargin;
68 tools::Long m_nPageTopMargin;
69 tools::Long m_nPageBottomMargin;
70 bool m_bMirrored;
72 const MapUnit m_eUnit;
74 Size m_aPageSize;
76 bool m_bUserCustomValuesAvailable;
77 tools::Long m_nUserCustomPageLeftMargin;
78 tools::Long m_nUserCustomPageRightMargin;
79 tools::Long m_nUserCustomPageTopMargin;
80 tools::Long m_nUserCustomPageBottomMargin;
81 bool m_bUserCustomMirrored;
83 bool m_bCustomValuesUsed;
85 DECL_LINK( SelectMarginHdl, weld::Button&, void );
86 DECL_LINK( ModifyLRMarginHdl, weld::MetricSpinButton&, void );
87 DECL_LINK( ModifyULMarginHdl, weld::MetricSpinButton&, void );
89 static void ExecuteMarginLRChange(
90 const tools::Long nPageLeftMargin,
91 const tools::Long nPageRightMargin );
92 static void ExecuteMarginULChange(
93 const tools::Long nPageTopMargin,
94 const tools::Long nPageBottomMargin );
95 static void ExecutePageLayoutChange( const bool bMirrored );
97 void SetMetricFieldMaxValues(const Size& rPageSize);
99 bool GetUserCustomValues();
100 void StoreUserCustomValues();
102 void FillHelpText( const bool bUserCustomValuesAvailable );
105 } // end of namespace sw::sidebar
107 #endif
109 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */