#############################################################################
## Name: XS/Log.xs
## Purpose: XS for Wx::Log and derived classes
## Author: Mattia Barbon
## Modified by:
## Created: 29/10/2000
## RCS-ID: $Id: Log.xs,v 1.26 2005/07/24 17:47:01 mbarbon Exp $
## Copyright: (c) 2000-2003, 2005 Mattia Barbon
## Licence: This program is free software; you can redistribute it and/or
## modify it under the same terms as Perl itself
#############################################################################
#include <wx/log.h>
#include "cpp/log.h"
MODULE=Wx PACKAGE=Wx::Log
void
wxLog::Destroy()
CODE:
delete THIS;
void
AddTraceMask( mask )
wxString mask
CODE:
wxLog::AddTraceMask( mask );
void
ClearTraceMasks()
CODE:
wxLog::ClearTraceMasks();
void
RemoveTraceMask( mask )
wxString mask
CODE:
wxLog::RemoveTraceMask( mask );
bool
IsAllowedTraceMask( mask )
const wxChar* mask
CODE:
RETVAL = wxLog::IsAllowedTraceMask( mask );
OUTPUT:
RETVAL
wxLog*
GetActiveTarget()
CODE:
RETVAL = wxLog::GetActiveTarget();
OUTPUT:
RETVAL
wxLog*
SetActiveTarget( target )
wxLog* target
CODE:
RETVAL = wxLog::SetActiveTarget( target );
OUTPUT:
RETVAL
void
DontCreateOnDemand()
CODE:
wxLog::DontCreateOnDemand();
void
wxLog::Flush()
void
wxLog::FlushActive()
bool
wxLog::HasPendingMessages()
void
wxLog::SetVerbose( verbose = true )
bool verbose
bool
wxLog::GetVerbose()
void
_SetTimestamp( format, buffer )
SV* format
SV* buffer
CODE:
if( SvOK( ST(0) ) ) {
const wxString format_tmp = ( SvUTF8( format ) ) ?
( wxString( SvPVutf8_nolen( format ), wxConvUTF8 ) )
: ( wxString( SvPV_nolen( format ), wxConvLibc ) );
wxChar* fmt = (wxChar*)format_tmp.c_str();
STRLEN size = wxStrlen( fmt ) * sizeof(wxChar) + sizeof(wxChar);
SvUPGRADE( buffer, SVt_PV );
wxLog::SetTimestamp( wxStrcpy( (wxChar*)SvGROW( buffer, size ),
fmt ) );
} else {
wxLog::SetTimestamp( NULL );
}
const wxChar*
wxLog::GetTimestamp()
void
SetTraceMask( mask )
wxTraceMask mask
CODE:
wxLog::SetTraceMask( mask );
wxTraceMask
GetTraceMask()
CODE:
RETVAL = wxLog::GetTraceMask();
OUTPUT:
RETVAL
MODULE=Wx PACKAGE=Wx::PlLog
wxPlLog*
wxPlLog::new()
CODE:
RETVAL = new wxPlLog( CLASS );
OUTPUT:
RETVAL
MODULE=Wx PACKAGE=Wx::LogTextCtrl
wxLogTextCtrl*
wxLogTextCtrl::new( ctrl )
wxTextCtrl* ctrl
MODULE=Wx PACKAGE=Wx::LogNull
wxLogNull*
wxLogNull::new()
void
wxLogNull::DESTROY()
MODULE=Wx PACKAGE=Wx::LogGui
wxLogGui*
wxLogGui::new()
MODULE=Wx PACKAGE=Wx::LogWindow
wxLogWindow*
wxLogWindow::new( parent, title, show = true, passtoold = true )
wxFrame* parent
wxString title
bool show
bool passtoold
MODULE=Wx PACKAGE=Wx
# this is a test for INTERFACE:
# in this specific case it saves around 256 bytes / function,
# more for more complex typemaps / longer parameter lists
#if 0
#define XSINTERFACE__ccharp( _ret, _cv, _f ) \
( ( void (*)( const wxChar * ) ) _f)
#define XSINTERFACE__ccharp_SET( _cv, _f ) \
( CvXSUBANY( _cv ).any_ptr = (void*) _f )
#undef dXSFUNCTION
#define dXSFUNCTION( a ) \
void (*XSFUNCTION)( const wxChar* )
# xsubpp from Perl 5.004_04 does not like this at all.
# void
# interface__ccharp( string )
# const wxChar* string
# INTERFACE_MACRO:
# XSINTERFACE__ccharp
# XSINTERFACE__ccharp_SET
# INTERFACE:
# wxLogError wxLogFatalError wxLogWarning
# wxLogVerbose wxLogDebug
# wxLogMessage
#else
void
wxLogError( string )
const wxChar* string
void
wxLogFatalError( string )
const wxChar* string
void
wxLogWarning( string )
const wxChar* string
void
wxLogMessage( string )
const wxChar* string
void
wxLogVerbose( string )
const wxChar* string
void
wxLogDebug( string )
const wxChar* string
#endif
void
wxLogStatusFrame( frame, string )
wxFrame* frame
const wxChar* string
CODE:
wxLogStatus( frame, string );
void
wxLogStatus( string )
const wxChar* string
#if WXPERL_W_VERSION_LE( 2, 5, 0 )
void
wxLogTrace( string )
const wxChar* string
#endif
void
wxLogTraceMask( mask, string )
const wxChar* mask
const wxChar* string
CODE:
::wxLogTrace( mask, string );
void
wxLogSysError( string )
const wxChar* string
MODULE=Wx PACKAGE=Wx PREFIX=wx
unsigned long
wxSysErrorCode()
const wxChar*
wxSysErrorMsg( errCode = 0 )
unsigned long errCode
MODULE=Wx PACKAGE=Wx::LogChain
wxLogChain*
wxLogChain::new( logger )
wxLog* logger
wxLog*
wxLogChain::GetOldLog()
bool
wxLogChain::IsPassingMessages()
void
wxLogChain::PassMessages( passMessages )
bool passMessages
void
wxLogChain::SetLog( logger )
wxLog* logger
MODULE=Wx PACKAGE=Wx::LogPassThrough
wxLogPassThrough*
wxLogPassThrough::new()
MODULE=Wx PACKAGE=Wx::PlLogPassThrough
wxPlLogPassThrough*
wxPlLogPassThrough::new()
CODE:
RETVAL = new wxPlLogPassThrough( CLASS );
OUTPUT:
RETVAL
MODULE=Wx PACKAGE=Wx::LogStderr
wxLogStderr*
wxLogStderr::new( fp = NULL )
FILE* fp;