From: Nick Bowler Date: Mon, 23 Mar 2009 02:56:06 +0000 (-0400) Subject: Add an example program which uses glade. X-Git-Url: https://git.draconx.ca/gitweb/aspectbin.git/commitdiff_plain/1dde82f09550d403bf3c964f5c16791badf8048c Add an example program which uses glade. --- diff --git a/examples/.gitignore b/examples/.gitignore index 6598898..3d465d6 100644 --- a/examples/.gitignore +++ b/examples/.gitignore @@ -1 +1,2 @@ simplebuttons +glade_simple diff --git a/examples/Makefile.am b/examples/Makefile.am index 88a41d4..1ac8dd4 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -6,3 +6,11 @@ simplebuttons_SOURCES = simplebuttons.c simplebuttons_CFLAGS = $(GTK_CFLAGS) simplebuttons_LDFLAGS = $(GTK_LIBS) simplebuttons_LDADD = $(top_builddir)/libaspectbin.la + +if BUILD_LIBGLADE +noinst_PROGRAMS += glade_simple +glade_simple_SOURCES = glade_simple.c +glade_simple_CFLAGS = $(GTK_CFLAGS) $(LIBGLADE_CFLAGS) +glade_simple_LDFLAGS = $(GTK_LIBS) $(LIBGLADE_LIBS) -static +glade_simple_LDADD = $(top_builddir)/libaspectbin.la +endif diff --git a/examples/glade_simple.c b/examples/glade_simple.c new file mode 100644 index 0000000..0431a63 --- /dev/null +++ b/examples/glade_simple.c @@ -0,0 +1,49 @@ +/* AspectBin - A GTK+ container for packing with consrained aspect ratio. + * Copyright (C) 2009 Nick Bowler + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#include +#include + +#include +#include + +int main(int argc, char **argv) +{ + GladeXML *xml; + GtkWidget *win; + + gtk_init(&argc, &argv); + + // Register the aspect bin widgets with libglade. + aspect_bin_register_widgets(); + + xml = glade_xml_new("simple.glade", NULL, NULL); + if (!xml) { + fprintf(stderr, "Failed to load simple.glade\n"); + return EXIT_FAILURE; + } + + glade_xml_signal_autoconnect(xml); + + win = glade_xml_get_widget(xml, "mainWindow"); + gtk_widget_show_all(win); + gtk_main(); + + return 0; +} diff --git a/examples/simple.glade b/examples/simple.glade new file mode 100644 index 0000000..8397d79 --- /dev/null +++ b/examples/simple.glade @@ -0,0 +1,34 @@ + + + + + + + 400 + 300 + + + + True + + + True + True + True + button + 0 + + + + + True + True + True + button + 0 + + + + + +