func gtk_combo_box_get_active(widget *C.GtkWidget) int { cb := (*C.GtkComboBox)(unsafe.Pointer(widget)) return int(C.gtk_combo_box_get_active(cb)) }
// GetActive() is a wrapper around gtk_combo_box_get_active(). func (v *ComboBox) GetActive() int { c := C.gtk_combo_box_get_active(v.native()) return int(c) }