LibreOffice Module sw (master) 1
PageStylesPanel.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#ifndef INCLUDED_SW_SOURCE_UIBASE_SIDEBAR_PAGESTYLESPANEL_HXX
20#define INCLUDED_SW_SOURCE_UIBASE_SIDEBAR_PAGESTYLESPANEL_HXX
21
22#include <memory>
23
26#include <svl/intitem.hxx>
27#include <svl/poolitem.hxx>
28#include <svx/xbtmpit.hxx>
29#include <svx/xflclit.hxx>
30#include <svx/xflgrit.hxx>
31#include <svx/xflhtit.hxx>
32#include <svx/pageitem.hxx>
34
35class List;
36class ColorListBox;
37namespace sw::sidebar {
38
40 public PanelLayout,
42{
43public:
44 static std::unique_ptr<PanelLayout> Create(
45 weld::Widget* pParent,
46 SfxBindings* pBindings);
47
48 virtual void NotifyItemUpdate(
49 const sal_uInt16 nSId,
50 const SfxItemState eState,
51 const SfxPoolItem* pState) override;
52
53 virtual void GetControlState(
54 const sal_uInt16 /*nSId*/,
55 boost::property_tree::ptree& /*rState*/) override {};
56
57 SfxBindings* GetBindings() const { return mpBindings; }
59 weld::Widget* pParent,
60 SfxBindings* pBindings);
61 virtual ~PageStylesPanel() override;
62
63private:
64
66
67 ::std::unique_ptr<SfxInt16Item> mpPageColumnItem;
68 ::std::unique_ptr<SvxPageItem> mpPageItem;
69 ::std::unique_ptr<XFillColorItem> mpBgColorItem;
70 ::std::unique_ptr<XFillGradientItem> mpBgGradientItem;
71 ::std::unique_ptr<XFillHatchItem> mpBgHatchItem;
72 ::std::unique_ptr<XFillBitmapItem> mpBgBitmapItem;
73
81
82 std::unique_ptr<ColorListBox> mxBgColorLB;
83 std::unique_ptr<weld::ComboBox> mxBgHatchingLB;
84 std::unique_ptr<ColorListBox> mxBgGradientLB;
85 std::unique_ptr<weld::ComboBox> mxBgBitmapLB;
86 std::unique_ptr<weld::ComboBox> mxLayoutSelectLB;
87 std::unique_ptr<weld::ComboBox> mxColumnCount;
88 std::unique_ptr<SvxPageNumberListBox> mxNumberSelectLB;
89 std::unique_ptr<weld::ComboBox> mxBgFillType;
90 std::unique_ptr<weld::Label> mxCustomEntry;
92
93 void Initialize();
94 void Update();
97 OUString const & GetHatchingSetOrDefault();
98 OUString const & GetBitmapSetOrDefault();
99 OUString const & GetPatternSetOrDefault();
100
101 void ModifyFillColor();
102
103 DECL_LINK( ModifyColumnCountHdl, weld::ComboBox&, void );
104 DECL_LINK( ModifyNumberingHdl, weld::ComboBox&, void );
105 DECL_LINK( ModifyLayoutHdl, weld::ComboBox&, void );
106 DECL_LINK( ModifyFillStyleHdl, weld::ComboBox&, void );
107 DECL_LINK( ModifyFillColorHdl, weld::ComboBox&, void );
108 DECL_LINK( ModifyFillColorListHdl, ColorListBox&, void );
109};
110
111} //end of namespace sw::sidebar
112
113#endif
114
115/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
::sfx2::sidebar::ControllerItem maBgBitmapControl
::sfx2::sidebar::ControllerItem maPageColumnControl
virtual ~PageStylesPanel() override
::sfx2::sidebar::ControllerItem maBgFillStyleControl
virtual void GetControlState(const sal_uInt16, boost::property_tree::ptree &) override
DECL_LINK(ModifyFillColorHdl, weld::ComboBox &, void)
static std::unique_ptr< PanelLayout > Create(weld::Widget *pParent, SfxBindings *pBindings)
DECL_LINK(ModifyFillColorListHdl, ColorListBox &, void)
std::unique_ptr< ColorListBox > mxBgColorLB
std::unique_ptr< SvxPageNumberListBox > mxNumberSelectLB
std::unique_ptr< weld::Label > mxCustomEntry
DECL_LINK(ModifyLayoutHdl, weld::ComboBox &, void)
DECL_LINK(ModifyNumberingHdl, weld::ComboBox &, void)
::std::unique_ptr< SvxPageItem > mpPageItem
::std::unique_ptr< XFillColorItem > mpBgColorItem
::std::unique_ptr< SfxInt16Item > mpPageColumnItem
std::unique_ptr< weld::ComboBox > mxBgBitmapLB
DECL_LINK(ModifyFillStyleHdl, weld::ComboBox &, void)
PageStylesPanel(weld::Widget *pParent, SfxBindings *pBindings)
std::unique_ptr< weld::ComboBox > mxLayoutSelectLB
SfxBindings * GetBindings() const
::std::unique_ptr< XFillHatchItem > mpBgHatchItem
::sfx2::sidebar::ControllerItem maBgColorControl
std::unique_ptr< weld::ComboBox > mxBgFillType
virtual void NotifyItemUpdate(const sal_uInt16 nSId, const SfxItemState eState, const SfxPoolItem *pState) override
::std::unique_ptr< XFillBitmapItem > mpBgBitmapItem
DECL_LINK(ModifyColumnCountHdl, weld::ComboBox &, void)
::sfx2::sidebar::ControllerItem maBgHatchingControl
std::unique_ptr< weld::ComboBox > mxBgHatchingLB
std::unique_ptr< ColorListBox > mxBgGradientLB
::std::unique_ptr< XFillGradientItem > mpBgGradientItem
OUString const & GetHatchingSetOrDefault()
OUString const & GetPatternSetOrDefault()
OUString const & GetBitmapSetOrDefault()
std::unique_ptr< weld::ComboBox > mxColumnCount
::sfx2::sidebar::ControllerItem maPageNumFormatControl
basegfx::BGradient const & GetGradientSetOrDefault()
::sfx2::sidebar::ControllerItem maBgGradientControl
SfxItemState