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

Function queue_move_bottom_action_cb

gtk/src/queuehandler.c:2660–2679  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2658}
2659
2660G_MODULE_EXPORT void
2661queue_move_bottom_action_cb (GSimpleAction *action, GVariant *param,
2662 gpointer data)
2663{
2664 GList * rows, * r;
2665 GtkListBox * lb;
2666 GtkListBoxRow * row;
2667
2668 lb = GTK_LIST_BOX(ghb_builder_widget("queue_list"));
2669 rows = r = gtk_list_box_get_selected_rows(lb);
2670
2671 while (r != NULL)
2672 {
2673 row = (GtkListBoxRow *)r->data;
2674 queue_move_item(lb, row, -1);
2675 r = r->next;
2676 }
2677
2678 g_list_free(rows);
2679}
2680
2681G_MODULE_EXPORT gboolean
2682queue_drag_data_received_cb (GtkDropTarget* self, const GValue* value,

Callers

nothing calls this directly

Calls 2

ghb_builder_widgetFunction · 0.85
queue_move_itemFunction · 0.85

Tested by

no test coverage detected