Coverage Report

Created: 2025-07-07 10:01

/src/libreoffice/sd/source/ui/inc/gluectrl.hxx
Line
Count
Source (jump to first uncovered line)
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
 * This file is part of the LibreOffice project.
4
 *
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/.
8
 *
9
 * This file incorporates work covered by the following license notice:
10
 *
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 .
18
 */
19
20
#pragma once
21
22
#include <vcl/InterimItemWindow.hxx>
23
#include <sfx2/tbxctrl.hxx>
24
25
enum class SdrEscapeDirection;
26
27
/**
28
 * GluePointEscDirLB
29
 */
30
class GlueEscDirLB final : public InterimItemWindow
31
{
32
private:
33
    css::uno::Reference<css::frame::XFrame> m_xFrame;
34
    std::unique_ptr<weld::ComboBox> m_xWidget;
35
36
    DECL_LINK(SelectHdl, weld::ComboBox&, void);
37
    DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
38
39
public:
40
    GlueEscDirLB(vcl::Window* pParent, const css::uno::Reference<css::frame::XFrame>& rFrame);
41
    virtual void dispose() override;
42
    virtual ~GlueEscDirLB() override;
43
44
0
    void set_active(int nPos) { m_xWidget->set_active(nPos); }
45
    void set_sensitive(bool bSensitive);
46
47
    void Fill();
48
};
49
50
/**
51
 * Toolbox controller for glue-point escape direction
52
 */
53
class SdTbxCtlGlueEscDir final : public SfxToolBoxControl
54
{
55
private:
56
    static sal_uInt16 GetEscDirPos(SdrEscapeDirection nEscDir);
57
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;
62
63
    SFX_DECL_TOOLBOX_CONTROL();
64
65
    SdTbxCtlGlueEscDir(sal_uInt16 nSlotId, ToolBoxItemId nId, ToolBox& rTbx);
66
};
67
68
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */