summaryrefslogtreecommitdiff
path: root/gtk/gtkcomboboxtext.h
Commit message (Collapse)AuthorAgeFilesLines
* Move single-include guards inside include guardsMatthias Clasen2012-12-281-3/+3
| | | | | | gcc has optimizations for include guards that only work if they are outermost in the the header. https://bugzilla.gnome.org/show_bug.cgi?id=689810
* Bug 619148 - "active ID" properties (GtkComboBox)Ryan Lortie2010-11-301-0/+10
| | | | | | | Based on a patch by Matthias, add an "active-id" property for GtkComboBox and add some convenience API for GtkComboBoxText. Also, add a test case to gtk-demo.
* Fix gtk-doc markup: /* <private> */ should be /*< private >*/Javier Jardón2010-10-261-1/+1
|
* Revert the id-column patchMatthias Clasen2010-10-231-4/+0
| | | | | It didn't quite turn out as I wanted it. I'll put it in bug 619148 for now.
* Add a way to associate numeric ids with combobox valuesMatthias Clasen2010-10-231-0/+4
| | | | | This will let us use combo boxes as property editors for GSettings enmerations easily.
* comboboxtext: Add gtk_combo_box_text_remove_all()Christian Dywan2010-10-211-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=324899
* GtkComboBoxText: Use gtk_combo_box_text_remove instead ↵Javier Jardón2010-10-161-1/+1
| | | | gtk_combo_box_text_remove_text
* Add gtk_combo_box_text_new_with_entryMatthias Clasen2010-10-151-0/+1
| | | | Also, make use of the configured entry_text_column.
* Added GtkComboBoxText apiChristian Dywan2010-10-151-0/+76
This is a derived class of GtkComboBox to replace the gtk_combo_box_*_text() convenience API. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=612396 Signed-off-by: Javier Jardón <jjardon@gnome.org>