]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkcomboboxtext.h
filechooserbutton: whitespace fixes
[~andy/gtk] / gtk / gtkcomboboxtext.h
index a7760058eefb90b7e3e22c90872be36e7944050a..c31c9c2231a7b1759dfe45c566f7944c93dac2c5 100644 (file)
  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
+#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 <gtk/gtk.h> can be included directly."
 #endif
 
-#ifndef __GTK_COMBO_BOX_TEXT_H__
-#define __GTK_COMBO_BOX_TEXT_H__
-
 #include <gtk/gtkcombobox.h>
 
 G_BEGIN_DECLS
@@ -40,7 +40,7 @@ typedef struct _GtkComboBoxTextClass        GtkComboBoxTextClass;
 
 struct _GtkComboBoxText
 {
-  /* <private> */
+  /*< private >*/
   GtkComboBox parent_instance;
 
   GtkComboBoxTextPrivate *priv;
@@ -67,10 +67,21 @@ void          gtk_combo_box_text_insert_text     (GtkComboBoxText     *combo_box
                                                   const gchar         *text);
 void          gtk_combo_box_text_prepend_text    (GtkComboBoxText     *combo_box,
                                                   const gchar         *text);
-void          gtk_combo_box_text_remove_text     (GtkComboBoxText     *combo_box,
+void          gtk_combo_box_text_remove          (GtkComboBoxText     *combo_box,
                                                   gint                 position);
+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