2003-08-19 11:27:01 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 00:28:54 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-08-19 11:27:01 +00:00
|
|
|
*
|
2005-09-09 00:28:54 +00:00
|
|
|
* $RCSfile: SwAppletImpl.hxx,v $
|
2003-08-19 11:27:01 +00:00
|
|
|
*
|
2007-09-27 06:54:37 +00:00
|
|
|
* $Revision: 1.9 $
|
2003-08-19 11:27:01 +00:00
|
|
|
*
|
2007-09-27 06:54:37 +00:00
|
|
|
* last change: $Author: hr $ $Date: 2007-09-27 07:54:37 $
|
2003-08-19 11:27:01 +00:00
|
|
|
*
|
2005-09-09 00:28:54 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2003-08-19 11:27:01 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-09 00:28:54 +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
|
2003-08-19 11:27:01 +00:00
|
|
|
*
|
2005-09-09 00:28:54 +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.
|
2003-08-19 11:27:01 +00:00
|
|
|
*
|
2005-09-09 00:28:54 +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.
|
2003-08-19 11:27:01 +00:00
|
|
|
*
|
2005-09-09 00:28:54 +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
|
2003-08-19 11:27:01 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SW_APPLET_IMPL_HXX
|
|
|
|
#define _SW_APPLET_IMPL_HXX
|
|
|
|
|
|
|
|
#define SWHTML_OPTTYPE_IGNORE 0
|
|
|
|
#define SWHTML_OPTTYPE_TAG 1
|
|
|
|
#define SWHTML_OPTTYPE_PARAM 2
|
|
|
|
#define SWHTML_OPTTYPE_SIZE 3
|
|
|
|
|
2004-10-04 17:57:25 +00:00
|
|
|
#ifndef _COM_SUN_STAR_EMBED_XEMBEDDEDOBJECT_HPP_
|
|
|
|
#include <com/sun/star/embed/XEmbeddedObject.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2003-08-19 11:27:01 +00:00
|
|
|
#ifndef _STRING_HXX //autogen
|
|
|
|
#include <tools/string.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _HTMLKYWD_HXX
|
|
|
|
#include <svtools/htmlkywd.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _FRMHTML_HXX //autogen
|
|
|
|
#include <sfx2/frmhtml.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _FRMHTMLW_HXX //autogen
|
|
|
|
#include <sfx2/frmhtmlw.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _WRKWIN_HXX //autogen
|
|
|
|
#include <vcl/wrkwin.hxx>
|
|
|
|
#endif
|
2004-10-04 17:57:25 +00:00
|
|
|
#include <sot/storage.hxx>
|
2003-08-19 11:27:01 +00:00
|
|
|
#ifndef _SFXITEMSET_HXX
|
|
|
|
#include <svtools/itemset.hxx>
|
|
|
|
#endif
|
|
|
|
|
2004-10-04 17:57:25 +00:00
|
|
|
#include <svtools/ownlist.hxx>
|
|
|
|
|
2003-08-19 11:27:01 +00:00
|
|
|
class SfxItemSet;
|
|
|
|
|
2007-09-27 06:54:37 +00:00
|
|
|
extern SVT_DLLPUBLIC sal_Char const SVTOOLS_CONSTASCII_DECL( sHTML_O_archive, "ARCHIVE" );
|
|
|
|
|
|
|
|
extern sal_Char const SVTOOLS_CONSTASCII_DECL( sHTML_O_Hidden, "HIDDEN" );
|
|
|
|
extern sal_Char const SVTOOLS_CONSTASCII_DECL( sHTML_O_Hidden_False, "FALSE" );
|
|
|
|
extern sal_Char const SVTOOLS_CONSTASCII_DECL( sHTML_O_Archives, "ARCHIVES" );
|
|
|
|
extern sal_Char const SVTOOLS_CONSTASCII_DECL( sHTML_O_Object, "OBJECT" );
|
2003-08-19 11:27:01 +00:00
|
|
|
|
|
|
|
class SwApplet_Impl
|
|
|
|
{
|
2004-10-04 17:57:25 +00:00
|
|
|
com::sun::star::uno::Reference < com::sun::star::embed::XEmbeddedObject > xApplet;
|
2003-08-19 11:27:01 +00:00
|
|
|
SvCommandList aCommandList; // und die szugehorige Command-List
|
|
|
|
SfxItemSet aItemSet;
|
|
|
|
String sAlt;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static USHORT GetOptionType( const String& rName, BOOL bApplet );
|
|
|
|
SwApplet_Impl( SfxItemPool& rPool, USHORT nWhich1, USHORT nWhich2 );
|
|
|
|
SwApplet_Impl( SfxItemSet& rSet ): aItemSet ( rSet) {}
|
|
|
|
~SwApplet_Impl();
|
|
|
|
void CreateApplet( const String& rCode, const String& rName,
|
2005-01-11 11:16:36 +00:00
|
|
|
BOOL bMayScript, const String& rCodeBase,
|
|
|
|
const String& rBaseURL );
|
2004-08-12 10:58:39 +00:00
|
|
|
#ifdef SOLAR_JAVA
|
2005-01-11 11:16:36 +00:00
|
|
|
sal_Bool CreateApplet( const String& rBaseURL );
|
2003-08-19 11:27:01 +00:00
|
|
|
void AppendParam( const String& rName, const String& rValue );
|
2004-08-12 10:58:39 +00:00
|
|
|
#endif
|
|
|
|
void FinishApplet();
|
2004-10-04 17:57:25 +00:00
|
|
|
com::sun::star::uno::Reference < com::sun::star::embed::XEmbeddedObject > GetApplet() { return xApplet; }
|
2003-08-19 11:27:01 +00:00
|
|
|
SfxItemSet& GetItemSet() { return aItemSet; }
|
|
|
|
const String& GetAltText() { return sAlt; }
|
|
|
|
void SetAltText( const String& rAlt ) {sAlt = rAlt;}
|
|
|
|
};
|
|
|
|
#endif
|