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 KeyEvent;
29 class MouseEvent;
30 
31 // base class for all functions
32 class SwDrawBase
33 {
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;
42 
43     Point           GetDefaultCenterPos() const;
44 public:
45     SwDrawBase(SwWrtShell *pSh, SwEditWin* pWin, SwView* pView);
46     virtual ~SwDrawBase();
47 
48     void         SetDrawPointer();
49     void         EnterSelectMode(const MouseEvent& rMEvt);
IsInsertForm() const50     bool  IsInsertForm() const { return m_bInsForm; }
IsCreateObj() const51     bool  IsCreateObj() const { return m_bCreateObj; }
52 
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);
57 
58     void         BreakCreate();
SetSlotId(sal_uInt16 nSlot)59     void         SetSlotId(sal_uInt16 nSlot) {m_nSlotId = nSlot;}
GetSlotId() const60     sal_uInt16   GetSlotId() const { return m_nSlotId;}
61 
62     virtual void Activate(const sal_uInt16 nSlotId);    // activate function
63     virtual void Deactivate();                      // deactivate function
64 
65     virtual void CreateDefaultObject();
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: */
74