2010-10-14 08:30:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
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
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 m_nSlotId;
|
|
|
|
sal_Bool m_bCreateObj :1;
|
|
|
|
sal_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);
|
2011-01-17 15:06:54 +01:00
|
|
|
inline sal_Bool IsInsertForm() const { return m_bInsForm; }
|
|
|
|
inline sal_Bool IsCreateObj() const { return m_bCreateObj; }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
// Mouse- & Key-Events; Returnwert=sal_True: Event wurde bearbeitet
|
|
|
|
virtual sal_Bool KeyInput(const KeyEvent& rKEvt);
|
|
|
|
virtual sal_Bool MouseMove(const MouseEvent& rMEvt);
|
|
|
|
virtual sal_Bool MouseButtonUp(const MouseEvent& rMEvt);
|
|
|
|
virtual sal_Bool MouseButtonDown(const MouseEvent& rMEvt);
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
void BreakCreate();
|
2011-01-17 15:06:54 +01:00
|
|
|
void SetSlotId(sal_uInt16 nSlot) {m_nSlotId = nSlot;}
|
|
|
|
sal_uInt16 GetSlotId() { return m_nSlotId;}
|
2000-09-18 16:15:01 +00:00
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
virtual void Activate(const sal_uInt16 nSlotId); // Function aktivieren
|
2000-09-18 16:15:01 +00:00
|
|
|
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
|
|
|
|
|
2010-10-14 08:30:41 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|