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

Function queue_remove_dialog_show

gtk/src/queuehandler.c:1693–1706  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1691}
1692
1693static void
1694queue_remove_dialog_show (GhbQueueRow *row)
1695{
1696 GtkWidget *dialog;
1697 GtkWindow *queue_window;
1698
1699 queue_window = GTK_WINDOW(ghb_builder_widget("queue_window"));
1700 dialog = ghb_cancel_dialog_new(queue_window, _("Remove Item in Progress?"),
1701 _("Your movie will be lost if you don't continue encoding."),
1702 _("Cancel and Remove"), NULL, NULL, _("Continue Encoding"));
1703
1704 g_signal_connect(dialog, "response", G_CALLBACK(queue_remove_response), row);
1705 gtk_widget_set_visible(dialog, TRUE);
1706}
1707
1708static void
1709queue_remove_row_internal (GhbQueueRow *row)

Callers 1

Calls 2

ghb_builder_widgetFunction · 0.85
ghb_cancel_dialog_newFunction · 0.85

Tested by

no test coverage detected