2010-10-27 06:30:13 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2003-03-27 10:05:12 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 07:10:21 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2003-03-27 10:05:12 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2003-03-27 10:05:12 -06:00
|
|
|
*
|
2008-04-11 07:10:21 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-03-27 10:05:12 -06:00
|
|
|
*
|
2008-04-11 07:10:21 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2003-03-27 10:05:12 -06:00
|
|
|
*
|
2008-04-11 07:10:21 -05: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.
|
2003-03-27 10:05:12 -06:00
|
|
|
*
|
2008-04-11 07:10:21 -05: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).
|
2003-03-27 10:05:12 -06:00
|
|
|
*
|
2008-04-11 07:10:21 -05: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.
|
2003-03-27 10:05:12 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _POLY_H
|
|
|
|
#define _POLY_H
|
|
|
|
|
2007-06-27 16:08:40 -05:00
|
|
|
#include <tools/gen.hxx>
|
2003-03-27 10:05:12 -06:00
|
|
|
|
2010-07-28 21:56:19 -05:00
|
|
|
#define MAX_64KPOINTS ((((sal_uInt16)0xFFFF)-32)/sizeof(Point))
|
2003-03-27 10:05:12 -06:00
|
|
|
|
|
|
|
// -------------------
|
|
|
|
// - ImplPolygonData -
|
|
|
|
// -------------------
|
|
|
|
|
|
|
|
class ImplPolygonData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Point* mpPointAry;
|
2010-07-28 21:56:19 -05:00
|
|
|
sal_uInt8* mpFlagAry;
|
|
|
|
sal_uInt16 mnPoints;
|
|
|
|
sal_uIntPtr mnRefCount;
|
2003-03-27 10:05:12 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
// ---------------
|
|
|
|
// - ImplPolygon -
|
|
|
|
// ---------------
|
|
|
|
|
|
|
|
class ImplPolygon : public ImplPolygonData
|
|
|
|
{
|
|
|
|
public:
|
2010-07-28 21:56:19 -05:00
|
|
|
ImplPolygon( sal_uInt16 nInitSize, sal_Bool bFlags = sal_False );
|
|
|
|
ImplPolygon( sal_uInt16 nPoints, const Point* pPtAry, const sal_uInt8* pInitFlags = NULL );
|
2003-03-27 10:05:12 -06:00
|
|
|
ImplPolygon( const ImplPolygon& rImplPoly );
|
|
|
|
~ImplPolygon();
|
|
|
|
|
2010-07-28 21:56:19 -05:00
|
|
|
void ImplSetSize( sal_uInt16 nSize, sal_Bool bResize = sal_True );
|
2003-03-27 10:05:12 -06:00
|
|
|
void ImplCreateFlagArray();
|
2010-07-28 21:56:19 -05:00
|
|
|
void ImplSplit( sal_uInt16 nPos, sal_uInt16 nSpace, ImplPolygon* pInitPoly = NULL );
|
2003-03-27 10:05:12 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
// -------------------
|
|
|
|
// - ImplPolyPolygon -
|
|
|
|
// -------------------
|
|
|
|
|
2010-07-28 21:56:19 -05:00
|
|
|
#define MAX_POLYGONS ((sal_uInt16)0x3FF0)
|
2003-03-27 10:05:12 -06:00
|
|
|
|
|
|
|
class Polygon;
|
|
|
|
typedef Polygon* SVPPOLYGON;
|
|
|
|
|
|
|
|
class ImplPolyPolygon
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SVPPOLYGON* mpPolyAry;
|
2010-07-28 21:56:19 -05:00
|
|
|
sal_uIntPtr mnRefCount;
|
|
|
|
sal_uInt16 mnCount;
|
|
|
|
sal_uInt16 mnSize;
|
|
|
|
sal_uInt16 mnResize;
|
2003-03-27 10:05:12 -06:00
|
|
|
|
2010-07-28 21:56:19 -05:00
|
|
|
ImplPolyPolygon( sal_uInt16 nInitSize, sal_uInt16 nResize )
|
2003-03-27 10:05:12 -06:00
|
|
|
{ mpPolyAry = NULL; mnCount = 0; mnRefCount = 1;
|
|
|
|
mnSize = nInitSize; mnResize = nResize; }
|
2010-07-28 21:56:19 -05:00
|
|
|
ImplPolyPolygon( sal_uInt16 nInitSize );
|
2003-03-27 10:05:12 -06:00
|
|
|
ImplPolyPolygon( const ImplPolyPolygon& rImplPolyPoly );
|
|
|
|
~ImplPolyPolygon();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _SV_POLY_H
|
2010-10-27 06:30:13 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|