fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / svx / fillctrl.hxx
blob065321f51a6482b64ec400a6e1a64a34c2038974
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 _FILLCTRL_HXX
21 #define _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_Bool bIgnoreStatusUpdate;
58 sal_uInt16 eLastXFS;
60 public:
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
77 private:
78 friend class SvxFillToolBoxControl;
80 SvxFillTypeBox* pLbFillType;
81 SvxFillAttrBox* pLbFillAttr;
82 Size aLogicalFillSize;
83 Size aLogicalAttrSize;
84 Timer aDelayTimer;
86 DECL_LINK( DelayHdl, void * );
87 DECL_LINK( SelectFillTypeHdl, ListBox * );
88 DECL_LINK( SelectFillAttrHdl, ListBox * );
89 virtual void DataChanged( const DataChangedEvent& rDCEvt );
90 public:
91 FillControl( Window* pParent, WinBits nStyle = 0 );
92 ~FillControl();
94 virtual void Resize();
97 #endif // _FILLCTRL_HXX
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */