#!/usr/bin/perl -w --
#
# generated by wxGlade "faked test version"
#
# To get wxPerl visit http://www.wxperl.it
#

# This is an automatically generated file.
# Manual changes will be overwritten without warning!

use Wx 0.15 qw[:allclasses];
use strict;
1;

package main;

use MyAppFrame;

unless(caller){
    my $local = Wx::Locale->new("English", "en", "en"); # replace with ??
    $local->AddCatalog("myapp"); # replace with the appropriate catalog name

    local *Wx::App::OnInit = sub{1};
    my $myapp = Wx::App->new();
    Wx::InitAllImageHandlers();

    my $appframe = MyAppFrame->new();

    $myapp->SetTopWindow($appframe);
    $appframe->Show(1);
    $myapp->MainLoop();
}
