Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,4 @@
use Tk;
MainWindow->new();
MainLoop;

View file

@ -0,0 +1,7 @@
use SDL::App;
use SDL::Event;
$app = SDL::App->new;
$app->loop({
SDL_QUIT() => sub { exit 0; },
});

View file

@ -0,0 +1,8 @@
use Gtk3 '-init';
$window = Gtk3::Window->new;
$window->signal_connect(
destroy => sub { Gtk3->main_quit; }
);
$window->show_all;
Gtk3->main;

View file

@ -0,0 +1,8 @@
use strict;
use warnings;
use QtGui4;
my $app = Qt::Application(\@ARGV);
my $window = Qt::MainWindow;
$window->show;
exit $app->exec;

View file

@ -0,0 +1,5 @@
use Wx;
$window = Wx::Frame->new(undef, -1, 'title');
$window->Show;
Wx::SimpleApp->new->MainLoop;