Home
last modified time | relevance | path

Searched refs:gotoline_entry (Results 1 – 2 of 2) sorted by relevance

/dports/www/bluefish/bluefish-2.2.12/src/
H A Dbfwin.c763 gtk_entry_set_text(GTK_ENTRY(bfwin->gotoline_entry),string); in bfwin_gotoline_from_clipboard()
764 gtk_editable_select_region(GTK_EDITABLE(bfwin->gotoline_entry),0,-1); in bfwin_gotoline_from_clipboard()
775 gtk_widget_grab_focus(bfwin->gotoline_entry); in bfwin_gotoline_frame_show()
897 g_signal_handlers_block_matched(bfwin->gotoline_entry, in bfwin_gotoline_search_bar_close()
900 gtk_editable_delete_text(GTK_EDITABLE(bfwin->gotoline_entry), 0, -1); in bfwin_gotoline_search_bar_close()
902 g_signal_handlers_unblock_matched(bfwin->gotoline_entry, in bfwin_gotoline_search_bar_close()
1030 if (event->keyval == GDK_Return && widget == bfwin->gotoline_entry) { in gotoline_entries_key_press_event()
1055 bfwin->gotoline_entry = gtk_entry_new(); in gotoline_frame_create()
1056 gtk_box_pack_start(GTK_BOX(hbox), bfwin->gotoline_entry, FALSE, FALSE, 0); in gotoline_frame_create()
1057 g_signal_connect(bfwin->gotoline_entry, "changed", G_CALLBACK(gotoline_entry_changed), bfwin); in gotoline_frame_create()
[all …]
H A Dbluefish.h550 GtkWidget *gotoline_entry; member