function name  | 
  note  | 
  exsample  | 
  | gtk_combo_box_append_text | 
  itemの最後に新しいitemを追加 | 
  
      gtk_combo_box_append_text(GTK_COMBO_BOX(combobox1), _("abc")); 
      gtk_combo_box_append_text(GTK_COMBO_BOX(combobox1), "abc");
   | 
  | gtk_combo_box_remove_text | 
  指定したitem number(0,1,2...)を削除 | 
  
      gtk_combo_box_remove_text(GTK_COMBO_BOX(combobox1),0);
   | 
  | gtk_combo_box_get_active | 
  ComboBoxに表示されているTextを取得 | 
  
      gtk_combo_box_get_active((GtkComboBox *)combobox1);
   | 
  | gtk_combo_box_set_active | 
  ComboBoxの表示部に指定したitem number(0,1,2...)を表示 | 
  
      gtk_combo_box_set_active(GTK_COMBO_BOX(combobox1), 0);
   | 
   | 
   | 
  
   |