X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkcomboboxtext.h;h=c31c9c2231a7b1759dfe45c566f7944c93dac2c5;hb=bbf915118bd3ff3a871a8c8014514352037f6d10;hp=ae08d2d40e1987eff7a583fd16c77c5301c3a6f9;hpb=65dd3460ceb42e4412437b27530d00d04caea1d0;p=~andy%2Fgtk diff --git a/gtk/gtkcomboboxtext.h b/gtk/gtkcomboboxtext.h index ae08d2d40..c31c9c223 100644 --- a/gtk/gtkcomboboxtext.h +++ b/gtk/gtkcomboboxtext.h @@ -16,13 +16,13 @@ * License along with this library. If not, see . */ +#ifndef __GTK_COMBO_BOX_TEXT_H__ +#define __GTK_COMBO_BOX_TEXT_H__ + #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) #error "Only can be included directly." #endif -#ifndef __GTK_COMBO_BOX_TEXT_H__ -#define __GTK_COMBO_BOX_TEXT_H__ - #include G_BEGIN_DECLS @@ -72,6 +72,16 @@ void gtk_combo_box_text_remove (GtkComboBoxText *combo_box void gtk_combo_box_text_remove_all (GtkComboBoxText *combo_box); gchar *gtk_combo_box_text_get_active_text (GtkComboBoxText *combo_box); +void gtk_combo_box_text_insert (GtkComboBoxText *combo_box, + gint position, + const gchar *id, + const gchar *text); +void gtk_combo_box_text_append (GtkComboBoxText *combo_box, + const gchar *id, + const gchar *text); +void gtk_combo_box_text_prepend (GtkComboBoxText *combo_box, + const gchar *id, + const gchar *text); G_END_DECLS