Gtk2
view release on metacpan or search on metacpan
ChangeLog.pre-git view on Meta::CPAN
* debian/*: patch from James Curbo adding maintainence files for
debian packages.
* devel.pod, Makefile.PL: more docs
* Gtk2.pm, README: updated for 0.94 release
2003/08/14 22:43 muppetman
busy day, busy day...
* t/00.Gtk2.t, t/16.GtkMenu-etc.t, t/19.GtkSimpleList.t: patch from
Torsten Schoenfeld hushes some warnings in make test
* xs/GtkTreeView.xs: another TreeView patch from Torsten, hacked up
a bit by me, to add some callbacks. get_search_equal_func isn't
bound because there's really no reliable and not easily-broken way
to return a function pointer value or a code reference and then know
what to do with them on the other end. (presumably for restoring
the search func after setting it.) also, i left out the
* Test fixes. [muppet, Torsten, Ross]
* Random pod updates all over the place. [muppet]
* Gtk2::CellRenderer now hides "this api is deprecated!" warnings unless env
var GTK2PERL_DEBUG is set and true. [muppet]
* Finally fixed Gtk2::Gdk::DragContext::find_window and friends. [muppet]
* New regression test for custom TreeModel interface implementations. There
are several TODO tests that fail, as a reminder to muppet to fix them
properly. [Torsten]
* Build GdkX11.xs (and the associated Gtk2::Gdk::X11 namespace) only when
linking against the x11 gtk+ target. [muppet]
* Numerous bugfixes. It was a busy weekend. Some features important for
deriving containers in Perl code have been punted for the 1.060 API freeze.
Overview of Changes in Gtk2 1.037
=================================
* Updated Glib requirement to 1.037.
* Decided on a versioning scheme, implemented it, and applied it.
http://lists.gnome.org/archives/gtk-perl-list/2004-February/msg00085.html
New functions: Gtk2->CHECK_VERSION, Gtk2::MAJOR_VERSION, Gtk2::MINOR_VERSION,
Gtk2::MICRO_VERSION, Gtk2::major_version, Gtk2::minor_version,
gtk-demo/assistant.pl view on Meta::CPAN
$progress_bar = Gtk2::ProgressBar->new();
$page->add($progress_bar);
$page->show_all();
$assistant->append_page($page);
$assistant->set_page_type($page, 'GTK_ASSISTANT_PAGE_PROGRESS');
$assistant->set_page_title($page, "Applying changes");
# This prevents the assistant window from being
# closed while we're "busy" applying changes.
$assistant->set_page_complete($page, FALSE);
}
sub do {
my $do_widget = shift;
if (!$assistant) {
$assistant = Gtk2::Assistant->new ();
$assistant->set_default_size(-1, 300);
( run in 0.328 second using v1.01-cache-2.11-cpan-87723dcf8b7 )