lok: calc - send other views our selection in their co-ordinates.
[LibreOffice.git] / include / svx / grafctrl.hxx
blobf89a129ecd4e224f3d58ab7363c2687ca6bcfbb8
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_GRAFCTRL_HXX
21 #define INCLUDED_SVX_GRAFCTRL_HXX
23 #include <svl/lstner.hxx>
24 #include <sfx2/tbxctrl.hxx>
25 #include <svx/svxdllapi.h>
28 class SvxGrafToolBoxControl : public SfxToolBoxControl
30 public:
31 SvxGrafToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
32 virtual ~SvxGrafToolBoxControl() override;
34 virtual void StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState ) override;
35 virtual VclPtr<vcl::Window> CreateItemWindow( vcl::Window *pParent ) override;
39 class SVX_DLLPUBLIC SvxGrafRedToolBoxControl final : public SvxGrafToolBoxControl
41 public:
42 SFX_DECL_TOOLBOX_CONTROL();
43 SvxGrafRedToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
47 class SVX_DLLPUBLIC SvxGrafGreenToolBoxControl final : public SvxGrafToolBoxControl
49 public:
50 SFX_DECL_TOOLBOX_CONTROL();
51 SvxGrafGreenToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
55 class SVX_DLLPUBLIC SvxGrafBlueToolBoxControl final : public SvxGrafToolBoxControl
57 public:
58 SFX_DECL_TOOLBOX_CONTROL();
59 SvxGrafBlueToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
63 class SVX_DLLPUBLIC SvxGrafLuminanceToolBoxControl final : public SvxGrafToolBoxControl
65 public:
66 SFX_DECL_TOOLBOX_CONTROL();
67 SvxGrafLuminanceToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
71 class SVX_DLLPUBLIC SvxGrafContrastToolBoxControl final : public SvxGrafToolBoxControl
73 public:
74 SFX_DECL_TOOLBOX_CONTROL();
75 SvxGrafContrastToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
79 class SVX_DLLPUBLIC SvxGrafGammaToolBoxControl final : public SvxGrafToolBoxControl
81 public:
82 SFX_DECL_TOOLBOX_CONTROL();
83 SvxGrafGammaToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
87 class SVX_DLLPUBLIC SvxGrafTransparenceToolBoxControl final : public SvxGrafToolBoxControl
89 public:
90 SFX_DECL_TOOLBOX_CONTROL();
91 SvxGrafTransparenceToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
95 class SVX_DLLPUBLIC SvxGrafModeToolBoxControl final : public SfxToolBoxControl, public SfxListener
97 public:
98 SFX_DECL_TOOLBOX_CONTROL();
99 SvxGrafModeToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx );
100 virtual ~SvxGrafModeToolBoxControl() override;
102 virtual void StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState ) override;
103 virtual VclPtr<vcl::Window> CreateItemWindow( vcl::Window *pParent ) override;
107 class SdrView;
108 class SfxRequest;
111 class SVX_DLLPUBLIC SvxGrafAttrHelper
113 public:
115 static void ExecuteGrafAttr( SfxRequest& rReq, SdrView& rView );
116 static void GetGrafAttrState( SfxItemSet& rSet, SdrView const & rView );
119 #endif // INCLUDED_SVX_GRAFCTRL_HXX
121 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */