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_COLRCTRL_HXX
20 #define INCLUDED_SVX_COLRCTRL_HXX
22 #include <sfx2/dockwin.hxx>
23 #include <sfx2/childwin.hxx>
24 #include <svx/SvxColorValueSet.hxx>
25 #include <svtools/transfer.hxx>
26 #include <svl/lstner.hxx>
27 #include <svx/svxdllapi.h>
28 #include <svx/xtable.hxx>
32 /*************************************************************************
34 |* SvxColorValueSet_docking
36 \************************************************************************/
38 class SvxColorValueSet_docking
: public SvxColorValueSet
, public DragSourceHelper
41 using SvxColorValueSet::StartDrag
;
51 virtual void MouseButtonDown( const MouseEvent
& rMEvt
);
52 virtual void MouseButtonUp( const MouseEvent
& rMEvt
);
53 virtual void Command(const CommandEvent
& rCEvt
);
56 virtual void StartDrag( sal_Int8 nAction
, const Point
& rPtPixel
);
58 DECL_STATIC_LINK(SvxColorValueSet_docking
, ExecDragHdl
, void*);
61 SvxColorValueSet_docking( Window
* pParent
, WinBits nWinStyle
= WB_ITEMBORDER
);
62 SvxColorValueSet_docking( Window
* pParent
, const ResId
& rResId
);
64 bool IsLeftButton() const { return mbLeftButton
; }
67 /*************************************************************************
69 |* SvxColorDockingWindow
71 \************************************************************************/
73 class SvxColorDockingWindow
: public SfxDockingWindow
, public SfxListener
75 friend class SvxColorChildWindow
;
78 XColorListRef pColorList
;
79 SvxColorValueSet_docking aColorSet
;
81 sal_uInt16 nRightSlot
;
89 DECL_LINK( SelectHdl
, void * );
91 /** This function is called when the window gets the focus. It grabs
92 the focus to the color value set so that it can be controlled with
95 virtual void GetFocus (void);
98 virtual sal_Bool
Close();
99 virtual void Resize();
100 virtual void Resizing( Size
& rSize
);
103 SvxColorDockingWindow( SfxBindings
* pBindings
,
106 const ResId
& rResId
);
107 ~SvxColorDockingWindow();
109 virtual void Notify( SfxBroadcaster
& rBC
, const SfxHint
& rHint
);
111 void SetSlotIDs( sal_uInt16 nLeft
, sal_uInt16 nRight
)
112 { nLeftSlot
= nLeft
; nRightSlot
= nRight
; }
114 virtual long Notify( NotifyEvent
& rNEvt
);
119 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */