Coverage Report

Created: 2025-11-16 09:57

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/svx/inc/sdr/contact/viewcontactofunocontrol.hxx
Line
Count
Source
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
#ifndef INCLUDED_SVX_INC_SDR_CONTACT_VIEWCONTACTOFUNOCONTROL_HXX
21
#define INCLUDED_SVX_INC_SDR_CONTACT_VIEWCONTACTOFUNOCONTROL_HXX
22
23
#include <com/sun/star/uno/Reference.hxx>
24
#include <svx/sdr/contact/viewcontactofsdrobj.hxx>
25
#include <svx/svdouno.hxx>
26
27
namespace vcl { class Window; }
28
namespace com::sun::star {
29
    namespace awt {
30
        class XControl;
31
        class XControlContainer;
32
    }
33
}
34
35
36
namespace sdr::contact {
37
38
39
    //= ViewContactOfUnoControl
40
41
    class ViewContactOfUnoControl final : public ViewContactOfSdrObj
42
    {
43
    public:
44
        // access to SdrObject
45
        const SdrUnoObj& GetSdrUnoObj() const
46
0
        {
47
0
            return static_cast<const SdrUnoObj&>(GetSdrObject());
48
0
        }
49
50
        explicit ViewContactOfUnoControl( SdrUnoObj& _rUnoObject );
51
        virtual ~ViewContactOfUnoControl() override;
52
53
        /** retrieves a temporary XControl instance, whose parent is the given window
54
            @seealso SdrUnoObj::GetTemporaryControlForWindow
55
        */
56
        css::uno::Reference< css::awt::XControl >
57
            getTemporaryControlForWindow( const vcl::Window& _rWindow, css::uno::Reference< css::awt::XControlContainer >& _inout_ControlContainer ) const;
58
59
    private:
60
        virtual ViewObjectContact& CreateObjectSpecificViewObjectContact( ObjectContact& _rObjectContact ) override;
61
62
        ViewContactOfUnoControl( const ViewContactOfUnoControl& ) = delete;
63
        ViewContactOfUnoControl& operator=( const ViewContactOfUnoControl& ) = delete;
64
65
        // This method is responsible for creating the graphical visualisation data
66
        // ONLY based on model data
67
        virtual void createViewIndependentPrimitive2DSequence(drawinglayer::primitive2d::Primitive2DDecompositionVisitor& rVisitor) const override;
68
    };
69
70
71
} // namespace sdr::contact
72
73
74
#endif // INCLUDED_SVX_INC_SDR_CONTACT_VIEWCONTACTOFUNOCONTROL_HXX
75
76
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */