update credits
[LibreOffice.git] / include / svtools / imapcirc.hxx
blob057561adad986538ca7b65c3754394d42d0c99f3
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
19 #ifndef _GOODIES_IMAPCIRC_HXX
20 #define _GOODIES_IMAPCIRC_HXX
22 #include "svtools/svtdllapi.h"
23 #include <tools/gen.hxx>
24 #include <svtools/imapobj.hxx>
26 class Fraction;
28 class SVT_DLLPUBLIC IMapCircleObject : public IMapObject
30 Point aCenter;
31 sal_Int32 nRadius;
33 void ImpConstruct( const Point& rCenter, sal_uLong nRad, sal_Bool bPixel );
35 protected:
37 // Binaer-Im-/Export
38 virtual void WriteIMapObject( SvStream& rOStm ) const;
39 virtual void ReadIMapObject( SvStream& rIStm );
41 public:
43 IMapCircleObject() {};
44 IMapCircleObject( const Point& rCenter, sal_uLong nRad,
45 const String& rURL,
46 const String& rAltText,
47 const String& rDesc,
48 const String& rTarget,
49 const String& rName,
50 sal_Bool bActive = sal_True,
51 sal_Bool bPixelCoords = sal_True );
52 virtual ~IMapCircleObject() {};
54 virtual sal_uInt16 GetType() const;
55 virtual sal_Bool IsHit( const Point& rPoint ) const;
57 Point GetCenter( sal_Bool bPixelCoords = sal_True ) const;
58 sal_uLong GetRadius( sal_Bool bPixelCoords = sal_True ) const;
60 // liefert das BoundRect des Kreis-Objektes in 1/100mm
61 virtual Rectangle GetBoundRect() const;
63 void Scale( const Fraction& rFractX, const Fraction& rFracY );
65 using IMapObject::IsEqual;
66 sal_Bool IsEqual( const IMapCircleObject& rEqObj );
68 // Im-/Export
69 void WriteCERN( SvStream& rOStm, const String& rBaseURL ) const;
70 void WriteNCSA( SvStream& rOStm, const String& rBaseURL ) const;
73 #endif
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */