Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / sw / source / uibase / inc / drawbase.hxx
blobccc045ced313eab98f5f5ff9825ae2e8c9ff59e9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
19 #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_DRAWBASE_HXX
20 #define INCLUDED_SW_SOURCE_UIBASE_INC_DRAWBASE_HXX
22 #include <tools/gen.hxx>
23 #include <vcl/vclptr.hxx>
25 class SwView;
26 class SwWrtShell;
27 class SwEditWin;
28 class KeyEvent;
29 class MouseEvent;
31 // base class for all functions
32 class SwDrawBase
34 protected:
35 SwView* m_pView;
36 SwWrtShell* m_pSh;
37 VclPtr<SwEditWin> m_pWin;
38 Point m_aStartPos; // position of BeginCreate
39 sal_uInt16 m_nSlotId;
40 bool m_bCreateObj :1;
41 bool m_bInsForm :1;
43 Point GetDefaultCenterPos() const;
44 public:
45 SwDrawBase(SwWrtShell *pSh, SwEditWin* pWin, SwView* pView);
46 virtual ~SwDrawBase();
48 void SetDrawPointer();
49 void EnterSelectMode(const MouseEvent& rMEvt);
50 bool IsInsertForm() const { return m_bInsForm; }
51 bool IsCreateObj() const { return m_bCreateObj; }
53 // mouse- & key events; return value=true: event was edited
54 bool MouseMove(const MouseEvent& rMEvt);
55 virtual bool MouseButtonUp(const MouseEvent& rMEvt);
56 virtual bool MouseButtonDown(const MouseEvent& rMEvt);
58 void BreakCreate();
59 void SetSlotId(sal_uInt16 nSlot) {m_nSlotId = nSlot;}
60 sal_uInt16 GetSlotId() const { return m_nSlotId;}
62 virtual void Activate(const sal_uInt16 nSlotId); // activate function
63 virtual void Deactivate(); // deactivate function
65 virtual void CreateDefaultObject();
66 virtual void CreateDefaultObjectAtPosWithSize(Point aPos, Size aSize);
68 // #i33136#
69 virtual bool doConstructOrthogonal() const;
72 #endif // INCLUDED_SW_SOURCE_UIBASE_INC_DRAWBASE_HXX
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */