Lines Matching refs:combo_box

370     GtkWidget *combo_box = NULL;  in gsb_currency_make_combobox_exchange_dialog()  local
411 combo_box = gtk_combo_box_new_with_model (GTK_TREE_MODEL in gsb_currency_make_combobox_exchange_dialog()
416 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), flag_renderer, FALSE); in gsb_currency_make_combobox_exchange_dialog()
417 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), flag_renderer, in gsb_currency_make_combobox_exchange_dialog()
424 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), text_renderer, FALSE); in gsb_currency_make_combobox_exchange_dialog()
426 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), text_renderer, in gsb_currency_make_combobox_exchange_dialog()
429 gtk_combo_box_set_active (GTK_COMBO_BOX (combo_box), set_index); in gsb_currency_make_combobox_exchange_dialog()
431 return (combo_box); in gsb_currency_make_combobox_exchange_dialog()
494 GtkWidget *combo_box; in gsb_currency_make_combobox() local
501 combo_box = gtk_combo_box_new_with_model (GTK_TREE_MODEL in gsb_currency_make_combobox()
506 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), flag_renderer, FALSE); in gsb_currency_make_combobox()
507 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), flag_renderer, in gsb_currency_make_combobox()
514 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), text_renderer, FALSE); in gsb_currency_make_combobox()
517 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), text_renderer, in gsb_currency_make_combobox()
521 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), text_renderer, in gsb_currency_make_combobox()
525 gtk_combo_box_set_active (GTK_COMBO_BOX (combo_box), in gsb_currency_make_combobox()
528 return (combo_box); in gsb_currency_make_combobox()
540 void gsb_currency_make_combobox_from_ui (GtkWidget *combo_box, in gsb_currency_make_combobox_from_ui() argument
550 gtk_combo_box_set_model (GTK_COMBO_BOX (combo_box), GTK_TREE_MODEL (combobox_currency_store)); in gsb_currency_make_combobox_from_ui()
554 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), flag_renderer, FALSE); in gsb_currency_make_combobox_from_ui()
555 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), in gsb_currency_make_combobox_from_ui()
564 gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), text_renderer, FALSE); in gsb_currency_make_combobox_from_ui()
567 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), in gsb_currency_make_combobox_from_ui()
572 gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), in gsb_currency_make_combobox_from_ui()
577 gtk_combo_box_set_active (GTK_COMBO_BOX (combo_box), 0); in gsb_currency_make_combobox_from_ui()
588 gboolean gsb_currency_set_combobox_history (GtkWidget *combo_box, in gsb_currency_set_combobox_history() argument
610 gtk_combo_box_set_active_iter (GTK_COMBO_BOX (combo_box), in gsb_currency_set_combobox_history()
629 gint gsb_currency_get_currency_from_combobox (GtkWidget *combo_box) in gsb_currency_get_currency_from_combobox() argument
637 if (gtk_combo_box_get_active_iter (GTK_COMBO_BOX (combo_box), in gsb_currency_get_currency_from_combobox()
1265 GtkWidget *combo_box; in gsb_currency_combobox_new() local
1267 combo_box = gsb_currency_make_combobox (FALSE); in gsb_currency_combobox_new()
1270 gsb_currency_set_combobox_history (combo_box, *value); in gsb_currency_combobox_new()
1272 g_signal_connect (G_OBJECT (combo_box), in gsb_currency_combobox_new()
1276 g_object_set_data (G_OBJECT (combo_box), "pointer", value); in gsb_currency_combobox_new()
1279 g_object_set_data (G_OBJECT (combo_box), in gsb_currency_combobox_new()
1281 GUINT_TO_POINTER (g_signal_connect_after (G_OBJECT(combo_box), in gsb_currency_combobox_new()
1285 return combo_box; in gsb_currency_combobox_new()