Files
libreoffice/sw/source/core/inc/SwXMLTextBlocks.hxx

123 lines
4.6 KiB
C++
Raw Normal View History

2001-02-08 14:52:44 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2001-02-08 14:52:44 +00:00
*
* $RCSfile: SwXMLTextBlocks.hxx,v $
2001-02-08 14:52:44 +00:00
*
* $Revision: 1.14 $
2001-02-08 14:52:44 +00:00
*
* last change: $Author: rt $ $Date: 2007-04-25 09:05:10 $
2001-02-08 14:52:44 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2001-02-08 14:52:44 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2001-02-08 14:52:44 +00:00
*
* 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.
2001-02-08 14:52:44 +00:00
*
* 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.
2001-02-08 14:52:44 +00:00
*
* 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
2001-02-08 14:52:44 +00:00
*
************************************************************************/
#ifndef _SW_XMLTEXTBLOCKS_HXX
#define _SW_XMLTEXTBLOCKS_HXX
#include <sfx2/objsh.hxx>
#include <sfx2/docfile.hxx>
2001-02-08 14:52:44 +00:00
#ifndef _SWBLOCKS_HXX
#include <swblocks.hxx>
#endif
class SfxMedium;
class SwPaM;
class SwDoc;
class SvxMacroTableDtor;
class SwImpBlocks;
#define SWXML_CONVBLOCK 0x0001
#define SWXML_NOROOTCOMMIT 0x0002
class SwXMLTextBlocks : public SwImpBlocks
{
protected:
BOOL bAutocorrBlock;
BOOL bBlock;
SfxObjectShellRef xDocShellRef;
2001-02-08 14:52:44 +00:00
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();
2001-02-08 14:52:44 +00:00
public:
com::sun::star::uno::Reference < com::sun::star::embed::XStorage > xBlkRoot;
com::sun::star::uno::Reference < com::sun::star::embed::XStorage > xRoot;
2001-02-08 14:52:44 +00:00
short nCurBlk;
SwXMLTextBlocks( const String& rFile );
SwXMLTextBlocks( const com::sun::star::uno::Reference < com::sun::star::embed::XStorage >&, const String& rFile );
2001-02-08 14:52:44 +00:00
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);
2001-04-30 18:59:13 +00:00
virtual void ClearDoc();
2001-02-08 14:52:44 +00:00
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();
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;
2001-02-26 12:35:00 +00:00
virtual void SetIsTextOnly( const String& rShort, BOOL bNewValue );
virtual void SetIsTextOnly( USHORT nIdx, BOOL bNewValue );
2001-02-08 14:52:44 +00:00
virtual ULONG GetMacroTable( USHORT, SvxMacroTableDtor& rMacroTbl,
sal_Bool bFileAlreadyOpen = sal_False );
virtual ULONG SetMacroTable( USHORT nIdx,
const SvxMacroTableDtor& rMacroTable,
sal_Bool bFileAlreadyOpen = sal_False );
2001-02-08 14:52:44 +00:00
virtual BOOL PutMuchEntries( BOOL bOn );
public:
2001-03-19 10:07:07 +00:00
SwDoc* GetDoc() const { return pDoc; }
//void SetDoc( SwDoc * pNewDoc);
2001-02-08 14:52:44 +00:00
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