6abc7ed16f
2005/09/05 13:05:05 rt 1.2.586.1: #i54170# Change license header: remove SISSL
140 lines
10 KiB
C++
140 lines
10 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: event.hxx,v $
|
|
*
|
|
* $Revision: 1.3 $
|
|
*
|
|
* last change: $Author: rt $ $Date: 2005-09-09 00:25:35 $
|
|
*
|
|
* 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 __FRAMEWORK_MACROS_DEBUG_EVENT_HXX_
|
|
#define __FRAMEWORK_MACROS_DEBUG_EVENT_HXX_
|
|
|
|
//*************************************************************************************************************
|
|
// special macros for event handling
|
|
//*************************************************************************************************************
|
|
|
|
#ifdef ENABLE_EVENTDEBUG
|
|
|
|
//_________________________________________________________________________________________________________________
|
|
// includes
|
|
//_________________________________________________________________________________________________________________
|
|
|
|
#ifndef _RTL_STRBUF_HXX_
|
|
#include <rtl/strbuf.hxx>
|
|
#endif
|
|
|
|
/*_____________________________________________________________________________________________________________
|
|
LOGFILE_EVENTDEBUG
|
|
|
|
For follow macros we need a special log file. If user forget to specify anyone, we must do it for him!
|
|
_____________________________________________________________________________________________________________*/
|
|
|
|
#ifndef LOGFILE_EVENTDEBUG
|
|
#define LOGFILE_EVENTDEBUG \
|
|
"events.log"
|
|
#endif
|
|
|
|
/*_____________________________________________________________________________________________________________
|
|
LOG_FRAMEACTIONEVENT( SFRAMETYPE, SFRAMENAME, AFRAMEACTION )
|
|
|
|
Use this macro to print debug informations about sending of events to listener for controling right order.
|
|
( Use new scope in macro to declare sBuffer more then on time in same "parentscope"! )
|
|
_____________________________________________________________________________________________________________*/
|
|
|
|
#define LOG_FRAMEACTIONEVENT( SFRAMETYPE, SFRAMENAME, AFRAMEACTION ) \
|
|
{ \
|
|
::rtl::OStringBuffer sBuffer(1024); \
|
|
sBuffer.append( "[ " ); \
|
|
sBuffer.append( SFRAMETYPE ); \
|
|
sBuffer.append( " ] \"" ); \
|
|
sBuffer.append( U2B( SFRAMENAME ) ); \
|
|
sBuffer.append( "\" send event \"" ); \
|
|
switch( AFRAMEACTION ) \
|
|
{ \
|
|
case ::com::sun::star::frame::FrameAction_COMPONENT_ATTACHED : sBuffer.append("COMPONENT ATTACHED" ); \
|
|
break; \
|
|
case ::com::sun::star::frame::FrameAction_COMPONENT_DETACHING : sBuffer.append("COMPONENT DETACHING" ); \
|
|
break; \
|
|
case ::com::sun::star::frame::FrameAction_COMPONENT_REATTACHED : sBuffer.append("COMPONENT REATTACHED" ); \
|
|
break; \
|
|
case ::com::sun::star::frame::FrameAction_FRAME_ACTIVATED : sBuffer.append("FRAME ACTIVATED" ); \
|
|
break; \
|
|
case ::com::sun::star::frame::FrameAction_FRAME_DEACTIVATING : sBuffer.append("FRAME DEACTIVATING" ); \
|
|
break; \
|
|
case ::com::sun::star::frame::FrameAction_CONTEXT_CHANGED : sBuffer.append("CONTEXT CHANGED" ); \
|
|
break; \
|
|
case ::com::sun::star::frame::FrameAction_FRAME_UI_ACTIVATED : sBuffer.append("FRAME UI ACTIVATED" ); \
|
|
break; \
|
|
case ::com::sun::star::frame::FrameAction_FRAME_UI_DEACTIVATING : sBuffer.append("FRAME UI DEACTIVATING" ); \
|
|
break; \
|
|
case ::com::sun::star::frame::FrameAction_MAKE_FIXED_SIZE : sBuffer.append("MAKE_FIXED_SIZE" ); \
|
|
break; \
|
|
default: sBuffer.append("... ERROR: invalid FrameAction detected!" ); \
|
|
break; \
|
|
} \
|
|
sBuffer.append( " ... event to listener.\n\n" ); \
|
|
WRITE_LOGFILE( LOGFILE_EVENTDEBUG, sBuffer.makeStringAndClear() ) \
|
|
}
|
|
|
|
/*_____________________________________________________________________________________________________________
|
|
LOG_FRAMEACTIONEVENT( SFRAMETYPE, SFRAMENAME )
|
|
|
|
These macro log information about sending of dispose events to listener.
|
|
( Use new scope in macro to declare sBuffer more then on time in same "parentscope"! )
|
|
_____________________________________________________________________________________________________________*/
|
|
|
|
#define LOG_DISPOSEEVENT( SFRAMETYPE, SFRAMENAME ) \
|
|
{ \
|
|
::rtl::OStringBuffer sBuffer(1024); \
|
|
sBuffer.append( "[ " ); \
|
|
sBuffer.append( SFRAMETYPE ); \
|
|
sBuffer.append( " ] \"" ); \
|
|
sBuffer.append( U2B( SFRAMENAME ) ); \
|
|
sBuffer.append( "\" send dispose event to listener.\n\n"); \
|
|
WRITE_LOGFILE( LOGFILE_EVENTDEBUG, sBuffer.makeStringAndClear() ) \
|
|
}
|
|
|
|
#else // #ifdef ENABLE_EVENTDEBUG
|
|
|
|
/*_____________________________________________________________________________________________________________
|
|
If right testmode is'nt set - implements these macros empty!
|
|
_____________________________________________________________________________________________________________*/
|
|
|
|
#undef LOGFILE_EVENTDEBUG
|
|
#define LOG_FRAMEACTIONEVENT( SFRAMETYPE, SFRAMENAME, AFRAMEACTION )
|
|
#define LOG_DISPOSEEVENT( SFRAMETYPE, SFRAMENAME )
|
|
|
|
#endif // #ifdef ENABLE_EVENTDEBUG
|
|
|
|
//*****************************************************************************************************************
|
|
// end of file
|
|
//*****************************************************************************************************************
|
|
|
|
#endif // #ifndef __FRAMEWORK_MACROS_DEBUG_EVENT_HXX_
|