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 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
|
/////////////////////////////////////////////////////////////////////////////
// Name: Wx.xs
// Purpose: main XS module
// Author: Mattia Barbon
// Modified by:
// Created: 01/10/2000
// RCS-ID: $Id: Wx.xs 3220 2012-03-18 03:02:46Z mdootson $
// Copyright: (c) 2000-2002, 2004-2010 Mattia Barbon
// Licence: This program is free software; you can redistribute it and/or
// modify it under the same terms as Perl itself
/////////////////////////////////////////////////////////////////////////////
#undef bool
#define PERL_NO_GET_CONTEXT
#include <stddef.h>
#include "cpp/compat.h"
// THIS IS AN HACK!
#if defined(_MSC_VER)
#define STRICT
#endif
#include "cpp/wxapi.h"
#include <wx/window.h>
#include <wx/module.h>
#include <wx/log.h>
// FIXME hack
#if WXPERL_W_VERSION_GE( 2, 5, 2 ) \
&& defined(__DARWIN__)
#define HACK
#include <wx/html/htmlwin.h>
#if wxUSE_MEDIACTRL
#include <wx/mediactrl.h>
#endif
#endif
#if defined(__WXMSW__)
#include <wx/msw/private.h>
#endif
#if defined(__WXMAC__)
#include <ApplicationServices/ApplicationServices.h>
#endif
#if WXPERL_W_VERSION_GE( 2, 5, 1 )
#include <wx/init.h>
#else
#if defined(__WXGTK__)
int WXDLLEXPORT wxEntryStart( int& argc, char** argv );
#else
int WXDLLEXPORT wxEntryStart( int argc, char** argv );
#endif
int WXDLLEXPORT wxEntryInitGui();
void WXDLLEXPORT wxEntryCleanup();
#endif
#include "cpp/v_cback.h"
// to declare wxPliUserDataCD
#include "cpp/helpers.h"
#include "cpp/helpers.cpp"
#include "cpp/v_cback.cpp"
#include "cpp/overload.cpp"
#include "cpp/ovl_const.cpp"
//
// our App
//
#include <wx/app.h>
#include "cpp/app.h"
IMPLEMENT_APP_NO_MAIN(wxPliApp);
static bool wxPerlAppCreated = false;
static bool wxPerlInitialized = false;
#if !wxUSE_UNICODE
bool wxPli_always_utf8;
#endif
#undef THIS
#ifdef __cplusplus
extern "C" {
#endif
XS( boot_Wx_Const );
XS( boot_Wx_Ctrl );
XS( boot_Wx_Evt );
XS( boot_Wx_Win );
XS( boot_Wx_Wnd );
XS( boot_Wx_GDI );
#if defined( WXPL_STATIC )
XS( boot_Wx__DocView );
#if wxPERL_USE_STC
XS( boot_Wx__STC );
#endif
#if wxPERL_USE_XRC
XS( boot_Wx__XRC );
#endif
XS( boot_Wx__Print );
XS( boot_Wx__MDI );
XS( boot_Wx__Html );
XS( boot_Wx__Help );
XS( boot_Wx__Grid );
XS( boot_Wx__FS );
XS( boot_Wx__DND );
#endif
#ifdef __cplusplus
}
#endif
extern void SetConstants();
extern void SetConstantsOnce();
static int call_oninit( pTHX_ SV* This, SV* sub )
{
dSP;
ENTER;
SAVETMPS;
PUSHMARK( SP );
XPUSHs( This );
PUTBACK;
int count = call_sv( sub, G_SCALAR|G_EVAL );
int retval = 0;
SPAGAIN;
if( SvTRUE( ERRSV ) )
{
croak( Nullch );
}
else if( count == 1 )
{
retval = POPi;
}
PUTBACK;
FREETMPS;
LEAVE;
return retval;
}
#if defined(__WXMOTIF__) && WXPERL_W_VERSION_LT( 2, 5, 1 )
#include <wx/app.h>
#include <wx/log.h>
int wxEntryStart( int argc, char** argv )
{
#if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
// This seems to be necessary since there are 'rogue'
// objects present at this point (perhaps global objects?)
// Setting a checkpoint will ignore them as far as the
// memory checking facility is concerned.
// Of course you may argue that memory allocated in globals should be
// checked, but this is a reasonable compromise.
wxDebugContext::SetCheckpoint();
#endif
if (!wxApp::Initialize())
return -1;
return 0;
}
int wxEntryInitGui()
{
int retValue = 0;
// GUI-specific initialization, such as creating an app context.
if( !wxTheApp->OnInitGui() )
retValue = -1;
return retValue;
}
void wxEntryCleanup()
{
#if wxUSE_LOG
// flush the logged messages if any
wxLog *pLog = wxLog::GetActiveTarget();
if ( pLog != NULL && pLog->HasPendingMessages() )
pLog->Flush();
delete wxLog::SetActiveTarget(new wxLogStderr); // So dialog boxes aren't used
// for further messages
#endif
wxApp::CleanUp();
// some code moved to _wxApp destructor
// since at this point the app is already destroyed
}
#endif
DEFINE_PLI_HELPERS( st_wxPliHelpers );
#include <wx/confbase.h>
typedef wxConfigBase::EntryType EntryType;
WXPLI_BOOT_ONCE_EXP(Wx);
#define boot_Wx wxPli_boot_Wx
extern bool Wx_booted, Wx_Const_booted, Wx_Ctrl_booted,
Wx_Evt_booted, Wx_Wnd_booted, Wx_GDI_booted, Wx_Win_booted;
#if WXPERL_W_VERSION_LT( 2, 9, 0 )
typedef int wxPolygonFillMode;
#endif
MODULE=Wx PACKAGE=Wx
BOOT:
newXSproto( "Wx::_boot_Constant", boot_Wx_Const, file, "$$" );
newXSproto( "Wx::_boot_Controls", boot_Wx_Ctrl, file, "$$" );
newXSproto( "Wx::_boot_Events", boot_Wx_Evt, file, "$$" );
newXSproto( "Wx::_boot_Window", boot_Wx_Win, file, "$$" );
newXSproto( "Wx::_boot_Frames", boot_Wx_Wnd, file, "$$" );
newXSproto( "Wx::_boot_GDI", boot_Wx_GDI, file, "$$" );
#if defined( WXPL_STATIC )
newXSproto( "Wx::_boot_Wx__DocView", boot_Wx__DocView, file, "$$" );
#if wxPERL_USE_STC
newXSproto( "Wx::_boot_Wx__STC", boot_Wx__STC, file, "$$" );
#endif
#if wxPERL_USE_XRC
newXSproto( "Wx::_boot_Wx__XRC", boot_Wx__XRC, file, "$$" );
#endif
newXSproto( "Wx::_boot_Wx__Print", boot_Wx__Print, file, "$$" );
newXSproto( "Wx::_boot_Wx__MDI", boot_Wx__MDI, file, "$$" );
newXSproto( "Wx::_boot_Wx__Html", boot_Wx__Html, file, "$$" );
newXSproto( "Wx::_boot_Wx__Help", boot_Wx__Help, file, "$$" );
newXSproto( "Wx::_boot_Wx__Grid", boot_Wx__Grid, file, "$$" );
newXSproto( "Wx::_boot_Wx__FS", boot_Wx__FS, file, "$$" );
newXSproto( "Wx::_boot_Wx__DND", boot_Wx__DND, file, "$$" );
#endif
SV* tmp = get_sv( "Wx::_exports", 1 );
sv_setiv( tmp, (IV)(void*)&st_wxPliHelpers );
#if WXPERL_W_VERSION_GE( 2, 5, 1 )
#define wxPliEntryStart( argc, argv ) wxEntryStart( (argc), (argv) )
#else
#define wxPliEntryStart( argc, argv ) ( wxEntryStart( (argc), (argv) ) == 0 )
#endif
bool
Load( bool croak_on_error = false )
CODE:
wxPerlAppCreated = wxTheApp != NULL;
if( wxPerlInitialized )
XSRETURN( true );
wxPerlInitialized = true;
NV ver = wxMAJOR_VERSION + wxMINOR_VERSION / 1000.0 +
wxRELEASE_NUMBER / 1000000.0;
// set up version as soon as possible
SV* tmp = get_sv( "Wx::_wx_version", 1 );
sv_setnv( tmp, ver );
tmp = get_sv( "Wx::wxVERSION", 1 );
sv_setnv( tmp, ver );
int platform;
// change App.pm whenever these change
#if defined(__WXMSW__)
platform = 1;
#elif defined(__WXGTK__)
platform = 2;
#elif defined(__WXMOTIF__)
platform = 3;
#elif defined(__WXMAC__)
platform = 4;
#elif defined(__WXX11__)
platform = 5;
#else
#error must add case
#endif
tmp = get_sv( "Wx::_platform", 1 );
sv_setiv( tmp, platform );
if( wxPerlAppCreated || wxTopLevelWindows.GetCount() > 0 )
XSRETURN( true );
#if defined(DEBUGGING) && !defined(PERL_USE_SAFE_PUTENV)
// avoid crash on exit in Fedora (and other DEBUGGING Perls)
PL_use_safe_putenv = 1;
#endif
int argc = 0;
#if wxUSE_UNICODE && WXPERL_W_VERSION_GE( 2, 5, 3 )
wxChar** argv = 0;
argc = wxPli_get_args_argc_argv( (void***) &argv, 1 );
wxPerlInitialized = wxPliEntryStart( argc, argv );
#if WXPERL_W_VERSION_LE( 2, 5, 2 )
wxPli_delete_argv( (void***) &argv, 1 );
#endif
#else
char** argv = 0;
argc = wxPli_get_args_argc_argv( (void***) &argv, 0 );
wxPerlInitialized = wxPliEntryStart( argc, argv );
#if WXPERL_W_VERSION_LE( 2, 5, 2 )
wxPli_delete_argv( (void***) &argv, 0 );
#endif
#endif
RETVAL = wxPerlInitialized;
if( !RETVAL && croak_on_error )
{
#if wxUSE_LOG
wxLog::FlushActive();
#endif
require_pv( "Carp.pm" );
const char* argv[2] = { "Failed to initialize wxWidgets", NULL };
call_argv( "Carp::croak", G_VOID|G_DISCARD, (char**) argv );
}
OUTPUT: RETVAL
#if defined(__WXMAC__)
void
_MacSetFrontProcess()
CODE:
ProcessSerialNumber kCurrentPSN = { 0, kCurrentProcess };
TransformProcessType( &kCurrentPSN, kProcessTransformToForegroundApplication );
SetFrontProcess( &kCurrentPSN );
#endif
void
SetConstants()
CODE:
// this is after wxEntryStart, since
// wxInitializeStockObjects needs to be called
// (for colours, cursors, pens, etc...)
SetConstants();
void
SetConstantsOnce()
void
SetOvlConstants()
void
UnLoad()
CODE:
wxPerlAppCreated = wxTheApp != NULL;
Wx_booted = Wx_Const_booted = Wx_Ctrl_booted =
Wx_Evt_booted = Wx_Wnd_booted = Wx_GDI_booted = Wx_Win_booted = false;
if( wxPerlInitialized && !wxPerlAppCreated )
wxEntryCleanup();
wxPerlInitialized = false;
void
SetAlwaysUTF8( always_utf8 = true )
bool always_utf8
CODE:
#if !wxUSE_UNICODE
wxPli_always_utf8 = always_utf8;
#endif
#if WXPERL_W_VERSION_GE( 2, 5, 1 )
#include <wx/dynload.h>
## this has the same interface as DynaLoader::dl_load_files, but since
## internally it uses wxPluginModule, it ensures proper initialization for
## wxModule, wxRTTI and (hopefully) any other internal wxWidgets' data structure
IV
_load_plugin( string, int flags = 0 /* to be compatible with dl_load_file */ )
wxString string
CODE:
#ifdef HACK
delete new wxHtmlWindow();
#if wxUSE_MEDIACTRL
delete new wxMediaCtrl();
#endif
#endif
wxDynamicLibrary *lib = wxPluginManager::LoadLibrary( string, wxDL_VERBATIM );
RETVAL = PTR2IV( lib->GetLibHandle() );
OUTPUT:
RETVAL
bool
_unload_plugin( string )
wxString string
CODE:
RETVAL = wxPluginManager::UnloadLibrary( string );
OUTPUT:
RETVAL
#endif
bool
_xsmatch( avref, proto, required = -1, allowmore = false )
SV* avref
SV* proto
int required
bool allowmore
PREINIT:
AV* av;
wxPliPrototype* prototype;
int n, len;
PROTOTYPE: \@$;$$
CODE:
av = wxPli_avref_2_av( avref );
if( !av ) croak( "first parameter must be an ARRAY reference" );
prototype = INT2PTR( wxPliPrototype*, SvIV( proto ) );
len = av_len( av ) + 1;
EXTEND(SP, len);
PUSHMARK(SP);
for( int i = 0; i < len; ++i )
PUSHs( *av_fetch( av, i, 0 ) );
PUTBACK;
RETVAL = wxPli_match_arguments( aTHX_ *prototype, required, allowmore );
SPAGAIN;
POPMARK; // wxPli_match_* does a PUSHMARK
OUTPUT: RETVAL
## // Optional Modules Included
bool
_wx_optmod_ribbon()
CODE:
#if wxPERL_USE_RIBBON && wxUSE_RIBBON && WXPERL_W_VERSION_GE( 2, 9, 3 )
RETVAL = TRUE;
#else
RETVAL = FALSE;
#endif
OUTPUT: RETVAL
bool
_wx_optmod_propgrid()
CODE:
#if wxPERL_USE_PROPGRID && wxUSE_PROPGRID && WXPERL_W_VERSION_GE( 2, 9, 3 )
RETVAL = TRUE;
#else
RETVAL = FALSE;
#endif
OUTPUT: RETVAL
bool
_wx_optmod_media()
CODE:
#if wxPERL_USE_MEDIA && wxUSE_MEDIACTRL
RETVAL = TRUE;
#else
RETVAL = FALSE;
#endif
OUTPUT: RETVAL
bool
_wx_optmod_webview()
CODE:
#if wxPERL_USE_WEBVIEW && wxUSE_WEBVIEW && WXPERL_W_VERSION_GE( 2, 9, 3 )
RETVAL = TRUE;
#else
RETVAL = FALSE;
#endif
OUTPUT: RETVAL
I32
looks_like_number( sval )
SV* sval
CODE:
RETVAL = my_looks_like_number( aTHX_ sval );
OUTPUT:
RETVAL
void
CLONE( CLASS )
char* CLASS
CODE:
SetConstants();
INCLUDE: XS/App.xs
INCLUDE: XS/Caret.xs
INCLUDE: XS/Geom.xs
INCLUDE: XS/Menu.xs
INCLUDE: XS/Log.xs
INCLUDE: XS/ToolTip.xs
INCLUDE: XS/Locale.xs
INCLUDE: XS/Utils.xs
INCLUDE: XS/Timer.xs
INCLUDE: XS/Stream.xs
INCLUDE: XS/TaskBarIcon.xs
INCLUDE: XS/Config.xs
INCLUDE: XS/Process.xs
INCLUDE: XS/FontMapper.xs
INCLUDE: XS/FontEnumerator.xs
INCLUDE: XS/Wave.xs
INCLUDE_COMMAND: $^X -MExtUtils::XSpp::Cmd -e xspp -- -t typemap.xsp XS/ArtProvider.xsp
INCLUDE_COMMAND: $^X -MExtUtils::XSpp::Cmd -e xspp -- -t typemap.xsp XS/MimeTypes.xsp
INCLUDE_COMMAND: $^X -MExtUtils::XSpp::Cmd -e xspp -- -t typemap.xsp XS/Sound.xsp
INCLUDE_COMMAND: $^X -MExtUtils::XSpp::Cmd -e xspp -- -t typemap.xsp XS/Power.xsp
INCLUDE_COMMAND: $^X -MExtUtils::XSpp::Cmd -e xspp -- -t typemap.xsp XS/ClassInfo.xsp
INCLUDE_COMMAND: $^X -MExtUtils::XSpp::Cmd -e xspp -- -t typemap.xsp XS/Display.xsp
INCLUDE_COMMAND: $^X -MExtUtils::XSpp::Cmd -e xspp -- -t typemap.xsp XS/StandardPaths.xsp
INCLUDE_COMMAND: $^X -MExtUtils::XSpp::Cmd -e xspp -- -t typemap.xsp XS/Variant.xsp
INCLUDE_COMMAND: $^X -MExtUtils::XSpp::Cmd -e xspp -- -t typemap.xsp XS/NotificationMessage.xsp
## //FIXME// tricky
##if defined(__WXMSW__)
##undef XS
##define XS( name ) WXXS( name )
##endif
MODULE=Wx PACKAGE=Wx
#!irrelevant class wxArray
#!irrelevant class wxArray<T>
#!irrelevant class wxArrayString
#!irrelevant class wxObjArray
#!irrelevant class wxBrushList
#!irrelevant class wxClientData
#!irrelevant class wxClientDataContainer
#!irrelevant class wxCondition
#!irrelevant class wxCriticalSection
#!irrelevant class wxCriticalSectionLocker
#!irrelevant class wxDebugContext
#!irrelevant class wxDebugStreamBuf
#!irrelevant class wxDynamicLibrary
#!irrelevant class wxDynamicLibraryDetails
#!irrelevant class wxFFile
#!irrelevant class wxFFileInputStream
#!irrelevant class wxFFileOutputStream
#!irrelevant class wxFFileStream
#!irrelevant class wxFile
#!irrelevant class wxFileInputStream
#!irrelevant class wxFileOutputStream
#!irrelevant class wxFileStream
#!irrelevant class wxFilterClassFactory
#!irrelevant class wxFontList
#!irrelevant class wxHashMap
#!irrelevant class wxHashSet
#!irrelevant class wxHashTable
#!irrelevant class wxList
#!irrelevant class wxLongLong
#!irrelevant class wxMemoryBuffer
#!irrelevant class wxModule
#!irrelevant class wxMutex
#!irrelevant class wxMutexLocker
#!irrelevant class wxNode
#!irrelevant class wxObjectRefData
#!irrelevant class wxPathList
#!irrelevant class wxPenList
#!irrelevant class wxProtocol
#!irrelevant class wxRecursionGuard
#!irrelevant class wxRecursionGuardFlag
#!irrelevant class wxScopedArray
#!irrelevant class wxScopedPtr
#!irrelevant class wxScopedTiedPtr
#!irrelevant class wxSemaphore
#!irrelevant class wxString
#!irrelevant class wxStringBuffer
#!irrelevant class wxStringBufferLength
#!irrelevant class wxStringClientData
#!irrelevant class wxStringTokenizer
#!irrelevant class wxThreadHelper
#!equivalent class wxThread to Perl modules thread, thread::shared
#!equivalent class wxArchiveClassFactory to Perl modules Archive::Any, Archive::Zip, Archive::Tar
#!equivalent class wxArchiveEntry to Perl modules Archive::Any, Archive::Zip, Archive::Tar
#!equivalent class wxArchiveInputStream to Perl modules Archive::Any, Archive::Zip, Archive::Tar
#!equivalent class wxArchiveIterator to Perl modules Archive::Any, Archive::Zip, Archive::Tar
#!equivalent class wxArchiveNotifier to Perl modules Archive::Any, Archive::Zip, Archive::Tar
#!equivalent class wxArchiveOutputStream to Perl modules Archive::Any, Archive::Zip, Archive::Tar
#!equivalent class wxAutomationObject to perl module Win32::OLE
#!equivalent class wxCSConv to Perl module Encode
#!equivalent class wxEncodingConverter to Perl module Encode
#!equivalent class wxMBConv to Perl module Encode
#!equivalent class wxMBConvFile to Perl module Encode
#!equivalent class wxMBConvUTF16 to Perl module Encode
#!equivalent class wxMBConvUTF32 to Perl module Encode
#!equivalent class wxMBConvUTF7 to Perl module Encode
#!equivalent class wxMBConvUTF8 to Perl module Encode
#!equivalent class wxDb to Perl module DBI
#!equivalent class wxDbColDataPtr to Perl module DBI
#!equivalent class wxDbColDef to Perl module DBI
#!equivalent class wxDbColFor to Perl module DBI
#!equivalent class wxDbColInf to Perl module DBI
#!equivalent class wxDbConnectInf to Perl module DBI
#!irrelevant class wxDbGridColInfo
#!equivalent class wxDbIdxDef to Perl module DBI
#!equivalent class wxDbInf to Perl module DBI
#!equivalent class wxDbTable to Perl module DBI
#!equivalent class wxDbTableInf to Perl module DBI
#!equivalent class wxDir to opendir/readdir and to Perl modules File::Find, File::Find::Rule
#!equivalent class wxDirTraverser to Perl modules File::Find, File::Find::Rule
#!equivalent class wxFileName to File::Spec, Path::Class
#!equivalent class wxFTP to Perl modules Net::FTP, LWP::UserAgent
#!equivalent class wxHTTP to Perl modules Net::HTTP, LWP::UserAgent
#!equivalent class wxRegEx to a Perl regular expression
#!equivalent class wxRegKey to Perl module Win32::Registry
#!equivalent class wxTarClassFactory to Perl module Archive::Tar
#!equivalent class wxTarEntry to Perl module Archive::Tar
#!equivalent class wxTarInputStream to Perl module Archive::Tar
#!equivalent class wxTarOutputStream to Perl module Archive::Tar
#!equivalent class wxTempFile to Perl module File::Temp
#!equivalent class wxTempFileOutputStream to Perl module File::Temp
#!equivalent class wxTextValidator to Perl module Wx::Perl::TextValidator
#!equivalent class wxURI to Perl module URI
#!equivalent class wxURL to Perl module URI::URL
#!equivalent class wxZipClassFactory to Perl module Archive::Zip
#!equivalent class wxZipEntry to Perl module Archive::Zip
#!equivalent class wxZipInputStream to Perl module Archive::Zip
#!equivalent class wxZipNotifier to Perl module Archive::Zip
#!equivalent class wxZipOutputStream to Perl module Archive::Zip
#!equivalent class wxZlibInputStream to Perl module Compress::Zlib, IO::Zlib
#!equivalent class wxZlibOutputStream to Perl module Compress::Zlib, IO::Zlib
#!equivalent class wxBufferedInputStream to Perl input/output
#!equivalent class wxBufferedOutputStream to Perl input/output
#!equivalent class wxCountingOutputStream to Perl input/output
#!equivalent class wxCountingOutputStream to Perl input/output
#!equivalent class wxDataInputStream to Perl module Storable
#!equivalent class wxDataOutputStream to Perl module Storable
#!equivalent class wxFilterInputStream to Perl module PerlIO::via
#!equivalent class wxFilterOutputStream to Perl module PerlIO::via
#!equivalent class wxMemoryInputStream to Perl module PerlIO::scalar
#!equivalent class wxMemoryOutputStream to Perl module PerlIO::scalar
#!equivalent class wxSocketInputStream to Perl modules IO::Socket::*
#!equivalent class wxSocketOutputStream to Perl modules IO::Socket::*
#!equivalent class wxStreamBase to Perl input/output
#!equivalent class wxStreamBase to Perl input/output
#!equivalent class wxStreamBuffer to Perl input/output
#!equivalent class wxStringInputStream to Perl module PerlIO::scalar
#!equivalent class wxStringOutputStream to Perl module PerlIO::scalar
#!equivalent class wxTextFile to Perl input/output
#!equivalent class wxTextInputStream to Perl input/output
#!equivalent class wxTextOutputStream to Perl input/output
#!equivalent class wxMetafile to Perl module Wx::Metafile
#!equivalent class wxDialUpEvent to Perl module Wx::DialUpEvent
#!equivalent class wxDialUpManager to Perl module Wx::DialUpManager
#!equivalent class wxGLCanvas to Perl module Wx::GLCanvas
#!equivalent class wxGLContext to Perl module Wx::GLCanvas
#!equivalent class wxDateTime to perl module DateTime, Date::Calc, Date::Manip, Time::Piece
#!equivalent class wxDateSpan to perl module DateTime, Date::Calc, Date::Manip, Time::Piece
#!equivalent class wxTimeSpan to perl module DateTime, Date::Calc, Date::Manip, Time::Piece
|