Classes |
struct | _GOComboBox |
struct | _GOComboBoxClass |
Defines |
#define | GO_TYPE_COMBO_BOX (go_combo_box_get_type()) |
#define | GO_COMBO_BOX(o) G_TYPE_CHECK_INSTANCE_CAST ((o), GO_TYPE_COMBO_BOX, GOComboBox) |
#define | GO_IS_COMBO_BOX(o) G_TYPE_CHECK_INSTANCE_TYPE ((o), GO_TYPE_COMBO_BOX) |
#define | GO_COMBO_BOX_CLASS(k) G_TYPE_CHECK_CLASS_CAST ((k), GO_TYPE_COMBO_BOX, GOComboBoxClass) |
Typedefs |
typedef struct _GOComboBox | GOComboBox |
typedef struct _GOComboBoxPrivate | GOComboBoxPrivate |
typedef struct _GOComboBoxClass | GOComboBoxClass |
Functions |
GType | go_combo_box_get_type (void) |
void | go_combo_box_set_tooltip (GOComboBox *combo, void *tips, char const *text, char const *priv_text) |
void | go_combo_box_set_relief (GOComboBox *combo, GtkReliefStyle relief) |
void | go_combo_box_set_title (GOComboBox *combo, char const *title) |
| go_combo_box_set_title : Combo box : Title
|
char const * | go_combo_box_get_title (GOComboBox *combo) |
void | go_combo_box_set_tearable (GOComboBox *combo, gboolean tearable) |
| go_combo_box_set_tearable: : Combo box : whether to allow the to be tearable
|
void | go_combo_box_construct (GOComboBox *combo, GtkWidget *display_widget, GtkWidget *popdown_container, GtkWidget *popdown_focus) |
void | go_combo_box_get_pos (GOComboBox *combo, int *x, int *y) |
void | go_combo_box_popup_hide (GOComboBox *combo) |
| go_combo_box_popup_hide: : a GOComboBox
|
void | go_combo_box_popup_display (GOComboBox *combo) |
void | go_combo_box_set_display (GOComboBox *combo, GtkWidget *display_widget) |
gboolean | _go_combo_is_updating (GOComboBox const *combo) |
void go_combo_box_set_title |
( |
GOComboBox * |
combo, |
|
|
char const * |
title | |
|
) |
| | |
go_combo_box_set_title : Combo box : Title
Set a title to display over the tearoff window.
FIXME:
This should really change the title even when the popup is already torn off. I guess the tearoff window could attach a listener to title change or something. But I don't think we need the functionality, so I didn't bother to investigate.
MW: Just make it a property.