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 INCLUDED_SVTOOLS_IMAPPOLY_HXX
21 #define INCLUDED_SVTOOLS_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
, bool bPixel
);
40 virtual void WriteIMapObject( SvStream
& rOStm
) const SAL_OVERRIDE
;
41 virtual void ReadIMapObject( SvStream
& rIStm
) SAL_OVERRIDE
;
43 bool ReadPreProLine( SvStream
& rIStm
, OUString
& rStr
);
46 IMapPolygonObject() : bEllipse(false) {}
47 IMapPolygonObject( const Polygon
& rPoly
,
49 const OUString
& rAltText
,
50 const OUString
& rDesc
,
51 const OUString
& rTarget
,
52 const OUString
& rName
,
54 bool bPixelCoords
= true );
55 virtual ~IMapPolygonObject() {}
57 virtual sal_uInt16
GetType() const SAL_OVERRIDE
;
58 virtual bool IsHit( const Point
& rPoint
) const SAL_OVERRIDE
;
60 Polygon
GetPolygon( bool bPixelCoords
= true ) const;
62 // liefert das BoundRect des Polygon-Objektes in 1/100mm
63 virtual Rectangle
GetBoundRect() const SAL_OVERRIDE
{ return aPoly
.GetBoundRect(); }
65 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 bool IsEqual( const IMapPolygonObject
& rEqObj
);
75 void WriteCERN( SvStream
& rOStm
, const OUString
& rBaseURL
) const;
76 void WriteNCSA( SvStream
& rOStm
, const OUString
& rBaseURL
) const;
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */