]> git.draconx.ca Git - aspectbin.git/blob - examples/glade_simple.c
Include aspectbin.h in the glade_simple example.
[aspectbin.git] / examples / glade_simple.c
1 /* AspectBin - A GTK+ container for packing with consrained aspect ratio.
2  * Copyright (C) 2009 Nick Bowler
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22
23 #include <glade/glade.h>
24 #include <gtk/gtk.h>
25
26 #include <aspectbin.h>
27
28 int main(int argc, char **argv)
29 {
30         GladeXML *xml;
31         GtkWidget *win;
32
33         gtk_init(&argc, &argv);
34
35         // Register the aspect bin widgets with libglade.
36         aspect_bin_register_widgets();
37
38         xml = glade_xml_new("simple.glade", NULL, NULL);
39         if (!xml) {
40                 fprintf(stderr, "Failed to load simple.glade\n");
41                 return EXIT_FAILURE;
42         }
43
44         glade_xml_signal_autoconnect(xml);
45
46         win = glade_xml_get_widget(xml, "mainWindow");
47         gtk_widget_show_all(win);
48         gtk_main();
49
50         return 0;
51 }