September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
|
|
@ -1,8 +1,8 @@
|
|||
use Gtk '-init';
|
||||
use Gtk3 '-init';
|
||||
|
||||
$window = Gtk::Window->new;
|
||||
$window = Gtk3::Window->new;
|
||||
$window->signal_connect(
|
||||
destroy => sub { Gtk->main_quit; }
|
||||
destroy => sub { Gtk3->main_quit; }
|
||||
);
|
||||
$window->show_all;
|
||||
Gtk->main;
|
||||
Gtk3->main;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
use Gtk2 '-init';
|
||||
use strict;
|
||||
use warnings;
|
||||
use QtGui4;
|
||||
|
||||
$window = Gtk2::Window->new;
|
||||
$window->signal_connect(
|
||||
destroy => sub { Gtk2->main_quit; }
|
||||
);
|
||||
$window->show_all;
|
||||
Gtk2->main;
|
||||
my $app = Qt::Application(\@ARGV);
|
||||
my $window = Qt::MainWindow;
|
||||
$window->show;
|
||||
exit $app->exec;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,5 @@
|
|||
use strict;
|
||||
use warnings;
|
||||
use QtGui4;
|
||||
use Wx;
|
||||
|
||||
my $app = Qt::Application(\@ARGV);
|
||||
my $window = Qt::MainWindow;
|
||||
$window->show;
|
||||
exit $app->exec;
|
||||
$window = Wx::Frame->new(undef, -1, 'title');
|
||||
$window->Show;
|
||||
Wx::SimpleApp->new->MainLoop;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue