1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef _GOODIES_IMAPPOLY_HXX
21 #define _GOODIES_IMAPPOLY_HXX
23 #include "svtools/svtdllapi.h"
24 #include <svtools/imapobj.hxx>
25 #include <tools/poly.hxx>
29 class SVT_DLLPUBLIC IMapPolygonObject
: public IMapObject
35 SVT_DLLPRIVATE
void ImpConstruct( const Polygon
& rPoly
, sal_Bool bPixel
);
40 virtual void WriteIMapObject( SvStream
& rOStm
) const;
41 virtual void ReadIMapObject( SvStream
& rIStm
);
43 sal_Bool
ReadPreProLine( SvStream
& rIStm
, String
& rStr
);
46 IMapPolygonObject() {};
47 IMapPolygonObject( const Polygon
& rPoly
,
49 const String
& rAltText
,
51 const String
& rTarget
,
53 sal_Bool bActive
= sal_True
,
54 sal_Bool bPixelCoords
= sal_True
);
55 virtual ~IMapPolygonObject() {};
57 virtual sal_uInt16
GetType() const;
58 virtual sal_Bool
IsHit( const Point
& rPoint
) const;
60 Polygon
GetPolygon( sal_Bool bPixelCoords
= sal_True
) const;
62 // liefert das BoundRect des Polygon-Objektes in 1/100mm
63 virtual Rectangle
GetBoundRect() const { return aPoly
.GetBoundRect(); }
65 sal_Bool
HasExtraEllipse() const { return bEllipse
; }
66 const Rectangle
& GetExtraEllipse() const { return aEllipse
; }
67 void SetExtraEllipse( const Rectangle
& rEllipse
);
69 void Scale( const Fraction
& rFractX
, const Fraction
& rFracY
);
71 using IMapObject::IsEqual
;
72 sal_Bool
IsEqual( const IMapPolygonObject
& rEqObj
);
75 void WriteCERN( SvStream
& rOStm
, const String
& rBaseURL
) const;
76 void WriteNCSA( SvStream
& rOStm
, const String
& rBaseURL
) const;
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */