Coverage Report

Created: 2026-05-16 09:25

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/sw/source/uibase/docvw/SidebarTxtControl.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
#pragma once
21
22
#include <svx/weldeditview.hxx>
23
24
class SwView;
25
class SwPostItMgr;
26
struct SpellCallbackInfo;
27
namespace sw::annotation { class SwAnnotationWin; }
28
29
namespace sw::sidebarwindows {
30
31
class SidebarTextControl : public WeldEditView
32
{
33
    private:
34
        sw::annotation::SwAnnotationWin& mrSidebarWin;
35
        SwView& mrDocView;
36
        SwPostItMgr& mrPostItMgr;
37
        bool mbMouseDownGainingFocus;
38
39
        void MakeVisible();
40
41
    protected:
42
        virtual bool Command(const CommandEvent& rCEvt) override;
43
        virtual void GetFocus() override;
44
        virtual void LoseFocus() override;
45
46
        virtual OUString RequestHelp(tools::Rectangle& rRect) override;
47
48
    public:
49
        SidebarTextControl(sw::annotation::SwAnnotationWin& rSidebarWin,
50
                           SwView& rDocView,
51
                           SwPostItMgr& rPostItMgr);
52
53
        virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override;
54
55
        virtual EditView* GetEditView() const override;
56
57
        virtual EditEngine* GetEditEngine() const override;
58
59
#if ENABLE_YRS
60
        virtual void EditViewInvalidate(const tools::Rectangle& rRect) override;
61
        virtual void EditViewSelectionChange() override;
62
#endif
63
        virtual void EditViewScrollStateChange() override;
64
65
        void SetDrawingArea(weld::DrawingArea* pDrawingArea) override;
66
67
        void SetCursorLogicPosition(const Point& rPosition, bool bPoint, bool bClearMark);
68
69
        virtual bool KeyInput(const KeyEvent& rKeyEvt) override;
70
        virtual bool MouseButtonDown(const MouseEvent& rMEvt) override;
71
        virtual bool MouseButtonUp(const MouseEvent& rMEvt) override;
72
        virtual bool MouseMove(const MouseEvent& rMEvt) override;
73
74
        void SetMapMode(const MapMode& rNewMapMode)
75
0
        {
76
0
            OutputDevice& rDevice = GetDrawingArea()->get_ref_device();
77
0
            rDevice.SetMapMode(rNewMapMode);
78
0
        }
79
80
        DECL_LINK( OnlineSpellCallback, SpellCallbackInfo&, void );
81
82
        void DrawForPage(OutputDevice* pDev, const Point& rPos);
83
};
84
85
} // end of namespace sw::sidebarwindows
86
87
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */