2000-09-18 16:15:01 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 18:56:35 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:56:35 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:56:35 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:56:35 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:56:35 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:56:35 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef _SW_DRAWBASE_HXX
|
|
|
|
#define _SW_DRAWBASE_HXX
|
|
|
|
|
|
|
|
#include <tools/gen.hxx>
|
|
|
|
|
|
|
|
class SwView;
|
|
|
|
class SwWrtShell;
|
|
|
|
class SwEditWin;
|
|
|
|
class KeyEvent;
|
|
|
|
class MouseEvent;
|
|
|
|
|
|
|
|
#define MIN_FREEHAND_DISTANCE 10
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Basisklasse fuer alle Funktionen
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
class SwDrawBase
|
|
|
|
{
|
|
|
|
protected:
|
2007-09-27 10:57:37 +00:00
|
|
|
SwView* m_pView;
|
|
|
|
SwWrtShell* m_pSh;
|
|
|
|
SwEditWin* m_pWin;
|
|
|
|
Point m_aStartPos; // Position von BeginCreate
|
|
|
|
Point m_aMDPos; // Position von MouseButtonDown
|
|
|
|
USHORT m_nSlotId;
|
|
|
|
BOOL m_bCreateObj :1;
|
|
|
|
BOOL m_bInsForm :1;
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2002-10-25 12:09:48 +00:00
|
|
|
Point GetDefaultCenterPos();
|
2000-09-18 16:15:01 +00:00
|
|
|
public:
|
|
|
|
SwDrawBase(SwWrtShell *pSh, SwEditWin* pWin, SwView* pView);
|
|
|
|
virtual ~SwDrawBase();
|
|
|
|
|
|
|
|
void SetDrawPointer();
|
|
|
|
void EnterSelectMode(const MouseEvent& rMEvt);
|
2007-09-27 10:57:37 +00:00
|
|
|
inline BOOL IsInsertForm() const { return m_bInsForm; }
|
|
|
|
inline BOOL IsCreateObj() const { return m_bCreateObj; }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
// Mouse- & Key-Events; Returnwert=TRUE: Event wurde bearbeitet
|
|
|
|
virtual BOOL KeyInput(const KeyEvent& rKEvt);
|
|
|
|
virtual BOOL MouseMove(const MouseEvent& rMEvt);
|
|
|
|
virtual BOOL MouseButtonUp(const MouseEvent& rMEvt);
|
|
|
|
virtual BOOL MouseButtonDown(const MouseEvent& rMEvt);
|
|
|
|
|
|
|
|
void BreakCreate();
|
2007-09-27 10:57:37 +00:00
|
|
|
void SetSlotId(USHORT nSlot) {m_nSlotId = nSlot;}
|
|
|
|
USHORT GetSlotId() { return m_nSlotId;}
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
virtual void Activate(const USHORT nSlotId); // Function aktivieren
|
|
|
|
virtual void Deactivate(); // Function deaktivieren
|
2002-04-03 11:38:07 +00:00
|
|
|
|
|
|
|
virtual void CreateDefaultObject();
|
2004-11-17 08:38:58 +00:00
|
|
|
|
|
|
|
// #i33136#
|
|
|
|
virtual bool doConstructOrthogonal() const;
|
2000-09-18 16:15:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _SW_DRAWBASE_HXX
|
|
|
|
|