merged tag ooo/OOO330_m14
[LibreOffice.git] / sc / source / filter / inc / op.h
blob2548bdfa34c3df18e433a0205c47cbebf5c05ef5
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 #ifndef SC_OP_H
29 #define SC_OP_H
31 #include <tools/solar.h>
32 #include <patattr.hxx>
34 // OP-Code-Funktionen
35 class SvStream;
36 void NI( SvStream &aStream, USHORT nLaenge );
37 void OP_BOF( SvStream &aStream, USHORT nLaenge );
38 void OP_EOF( SvStream &aStream, USHORT nLaenge );
39 void OP_Integer( SvStream &aStream, USHORT nLaenge );
40 void OP_Number( SvStream &aStream, USHORT nLaenge );
41 void OP_Label( SvStream &aStream, USHORT nLaenge );
42 //UNUSED2009-05 void OP_Text( SvStream &aStream, USHORT nLaenge ); // WK3
43 void OP_Integer3( SvStream &aStream, USHORT nLaenge ); // WK3
44 void OP_Number3( SvStream &aStream, USHORT nLaenge ); // WK3
45 void OP_Formula( SvStream &aStream, USHORT nLaenge );
46 void OP_Formula3( SvStream &aStream, USHORT nLaenge ); // WK3
47 void OP_ColumnWidth( SvStream &aStream, USHORT nLaenge );
48 void OP_NamedRange( SvStream &aStream, USHORT nLaenge );
49 void OP_SymphNamedRange( SvStream &aStream, USHORT nLaenge );
50 void OP_Footer( SvStream &aStream, USHORT nLaenge );
51 void OP_Header( SvStream &aStream, USHORT nLaenge );
52 void OP_Margins( SvStream &aStream, USHORT nLaenge );
53 void OP_HiddenCols( SvStream &aStream, USHORT nLaenge );
54 void OP_Window1( SvStream &aStream, USHORT nLaenge );
55 void OP_Blank( SvStream &aStream, USHORT nLaenge );
56 // Lotus 123 bits.
57 void OP_BOF123( SvStream &aStream, USHORT nLaenge );
58 void OP_EOF123( SvStream &aStream, USHORT nLaenge );
59 void OP_Number123( SvStream &aStream, USHORT nLaenge );
60 void OP_Label123( SvStream &aStream, USHORT nLaenge );
61 void OP_Formula123( SvStream &aStream, USHORT nLaenge );
62 void OP_IEEENumber123(SvStream& r, UINT16 n);
63 void OP_Note123(SvStream &aStream, USHORT nLaenge);
64 void OP_CreatePattern123(SvStream &aStream, USHORT nLaenge);
65 void OP_SheetName123( SvStream &rStream, USHORT nLength );
66 void OP_HorAlign123(BYTE nAlignPattern, SfxItemSet& rPattern /* const ScPatternAttr& rPattern*/ );
67 void OP_VerAlign123(BYTE nAlignPattern, SfxItemSet& rPattern /* const ScPatternAttr& rPattern*/ );
68 void OP_ApplyPatternArea123(SvStream& r);
70 #endif