bump product version to 4.2.0.1
[LibreOffice.git] / include / svx / fillctrl.hxx
blob8998024db140b9544f6f3f2460a0c08d44647ee3
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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>
27 class XFillStyleItem;
28 class XFillColorItem;
29 class XFillGradientItem;
30 class XFillHatchItem;
31 class XFillBitmapItem;
32 class FillControl;
33 class SvxFillTypeBox;
34 class SvxFillAttrBox;
35 class ListBox;
37 /*************************************************************************
39 |* Class for surface attributes (controls and controller)
41 \************************************************************************/
43 class SVX_DLLPUBLIC SvxFillToolBoxControl: public SfxToolBoxControl
45 private:
46 XFillStyleItem* pStyleItem;
47 XFillColorItem* pColorItem;
48 XFillGradientItem* pGradientItem;
49 XFillHatchItem* pHatchItem;
50 XFillBitmapItem* pBitmapItem;
52 FillControl* pFillControl;
53 SvxFillTypeBox* pFillTypeLB;
54 SvxFillAttrBox* pFillAttrLB;
56 sal_Bool bUpdate;
57 sal_uInt16 eLastXFS;
59 public:
60 SFX_DECL_TOOLBOX_CONTROL();
62 SvxFillToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
63 ~SvxFillToolBoxControl();
65 virtual void StateChanged( sal_uInt16 nSID, SfxItemState eState,
66 const SfxPoolItem* pState );
67 void Update( const SfxPoolItem* pState );
68 virtual Window* CreateItemWindow( Window *pParent );
71 //========================================================================
73 class FillControl : public Window
75 private:
76 friend class SvxFillToolBoxControl;
78 SvxFillTypeBox* pLbFillType;
79 SvxFillAttrBox* pLbFillAttr;
80 Size aLogicalFillSize;
81 Size aLogicalAttrSize;
82 Timer aDelayTimer;
84 DECL_LINK( DelayHdl, void * );
85 DECL_LINK( SelectFillTypeHdl, ListBox * );
86 DECL_LINK( SelectFillAttrHdl, ListBox * );
87 virtual void DataChanged( const DataChangedEvent& rDCEvt );
88 public:
89 FillControl( Window* pParent, WinBits nStyle = 0 );
90 ~FillControl();
92 virtual void Resize();
95 #endif // INCLUDED_SVX_FILLCTRL_HXX
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */