Files
libreoffice/sw/source/ui/ribbar/conpoly.cxx
2002-12-05 11:47:59 +00:00

229 lines
6.5 KiB
C++

/*************************************************************************
*
* $RCSfile: conpoly.cxx,v $
*
* $Revision: 1.2 $
*
* last change: $Author: os $ $Date: 2002-12-05 12:47:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifdef PRECOMPILED
#include "ui_pch.hxx"
#endif
#pragma hdrstop
#ifndef _SVDMARK_HXX //autogen
#include <svx/svdmark.hxx>
#endif
#ifndef _SVDVIEW_HXX //autogen
#include <svx/svdview.hxx>
#endif
#ifndef _SVDOPATH_HXX //autogen
#include <svx/svdopath.hxx>
#endif
#include "view.hxx"
#include "edtwin.hxx"
#include "wrtsh.hxx"
#include "drawbase.hxx"
#include "conpoly.hxx"
/************************************************************************/
#define CLOSE_PIXDIST 5 // Pixelabstand, ab dem geschlossen wird
/*************************************************************************
|*
|* Konstruktor
|*
\************************************************************************/
ConstPolygon::ConstPolygon(SwWrtShell* pWrtShell, SwEditWin* pEditWin, SwView* pSwView) :
SwDrawBase(pWrtShell, pEditWin, pSwView)
{
}
/*************************************************************************
|*
|* MouseButtonDown-event
|*
\************************************************************************/
BOOL ConstPolygon::MouseButtonDown(const MouseEvent& rMEvt)
{
BOOL bReturn;
if ((bReturn = SwDrawBase::MouseButtonDown(rMEvt)) == TRUE)
aLastPos = rMEvt.GetPosPixel();
return (bReturn);
}
/*************************************************************************
|*
|* MouseMove-event
|*
\************************************************************************/
BOOL ConstPolygon::MouseMove(const MouseEvent& rMEvt)
{
BOOL bReturn = FALSE;
bReturn = SwDrawBase::MouseMove(rMEvt);
return bReturn;
}
/*************************************************************************
|*
|* MouseButtonUp-event
|*
\************************************************************************/
BOOL ConstPolygon::MouseButtonUp(const MouseEvent& rMEvt)
{
BOOL bReturn = FALSE;
if (pSh->IsDrawCreate())
{
if (rMEvt.IsLeft() && rMEvt.GetClicks() == 1 &&
pWin->GetDrawMode() != OBJ_FREELINE)
{
if (!pSh->EndCreate(SDRCREATE_NEXTPOINT))
{
pSh->BreakCreate();
EnterSelectMode(rMEvt);
return TRUE;
}
}
else
{
Point aPnt(pWin->PixelToLogic(rMEvt.GetPosPixel()));
bReturn = SwDrawBase::MouseButtonUp(rMEvt);
if (!(bReturn && (aPnt == aStartPos || rMEvt.IsRight())))
{
SdrView *pSdrView = pSh->GetDrawView();
long nCloseDist = pWin->PixelToLogic(Size(CLOSE_PIXDIST, 0)).Width();
const SdrMarkList& rMarkList = pSdrView->GetMarkList();
if (rMarkList.GetMark(0))
{
SdrPathObj* pPathObj = (SdrPathObj *)rMarkList.GetMark(0)->GetObj();
const XPolyPolygon& rXPP = pPathObj->GetPathPoly();
if (rXPP.Count() == 1)
{
USHORT nPntMax = rXPP[0].GetPointCount() - 1;
Point aDiff = rXPP[0][nPntMax] - rXPP[0][0];
long nSqDist = aDiff.X() * aDiff.X() + aDiff.Y() * aDiff.Y();
nCloseDist *= nCloseDist;
if (nSqDist <= nCloseDist && !pPathObj->IsClosed())
pPathObj->ToggleClosed(0);
}
}
}
}
}
else
bReturn = SwDrawBase::MouseButtonUp(rMEvt);
return (bReturn);
}
/*************************************************************************
|*
|* Function aktivieren
|*
\************************************************************************/
void ConstPolygon::Activate(const USHORT nSlotId)
{
switch (nSlotId)
{
case SID_DRAW_POLYGON_NOFILL:
pWin->SetDrawMode(OBJ_PLIN);
break;
case SID_DRAW_BEZIER_NOFILL:
pWin->SetDrawMode(OBJ_PATHLINE);
break;
case SID_DRAW_FREELINE_NOFILL:
pWin->SetDrawMode(OBJ_FREELINE);
break;
default:
break;
}
SwDrawBase::Activate(nSlotId);
}