corrected a typo
1999-03-25 Michael Natterer <mitschel@cs.tu-berlin.de> * unitrc: corrected a typo * app/commands.c * app/global_edit.c * app/gradient.c * app/interface.[ch] * app/palette.c * app/paths_dialog.c: the query_[string|..]_boxes connect their close callback to a user provided signal now. * libgimp/gimpimage.c: gimp_image_get_unit() doesn't need a g_return_if_fail() * libgimp/gimpunitmenu.c: memory leak & compiler warning * configure.in * gimprc.in * user_install * user_install.bat * plug-ins/Makefile.am * plug-ins/FractalExplorer/*: added the FractalExplorer plugin. * app/install.c: ditto and made the install help text more editable by moving it to an array.
This commit is contained in:

committed by
Michael Natterer

parent
77ae13ef02
commit
737aa1a0de
@ -58,41 +58,45 @@ void create_display_shell (GDisplay *gdisp,
|
||||
*/
|
||||
|
||||
/* some simple query dialogs
|
||||
* if object != NULL then the query boxes will connect to the "destroy"
|
||||
* signal of this object
|
||||
* if object != NULL then the query boxes will connect their cancel callback
|
||||
* to the provided signal of this object
|
||||
*/
|
||||
GtkWidget * query_string_box (char *title,
|
||||
char *message,
|
||||
char *initial,
|
||||
GtkWidget * query_string_box (gchar *title,
|
||||
gchar *message,
|
||||
gchar *initial,
|
||||
GtkObject *object,
|
||||
gchar *signal,
|
||||
QueryFunc callback,
|
||||
gpointer data);
|
||||
GtkWidget * query_int_box (char *title,
|
||||
GtkWidget * query_int_box (gchar *title,
|
||||
char *message,
|
||||
int initial,
|
||||
int lower,
|
||||
int upper,
|
||||
gint initial,
|
||||
gint lower,
|
||||
gint upper,
|
||||
GtkObject *object,
|
||||
gchar *signal,
|
||||
QueryFunc callback,
|
||||
gpointer data);
|
||||
GtkWidget * query_float_box (char *title,
|
||||
char *message,
|
||||
float initial,
|
||||
float lower,
|
||||
float upper,
|
||||
int digits,
|
||||
GtkWidget * query_float_box (gchar *title,
|
||||
gchar *message,
|
||||
gfloat initial,
|
||||
gfloat lower,
|
||||
gfloat upper,
|
||||
gint digits,
|
||||
GtkObject *object,
|
||||
gchar *signal,
|
||||
QueryFunc callback,
|
||||
gpointer data);
|
||||
GtkWidget * query_size_box (char *title,
|
||||
char *message,
|
||||
float initial,
|
||||
float lower,
|
||||
float upper,
|
||||
int digits,
|
||||
GtkWidget * query_size_box (gchar *title,
|
||||
gchar *message,
|
||||
gfloat initial,
|
||||
gfloat lower,
|
||||
gfloat upper,
|
||||
gint digits,
|
||||
GUnit unit,
|
||||
float resolution,
|
||||
gfloat resolution,
|
||||
GtkObject *object,
|
||||
gchar *signal,
|
||||
QueryFunc callback,
|
||||
gpointer data);
|
||||
|
||||
|
Reference in New Issue
Block a user