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
|
/////////////////////////////////////////////////////////////////////////////
// Name: cpp/app.h
// Purpose: c++ wrapper for wxApp
// Author: Mattia Barbon
// Modified by:
// Created: 29/10/2000
// RCS-ID: $Id: app.h 2057 2007-06-18 23:03:00Z mbarbon $
// Copyright: (c) 2000-2006 Mattia Barbon
// Licence: This program is free software; you can redistribute it and/or
// modify it under the same terms as Perl itself
/////////////////////////////////////////////////////////////////////////////
#ifdef Yield
#undef Yield
#endif
class wxPliApp:public wxApp
{
WXPLI_DECLARE_DYNAMIC_CLASS( wxPliApp );
WXPLI_DECLARE_V_CBACK();
public:
wxPliApp( const char* package = "Wx::App" );
~wxPliApp();
bool OnInit();
int MainLoop();
void CleanUp() { DeletePendingObjects( this ); wxApp::CleanUp(); }
#if defined( __WXMSW__ ) && WXPERL_W_VERSION_LT( 2, 5, 0 )
static void SetKeepGoing(wxPliApp* app, bool value)
{
app->m_keepGoing = value;
}
#endif
void DeletePendingObjects() {
wxApp::DeletePendingObjects();
}
static void DeletePendingObjects(wxApp* app)
{
((wxPliApp*) app)->DeletePendingObjects();
}
DEC_V_CBACK_INT__VOID( OnExit );
DEC_V_CBACK_BOOL__BOOL( Yield );
};
inline wxPliApp::wxPliApp( const char* package )
:m_callback( "Wx::App" )
{
m_callback.SetSelf( wxPli_make_object( this, package ), true );
}
wxPliApp::~wxPliApp()
{
#ifdef __WXMOTIF__
if (GetTopWindow())
{
delete GetTopWindow();
SetTopWindow(NULL);
}
DeletePendingObjects();
OnExit();
#endif
#if WXPERL_W_VERSION_LE( 2, 5, 1 )
wxPli_delete_argv( (void***) &argv, 1 );
argc = 0;
argv = 0;
#endif
}
inline bool wxPliApp::OnInit()
{
wxApp::OnInit();
return false;
}
inline int wxPliApp::MainLoop() {
int retval = 0;
DeletePendingObjects();
#if defined( __WXGTK__ ) && WXPERL_W_VERSION_LT( 2, 5, 1 )
m_initialized = wxTopLevelWindows.GetCount() != 0;
#endif
if( m_exitOnFrameDelete == Later )
m_exitOnFrameDelete = Yes;
retval = wxApp::MainLoop();
OnExit();
return retval;
}
DEF_V_CBACK_INT__VOID( wxPliApp, wxApp, OnExit );
DEF_V_CBACK_BOOL__BOOL( wxPliApp, wxApp, Yield );
WXPLI_IMPLEMENT_DYNAMIC_CLASS( wxPliApp, wxApp );
// Local variables: //
// mode: c++ //
// End: //
|