~dehein/+junk/grid

« back to all changes in this revision

Viewing changes to src/grid.vala

  • Committer: Paul Hein
  • Date: 2014-08-30 11:25:56 UTC
  • Revision ID: dehein@gmail.com-20140830112556-z9p96t1f3pakhrcw
First grid test. Initialisation of grid.vala.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
int main (string[] args) {
 
2
    Gtk.init (ref args);
 
3
    var window = new Gtk.Window ();
 
4
    window.title = "Grid test";
 
5
    window.set_border_width (12);
 
6
    window.set_position (Gtk.WindowPosition.CENTER);
 
7
    window.set_default_size (350, 70);
 
8
    window.destroy.connect (Gtk.main_quit);
 
9
 
 
10
    Gtk.main ();
 
11
    return 0;
 
12
}
 
 
b'\\ No newline at end of file'