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_IMAP_HXX
21 #define INCLUDED_SVTOOLS_IMAP_HXX
23 #include <svtools/svtdllapi.h>
24 #include <tools/stream.hxx>
33 typedef ::std::vector
< IMapObject
* > IMapObjectList_impl
;
35 class SVT_DLLPUBLIC ImageMap
39 IMapObjectList_impl maList
;
44 // Binaer laden/speichern
45 void ImpWriteImageMap( SvStream
& rOStm
, const OUString
& ) const ;
46 void ImpReadImageMap( SvStream
& rIStm
, size_t nCount
, const OUString
& );
49 void ImpWriteCERN( SvStream
& rOStm
, const OUString
& rBaseURL
) const;
50 void ImpWriteNCSA( SvStream
& rOStm
, const OUString
& rBaseURL
) const;
51 sal_uLong
ImpReadCERN( SvStream
& rOStm
, const OUString
& rBaseURL
);
52 sal_uLong
ImpReadNCSA( SvStream
& rOStm
, const OUString
& rBaseURL
);
54 void ImpReadCERNLine( const OString
& rLine
, const OUString
& rBaseURL
);
55 Point
ImpReadCERNCoords( const char** ppStr
);
56 long ImpReadCERNRadius( const char** ppStr
);
57 OUString
ImpReadCERNURL( const char** ppStr
, const OUString
& rBaseURL
);
59 void ImpReadNCSALine( const OString
& rLine
, const OUString
& rBaseURL
);
60 OUString
ImpReadNCSAURL( const char** ppStr
, const OUString
& rBaseURL
);
61 Point
ImpReadNCSACoords( const char** ppStr
);
63 sal_uLong
ImpDetectFormat( SvStream
& rIStm
);
70 ImageMap( const OUString
& rName
);
71 ImageMap( const ImageMap
& rImageMap
);
73 // Der Dtor gibt den intern belegten
74 // Speicher wieder frei;
75 // alle IMapObjekte werden im Dtor zerstoert;
79 ImageMap
& operator=( const ImageMap
& rImageMap
);
81 // Vergleichsoperator (es wird alles auf Gleichheit geprueft)
82 sal_Bool
operator==( const ImageMap
& rImageMap
);
83 sal_Bool
operator!=( const ImageMap
& rImageMap
);
85 // In die Map wird ein neues IMap-Obkekt ans Ende eingefuegt
86 void InsertIMapObject( const IMapObject
& rIMapObject
);
88 // Zugriff auf einzelne IMapObjekte; die Objekte
89 // duerfen von aussen _nicht_ zerstoert werden
90 IMapObject
* GetIMapObject( size_t nPos
) const
92 return ( nPos
< maList
.size() ) ? maList
[ nPos
] : NULL
;
95 // Gibt das Objekt zurueck, das zuerst getroffen wurde oder NULL;
96 // Groessen- und Positionsangaben sind in 1/100mm;
97 // rTotalSize ist die Originalgroesse des Bildes;
98 // rDisplaySize die aktuelle Darstellungsgroesse;
99 // rRelPoint bezieht sich auf die Darstellungsgroesse
100 // und die linke oebere Ecke des Bildes
101 IMapObject
* GetHitIMapObject( const Size
& rOriginalSize
,
102 const Size
& rDisplaySize
,
103 const Point
& rRelHitPoint
,
104 sal_uLong nFlags
= 0 );
106 // Gibt die Gesamtanzahl der IMap-Objekte zurueck
107 size_t GetIMapObjectCount() const { return maList
.size(); }
109 // Loescht alle internen Objekte
110 void ClearImageMap();
112 // liefert die aktuelle Versionsnummer
113 sal_uInt16
GetVersion() const;
115 // liefert / setzt den Namen der ImageMap
116 const OUString
& GetName() const { return aName
; }
117 void SetName( const OUString
& rName
) { aName
= rName
; }
119 // skaliert alle Objekte der ImageMap entpr. dem uebergebenen Faktor
120 void Scale( const Fraction
& rFractX
, const Fraction
& rFracY
);
123 void Write ( SvStream
& rOStm
, const OUString
& rBaseURL
) const;
124 void Read( SvStream
& rIStm
, const OUString
& rBaseURL
);
126 void Write( SvStream
& rOStm
, sal_uLong nFormat
, const OUString
& rBaseURL
) const;
127 sal_uLong
Read( SvStream
& rIStm
, sal_uLong nFormat
, const OUString
& rBaseURL
);
133 sal_uLong nCompatPos
;
134 sal_uLong nTotalSize
;
138 IMapCompat( const IMapCompat
& ) {}
139 IMapCompat
& operator=( const IMapCompat
& ) { return *this; }
140 sal_Bool
operator==( const IMapCompat
& ) { return sal_False
; }
144 IMapCompat( SvStream
& rStm
, const sal_uInt16 nStreamMode
);
148 #endif // INCLUDED_SVTOOLS_IMAP_HXX
150 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */