update dev300-m58
[ooovba.git] / sc / source / filter / inc / op.h
blob646a592eb6edc1fb9323b19e33764e889cd4b2b4
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: op.h,v $
10 * $Revision: 1.6 $
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 SC_OP_H
32 #define SC_OP_H
34 #include <tools/solar.h>
35 #include <patattr.hxx>
37 // OP-Code-Funktionen
38 class SvStream;
39 void NI( SvStream &aStream, USHORT nLaenge );
40 void OP_BOF( SvStream &aStream, USHORT nLaenge );
41 void OP_EOF( SvStream &aStream, USHORT nLaenge );
42 void OP_Integer( SvStream &aStream, USHORT nLaenge );
43 void OP_Number( SvStream &aStream, USHORT nLaenge );
44 void OP_Label( SvStream &aStream, USHORT nLaenge );
45 //UNUSED2009-05 void OP_Text( SvStream &aStream, USHORT nLaenge ); // WK3
46 void OP_Integer3( SvStream &aStream, USHORT nLaenge ); // WK3
47 void OP_Number3( SvStream &aStream, USHORT nLaenge ); // WK3
48 void OP_Formula( SvStream &aStream, USHORT nLaenge );
49 void OP_Formula3( SvStream &aStream, USHORT nLaenge ); // WK3
50 void OP_ColumnWidth( SvStream &aStream, USHORT nLaenge );
51 void OP_NamedRange( SvStream &aStream, USHORT nLaenge );
52 void OP_SymphNamedRange( SvStream &aStream, USHORT nLaenge );
53 void OP_Footer( SvStream &aStream, USHORT nLaenge );
54 void OP_Header( SvStream &aStream, USHORT nLaenge );
55 void OP_Margins( SvStream &aStream, USHORT nLaenge );
56 void OP_HiddenCols( SvStream &aStream, USHORT nLaenge );
57 void OP_Window1( SvStream &aStream, USHORT nLaenge );
58 void OP_Blank( SvStream &aStream, USHORT nLaenge );
59 // Lotus 123 bits.
60 void OP_BOF123( SvStream &aStream, USHORT nLaenge );
61 void OP_EOF123( SvStream &aStream, USHORT nLaenge );
62 void OP_Number123( SvStream &aStream, USHORT nLaenge );
63 void OP_Label123( SvStream &aStream, USHORT nLaenge );
64 void OP_Formula123( SvStream &aStream, USHORT nLaenge );
65 void OP_IEEENumber123(SvStream& r, UINT16 n);
66 void OP_Note123(SvStream &aStream, USHORT nLaenge);
67 void OP_CreatePattern123(SvStream &aStream, USHORT nLaenge);
68 void OP_SheetName123( SvStream &rStream, USHORT nLength );
69 void OP_HorAlign123(BYTE nAlignPattern, SfxItemSet& rPattern /* const ScPatternAttr& rPattern*/ );
70 void OP_VerAlign123(BYTE nAlignPattern, SfxItemSet& rPattern /* const ScPatternAttr& rPattern*/ );
71 void OP_ApplyPatternArea123(SvStream& r);
73 #endif