1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <svx/weldeditview.hxx>
27 struct SpellCallbackInfo
;
28 namespace sw::annotation
{ class SwAnnotationWin
; }
30 namespace sw::sidebarwindows
{
32 class SidebarTextControl
: public WeldEditView
35 sw::annotation::SwAnnotationWin
& mrSidebarWin
;
37 SwPostItMgr
& mrPostItMgr
;
38 bool mbMouseDownGainingFocus
;
43 virtual void Paint(vcl::RenderContext
& rRenderContext
, const tools::Rectangle
& rRect
) override
;
45 virtual bool Command(const CommandEvent
& rCEvt
) override
;
46 virtual void GetFocus() override
;
47 virtual void LoseFocus() override
;
49 virtual OUString
RequestHelp(tools::Rectangle
& rRect
) override
;
52 SidebarTextControl(sw::annotation::SwAnnotationWin
& rSidebarWin
,
54 SwPostItMgr
& rPostItMgr
);
56 virtual EditView
* GetEditView() const override
;
58 virtual EditEngine
* GetEditEngine() const override
;
60 virtual void EditViewScrollStateChange() override
;
62 void SetDrawingArea(weld::DrawingArea
* pDrawingArea
) override
;
64 void SetCursorLogicPosition(const Point
& rPosition
, bool bPoint
, bool bClearMark
);
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
;
71 void SetMapMode(const MapMode
& rNewMapMode
)
73 OutputDevice
& rDevice
= GetDrawingArea()->get_ref_device();
74 rDevice
.SetMapMode(rNewMapMode
);
77 DECL_LINK( OnlineSpellCallback
, SpellCallbackInfo
&, void );
79 void DrawForPage(OutputDevice
* pDev
, const Point
& rPos
);
82 } // end of namespace sw::sidebarwindows
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */