bump product version to 4.2.0.1
[LibreOffice.git] / include / svtools / imap.hxx
blobf421b2fce82de42a0d5583c60ace0a8a6977fd51
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 .
20 #ifndef INCLUDED_SVTOOLS_IMAP_HXX
21 #define INCLUDED_SVTOOLS_IMAP_HXX
23 #include <svtools/svtdllapi.h>
24 #include <tools/stream.hxx>
25 #include <vector>
27 class Point;
28 class Rectangle;
29 class Size;
30 class Fraction;
31 class IMapObject;
33 typedef ::std::vector< IMapObject* > IMapObjectList_impl;
35 class SVT_DLLPUBLIC ImageMap
37 private:
39 IMapObjectList_impl maList;
40 OUString aName;
42 protected:
44 // Binaer laden/speichern
45 void ImpWriteImageMap( SvStream& rOStm, const OUString& ) const ;
46 void ImpReadImageMap( SvStream& rIStm, size_t nCount, const OUString& );
48 // Im-/Export
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 );
65 public:
67 TYPEINFO();
69 ImageMap() {};
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;
76 virtual ~ImageMap();
78 // Zuweisungsoperator
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 );
122 // Im-/Export
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 );
130 class IMapCompat
132 SvStream* pRWStm;
133 sal_uLong nCompatPos;
134 sal_uLong nTotalSize;
135 sal_uInt16 nStmMode;
137 IMapCompat() {}
138 IMapCompat( const IMapCompat& ) {}
139 IMapCompat& operator=( const IMapCompat& ) { return *this; }
140 sal_Bool operator==( const IMapCompat& ) { return sal_False; }
142 public:
144 IMapCompat( SvStream& rStm, const sal_uInt16 nStreamMode );
145 ~IMapCompat();
148 #endif // INCLUDED_SVTOOLS_IMAP_HXX
150 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */