Home
last modified time | relevance | path

Searched refs:cf_combobox (Results 1 – 9 of 9) sorted by relevance

/dports/deskutils/osmo/osmo-0.4.4/src/
H A Dtasks.c514 category = gtk_combo_box_get_active (GTK_COMBO_BOX (appGUI->tsk->cf_combobox)); in done_toggled()
556 gtk_combo_box_set_active (GTK_COMBO_BOX (appGUI->tsk->cf_combobox), category); in done_toggled()
607 n = utl_gui_get_combobox_items (GTK_COMBO_BOX (appGUI->tsk->cf_combobox)); in set_categories()
610 gtk_combo_box_text_remove (GTK_COMBO_BOX_TEXT (appGUI->tsk->cf_combobox), i); in set_categories()
631 gtk_combo_box_set_active (GTK_COMBO_BOX (appGUI->tsk->cf_combobox), 0); in set_categories()
1307 appGUI->tsk->cf_combobox = gtk_combo_box_text_new (); in gui_create_tasks()
1308 gtk_widget_show (appGUI->tsk->cf_combobox); in gui_create_tasks()
1309 gtk_combo_box_set_focus_on_click (GTK_COMBO_BOX (appGUI->tsk->cf_combobox), FALSE); in gui_create_tasks()
1310 gtk_widget_set_can_focus (appGUI->tsk->cf_combobox, FALSE); in gui_create_tasks()
1312 gtk_grid_attach (GTK_GRID (grid), appGUI->tsk->cf_combobox, 1, 0, 1, 1); in gui_create_tasks()
[all …]
H A Dgui.c183 …fig.current_category_in_tasks = gtk_combo_box_get_active (GTK_COMBO_BOX(appGUI->tsk->cf_combobox));
187 …fig.current_category_in_notes = gtk_combo_box_get_active (GTK_COMBO_BOX(appGUI->nte->cf_combobox));
684 … gtk_combo_box_set_active(GTK_COMBO_BOX(appGUI->tsk->cf_combobox), appGUI->tsk->filter_index);
691 …ppGUI->tsk->filter_index < utl_gui_get_combobox_items(GTK_COMBO_BOX(appGUI->tsk->cf_combobox))-1) {
693 … gtk_combo_box_set_active(GTK_COMBO_BOX(appGUI->tsk->cf_combobox), appGUI->tsk->filter_index);
849 … gtk_combo_box_set_active(GTK_COMBO_BOX(appGUI->nte->cf_combobox), appGUI->nte->filter_index);
856 …ppGUI->nte->filter_index < utl_gui_get_combobox_items(GTK_COMBO_BOX(appGUI->nte->cf_combobox))-1) {
858 … gtk_combo_box_set_active(GTK_COMBO_BOX(appGUI->nte->cf_combobox), appGUI->nte->filter_index);
1606 utl_gui_create_category_combobox (GTK_COMBO_BOX (appGUI->nte->cf_combobox),
1610 …gtk_combo_box_set_active (GTK_COMBO_BOX(appGUI->nte->cf_combobox), config.current_category_in_note…
[all …]
H A Dnotes_preferences_gui.c291 utl_gui_create_category_combobox (GTK_COMBO_BOX (appGUI->nte->cf_combobox), store, FALSE); in notes_category_add_cb()
292 gtk_combo_box_set_active (GTK_COMBO_BOX (appGUI->nte->cf_combobox), 0); in notes_category_add_cb()
346 utl_gui_create_category_combobox (GTK_COMBO_BOX (appGUI->nte->cf_combobox), store, FALSE); in notes_category_remove_cb()
347 gtk_combo_box_set_active (GTK_COMBO_BOX (appGUI->nte->cf_combobox), 0); in notes_category_remove_cb()
H A Dnotes.c1462 appGUI->nte->cf_combobox = gtk_combo_box_text_new (); in gui_create_notes()
1463 gtk_widget_show (appGUI->nte->cf_combobox); in gui_create_notes()
1464 gtk_combo_box_set_focus_on_click (GTK_COMBO_BOX (appGUI->nte->cf_combobox), FALSE); in gui_create_notes()
1465 gtk_widget_set_can_focus(appGUI->nte->cf_combobox, FALSE); in gui_create_notes()
1466 g_signal_connect(appGUI->nte->cf_combobox, "changed", in gui_create_notes()
1468 g_signal_connect(G_OBJECT(appGUI->nte->cf_combobox), "focus", in gui_create_notes()
1479 gtk_widget_set_hexpand(appGUI->nte->cf_combobox, TRUE); in gui_create_notes()
1480 gtk_grid_attach (GTK_GRID (table), appGUI->nte->cf_combobox, 1, 0, 1, 1); in gui_create_notes()
1487 gtk_grid_attach (GTK_GRID (table), appGUI->nte->cf_combobox, 4, 0, 1, 1); in gui_create_notes()
H A Dgui.h437 GtkWidget *cf_combobox; member
661 GtkWidget *cf_combobox; member
H A Dtasks_preferences_gui.c290 …utl_gui_create_category_combobox (GTK_COMBO_BOX (appGUI->tsk->cf_combobox), appGUI->opt->tasks_cat… in tasks_category_add_cb()
291 gtk_combo_box_set_active (GTK_COMBO_BOX (appGUI->tsk->cf_combobox), 0); in tasks_category_add_cb()
H A Dcheck_events.c212 gtk_combo_box_set_active (GTK_COMBO_BOX (appGUI->tsk->cf_combobox), 0); in tsk_show_task_cb()
H A Dnotes_items.c614 gtk_combo_box_get_active (GTK_COMBO_BOX (appGUI->nte->cf_combobox))); in notes_add_entry()
H A Dtasks_items.c673 category = gtk_combo_box_text_get_active_text(GTK_COMBO_BOX_TEXT(appGUI->tsk->cf_combobox)); in create_basic_tab()