aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-12-08 16:15:03 +0000
committerChristian Grothoff <christian@grothoff.org>2011-12-08 16:15:03 +0000
commitd2e37fdd5039617bc565953e2718531092478365 (patch)
treeed917f829b45e45f02f7b6cba137d68a7b298b75 /src/include
parent5938304d8d06c67467d05a506357da69f18ce445 (diff)
downloadgnunet-gtk-d2e37fdd5039617bc565953e2718531092478365.tar.gz
gnunet-gtk-d2e37fdd5039617bc565953e2718531092478365.zip
LRN: Starting to get rid of gtk_dialog_run(), and more
* Call AC_INIT() with different package name and tarball name * Get version from VCS instead of hard-coding it in configure.ac * Don't supply version to AM_INIT_AUTOMAKE * Use silent rules * Make a few GNUNET_FS_GTK_* AM variables to be used in .glade files * Add contrib/gnunet_fs_gtk_about_window.glade.in * GNUNET_GTK_display_about () doesn't take dialog name anymore (it should always be 'about_window' now) * GNUNET_GTK_get_new_builder () now passes the builder as a callback argument * about.c now implements most of the things that were previously done by GtkAboutDialog.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_gtk.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/gnunet_gtk.h b/src/include/gnunet_gtk.h
index c567efb0..4f3e2cdb 100644
--- a/src/include/gnunet_gtk.h
+++ b/src/include/gnunet_gtk.h
@@ -37,8 +37,8 @@
37#include <gnunet/gnunet_util_lib.h> 37#include <gnunet/gnunet_util_lib.h>
38#include <gnunet/gnunet_fs_service.h> 38#include <gnunet/gnunet_fs_service.h>
39#include <extractor.h> 39#include <extractor.h>
40#include <gladeui/glade.h>
41#include <gtk/gtk.h> 40#include <gtk/gtk.h>
41#include <gladeui/glade.h>
42 42
43/* ****************** Initialization *************** */ 43/* ****************** Initialization *************** */
44 44
@@ -93,10 +93,9 @@ GNUNET_GTK_get_new_builder (const char *filename);
93 * This displays an about dialog. 93 * This displays an about dialog.
94 * 94 *
95 * @param dialogfile name of the glade file containing the dialog 95 * @param dialogfile name of the glade file containing the dialog
96 * @param dialogname name of the about dialog in the file
97 */ 96 */
98void 97void
99GNUNET_GTK_display_about (const char *dialogfile, const char *dialogname); 98GNUNET_GTK_display_about (const char *dialogfile);
100 99
101 100
102 101