package Libconf::GUI::Gtk2::Hostname; use ugtk2 qw(:helpers :wrappers :create); use Libconf::GUI::Gtk2::Entry; our @ISA = qw(Libconf::GUI::Gtk2::Entry); #constructor #@widget_options is optional sub new { my $class = shift; #call the constructor of the parent class. my $self = $class->SUPER::new(@_); bless $self, $class; return $self; } 1;