/src/libreoffice/sw/source/uibase/inc/drawbase.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 | | #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_DRAWBASE_HXX |
20 | | #define INCLUDED_SW_SOURCE_UIBASE_INC_DRAWBASE_HXX |
21 | | |
22 | | #include <tools/gen.hxx> |
23 | | #include <vcl/vclptr.hxx> |
24 | | |
25 | | class SwView; |
26 | | class SwWrtShell; |
27 | | class SwEditWin; |
28 | | class MouseEvent; |
29 | | |
30 | | // base class for all functions |
31 | | class SwDrawBase |
32 | | { |
33 | | protected: |
34 | | SwView& m_rView; |
35 | | SwWrtShell* m_pSh; |
36 | | VclPtr<SwEditWin> m_pWin; |
37 | | Point m_aStartPos; // position of BeginCreate |
38 | | sal_uInt16 m_nSlotId; |
39 | | bool m_bCreateObj :1; |
40 | | bool m_bInsForm :1; |
41 | | |
42 | | Point GetDefaultCenterPos() const; |
43 | | public: |
44 | | SwDrawBase(SwWrtShell *pSh, SwEditWin* pWin, SwView& rView); |
45 | | virtual ~SwDrawBase(); |
46 | | |
47 | | void SetDrawPointer(); |
48 | | void EnterSelectMode(const MouseEvent& rMEvt); |
49 | 0 | bool IsInsertForm() const { return m_bInsForm; } |
50 | 0 | bool IsCreateObj() const { return m_bCreateObj; } |
51 | | |
52 | | // mouse- & key events; return value=true: event was edited |
53 | | bool MouseMove(const MouseEvent& rMEvt); |
54 | | virtual bool MouseButtonUp(const MouseEvent& rMEvt); |
55 | | virtual bool MouseButtonDown(const MouseEvent& rMEvt); |
56 | | |
57 | | void BreakCreate(); |
58 | 0 | void SetSlotId(sal_uInt16 nSlot) {m_nSlotId = nSlot;} |
59 | 0 | sal_uInt16 GetSlotId() const { return m_nSlotId;} |
60 | | |
61 | | virtual void Activate(const sal_uInt16 nSlotId); // activate function |
62 | | virtual void Deactivate(); // deactivate function |
63 | | |
64 | | virtual void CreateDefaultObject(); |
65 | | virtual void CreateDefaultObjectAtPosWithSize(Point aPos, Size aSize); |
66 | | |
67 | | // #i33136# |
68 | | virtual bool doConstructOrthogonal() const; |
69 | | }; |
70 | | |
71 | | #endif // INCLUDED_SW_SOURCE_UIBASE_INC_DRAWBASE_HXX |
72 | | |
73 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |