MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / ghb_file_chooser_set_modal

Function ghb_file_chooser_set_modal

gtk/src/util.c:195–204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

193}
194
195void
196ghb_file_chooser_set_modal (GtkFileChooser *chooser, gboolean modal)
197{
198 g_return_if_fail(GTK_IS_NATIVE_DIALOG(chooser) || GTK_IS_WINDOW(chooser));
199
200 if (GTK_IS_NATIVE_DIALOG(chooser))
201 gtk_native_dialog_set_modal(GTK_NATIVE_DIALOG(chooser), modal);
202 else if (GTK_IS_WINDOW(chooser))
203 gtk_window_set_modal(GTK_WINDOW(chooser), modal);
204}
205
206void
207ghb_file_chooser_show (GtkFileChooser *chooser)

Callers 9

preset_import_action_cbFunction · 0.85
preset_export_action_cbFunction · 0.85
ghb_file_button_clickedFunction · 0.85
do_source_dialogFunction · 0.85
destination_action_cbFunction · 0.85
save_queue_fileFunction · 0.85
open_queue_fileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected