So for some reason I did not know that wxGlade saves files in XML format.
Is that format called XRC or is XRC something else?
Is the format that wxFormBuilder generates the same?
Is there a perl module that would read that XML file and generate a
GUI similar to
Gtk2::GladeXML ?
I tried this code:
use Wx qw(:everything);
use Wx::Event qw(:everything);
use Wx::XRC ;
use base qw(Wx::Dialog);
use Wx::RichText ;
my $xrc = Wx::XmlResource->new();
$xrc->InitAllHandlers();
$xrc->Load("gabor.xml") or die "Load failed : $!\n" ;
but load failed on the xml file generated by wxGlade.
regards
Gabor