|  |  |  | GIMP Library Reference Manual |  | 
|---|---|---|---|---|
GtkWidget* gimp_font_select_widget_new (const gchar *title, const gchar *font_name, GimpRunFontCallback callback, gpointer data); void gimp_font_select_widget_close (GtkWidget *widget); void gimp_font_select_widget_set (GtkWidget *widget, const gchar *font_name);
GtkWidget*  gimp_font_select_widget_new     (const gchar *title,
                                             const gchar *font_name,
                                             GimpRunFontCallback callback,
                                             gpointer data);
Creates a new GtkWidget that completely controls the selection of a font. This widget is suitable for placement in a table in a plug-in dialog.
| title: | Title of the dialog to use or NULLmeans to use the default
            title. | 
| font_name: | Initial font name. | 
| callback: | A function to call when the selected font changes. | 
| data: | A pointer to arbitary data to be used in the call to callback. | 
| Returns : | A GtkWidget that you can use in your UI. | 
void gimp_font_select_widget_close (GtkWidget *widget);
Closes the popup window associated with widget.
| widget: | A font select widget. | 
void        gimp_font_select_widget_set     (GtkWidget *widget,
                                             const gchar *font_name);
Sets the current font for the font select widget.  Calls the
callback function if one was supplied in the call to
gimp_font_select_widget_new().
| widget: | A font select widget. | 
| font_name: | Font name to set; NULLmeans no change. |