| 2658 | } |
| 2659 | |
| 2660 | G_MODULE_EXPORT void |
| 2661 | queue_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 | |
| 2681 | G_MODULE_EXPORT gboolean |
| 2682 | queue_drag_data_received_cb (GtkDropTarget* self, const GValue* value, |
nothing calls this directly
no test coverage detected