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 .
23 #include <svl/lstner.hxx>
24 #include <sfx2/tbxctrl.hxx>
25 #include "svx/svxdllapi.h"
29 class XFillGradientItem
;
31 class XFillBitmapItem
;
37 /*************************************************************************
39 |* Class for surface attributes (controls and controller)
41 \************************************************************************/
43 class SVX_DLLPUBLIC SvxFillToolBoxControl
: public SfxToolBoxControl
46 XFillStyleItem
* pStyleItem
;
47 XFillColorItem
* pColorItem
;
48 XFillGradientItem
* pGradientItem
;
49 XFillHatchItem
* pHatchItem
;
50 XFillBitmapItem
* pBitmapItem
;
52 FillControl
* pFillControl
;
53 SvxFillTypeBox
* pFillTypeLB
;
54 SvxFillAttrBox
* pFillAttrLB
;
57 sal_Bool bIgnoreStatusUpdate
;
61 SFX_DECL_TOOLBOX_CONTROL();
63 SvxFillToolBoxControl( sal_uInt16 nSlotId
, sal_uInt16 nId
, ToolBox
& rTbx
);
64 ~SvxFillToolBoxControl();
66 virtual void StateChanged( sal_uInt16 nSID
, SfxItemState eState
,
67 const SfxPoolItem
* pState
);
68 void Update( const SfxPoolItem
* pState
);
69 virtual Window
* CreateItemWindow( Window
*pParent
);
70 void IgnoreStatusUpdate( sal_Bool bSet
);
73 //========================================================================
75 class FillControl
: public Window
78 friend class SvxFillToolBoxControl
;
80 SvxFillTypeBox
* pLbFillType
;
81 SvxFillAttrBox
* pLbFillAttr
;
82 Size aLogicalFillSize
;
83 Size aLogicalAttrSize
;
86 DECL_LINK( DelayHdl
, void * );
87 DECL_LINK( SelectFillTypeHdl
, ListBox
* );
88 DECL_LINK( SelectFillAttrHdl
, ListBox
* );
89 virtual void DataChanged( const DataChangedEvent
& rDCEvt
);
91 FillControl( Window
* pParent
, WinBits nStyle
= 0 );
94 virtual void Resize();
97 #endif // _FILLCTRL_HXX
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */