libgimpwidgets/libgimpwidgets-docs.sgml
2006-09-07 Sven Neumann <sven@gimp.org> * libgimpwidgets/libgimpwidgets-docs.sgml * libgimpwidgets/libgimpwidgets-sections.txt * libgimpwidgets/libgimpwidgets.types * tools/widgets.c: added GimpHintBox and GIMP_STOCK_HEAL_TOOL. * libgimpwidgets/images/*.png: updated screenshots. * libgimpwidgets/tmpl/gimphintbox.sgml: new file. * libgimpwidgets/tmpl/gimpstock.sgml: added GIMP_STOCK_HEAL_TOOL.
This commit is contained in:

committed by
Sven Neumann

parent
fd56f0631c
commit
ff555bb19c
@ -430,6 +430,14 @@ create_frame (void)
|
||||
return new_widget_info ("gimp-frame", frame, MEDIUM);
|
||||
}
|
||||
|
||||
static WidgetInfo *
|
||||
create_hint_box (void)
|
||||
{
|
||||
GtkWidget *box = gimp_hint_box_new ("This is a user hint.");
|
||||
|
||||
return new_widget_info ("gimp-hint-box", box, MEDIUM);
|
||||
}
|
||||
|
||||
static WidgetInfo *
|
||||
create_int_combo_box (void)
|
||||
{
|
||||
@ -439,7 +447,7 @@ create_int_combo_box (void)
|
||||
|
||||
vbox = gtk_vbox_new (FALSE, 6);
|
||||
align = gtk_alignment_new (0.5, 0.5, 0.5, 0.0);
|
||||
combo = gimp_int_combo_box_new ("Sobel", 1,
|
||||
combo = gimp_int_combo_box_new ("Sobel", 1,
|
||||
"Prewitt", 2,
|
||||
"Gradient", 3,
|
||||
"Roberts", 4,
|
||||
@ -641,6 +649,7 @@ get_all_widgets (void)
|
||||
retval = g_list_append (retval, create_enum_label ());
|
||||
retval = g_list_append (retval, create_file_entry ());
|
||||
retval = g_list_append (retval, create_frame ());
|
||||
retval = g_list_append (retval, create_hint_box ());
|
||||
retval = g_list_append (retval, create_int_combo_box ());
|
||||
retval = g_list_append (retval, create_memsize_entry ());
|
||||
retval = g_list_append (retval, create_offset_area ());
|
||||
|
Reference in New Issue
Block a user