cid#1607171 Data race condition
[LibreOffice.git] / sd / source / ui / inc / gluectrl.hxx
blob626d721586ebad71500f1b080b3b3831be4ea2a5
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 #pragma once
22 #include <vcl/InterimItemWindow.hxx>
23 #include <sfx2/tbxctrl.hxx>
25 enum class SdrEscapeDirection;
27 /**
28 * GluePointEscDirLB
30 class GlueEscDirLB final : public InterimItemWindow
32 private:
33 css::uno::Reference<css::frame::XFrame> m_xFrame;
34 std::unique_ptr<weld::ComboBox> m_xWidget;
36 DECL_LINK(SelectHdl, weld::ComboBox&, void);
37 DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
39 public:
40 GlueEscDirLB(vcl::Window* pParent, const css::uno::Reference<css::frame::XFrame>& rFrame);
41 virtual void dispose() override;
42 virtual ~GlueEscDirLB() override;
44 void set_active(int nPos) { m_xWidget->set_active(nPos); }
45 void set_sensitive(bool bSensitive);
47 void Fill();
50 /**
51 * Toolbox controller for glue-point escape direction
53 class SdTbxCtlGlueEscDir final : public SfxToolBoxControl
55 private:
56 static sal_uInt16 GetEscDirPos(SdrEscapeDirection nEscDir);
58 public:
59 virtual void StateChangedAtToolBoxControl(sal_uInt16 nSId, SfxItemState eState,
60 const SfxPoolItem* pState) override;
61 virtual VclPtr<InterimItemWindow> CreateItemWindow(vcl::Window* pParent) override;
63 SFX_DECL_TOOLBOX_CONTROL();
65 SdTbxCtlGlueEscDir(sal_uInt16 nSlotId, ToolBoxItemId nId, ToolBox& rTbx);
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */