NAME

Gtk2::SourceView2 - Enhanced source code editor widget

SYNOPSIS

use Glib qw(TRUE FALSE);
use Gtk2 '-init';
use Gtk2::SourceView2;

my $window = Gtk2::Window->new();
my $view = Gtk2::SourceView2->new();
$window->add($view);
$window->set_size_request(480, 120);
$window->show_all();

$window->signal_connect(delete_event => sub {
	Gtk2->main_quit();
	return TRUE;
});

Gtk2->main();

DESCRIPTION

Gtk2::SourceView2 is the Perl binding for the C library gtk2-sourceview2.

For more information about libunique see: http://projects.gnome.org/gtksourceview/.

AUTHORS

Emmanuel Rodriguez <potyl@cpan.org>.

COPYRIGHT AND LICENSE

Copyright (C) 2009 by Emmanuel Rodriguez.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.