diff options
author | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-12-13 19:34:26 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2011-01-04 23:37:13 +0900 |
commit | 57857f13dfed9cc31da0a12e7ca3d3786a977ce6 (patch) | |
tree | fc86367587fbe87b7b099775b49e720b8640ff90 /gtk/gtkcombobox.h | |
parent | b3ff60db71eaf4f705eac0872e971bf3fe11beb5 (diff) | |
download | gtk+-57857f13dfed9cc31da0a12e7ca3d3786a977ce6.tar.gz |
Added new constructors gtk_combo_box_new_with_area and gtk_combo_box_new_with_area_and_entry.
Diffstat (limited to 'gtk/gtkcombobox.h')
-rw-r--r-- | gtk/gtkcombobox.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkcombobox.h b/gtk/gtkcombobox.h index 1c674b9c06..30a9769403 100644 --- a/gtk/gtkcombobox.h +++ b/gtk/gtkcombobox.h @@ -67,6 +67,8 @@ struct _GtkComboBoxClass /* construction */ GType gtk_combo_box_get_type (void) G_GNUC_CONST; GtkWidget *gtk_combo_box_new (void); +GtkWidget *gtk_combo_box_new_with_area (GtkCellArea *area); +GtkWidget *gtk_combo_box_new_with_area_and_entry (GtkCellArea *area); GtkWidget *gtk_combo_box_new_with_entry (void); GtkWidget *gtk_combo_box_new_with_model (GtkTreeModel *model); GtkWidget *gtk_combo_box_new_with_model_and_entry (GtkTreeModel *model); |