Deprecated.
NAME
Gnome2::Dia - (DEPRECATED) Perl interface to the DiaCanvas2 library
SYNOPSIS
use strict;
use warnings;
use Glib qw(TRUE FALSE);
use Gtk2 -init;
use Gnome2::Dia;
my $window = Gtk2::Window -> new();
my $canvas = Gnome2::Dia::Canvas -> new();
my $view = Gnome2::Dia::CanvasView -> new($canvas, TRUE);
my $box = Gnome2::Dia::CanvasItem -> create("Gnome2::Dia::CanvasBox",
border_width => 1.5);
$canvas -> root -> add($box);
$box -> move(100, 100);
$window -> add($view);
$window -> set_default_size(600, 400);
$window -> set_title("Sample");
$window -> show_all();
$window -> signal_connect(delete_event => sub {
Gtk2 -> main_quit();
return FALSE;
});
Gtk2 -> main();
ABSTRACT
DEPRECATED This module allows a Perl developer to use the DiaCanvas2 library.
DESCRIPTION
NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
This module has been deprecated by the Gtk-Perl project. This means that the module will no longer be updated with security patches, bug fixes, or when changes are made in the Perl ABI. The Git repo for this module has been archived (made read-only), it will no longer possible to submit new commits to it. You are more than welcome to ask about this module on the Gtk-Perl mailing list, but our priorities going forward will be maintaining Gtk-Perl modules that are supported and maintained upstream; this module is neither.
Since this module is licensed under the LGPL v2.1, you may also fork this module, if you wish, but you will need to use a different name for it on CPAN, and the Gtk-Perl team requests that you use your own resources (mailing list, Git repos, bug trackers, etc.) to maintain your fork going forward.
Perl URL: https://gitlab.gnome.org/GNOME/perl-gnome2-dia
Upstream URL: https://sourceforge.net/projects/diacanvas/
Last upstream version: 0.15.4 (DiaCanvas2)
Last upstream release date: 2007-08-03
Migration path for this module: No upstream replacement
NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
SEE ALSO
Gnome2::Dia::index(3pm), Gtk2(3pm), Gtk2::api(3pm) and http://diacanvas.sourceforge.net/ref/.
AUTHOR
Torsten Schoenfeld <kaffeetisch@web.de>
COPYRIGHT AND LICENSE
Copyright (C) 2004 by the gtk2-perl team