merge the formfield patch from ooo-build
[ooovba.git] / package / inc / Deflater.hxx
blob06c92efdf0421647adf5ca323e60d9026d1f53eb
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: Deflater.hxx,v $
10 * $Revision: 1.12 $
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 ************************************************************************/
30 #ifndef _DEFLATER_HXX_
31 #define _DEFLATER_HXX_
33 #include <com/sun/star/uno/Sequence.hxx>
35 extern "C"
37 typedef struct z_stream_s z_stream;
40 class Deflater
42 protected:
43 com::sun::star::uno::Sequence< sal_Int8 > sInBuffer;
44 sal_Bool bFinish;
45 sal_Bool bFinished;
46 sal_Bool bSetParams;
47 sal_Int32 nLevel, nStrategy;
48 sal_Int32 nOffset, nLength;
49 z_stream* pStream;
51 void init (sal_Int32 nLevel, sal_Int32 nStrategy, sal_Bool bNowrap);
52 sal_Int32 doDeflateBytes (com::sun::star::uno::Sequence < sal_Int8 > &rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength);
54 public:
55 ~Deflater();
56 Deflater(sal_Int32 nSetLevel, sal_Bool bNowrap);
57 void SAL_CALL setInputSegment( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength );
58 void SAL_CALL setLevel( sal_Int32 nNewLevel );
59 sal_Bool SAL_CALL needsInput( );
60 void SAL_CALL finish( );
61 sal_Bool SAL_CALL finished( );
62 sal_Int32 SAL_CALL doDeflateSegment( ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength );
63 sal_Int32 SAL_CALL getTotalIn( );
64 sal_Int32 SAL_CALL getTotalOut( );
65 void SAL_CALL reset( );
66 void SAL_CALL end( );
69 #endif