LibreOffice Module sw (master)
1
sw
source
uibase
docvw
SidebarTxtControl.hxx
Go to the documentation of this file.
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
OutlinerView
;
25
class
SwView
;
26
class
SwPostItMgr
;
27
struct
SpellCallbackInfo
;
28
namespace
sw::annotation
{
class
SwAnnotationWin; }
29
30
namespace
sw::sidebarwindows
{
31
32
class
SidebarTextControl
:
public
WeldEditView
33
{
34
private
:
35
sw::annotation::SwAnnotationWin
&
mrSidebarWin
;
36
SwView
&
mrDocView
;
37
SwPostItMgr
&
mrPostItMgr
;
38
bool
mbMouseDownGainingFocus
;
39
40
void
MakeVisible
();
41
42
protected
:
43
virtual
void
Paint
(
vcl::RenderContext
& rRenderContext,
const
tools::Rectangle
& rRect)
override
;
44
45
virtual
bool
Command
(
const
CommandEvent
& rCEvt)
override
;
46
virtual
void
GetFocus
()
override
;
47
virtual
void
LoseFocus
()
override
;
48
49
virtual
OUString
RequestHelp
(
tools::Rectangle
& rRect)
override
;
50
51
public
:
52
SidebarTextControl
(
sw::annotation::SwAnnotationWin
& rSidebarWin,
53
SwView
& rDocView,
54
SwPostItMgr
& rPostItMgr);
55
56
virtual
EditView
*
GetEditView
()
const override
;
57
58
virtual
EditEngine
*
GetEditEngine
()
const override
;
59
60
virtual
void
EditViewScrollStateChange
()
override
;
61
62
void
SetDrawingArea
(
weld::DrawingArea
* pDrawingArea)
override
;
63
64
void
SetCursorLogicPosition
(
const
Point
& rPosition,
bool
bPoint,
bool
bClearMark);
65
66
virtual
bool
KeyInput
(
const
KeyEvent
& rKeyEvt)
override
;
67
virtual
bool
MouseButtonDown
(
const
MouseEvent
& rMEvt)
override
;
68
virtual
bool
MouseButtonUp
(
const
MouseEvent
& rMEvt)
override
;
69
virtual
bool
MouseMove
(
const
MouseEvent
& rMEvt)
override
;
70
71
void
SetMapMode
(
const
MapMode
& rNewMapMode)
72
{
73
OutputDevice
& rDevice = GetDrawingArea()->get_ref_device();
74
rDevice.
SetMapMode
(rNewMapMode);
75
}
76
77
DECL_LINK
( OnlineSpellCallback,
SpellCallbackInfo
&,
void
);
78
79
void
DrawForPage
(
OutputDevice
* pDev,
const
Point
& rPos);
80
};
81
82
}
// end of namespace sw::sidebarwindows
83
84
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
CommandEvent
EditEngine
EditView
KeyEvent
MouseEvent
OutlinerView
OutputDevice
OutputDevice::SetMapMode
void SetMapMode()
Point
SwPostItMgr
Definition:
PostItMgr.hxx:125
SwView
Definition:
view.hxx:146
WeldEditView
sw::annotation::SwAnnotationWin
Definition:
AnnotationWin.hxx:60
sw::sidebarwindows::SidebarTextControl
Definition:
SidebarTxtControl.hxx:33
sw::sidebarwindows::SidebarTextControl::SidebarTextControl
SidebarTextControl(sw::annotation::SwAnnotationWin &rSidebarWin, SwView &rDocView, SwPostItMgr &rPostItMgr)
Definition:
SidebarTxtControl.cxx:63
sw::sidebarwindows::SidebarTextControl::MouseButtonDown
virtual bool MouseButtonDown(const MouseEvent &rMEvt) override
Definition:
SidebarTxtControl.cxx:353
sw::sidebarwindows::SidebarTextControl::MouseMove
virtual bool MouseMove(const MouseEvent &rMEvt) override
Definition:
SidebarTxtControl.cxx:403
sw::sidebarwindows::SidebarTextControl::DrawForPage
void DrawForPage(OutputDevice *pDev, const Point &rPos)
Definition:
SidebarTxtControl.cxx:207
sw::sidebarwindows::SidebarTextControl::SetDrawingArea
void SetDrawingArea(weld::DrawingArea *pDrawingArea) override
Definition:
SidebarTxtControl.cxx:89
sw::sidebarwindows::SidebarTextControl::EditViewScrollStateChange
virtual void EditViewScrollStateChange() override
Definition:
SidebarTxtControl.cxx:202
sw::sidebarwindows::SidebarTextControl::DECL_LINK
DECL_LINK(OnlineSpellCallback, SpellCallbackInfo &, void)
sw::sidebarwindows::SidebarTextControl::mbMouseDownGainingFocus
bool mbMouseDownGainingFocus
Definition:
SidebarTxtControl.hxx:38
sw::sidebarwindows::SidebarTextControl::MouseButtonUp
virtual bool MouseButtonUp(const MouseEvent &rMEvt) override
Definition:
SidebarTxtControl.cxx:390
sw::sidebarwindows::SidebarTextControl::mrDocView
SwView & mrDocView
Definition:
SidebarTxtControl.hxx:36
sw::sidebarwindows::SidebarTextControl::mrPostItMgr
SwPostItMgr & mrPostItMgr
Definition:
SidebarTxtControl.hxx:37
sw::sidebarwindows::SidebarTextControl::RequestHelp
virtual OUString RequestHelp(tools::Rectangle &rRect) override
Definition:
SidebarTxtControl.cxx:160
sw::sidebarwindows::SidebarTextControl::Paint
virtual void Paint(vcl::RenderContext &rRenderContext, const tools::Rectangle &rRect) override
Definition:
SidebarTxtControl.cxx:239
sw::sidebarwindows::SidebarTextControl::mrSidebarWin
sw::annotation::SwAnnotationWin & mrSidebarWin
Definition:
SidebarTxtControl.hxx:35
sw::sidebarwindows::SidebarTextControl::SetCursorLogicPosition
void SetCursorLogicPosition(const Point &rPosition, bool bPoint, bool bClearMark)
Definition:
SidebarTxtControl.cxx:132
sw::sidebarwindows::SidebarTextControl::Command
virtual bool Command(const CommandEvent &rCEvt) override
Definition:
SidebarTxtControl.cxx:418
sw::sidebarwindows::SidebarTextControl::MakeVisible
void MakeVisible()
Definition:
SidebarTxtControl.cxx:279
sw::sidebarwindows::SidebarTextControl::LoseFocus
virtual void LoseFocus() override
Definition:
SidebarTxtControl.cxx:146
sw::sidebarwindows::SidebarTextControl::GetFocus
virtual void GetFocus() override
Definition:
SidebarTxtControl.cxx:138
sw::sidebarwindows::SidebarTextControl::SetMapMode
void SetMapMode(const MapMode &rNewMapMode)
Definition:
SidebarTxtControl.hxx:71
sw::sidebarwindows::SidebarTextControl::GetEditView
virtual EditView * GetEditView() const override
Definition:
SidebarTxtControl.cxx:73
sw::sidebarwindows::SidebarTextControl::KeyInput
virtual bool KeyInput(const KeyEvent &rKeyEvt) override
Definition:
SidebarTxtControl.cxx:285
sw::sidebarwindows::SidebarTextControl::GetEditEngine
virtual EditEngine * GetEditEngine() const override
Definition:
SidebarTxtControl.cxx:81
tools::Rectangle
weld::DrawingArea
sw::annotation
Definition:
AnnotationMenuButton.cxx:31
sw::sidebarwindows
Definition:
AnchorOverlayObject.cxx:38
MapMode
OutputDevice
SpellCallbackInfo
weldeditview.hxx
Generated on Sun Jul 30 2023 04:29:53 for LibreOffice Module sw (master) by
1.9.3