Gtk2::SourceView2 - Enhanced source code editor widget


Gtk2-SourceView2 documentation  | view source Contained in the Gtk2-SourceView2 distribution.

Index


NAME

Top

Gtk2::SourceView2 - Enhanced source code editor widget

SYNOPSIS

Top

	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

Top

Gtk2::SourceView2 is the Perl binding for the C library gtksourceview-2.0. This is the same widget that's used by gedit, MonoDevelop, Anjuta and several other projects.

This widget extends the standard GTK+ framework for multiline text editing with support for configurable syntax highlighting, unlimited undo/redo, UTF-8 compliant caseless searching, printing and other features typical of a source code editor.

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

AUTHORS

Top

Emmanuel Rodriguez <potyl@cpan.org>.

COPYRIGHT AND LICENSE

Top


Gtk2-SourceView2 documentation  | view source Contained in the Gtk2-SourceView2 distribution.