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_PAGESTYLESPANEL_HXX
20 #define INCLUDED_SW_SOURCE_UIBASE_SIDEBAR_PAGESTYLESPANEL_HXX
23 #include <com/sun/star/frame/XFrame.hpp>
25 #include <sfx2/sidebar/PanelLayout.hxx>
27 #include <sfx2/sidebar/ControllerItem.hxx>
29 #include <svx/pageitem.hxx>
31 #include <svl/intitem.hxx>
32 #include <svl/poolitem.hxx>
33 #include <svx/xbtmpit.hxx>
34 #include <svx/xflclit.hxx>
35 #include <svx/xflgrit.hxx>
36 #include <svx/xflhtit.hxx>
37 #include <svx/itemwin.hxx>
38 #include <svx/pagenumberlistbox.hxx>
42 namespace sw::sidebar
{
44 class PageStylesPanel
:
46 public ::sfx2::sidebar::ControllerItem::ItemUpdateReceiverInterface
49 static VclPtr
<vcl::Window
> Create(
51 const ::com::sun::star::uno::Reference
< ::com::sun::star::frame::XFrame
>& rxFrame
,
52 SfxBindings
* pBindings
);
54 virtual void NotifyItemUpdate(
55 const sal_uInt16 nSId
,
56 const SfxItemState eState
,
57 const SfxPoolItem
* pState
) override
;
59 virtual void GetControlState(
60 const sal_uInt16
/*nSId*/,
61 boost::property_tree::ptree
& /*rState*/) override
{};
63 SfxBindings
* GetBindings() const { return mpBindings
; }
66 const ::com::sun::star::uno::Reference
< ::com::sun::star::frame::XFrame
>& rxFrame
,
67 SfxBindings
* pBindings
);
68 virtual ~PageStylesPanel() override
;
69 virtual void dispose() override
;
73 SfxBindings
* mpBindings
;
75 ::std::unique_ptr
<SfxInt16Item
> mpPageColumnItem
;
76 ::std::unique_ptr
<SvxPageItem
> mpPageItem
;
77 ::std::unique_ptr
<XFillColorItem
> mpBgColorItem
;
78 ::std::unique_ptr
<XFillGradientItem
> mpBgGradientItem
;
79 ::std::unique_ptr
<XFillHatchItem
> mpBgHatchItem
;
80 ::std::unique_ptr
<XFillBitmapItem
> mpBgBitmapItem
;
82 ::sfx2::sidebar::ControllerItem maPageColumnControl
;
83 ::sfx2::sidebar::ControllerItem maPageNumFormatControl
;
84 ::sfx2::sidebar::ControllerItem maBgColorControl
;
85 ::sfx2::sidebar::ControllerItem maBgHatchingControl
;
86 ::sfx2::sidebar::ControllerItem maBgGradientControl
;
87 ::sfx2::sidebar::ControllerItem maBgBitmapControl
;
88 ::sfx2::sidebar::ControllerItem maBgFillStyleControl
;
90 std::unique_ptr
<ColorListBox
> mxBgColorLB
;
91 std::unique_ptr
<weld::ComboBox
> mxBgHatchingLB
;
92 std::unique_ptr
<ColorListBox
> mxBgGradientLB
;
93 std::unique_ptr
<weld::ComboBox
> mxBgBitmapLB
;
94 std::unique_ptr
<weld::ComboBox
> mxLayoutSelectLB
;
95 std::unique_ptr
<weld::ComboBox
> mxColumnCount
;
96 std::unique_ptr
<SvxPageNumberListBox
> mxNumberSelectLB
;
97 std::unique_ptr
<weld::ComboBox
> mxBgFillType
;
98 std::unique_ptr
<weld::Label
> mxCustomEntry
;
99 OUString aCustomEntry
;
103 Color
const & GetColorSetOrDefault();
104 XGradient
const & GetGradientSetOrDefault();
105 OUString
const & GetHatchingSetOrDefault();
106 OUString
const & GetBitmapSetOrDefault();
107 OUString
const & GetPatternSetOrDefault();
109 void ModifyFillColor();
111 DECL_LINK( ModifyColumnCountHdl
, weld::ComboBox
&, void );
112 DECL_LINK( ModifyNumberingHdl
, weld::ComboBox
&, void );
113 DECL_LINK( ModifyLayoutHdl
, weld::ComboBox
&, void );
114 DECL_LINK( ModifyFillStyleHdl
, weld::ComboBox
&, void );
115 DECL_LINK( ModifyFillColorHdl
, weld::ComboBox
&, void );
116 DECL_LINK( ModifyFillColorListHdl
, ColorListBox
&, void );
119 } //end of namespace sw::sidebar
123 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */