Update .gitignore.
[aspectbin.git] / examples / glade_simple.c
blob4d598a20221b67b81b7e3a6bc78b12512a4b4bc8
1 /* AspectBin - A GTK+ container for packing with consrained aspect ratio.
2 * Copyright (C) 2009 Nick Bowler
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.
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.
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.
20 #include <stdio.h>
21 #include <stdlib.h>
23 #include <glade/glade.h>
24 #include <gtk/gtk.h>
26 #include <aspectbin.h>
28 int main(int argc, char **argv)
30 GladeXML *xml;
31 GtkWidget *win;
33 gtk_init(&argc, &argv);
35 // Register the aspect bin widgets with libglade.
36 aspect_bin_register_widgets();
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;
44 glade_xml_signal_autoconnect(xml);
46 win = glade_xml_get_widget(xml, "mainWindow");
47 gtk_widget_show_all(win);
48 gtk_main();
50 return 0;