| 1395 | } |
| 1396 | |
| 1397 | void ghb_add_to_queue_list (signal_user_data_t *ud, GhbValue *queueDict) |
| 1398 | { |
| 1399 | GtkListBox *lb; |
| 1400 | GtkWidget *row; |
| 1401 | GhbValue *uiDict; |
| 1402 | const char *dest; |
| 1403 | |
| 1404 | lb = GTK_LIST_BOX(ghb_builder_widget("queue_list")); |
| 1405 | uiDict = ghb_dict_get(queueDict, "uiSettings"); |
| 1406 | |
| 1407 | dest = ghb_dict_get_string(uiDict, "destination"); |
| 1408 | row = ghb_queue_row_new(dest, GHB_QUEUE_STATUS_READY); |
| 1409 | |
| 1410 | gtk_list_box_insert(lb, row, -1); |
| 1411 | } |
| 1412 | |
| 1413 | static void |
| 1414 | open_queue_file_cb (GtkFileChooser *chooser, gint response, |
no test coverage detected