ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/gde/GCE/MainWindow.pm
Revision: 1.1
Committed: Sun Feb 5 00:34:36 2006 UTC (18 years, 4 months ago) by elmex
Branch: MAIN
Log Message:
first checkin of skeleton

File Contents

# User Rev Content
1 elmex 1.1 package GCE::MainWindow;
2    
3     =head1 NAME
4    
5     GCE::MainWindow - the main window class for gce
6    
7     =cut
8    
9     use Gtk2;
10     use Gtk2::Gdk::Keysyms;
11    
12     use Glib::Object::Subclass Gtk2::Window;
13    
14     sub INIT_INSTANCE {
15     my ($self) = @_;
16    
17     $self->add (my $b = Gtk2::Label->new ("<stuff here>"));
18     }
19    
20     =head1 AUTHOR
21    
22     Marc Lehmann <schmorp@schmorp.de>
23     http://home.schmorp.de/
24    
25     Robin Redeker <elmex@ta-sa.org>
26     http://www.ta-sa.org/
27    
28     =cut
29     1;
30