Lines Matching refs:normal
755 GtkWidget *normal;
758 normal = gtk_combo_box_new_with_model_and_entry (act->private_data->model);
759 gtk_combo_box_set_entry_text_column (GTK_COMBO_BOX (normal), act->private_data->labelColumn);
761 GtkWidget *child = gtk_bin_get_child( GTK_BIN(normal) );
783 normal = gtk_combo_box_new_with_model( act->private_data->model );
786 gtk_cell_layout_pack_start( GTK_CELL_LAYOUT(normal), renderer, TRUE );
789 gtk_cell_layout_add_attribute( GTK_CELL_LAYOUT(normal), renderer, "stock-id", act->private_data->iconColumn );
793 gtk_cell_layout_pack_start( GTK_CELL_LAYOUT(normal), renderer, TRUE );
794 gtk_cell_layout_add_attribute( GTK_CELL_LAYOUT(normal), renderer, "text", act->private_data->labelColumn );
797 gtk_combo_box_set_active( GTK_COMBO_BOX(normal), act->private_data->active );
802 g_signal_connect( G_OBJECT(normal), "changed", G_CALLBACK(combo_changed_cb), action );
804 g_object_set_data( G_OBJECT(holder), "ege-combo-box", normal );
805 g_object_set_data( G_OBJECT(act), "ege-combo-box", normal );
818 gtk_box_pack_start( GTK_BOX(holder), normal, FALSE, FALSE, 0 );