Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #ifndef INCLUDED_SVTOOLS_IMAP_HXX
21 : #define INCLUDED_SVTOOLS_IMAP_HXX
22 :
23 : #include <svtools/svtdllapi.h>
24 : #include <tools/stream.hxx>
25 : #include <vector>
26 :
27 : class Point;
28 : class Rectangle;
29 : class Size;
30 : class Fraction;
31 : class IMapObject;
32 :
33 : typedef ::std::vector< IMapObject* > IMapObjectList_impl;
34 :
35 : class SVT_DLLPUBLIC ImageMap
36 : {
37 : private:
38 :
39 : IMapObjectList_impl maList;
40 : OUString aName;
41 :
42 : protected:
43 :
44 : // Binaer laden/speichern
45 : void ImpWriteImageMap( SvStream& rOStm, const OUString& ) const ;
46 : void ImpReadImageMap( SvStream& rIStm, size_t nCount, const OUString& );
47 :
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 );
53 :
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 );
58 :
59 : void ImpReadNCSALine( const OString& rLine, const OUString& rBaseURL );
60 : OUString ImpReadNCSAURL( const char** ppStr, const OUString& rBaseURL );
61 : Point ImpReadNCSACoords( const char** ppStr );
62 :
63 : sal_uLong ImpDetectFormat( SvStream& rIStm );
64 :
65 : public:
66 :
67 : TYPEINFO();
68 :
69 0 : ImageMap() {};
70 : ImageMap( const OUString& rName );
71 : ImageMap( const ImageMap& rImageMap );
72 :
73 : // Der Dtor gibt den intern belegten
74 : // Speicher wieder frei;
75 : // alle IMapObjekte werden im Dtor zerstoert;
76 : virtual ~ImageMap();
77 :
78 : // Zuweisungsoperator
79 : ImageMap& operator=( const ImageMap& rImageMap );
80 :
81 : // Vergleichsoperator (es wird alles auf Gleichheit geprueft)
82 : bool operator==( const ImageMap& rImageMap );
83 : bool operator!=( const ImageMap& rImageMap );
84 :
85 : // In die Map wird ein neues IMap-Obkekt ans Ende eingefuegt
86 : void InsertIMapObject( const IMapObject& rIMapObject );
87 :
88 : // Zugriff auf einzelne IMapObjekte; die Objekte
89 : // duerfen von aussen _nicht_ zerstoert werden
90 0 : IMapObject* GetIMapObject( size_t nPos ) const
91 : {
92 0 : return ( nPos < maList.size() ) ? maList[ nPos ] : NULL;
93 : }
94 :
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 );
105 :
106 : // Gibt die Gesamtanzahl der IMap-Objekte zurueck
107 0 : size_t GetIMapObjectCount() const { return maList.size(); }
108 :
109 : // Loescht alle internen Objekte
110 : void ClearImageMap();
111 :
112 : // liefert die aktuelle Versionsnummer
113 : sal_uInt16 GetVersion() const;
114 :
115 : // liefert / setzt den Namen der ImageMap
116 0 : const OUString& GetName() const { return aName; }
117 0 : void SetName( const OUString& rName ) { aName = rName; }
118 :
119 : // skaliert alle Objekte der ImageMap entpr. dem uebergebenen Faktor
120 : void Scale( const Fraction& rFractX, const Fraction& rFracY );
121 :
122 : // Im-/Export
123 : void Write ( SvStream& rOStm, const OUString& rBaseURL ) const;
124 : void Read( SvStream& rIStm, const OUString& rBaseURL );
125 :
126 : void Write( SvStream& rOStm, sal_uLong nFormat, const OUString& rBaseURL ) const;
127 : sal_uLong Read( SvStream& rIStm, sal_uLong nFormat, const OUString& rBaseURL );
128 : };
129 :
130 : class IMapCompat
131 : {
132 : SvStream* pRWStm;
133 : sal_uLong nCompatPos;
134 : sal_uLong nTotalSize;
135 : sal_uInt16 nStmMode;
136 :
137 : IMapCompat() {}
138 : IMapCompat( const IMapCompat& ) {}
139 : IMapCompat& operator=( const IMapCompat& ) { return *this; }
140 : bool operator==( const IMapCompat& ) { return false; }
141 :
142 : public:
143 :
144 : IMapCompat( SvStream& rStm, const sal_uInt16 nStreamMode );
145 : ~IMapCompat();
146 : };
147 :
148 : #endif // INCLUDED_SVTOOLS_IMAP_HXX
149 :
150 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|