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_SVX_SOURCE_SIDEBAR_PARAGRAPH_PARASPACINGCONTROL_HXX
20 #define INCLUDED_SVX_SOURCE_SIDEBAR_PARAGRAPH_PARASPACINGCONTROL_HXX
22 #include <sfx2/tbxctrl.hxx>
23 #include <svx/svxdllapi.h>
24 #include <com/sun/star/ui/XContextChangeEventListener.hpp>
26 namespace com::sun::star::ui
28 class XContextChangeEventMultiplexer
;
30 namespace com::sun::star::ui
32 struct ContextChangeEventObject
;
41 class ParaULSpacingControl
: public SfxToolBoxControl
44 ParaULSpacingControl(sal_uInt16 nSlotId
, ToolBoxItemId nId
, ToolBox
& rTbx
);
45 virtual ~ParaULSpacingControl() override
;
47 virtual void StateChangedAtToolBoxControl(sal_uInt16 nSID
, SfxItemState eState
,
48 const SfxPoolItem
* pState
) override
;
49 virtual VclPtr
<InterimItemWindow
> CreateItemWindow(vcl::Window
* pParent
) override
= 0;
52 class SVX_DLLPUBLIC ParaAboveSpacingControl final
: public ParaULSpacingControl
55 SFX_DECL_TOOLBOX_CONTROL();
57 ParaAboveSpacingControl(sal_uInt16 nSlotId
, ToolBoxItemId nId
, ToolBox
& rTbx
);
58 virtual VclPtr
<InterimItemWindow
> CreateItemWindow(vcl::Window
* pParent
) override
;
61 class SVX_DLLPUBLIC ParaBelowSpacingControl final
: public ParaULSpacingControl
64 SFX_DECL_TOOLBOX_CONTROL();
66 ParaBelowSpacingControl(sal_uInt16 nSlotId
, ToolBoxItemId nId
, ToolBox
& rTbx
);
67 virtual VclPtr
<InterimItemWindow
> CreateItemWindow(vcl::Window
* pParent
) override
;
70 class ParaLRSpacingControl
: public SfxToolBoxControl
, public css::ui::XContextChangeEventListener
73 ParaLRSpacingControl(sal_uInt16 nSlotId
, ToolBoxItemId nId
, ToolBox
& rTbx
);
74 virtual ~ParaLRSpacingControl() override
;
76 virtual void SAL_CALL
dispose() override
;
78 virtual void StateChangedAtToolBoxControl(sal_uInt16 nSID
, SfxItemState eState
,
79 const SfxPoolItem
* pState
) override
;
80 virtual VclPtr
<InterimItemWindow
> CreateItemWindow(vcl::Window
* pParent
) override
= 0;
82 // XContextChangeEventListener
84 notifyContextChangeEvent(const css::ui::ContextChangeEventObject
& rEvent
) override
;
86 virtual ::css::uno::Any SAL_CALL
queryInterface(const ::css::uno::Type
& aType
) override
;
88 virtual void SAL_CALL
acquire() noexcept override
;
90 virtual void SAL_CALL
disposing(const ::css::lang::EventObject
&) override
;
92 virtual void SAL_CALL
release() noexcept override
;
95 css::uno::Reference
<css::ui::XContextChangeEventMultiplexer
> m_xMultiplexer
;
98 class SVX_DLLPUBLIC ParaLeftSpacingControl final
: public ParaLRSpacingControl
101 SFX_DECL_TOOLBOX_CONTROL();
103 ParaLeftSpacingControl(sal_uInt16 nSlotId
, ToolBoxItemId nId
, ToolBox
& rTbx
);
104 virtual VclPtr
<InterimItemWindow
> CreateItemWindow(vcl::Window
* pParent
) override
;
107 class SVX_DLLPUBLIC ParaRightSpacingControl final
: public ParaLRSpacingControl
110 SFX_DECL_TOOLBOX_CONTROL();
112 ParaRightSpacingControl(sal_uInt16 nSlotId
, ToolBoxItemId nId
, ToolBox
& rTbx
);
113 virtual VclPtr
<InterimItemWindow
> CreateItemWindow(vcl::Window
* pParent
) override
;
116 class SVX_DLLPUBLIC ParaFirstLineSpacingControl final
: public ParaLRSpacingControl
119 SFX_DECL_TOOLBOX_CONTROL();
121 ParaFirstLineSpacingControl(sal_uInt16 nSlotId
, ToolBoxItemId nId
, ToolBox
& rTbx
);
122 virtual VclPtr
<InterimItemWindow
> CreateItemWindow(vcl::Window
* pParent
) override
;
128 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */