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 .
20 #ifndef INCLUDED_SVX_FILLCTRL_HXX
21 #define INCLUDED_SVX_FILLCTRL_HXX
23 #include <svl/lstner.hxx>
24 #include <sfx2/tbxctrl.hxx>
25 #include <svx/svxdllapi.h>
26 #include <com/sun/star/drawing/FillStyle.hpp>
27 #include <boost/scoped_ptr.hpp>
31 class XFillGradientItem
;
33 class XFillBitmapItem
;
39 /*************************************************************************
41 |* Class for surface attributes (controls and controller)
43 \************************************************************************/
45 class SVX_DLLPUBLIC SAL_WARN_UNUSED SvxFillToolBoxControl
: public SfxToolBoxControl
48 boost::scoped_ptr
< XFillStyleItem
> mpStyleItem
;
49 boost::scoped_ptr
< XFillColorItem
> mpColorItem
;
50 boost::scoped_ptr
< XFillGradientItem
> mpFillGradientItem
;
51 boost::scoped_ptr
< XFillHatchItem
> mpHatchItem
;
52 boost::scoped_ptr
< XFillBitmapItem
> mpBitmapItem
;
54 VclPtr
<FillControl
> mpFillControl
;
55 VclPtr
<SvxFillTypeBox
> mpLbFillType
;
56 VclPtr
<ToolBox
> mpToolBoxColor
;
57 VclPtr
<SvxFillAttrBox
> mpLbFillAttr
;
60 sal_Int32 mnLastPosGradient
;
61 sal_Int32 mnLastPosHatch
;
62 sal_Int32 mnLastPosBitmap
;
64 DECL_LINK(SelectFillTypeHdl
,ListBox
*);
65 DECL_LINK(SelectFillAttrHdl
,ListBox
*);
68 SFX_DECL_TOOLBOX_CONTROL();
70 SvxFillToolBoxControl(sal_uInt16 nSlotId
, sal_uInt16 nId
, ToolBox
& rTbx
);
71 virtual ~SvxFillToolBoxControl();
73 virtual void StateChanged(sal_uInt16 nSID
, SfxItemState eState
, const SfxPoolItem
* pState
) SAL_OVERRIDE
;
75 virtual VclPtr
<vcl::Window
> CreateItemWindow(vcl::Window
* pParent
) SAL_OVERRIDE
;
78 class SAL_WARN_UNUSED FillControl
: public vcl::Window
81 friend class SvxFillToolBoxControl
;
83 VclPtr
<SvxFillTypeBox
> mpLbFillType
;
84 VclPtr
<ToolBox
> mpToolBoxColor
;
85 VclPtr
<SvxFillAttrBox
> mpLbFillAttr
;
87 void SetOptimalSize();
89 virtual void DataChanged(const DataChangedEvent
& rDCEvt
) SAL_OVERRIDE
;
92 FillControl(vcl::Window
* pParent
, WinBits nStyle
= 0);
93 virtual ~FillControl();
94 virtual void dispose() SAL_OVERRIDE
;
96 virtual void Resize() SAL_OVERRIDE
;
99 #endif // INCLUDED_SVX_FILLCTRL_HXX
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */