Kaydet (Commit) 95d602dd authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS hedaburemove01 (1.1.2); FILE ADDED

2007/02/09 16:14:43 vg 1.1.2.1: #72503# get rid of hedabu procedure: Moving headers to sfx2/inc/sfx2 and correspondent necessary changes
üst 2e0b3747
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: event.hxx,v $
*
* $Revision: 1.2 $
*
* last change: $Author: vg $ $Date: 2007-04-11 21:19:55 $
*
* 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 _SFXEVENT_HXX
#define _SFXEVENT_HXX
#ifndef _SAL_CONFIG_H_
#include "sal/config.h"
#endif
#ifndef INCLUDED_SFX2_DLLAPI_H
#include "sfx2/dllapi.h"
#endif
#ifndef _STRING_HXX //autogen
#include <tools/string.hxx>
#endif
#ifndef _SFXHINT_HXX //autogen
#include <svtools/hint.hxx>
#endif
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/beans/PropertyValue.hpp>
class SfxObjectShell;
//-------------------------------------------------------------------
class SFX2_DLLPUBLIC SfxEventHint : public SfxHint
{
USHORT nEventId;
SfxObjectShell* pObjShell;
String _aArgs;
BOOL _bDummy;
BOOL _bAddToHistory;
public:
TYPEINFO();
SfxEventHint( USHORT nId,
const String& rArgs,
SfxObjectShell *pObj = 0 )
: nEventId(nId),
pObjShell(pObj),
_aArgs( rArgs ),
_bAddToHistory(FALSE)
{}
SfxEventHint( USHORT nId, SfxObjectShell *pObj = 0 )
: nEventId(nId),
pObjShell(pObj),
_bAddToHistory(FALSE)
{}
const String& GetArgs() const { return _aArgs;}
USHORT GetEventId() const
{ return nEventId; }
SfxObjectShell* GetObjShell() const
{ return pObjShell; }
};
//-------------------------------------------------------------------
class SfxNamedHint : public SfxHint
{
String _aEventName;
SfxObjectShell* _pObjShell;
String _aArgs;
BOOL _bDummy;
BOOL _bAddToHistory;
public:
TYPEINFO();
SfxNamedHint( const String& rName,
const String& rArgs,
SfxObjectShell *pObj = 0 )
: _aEventName( rName ),
_pObjShell( pObj),
_aArgs( rArgs ),
_bAddToHistory( FALSE )
{}
SfxNamedHint( const String& rName,
SfxObjectShell *pObj = 0 )
: _aEventName( rName ),
_pObjShell( pObj ),
_bAddToHistory( FALSE )
{}
const String& GetArgs() const { return _aArgs;}
const String& GetName() const { return _aEventName; }
SfxObjectShell* GetObjShell() const { return _pObjShell; }
};
class PrintDialog;
class Printer;
class SfxPrintingHint : public SfxHint
{
PrintDialog* pDialog;
Printer* pPrinter;
sal_Int32 nWhich;
com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue > aOpts;
public:
TYPEINFO();
SfxPrintingHint( sal_Int32 nEvent, PrintDialog* pDlg, Printer* pPrt, const com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue >& rOpts )
: pDialog( pDlg )
, pPrinter( pPrt )
, nWhich( nEvent )
, aOpts( rOpts )
{}
SfxPrintingHint( sal_Int32 nEvent, PrintDialog* pDlg, Printer* pPrt )
: pDialog( pDlg )
, pPrinter( pPrt )
, nWhich( nEvent )
{}
Printer* GetPrinter() const { return pPrinter; }
PrintDialog* GetPrintDialog() const { return pDialog; }
sal_Int32 GetWhich() const { return nWhich; }
const com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue >& GetAdditionalOptions() { return aOpts; }
};
#endif
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: evntconf.hxx,v $
*
* $Revision: 1.2 $
*
* last change: $Author: vg $ $Date: 2007-04-11 21:20:03 $
*
* 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 _SFX_EVENTCONF_HXX
#define _SFX_EVENTCONF_HXX
#ifndef _SAL_CONFIG_H_
#include "sal/config.h"
#endif
#ifndef INCLUDED_SFX2_DLLAPI_H
#include "sfx2/dllapi.h"
#endif
#ifndef _SAL_TYPES_H_
#include "sal/types.h"
#endif
//#if 0 // _SOLAR__PRIVATE
#ifndef _FIXED_HXX //autogen
#include <vcl/fixed.hxx>
#endif
#ifndef _SV_BUTTON_HXX
#include <vcl/button.hxx>
#endif
//#endif
#define _SVSTDARR_USHORTS
#include <svtools/svstdarr.hxx> // SvUShorts
#include <sfx2/event.hxx>
#include <sfx2/sfxsids.hrc>
#ifdef ITEMID_MACRO
#undef ITEMID_MACRO
#endif
#define ITEMID_MACRO SID_ATTR_MACROITEM
#include <svtools/macitem.hxx>
class SfxMacroInfo;
class SfxMacroTabPage;
class SfxMacroInfoArr_Impl;
class SfxEventConfigItem_Impl;
class SfxEventInfoArr_Impl;
class SfxObjectShell;
class SvxMacroTableDtor;
#define SFX_NO_EVENT USHRT_MAX
//#if 0 // _SOLAR__PRIVATE
struct SfxEvent_Impl
{
String aEventName;
USHORT nEventId;
SfxEvent_Impl(const String& rName, USHORT nId) :
aEventName(rName),
nEventId(nId)
{}
};
SV_DECL_PTRARR(SfxEventArr_Impl, SfxEvent_Impl*, 5, 5)
// -----------------------------------------------------------------------
#define PROP_EVENT_TYPE "EventType"
#define PROP_LIBRARY "Library"
#define PROP_SCRIPT "Script"
#define PROP_SCRIPT_URL "URL"
#define PROP_MACRO_NAME "MacroName"
#define STAR_BASIC "StarBasic"
#define JAVA_SCRIPT "JavaScript"
// -----------------------------------------------------------------------
//#else
//typedef SvPtrarr SfxEventArr_Impl;
//#endif
class SFX2_DLLPUBLIC SfxEventConfiguration
{
friend class SfxEventConfigItem_Impl;
SfxMacroInfoArr_Impl* pArr;
SfxEventArr_Impl* pEventArr;
SvxMacroTableDtor* pAppTable;
SvxMacroTableDtor* pDocTable;
sal_Bool bIgnoreConfigure;
public:
SfxEventConfiguration();
~SfxEventConfiguration();
void RegisterEvent(USHORT nId, const String& rName);
String GetEventName(USHORT nId) const;
USHORT GetEventId(const String& rName) const;
USHORT GetEventCount() const
{ return pEventArr->Count()-1; }
// const SvxMacro* GetMacroForEventId( USHORT nEventId, SfxObjectShell *pObjSh );
void ConfigureEvent(USHORT nId, const SvxMacro&,
SfxObjectShell* pObjSh);
void ConfigureEvent(USHORT nId, const String& rMacro,
SfxObjectShell* pObjSh);
//const SfxMacroInfo* GetMacroInfo(USHORT nEventId, SfxObjectShell* pObjSh) const;
// void AddEvents( SfxMacroTabPage* ) const;
//SvxMacroTableDtor* GetAppEventTable();
SvxMacroTableDtor* GetDocEventTable(SfxObjectShell*);
//void SetAppEventTable( const SvxMacroTableDtor& );
//void SetDocEventTable( SfxObjectShell*, const SvxMacroTableDtor& );
static void RegisterEvent( USHORT nId, const String& rName,
const String& rMacroName );
//static BOOL Import( SvStream& rInStream, SvStream* pOutStream, SfxObjectShell* pDoc=NULL );
//static BOOL Export( SvStream* pInStream, SvStream& rOutStream, SfxObjectShell* pDoc=NULL );
//#if 0 // _SOLAR__PRIVATE
SAL_DLLPRIVATE const SfxEvent_Impl* GetEvent_Impl(USHORT nPos) const
{ return (*pEventArr)[nPos+1]; }
SAL_DLLPRIVATE BOOL Warn_Impl( SfxObjectShell *pDoc, const SvxMacro* pMacro );
SAL_DLLPRIVATE void PropagateEvent_Impl( SfxObjectShell *pDoc,
USHORT nId,
const SvxMacro* pMacro );
SAL_DLLPRIVATE static rtl::OUString GetEventName_Impl( ULONG nID );
SAL_DLLPRIVATE static ULONG GetEventId_Impl( const rtl::OUString& rEventName );
SAL_DLLPRIVATE ::com::sun::star::uno::Any CreateEventData_Impl( const SvxMacro *pMacro );
SAL_DLLPRIVATE static ULONG GetPos_Impl( USHORT nID, sal_Bool &rFound );
SAL_DLLPRIVATE static ULONG GetPos_Impl( const String& rName, sal_Bool &rFound );
//#endif
};
/*
//#if 0 // _SOLAR__PRIVATE
class SfxEventConfigItem_Impl : public SfxConfigItem
{
friend class SfxEventConfiguration;
SvxMacroTableDtor aMacroTable;
SfxEventConfiguration *pEvConfig;
SfxObjectShell *pObjShell;
BOOL bWarning;
BOOL bAlwaysWarning;
BOOL bInitialized;
void ConstructMacroTable();
int Load(SvStream&);
BOOL Store(SvStream&);
BOOL LoadXML(SvStream&);
BOOL StoreXML(SvStream&);
public:
SfxEventConfigItem_Impl( USHORT,
SfxEventConfiguration*,
SfxObjectShell* pObjSh = NULL );
~SfxEventConfigItem_Impl();
void Init( SfxConfigManager* );
virtual int Load(SotStorage&);
virtual BOOL Store(SotStorage&);
virtual String GetStreamName() const;
virtual void UseDefault();
void ConfigureEvent( USHORT nPos, SvxMacro* );
};
//#endif
*/
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment