Acme-Gtk2-Ex-Builder

 view release on metacpan or  search on metacpan

examples/calendar.pl  view on Meta::CPAN

#!/usr/bin/env perl

use 5.010;
use utf8;
use strict;
use warnings;
use autodie;
use Gtk2 '-init';
use Acme::Gtk2::Ex::Builder;

my $app = build {
    widget Window => contain {
        info id           => 'window';
        set  title        => 'Calendar Example';

examples/window.pl  view on Meta::CPAN

#!/usr/bin/env perl

use 5.010;
use utf8;
use strict;
use warnings;
use autodie;
use Gtk2 '-init';
use Acme::Gtk2::Ex::Builder;

my $app = build {
    widget Window => contain {
        info id               => 'window';
        set  position         => 'center';

lib/Acme/Gtk2/Ex/Builder.pm  view on Meta::CPAN

sub info   { goto &_info   }
sub on     { goto &_on     }
sub set    { goto &_set    }
sub prop   { goto &_prop   }

1;


=pod

=encoding utf-8

=head1 NAME

Acme::Gtk2::Ex::Builder - Funny Gtk2 Interface Design Module

=head1 VERSION

version 0.008

=head1 SYNOPSIS

weaver.ini  view on Meta::CPAN

[@Default]

[-Encoding]
encoding = utf-8



( run in 0.301 second using v1.01-cache-2.11-cpan-4d50c553e7e )