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_SW_SOURCE_UIBASE_SIDEBAR_PAGEFOOTERPANEL_HXX
20 #define INCLUDED_SW_SOURCE_UIBASE_SIDEBAR_PAGEFOOTERPANEL_HXX
24 #include <sfx2/sidebar/PanelLayout.hxx>
25 #include <sfx2/sidebar/ControllerItem.hxx>
26 #include <svl/intitem.hxx>
27 #include <svl/poolitem.hxx>
28 #include <svl/eitem.hxx>
29 #include <svx/rulritem.hxx>
31 namespace sw::sidebar
{
33 class PageFooterPanel
:
35 public ::sfx2::sidebar::ControllerItem::ItemUpdateReceiverInterface
38 static std::unique_ptr
<PanelLayout
> Create(
39 weld::Widget
* pParent
,
40 SfxBindings
* pBindings
);
42 virtual void NotifyItemUpdate(
43 const sal_uInt16 nSId
,
44 const SfxItemState eState
,
45 const SfxPoolItem
* pState
) override
;
47 virtual void GetControlState(
48 const sal_uInt16
/*nSId*/,
49 boost::property_tree::ptree
& /*rState*/) override
{};
51 SfxBindings
* GetBindings() const { return mpBindings
; }
53 weld::Widget
* pParent
,
54 SfxBindings
* pBindings
);
55 virtual ~PageFooterPanel() override
;
59 SfxBindings
* mpBindings
;
61 ::sfx2::sidebar::ControllerItem maHFToggleController
;
62 ::sfx2::sidebar::ControllerItem maMetricController
;
63 ::sfx2::sidebar::ControllerItem maFooterLRMarginController
;
64 ::sfx2::sidebar::ControllerItem maFooterSpacingController
;
65 ::sfx2::sidebar::ControllerItem maFooterLayoutController
;
69 OUString m_aCustomEntry
;
72 void SetMarginsAndSpacingFieldUnit();
73 void UpdateFooterCheck();
74 void UpdateMarginControl();
75 void UpdateSpacingControl();
76 void UpdateLayoutControl();
78 ::std::unique_ptr
<SfxBoolItem
> mpFooterItem
;
79 ::std::unique_ptr
<SvxLongLRSpaceItem
> mpFooterLRMarginItem
;
80 ::std::unique_ptr
<SvxLongULSpaceItem
> mpFooterSpacingItem
;
81 ::std::unique_ptr
<SfxInt16Item
> mpFooterLayoutItem
;
83 std::unique_ptr
<weld::CheckButton
> mxFooterToggle
;
84 std::unique_ptr
<weld::ComboBox
> mxFooterSpacingLB
;
85 std::unique_ptr
<weld::ComboBox
> mxFooterMarginPresetLB
;
86 std::unique_ptr
<weld::ComboBox
> mxFooterLayoutLB
;
87 std::unique_ptr
<weld::Label
> mxCustomEntry
;
89 static FieldUnit
GetCurrentUnit(SfxItemState eState
, const SfxPoolItem
* pState
);
91 DECL_LINK( FooterToggleHdl
, weld::Toggleable
&, void );
92 DECL_LINK( FooterLRMarginHdl
, weld::ComboBox
&, void);
93 DECL_LINK( FooterSpacingHdl
, weld::ComboBox
&, void);
94 DECL_LINK( FooterLayoutHdl
, weld::ComboBox
&, void);
97 } //end of namespace sw::sidebar
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */