/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: SwXMLTextBlocks.hxx,v $ * * $Revision: 1.12 $ * * last change: $Author: rt $ $Date: 2005-09-09 03:41:19 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * ************************************************************************/ #ifndef _SW_XMLTEXTBLOCKS_HXX #define _SW_XMLTEXTBLOCKS_HXX #include #include #ifndef _SWBLOCKS_HXX #include #endif class SfxMedium; class SwPaM; class SwDoc; class SvxMacroTableDtor; class SwImpBlocks; class SwDocShell; #define SWXML_CONVBLOCK 0x0001 #define SWXML_NOROOTCOMMIT 0x0002 class SwXMLTextBlocks : public SwImpBlocks { protected: BOOL bAutocorrBlock; BOOL bBlock; SfxObjectShellRef xDocShellRef; USHORT nFlags; String aPackageName; SfxMediumRef xMedium; void ReadInfo(); void WriteInfo(); void InitBlockMode ( const com::sun::star::uno::Reference < com::sun::star::embed::XStorage >& rStorage ); void ResetBlockMode(); public: com::sun::star::uno::Reference < com::sun::star::embed::XStorage > xBlkRoot; com::sun::star::uno::Reference < com::sun::star::embed::XStorage > xRoot; short nCurBlk; SwXMLTextBlocks( const String& rFile ); SwXMLTextBlocks( const com::sun::star::uno::Reference < com::sun::star::embed::XStorage >&, const String& rFile ); void AddName( const String&, const String&, const String&, BOOL bOnlyTxt = FALSE ); virtual void AddName( const String&, const String&, BOOL bOnlyTxt = FALSE ); void GeneratePackageName ( const String& rShort, String& rPackageName ); virtual ~SwXMLTextBlocks(); //virtual BOOL IsOld() const; virtual ULONG Delete( USHORT ); virtual ULONG Rename( USHORT, const String&, const String& ); virtual ULONG CopyBlock( SwImpBlocks& rImp, String& rShort, const String& rLong); virtual void ClearDoc(); virtual ULONG GetDoc( USHORT ); virtual ULONG BeginPutDoc( const String&, const String& ); virtual ULONG PutDoc(); virtual ULONG GetText( USHORT, String& ); virtual ULONG PutText( const String&, const String&, const String& ); virtual ULONG MakeBlockList(); virtual short GetFileType ( void ) const; virtual ULONG OpenFile( BOOL bReadOnly = TRUE ); virtual void CloseFile(); ULONG SetConvertMode( BOOL ); static BOOL IsFileUCBStorage( const String & rFileName); // Methods for the new Autocorrecter ULONG GetText( const String& rShort, String& ); virtual BOOL IsOnlyTextBlock( const String& rShort ) const; virtual BOOL IsOnlyTextBlock( USHORT nIdx ) const; virtual void SetIsTextOnly( const String& rShort, BOOL bNewValue ); virtual void SetIsTextOnly( USHORT nIdx, BOOL bNewValue ); virtual ULONG GetMacroTable( USHORT, SvxMacroTableDtor& rMacroTbl, sal_Bool bFileAlreadyOpen = sal_False ); virtual ULONG SetMacroTable( USHORT nIdx, const SvxMacroTableDtor& rMacroTable, sal_Bool bFileAlreadyOpen = sal_False ); virtual BOOL PutMuchEntries( BOOL bOn ); public: SwDoc* GetDoc() const { return pDoc; } //void SetDoc( SwDoc * pNewDoc); ULONG StartPutBlock( const String& rShort, const String& rPackageName ); ULONG PutBlock( SwPaM& rPaM, const String& rLong ); ULONG GetBlockText( const String& rShort, String& rText ); ULONG PutBlockText( const String& rShort, const String& rName, const String& rText, const String& rPackageName ); void MakeBlockText( const String& rText ); }; #endif