1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
|
#############################################################################
## 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 2626 2009-10-18 22:48:17Z mbarbon $
## Copyright: (c) 2000-2003, 2005-2007, 2009 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 )
wxString 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()
#if WXPERL_W_VERSION_GE( 2, 9, 0 )
void
_SetTimestamp( format, buffer )
wxString format
SV* buffer
CODE:
wxLog::SetTimestamp( format );
wxString
wxLog::GetTimestamp();
#else
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 ) );
const wxChar* fmt = (const 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()
#endif
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()
static void
wxLogNull::CLONE()
CODE:
wxPli_thread_sv_clone( aTHX_ CLASS, (wxPliCloneSV)wxPli_detach_object );
## // thread OK
void
wxLogNull::DESTROY()
CODE:
wxPli_thread_sv_unregister( aTHX_ "Wx::LogNull", THIS, ST(0) );
delete THIS;
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__wxstring( _ret, _cv, _f ) \
( ( void (*)( const wxString& ) ) _f)
#define XSINTERFACE__wxstring_SET( _cv, _f ) \
( CvXSUBANY( _cv ).any_ptr = (void*) _f )
#undef dXSFUNCTION
#define dXSFUNCTION( a ) \
void (*XSFUNCTION)( const wxString& )
void
interface__wxstring( string )
wxString string
INTERFACE_MACRO:
XSINTERFACE__wxstring
XSINTERFACE__wxstring_SET
INTERFACE:
wxLogError wxLogFatalError wxLogWarning
wxLogVerbose wxLogDebug
wxLogMessage
#else
#if WXPERL_W_VERSION_GE( 2, 9, 0 )
void
wxLogError( string )
wxString string
void
wxLogFatalError( string )
wxString string
void
wxLogWarning( string )
wxString string
void
wxLogMessage( string )
wxString string
void
wxLogVerbose( string )
wxString string
void
wxLogDebug( string )
wxString string
#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
#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;
|