-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path8d-Separators.pl
executable file
·45 lines (36 loc) · 991 Bytes
/
8d-Separators.pl
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
#! /usr/bin/perl
use strict;
use warnings;
use diagnostics;
use feature ':5.14';
use Gtk3 '-init';
use Glib qw/TRUE FALSE/;
use Data::Dumper;
my $window = Gtk3::Window->new('toplevel');
$window->set_title("Switch Example");
$window->set_position("mouse");
$window->set_default_size(250, 100);
$window->set_border_width(5);
$window->signal_connect (delete_event => sub { Gtk3->main_quit });
my $vbox = Gtk3::Box->new("vertical", 5);
$window->add($vbox);
my $spinner = Gtk3::Spinner->new;
my $switch = Gtk3::Switch->new;
$switch->set_active( FALSE );
my $sep = Gtk3::Separator->new("horizontal");
$vbox->pack_start($spinner, TRUE, TRUE, 5 );
$vbox->pack_start($sep, FALSE, FALSE, 2 );
$vbox->pack_start($switch, TRUE, TRUE, 5 );
$switch->signal_connect( 'notify::active' => \&toggle );
$window->show_all;
Gtk3->main;
sub toggle {
my ($widget, $data) = @_;
say Dumper($data);
if ( $widget->get_active == TRUE ) {
$spinner->start;
} else {
$spinner->stop;
}
return FALSE;
}