GimpProcBrowserDialog 3 LIBGIMP Library GimpProcBrowserDialog Synopsis GimpProcBrowserDialog; GtkWidget* gimp_proc_browser_dialog_new (const gchar *title, const gchar *role, GimpHelpFunc help_func, const gchar *help_id, ...); gchar* gimp_proc_browser_dialog_get_selected (GimpProcBrowserDialog *dialog); Object Hierarchy GObject +----GInitiallyUnowned +----GtkObject +----GtkWidget +----GtkContainer +----GtkBin +----GtkWindow +----GtkDialog +----GimpDialog +----GimpProcBrowserDialog Implemented Interfaces GimpProcBrowserDialog implements AtkImplementorIface and GtkBuildable. Signals "row-activated" : Run Last "selection-changed" : Run Last Description Details <anchor id="GimpProcBrowserDialog-struct" role="struct"/>GimpProcBrowserDialog GimpProcBrowserDialogtypedef struct _GimpProcBrowserDialog GimpProcBrowserDialog; <anchor id="gimp-proc-browser-dialog-new" role="function" condition="since:GIMP 2.4"/>gimp_proc_browser_dialog_new () gimp_proc_browser_dialog_newGtkWidget* gimp_proc_browser_dialog_new (const gchar *title, const gchar *role, GimpHelpFunc help_func, const gchar *help_id, ...); Create a new GimpProcBrowserDialog. title : The dialog's title. role : The dialog's role, see gtk_window_set_role(). help_func : The function which will be called if the user presses "F1". help_id : The help_id which will be passed to help_func. ... : A NULL-terminated list destribing the action_area buttons. Returns : a newly created GimpProcBrowserDialog. Since GIMP 2.4 <anchor id="gimp-proc-browser-dialog-get-selected" role="function" condition="since:GIMP 2.4"/>gimp_proc_browser_dialog_get_selected () gimp_proc_browser_dialog_get_selectedgchar* gimp_proc_browser_dialog_get_selected (GimpProcBrowserDialog *dialog); Retrieves the name of the currently selected procedure. dialog : a GimpProcBrowserDialog Returns : The name of the selected procedure of NULL if no procedure is selected. Since GIMP 2.4 Signal Details <anchor id="GimpProcBrowserDialog-row-activated"/>The "row-activated" signal GimpProcBrowserDialog::row-activatedvoid user_function (GimpProcBrowserDialog *dialog, gpointer user_data) : Run Last Emitted when one of the rows in the contained GtkTreeView is activated. dialog : the object that received the signal user_data : user data set when the signal handler was connected. <anchor id="GimpProcBrowserDialog-selection-changed"/>The "selection-changed" signal GimpProcBrowserDialog::selection-changedvoid user_function (GimpProcBrowserDialog *dialog, gpointer user_data) : Run Last Emitted when the selection in the contained GtkTreeView changes. dialog : the object that received the signal user_data : user data set when the signal handler was connected.