merge the formfield patch from ooo-build
[ooovba.git] / goodies / source / filter.vcl / idxf / dxfgrprd.hxx
blob71bdb4759798f1a4418b0764e2785f107b06aabc
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: dxfgrprd.hxx,v $
10 * $Revision: 1.7 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _DXFGRPRD_HXX
32 #define _DXFGRPRD_HXX
34 #include <svtools/fltcall.hxx>
36 #define DXF_MAX_STRING_LEN 256 // Max Stringlaenge (ohne die 0)
39 class DXFGroupReader
42 public:
44 // Anmerkkung:
45 // sizeof(DXFGroupReader) ist gross, also nur dynamisch anlegen!
47 DXFGroupReader( SvStream & rIStream, USHORT nMinPercent, USHORT nMaxPercent );
49 BOOL GetStatus();
51 void SetError();
53 USHORT Read();
54 // Liesst die naechste Gruppe ein und liefert den Gruppencode zurueck.
55 // Im Falle eines Fehlers liefert GetStatus() FALSE, Gruppencode wird 0
56 // gesetzt, und es wird SetS(0,"EOF") ausgefuehrt.
58 USHORT GetG();
59 // Liefert den letzten Gruppencode (also was Read() zuletzt lieferte)
61 long GetI();
62 // Liefert den Integer-Wert zur Gruppe, die vorher mit Read() gelesen wurde.
63 // Dabei muss es sich um einen Gruppencode fuer den Datentyp Integer
64 // gehandelt haben, wenn nicht, wird 0 gelieferet.
66 double GetF();
67 // Liefert den Floatingpoint-Wert zur Gruppe, die vorher mit Read() gelesen wurde.
68 // Dabei muss es sich um einen Gruppencode fuer den Datentyp Floatingpoint
69 // gehandelt haben, wenn nicht, wird 0 geliefert.
71 const char * GetS();
72 // Liefert den String zur Gruppe, die vorher mit Read() gelesen wurde.
73 // Dabei muss es sich um einen Gruppencode fuer den Datentyp String
74 // gehandelt haben, wenn nicht, wird NULL geliefert.
76 // Folgende drei Methoden arbeiten wie die obigen, nur kann auch ein anderer als der
77 // aktuelle Gruppencode angegeben werden. (DXFGroupReader speichert die Parameter
78 // zu allen Gruppencodes. Dadurch ist es moeglich, dass zunaechst mit Read() einige
79 // verschiedene Gruppen eingelesen werden, bevor sie ausgewertet werden.)
80 long GetI(USHORT nG);
81 double GetF(USHORT nG);
82 const char * GetS(USHORT nG);
84 // Mit folgenden Methoden koennen die aktuell gespeicherten Werte zu den
85 // Gruppencodes veraendert werden. (z.B. um Defaultwerte zu setzen, bevor
86 // 'blind' eine Menge von Gruppen eingelesen wird.)
87 void SetF(USHORT nG, double fF);
88 void SetS(USHORT nG, const char * sS); // (wird kopiert)
90 private:
92 void ReadLine(char * ptgt);
93 long ReadI();
94 double ReadF();
95 void ReadS(char * ptgt);
97 SvStream & rIS;
98 char sIBuff[1024];
99 USHORT nIBuffSize,nIBuffPos;
100 BOOL bStatus;
101 USHORT nLastG;
102 ULONG nGCount;
104 ULONG nMinPercent;
105 ULONG nMaxPercent;
106 ULONG nLastPercent;
107 ULONG nFileSize;
109 char S0_9 [10][DXF_MAX_STRING_LEN+1]; // Strings Gruppencodes 0..9
110 double F10_59 [50]; // Floats Gruppencodes 10..59
111 long I60_79 [20]; // Integers Gruppencodes 60..79
112 long I90_99 [10];
113 char S100 [DXF_MAX_STRING_LEN+1];
114 char S102 [DXF_MAX_STRING_LEN+1];
115 double F140_147 [ 8]; // Floats Gruppencodes 140..147
116 long I170_175 [ 6]; // Integers Gruppencodes 170..175
117 double F210_239 [30]; // Floats Gruppencodes 210..239
118 char S999_1009 [11][DXF_MAX_STRING_LEN+1]; // Strings Gruppencodes 999..1009
119 double F1010_1059[50]; // Floats Gruppencodes 1010..1059
120 long I1060_1079[20]; // Integers Gruppencodes 1060..1079
125 inline BOOL DXFGroupReader::GetStatus()
127 return bStatus;
131 inline void DXFGroupReader::SetError()
133 bStatus=FALSE;
136 inline USHORT DXFGroupReader::GetG()
138 return nLastG;
141 inline long DXFGroupReader::GetI()
143 return GetI(nLastG);
146 inline double DXFGroupReader::GetF()
148 return GetF(nLastG);
151 inline const char * DXFGroupReader::GetS()
153 return GetS(nLastG);
156 #endif