OSDN Git Service

LinGui: first cut at anamorphic picture settings enhancements
[handbrake-jp/handbrake-jp-git.git] / gtk / src / queuehandler.c
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3  * callbacks.c
4  * Copyright (C) John Stebbins 2008 <stebbins@stebbins>
5  * 
6  * callbacks.c is free software.
7  * 
8  * You may redistribute it and/or modify it under the terms of the
9  * GNU General Public License, as published by the Free Software
10  * Foundation; either version 2 of the License, or (at your option)
11  * any later version.
12  */
13
14 #include <gtk/gtk.h>
15 #include <gdk/gdkkeysyms.h>
16 #include <glib/gstdio.h>
17 #include <gio/gio.h>
18 #include "hb.h"
19 #include "settings.h"
20 #include "hb-backend.h"
21 #include "values.h"
22 #include "callbacks.h"
23 #include "presets.h"
24 #include "ghb-dvd.h"
25
26 void
27 queue_list_selection_changed_cb(GtkTreeSelection *selection, signal_user_data_t *ud)
28 {
29         GtkTreeModel *store;
30         GtkTreeIter iter, piter;
31         
32         g_debug("queue_list_selection_changed_cb ()");
33         // A queue entry is made up of a parent and multiple
34         // children that are visible when expanded.  When and entry
35         // is selected, I want the parent to be selected.
36         // This is purely cosmetic.
37         if (gtk_tree_selection_get_selected(selection, &store, &iter))
38         {
39                 GtkWidget *widget = GHB_WIDGET (ud->builder, "queue_edit");
40                 gtk_widget_set_sensitive (widget, TRUE);
41                 if (gtk_tree_model_iter_parent (store, &piter, &iter))
42                 {
43                         GtkTreePath *path;
44                         GtkTreeView *treeview;
45                         
46                         gtk_tree_selection_select_iter (selection, &piter);
47                         path = gtk_tree_model_get_path (store, &piter);
48                         treeview = gtk_tree_selection_get_tree_view (selection);
49                         // Make the parent visible in scroll window if it is not.
50                         gtk_tree_view_scroll_to_cell (treeview, path, NULL, FALSE, 0, 0);
51                         gtk_tree_path_free(path);
52                 }
53         }
54         else
55         {
56                 GtkWidget *widget = GHB_WIDGET (ud->builder, "queue_edit");
57                 gtk_widget_set_sensitive (widget, FALSE);
58         }
59 }
60
61 static void
62 add_to_queue_list(signal_user_data_t *ud, GValue *settings, GtkTreeIter *piter)
63 {
64         GtkTreeView *treeview;
65         GtkTreeIter iter;
66         GtkTreeStore *store;
67         gchar *info;
68         gint status;
69         GtkTreeIter citer;
70         gchar *dest, *preset, *vol_name, *basename;
71         const gchar *vcodec, *container;
72         gchar *fps, *vcodec_abbr;
73         gint title, start_chapter, end_chapter, width, height;
74         gint source_width, source_height;
75         gboolean pass2, keep_aspect, vqtype, turbo;
76         gint pic_par;
77         gboolean tweaks;
78         gchar *escape;
79         
80         g_debug("update_queue_list ()");
81         if (settings == NULL) return;
82         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "queue_list"));
83         store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
84                 
85         tweaks = ghb_settings_get_boolean(settings, "allow_tweaks");
86         title = ghb_settings_get_int(settings, "titlenum");
87         start_chapter = ghb_settings_get_int(settings, "start_chapter");
88         end_chapter = ghb_settings_get_int(settings, "end_chapter");
89         pass2 = ghb_settings_get_boolean(settings, "VideoTwoPass");
90         vol_name = ghb_settings_get_string(settings, "volume_label");
91         dest = ghb_settings_get_string(settings, "destination");
92         basename = g_path_get_basename(dest);
93         escape = g_markup_escape_text(basename, -1);
94         info = g_strdup_printf 
95         (
96                 "<big><b>%s</b></big> "
97                 "<small>(Title %d, Chapters %d through %d, %d Video %s)"
98                 " --> %s</small>",
99                  vol_name, title, start_chapter, end_chapter, 
100                  pass2 ? 2:1, pass2 ? "Passes":"Pass", escape
101         );
102         g_free(basename);
103         g_free(escape);
104
105         if (piter)
106                 iter = *piter;
107         else
108                 gtk_tree_store_append(store, &iter, NULL);
109
110         gtk_tree_store_set(store, &iter, 1, info, 2, "hb-queue-delete", -1);
111         g_free(info);
112         status = ghb_settings_get_int(settings, "job_status");
113         switch (status)
114         {
115                 case GHB_QUEUE_PENDING:
116                         gtk_tree_store_set(store, &iter, 0, "hb-queue-job", -1);
117                         break;
118                 case GHB_QUEUE_CANCELED:
119                         gtk_tree_store_set(store, &iter, 0, "hb-canceled", -1);
120                         break;
121                 case GHB_QUEUE_RUNNING:
122                         gtk_tree_store_set(store, &iter, 0, "hb-working0", -1);
123                         break;
124                 case GHB_QUEUE_DONE:
125                         gtk_tree_store_set(store, &iter, 0, "hb-complete", -1);
126                         break;
127                 default:
128                         gtk_tree_store_set(store, &iter, 0, "hb-queue-job", -1);
129                         break;
130         }
131
132         GString *str = g_string_new("");
133         gboolean markers;
134         gboolean preset_modified;
135         gint mux;
136         const GValue *path;
137
138         container = ghb_settings_combo_option(settings, "FileFormat");
139         mux = ghb_settings_combo_int(settings, "FileFormat");
140         preset_modified = ghb_settings_get_boolean(settings, "preset_modified");
141         path = ghb_settings_get_value(settings, "preset");
142         preset = ghb_preset_path_string(path);
143         markers = ghb_settings_get_boolean(settings, "ChapterMarkers");
144
145         if (preset_modified)
146                 g_string_append_printf(str, 
147                         "<b>Modified Preset Based On:</b> <small>%s</small>\n", 
148                         preset);
149         else
150                 g_string_append_printf(str, 
151                         "<b>Preset:</b> <small>%s</small>\n", 
152                         preset);
153
154         if (markers)
155         {
156                 g_string_append_printf(str, 
157                         "<b>Format:</b> <small>%s Container, Chapter Markers</small>\n", 
158                         container);
159         }
160         else
161         {
162                 g_string_append_printf(str, 
163                         "<b>Format:</b> <small>%s Container</small>\n", container);
164         }
165         if (mux == HB_MUX_MP4)
166         {
167                 gboolean ipod, http, large;
168
169                 ipod = ghb_settings_get_boolean(settings, "Mp4iPodCompatible");
170                 http = ghb_settings_get_boolean(settings, "Mp4HttpOptimize");
171                 large = ghb_settings_get_boolean(settings, "Mp4LargeFile");
172                 if (http || ipod || large)
173                 {
174                         g_string_append_printf(str, "<b>MP4 Options:</b><small>");
175                         if (ipod)
176                                 g_string_append_printf(str, " - iPod 5G Support");
177                         if (http)
178                                 g_string_append_printf(str, " - Web Optimized");
179                         if (large)
180                                 g_string_append_printf(str, " - Large File Size (>4GB)");
181                         g_string_append_printf(str, "</small>\n");
182                 }
183         }
184         escape = g_markup_escape_text(dest, -1);
185         g_string_append_printf(str, 
186                 "<b>Destination:</b> <small>%s</small>\n", escape);
187
188         width = ghb_settings_get_int(settings, "scale_width");
189         height = ghb_settings_get_int(settings, "scale_height");
190         pic_par = ghb_settings_combo_int(settings, "PicturePAR");
191         keep_aspect = ghb_settings_get_boolean(settings, "PictureKeepRatio");
192
193         gchar *aspect_desc;
194         switch (pic_par)
195         {
196         case 0:
197         {
198                 if (keep_aspect)
199                 {
200                         aspect_desc = "(Aspect Preserved)";
201                 }
202                 else
203                 {
204                         aspect_desc = "(Aspect Lost)";
205                 }
206         } break;
207
208         case 1:
209         {
210                 aspect_desc = "(Strict Anamorphic)";
211         } break;
212
213         case 2:
214         {
215                 aspect_desc = "(Loose Anamorphic)";
216         } break;
217
218         case 3:
219         {
220                 aspect_desc = "(Custom Anamorphic)";
221         } break;
222
223         default:
224         {
225                 aspect_desc = "(Unknown)";
226         } break;
227         }
228         vqtype = ghb_settings_get_boolean(settings, "vquality_type_constant");
229
230         gchar *vq_desc = "Error";
231         gchar *vq_units = "";
232         gchar *vqstr;
233         gdouble vqvalue;
234         if (!vqtype)
235         {
236                 vqtype = ghb_settings_get_boolean(settings, "vquality_type_target");
237                 if (!vqtype)
238                 {
239                         // Has to be bitrate
240                         vqvalue = ghb_settings_get_int(settings, "VideoAvgBitrate");
241                         vq_desc = "Bitrate:";
242                         vq_units = "kbps";
243                 }
244                 else
245                 {
246                         // Target file size
247                         vqvalue = ghb_settings_get_int(settings, "VideoTargetSize");
248                         vq_desc = "Target Size:";
249                         vq_units = "MB";
250                 }
251                 vqstr = g_strdup_printf("%d", (gint)vqvalue);
252         }
253         else
254         {
255                 // Constant quality
256                 vqvalue = ghb_settings_get_double(settings, "VideoQualitySlider");
257                 vq_desc = "Constant Quality:";
258                 vqstr = g_strdup_printf("%d", (gint)vqvalue);
259                 vq_units = "(crf)";
260         }
261         fps = ghb_settings_get_string(settings, "VideoFramerate");
262         if (strcmp("source", fps) == 0)
263         {
264                 g_free(fps);
265                 if (ghb_settings_combo_int(settings, "PictureDetelecine"))
266                         fps = g_strdup("Same As Source (vfr detelecine)");
267                 else
268                         fps = g_strdup("Same As Source (variable)");
269         }
270         else
271         {
272                 gchar *tmp;
273                 tmp = g_strdup_printf("%s (constant frame rate)", fps);
274                 g_free(fps);
275                 fps = tmp;
276         }
277         vcodec = ghb_settings_combo_option(settings, "VideoEncoder");
278         vcodec_abbr = ghb_settings_get_string(settings, "VideoEncoder");
279         source_width = ghb_settings_get_int(settings, "source_width");
280         source_height = ghb_settings_get_int(settings, "source_height");
281         g_string_append_printf(str,
282                 "<b>Picture:</b> Source: <small>%d x %d, Output %d x %d %s</small>\n",
283                  source_width, source_height, width, height, aspect_desc);
284
285         gint decomb, detel;
286         gboolean filters = FALSE;
287
288         decomb = ghb_settings_combo_int(settings, "PictureDecomb");
289         g_string_append_printf(str, "<b>Filters:</b><small>");
290         detel = ghb_settings_combo_int(settings, "PictureDetelecine");
291         if (detel)
292         {
293                 g_string_append_printf(str, " - Detelecine");
294                 if (detel == 1)
295                 {
296                         gchar *cust;
297                         cust = ghb_settings_get_string(settings, "PictureDetelecineCustom");
298                         g_string_append_printf(str, ": %s", cust);
299                         g_free(cust);
300                 }
301                 filters = TRUE;
302         }
303         if (decomb)
304         {
305                 g_string_append_printf(str, " - Decomb");
306                 if (decomb == 1)
307                 {
308                         gchar *cust;
309                         cust = ghb_settings_get_string(settings, "PictureDecombCustom");
310                         g_string_append_printf(str, ": %s", cust);
311                         g_free(cust);
312                 }
313                 filters = TRUE;
314         }
315         else
316         {
317                 gint deint = ghb_settings_combo_int(settings, "PictureDeinterlace");
318                 if (deint)
319                 {
320                         if (deint == 1)
321                         {
322                                 gchar *cust = ghb_settings_get_string(settings,
323                                                                                                 "PictureDeinterlaceCustom");
324                                 g_string_append_printf(str, " - Deinterlace: %s", cust);
325                                 g_free(cust);
326                         }
327                         else
328                         {
329                                 const gchar *opt = ghb_settings_combo_option(settings,
330                                                                                                         "PictureDeinterlace");
331                                 g_string_append_printf(str, " - Deinterlace: %s", opt);
332                         }
333                         filters = TRUE;
334                 }
335         }
336         gint denoise = ghb_settings_combo_int(settings, "PictureDenoise");
337         if (denoise)
338         {
339                 if (denoise == 1)
340                 {
341                         gchar *cust = ghb_settings_get_string(settings,
342                                                                                                         "PictureDenoiseCustom");
343                         g_string_append_printf(str, " - Denoise: %s", cust);
344                         g_free(cust);
345                 }
346                 else
347                 {
348                         const gchar *opt = ghb_settings_combo_option(settings,
349                                                                                                         "PictureDenoise");
350                         g_string_append_printf(str, " - Denoise: %s", opt);
351                 }
352                 filters = TRUE;
353         }
354         gint deblock = ghb_settings_get_int(settings, "PictureDeblock");
355         if (deblock >= 5)
356         {
357                 g_string_append_printf(str, " - Deblock (%d)", deblock);
358                 filters = TRUE;
359         }
360         if (ghb_settings_get_boolean(settings, "VideoGrayScale"))
361         {
362                 g_string_append_printf(str, " - Grayscale");
363                 filters = TRUE;
364         }
365         if (!filters)
366                 g_string_append_printf(str, " None");
367         g_string_append_printf(str, "</small>\n");
368
369         g_string_append_printf(str,
370                 "<b>Video:</b> <small>%s, Framerate: %s, %s %s%s</small>\n",
371                  vcodec, fps, vq_desc, vqstr, vq_units);
372
373         turbo = ghb_settings_get_boolean(settings, "VideoTurboTwoPass");
374         if (turbo)
375         {
376                 g_string_append_printf(str, "<b>Turbo:</b> <small>On</small>\n");
377         }
378         if (strcmp(vcodec_abbr, "x264") == 0)
379         {
380                 gchar *x264opts = ghb_build_x264opts_string(settings);
381                 g_string_append_printf(str, 
382                         "<b>x264 Options:</b> <small>%s</small>\n", x264opts);
383                 g_free(x264opts);
384         }
385         // Add the audios
386         gint count, ii;
387         const GValue *audio_list;
388
389         audio_list = ghb_settings_get_value(settings, "audio_list");
390         count = ghb_array_len(audio_list);
391         for (ii = 0; ii < count; ii++)
392         {
393                 gchar *bitrate, *samplerate, *track;
394                 const gchar *acodec, *mix;
395                 GValue *asettings;
396
397                 asettings = ghb_array_get_nth(audio_list, ii);
398
399                 acodec = ghb_settings_combo_option(asettings, "AudioEncoder");
400                 bitrate = ghb_settings_get_string(asettings, "AudioBitrate");
401                 samplerate = ghb_settings_get_string(asettings, "AudioSamplerate");
402                 if (strcmp("source", samplerate) == 0)
403                 {
404                         g_free(samplerate);
405                         samplerate = g_strdup("Same As Source");
406                 }
407                 track = ghb_settings_get_string(asettings, "AudioTrackDescription");
408                 mix = ghb_settings_combo_option(asettings, "AudioMixdown");
409                 g_string_append_printf(str,
410                         "<b>Audio:</b><small> %s, Encoder: %s, Mixdown: %s, SampleRate: %s, Bitrate: %s</small>",
411                          track, acodec, mix, samplerate, bitrate);
412                 if (ii < count-1)
413                         g_string_append_printf(str, "\n");
414                 g_free(track);
415                 g_free(bitrate);
416                 g_free(samplerate);
417         }
418         info = g_string_free(str, FALSE);
419         gtk_tree_store_append(store, &citer, &iter);
420         gtk_tree_store_set(store, &citer, 1, info, -1);
421         g_free(info);
422         g_free(fps);
423         g_free(vcodec_abbr);
424         g_free(vol_name);
425         g_free(dest);
426         g_free(preset);
427 }
428
429 void
430 audio_list_refresh(signal_user_data_t *ud)
431 {
432         GtkTreeView *treeview;
433         GtkTreeIter iter;
434         GtkListStore *store;
435         gboolean done;
436         gint row = 0;
437         const GValue *audio_list;
438
439         g_debug("ghb_audio_list_refresh ()");
440         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "audio_list"));
441         store = GTK_LIST_STORE(gtk_tree_view_get_model(treeview));
442         if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter))
443         {
444                 do
445                 {
446                         const gchar *track, *codec, *br, *sr, *mix;
447                         gchar *drc, *s_track, *s_codec, *s_br, *s_sr, *s_mix;
448                         gdouble s_drc;
449                         GValue *asettings;
450
451                         audio_list = ghb_settings_get_value(ud->settings, "audio_list");
452                         if (row >= ghb_array_len(audio_list))
453                                 return;
454                         asettings = ghb_array_get_nth(audio_list, row);
455
456                         track = ghb_settings_combo_option(asettings, "AudioTrack");
457                         codec = ghb_settings_combo_option(asettings, "AudioEncoder");
458                         br = ghb_settings_combo_option(asettings, "AudioBitrate");
459                         sr = ghb_settings_combo_option(asettings, "AudioSamplerate");
460                         mix = ghb_settings_combo_option(asettings, "AudioMixdown");
461
462                         s_track = ghb_settings_get_string(asettings, "AudioTrack");
463                         s_codec = ghb_settings_get_string(asettings, "AudioEncoder");
464                         s_br = ghb_settings_get_string(asettings, "AudioBitrate");
465                         s_sr = ghb_settings_get_string(asettings, "AudioSamplerate");
466                         s_mix = ghb_settings_get_string(asettings, "AudioMixdown");
467                         s_drc = ghb_settings_get_double(asettings, "AudioTrackDRCSlider");
468                         if (s_drc < 0.1)
469                                 drc = g_strdup("Off");
470                         else
471                                 drc = g_strdup_printf("%.1f", s_drc);
472
473                         gtk_list_store_set(GTK_LIST_STORE(store), &iter, 
474                                 // These are displayed in list
475                                 0, track,
476                                 1, codec,
477                                 2, br,
478                                 3, sr,
479                                 4, mix,
480                                 5, drc,
481                                 // These are used to set combo values when an item is selected
482                                 6, s_track,
483                                 7, s_codec,
484                                 8, s_br,
485                                 9, s_sr,
486                                 10, s_mix,
487                                 11, s_drc,
488                                 -1);
489                         g_free(drc);
490                         g_free(s_track);
491                         g_free(s_codec);
492                         g_free(s_br);
493                         g_free(s_sr);
494                         g_free(s_mix);
495                         done = !gtk_tree_model_iter_next(GTK_TREE_MODEL(store), &iter);
496                         row++;
497                 } while (!done);
498         }
499 }
500
501 static gboolean
502 validate_settings(signal_user_data_t *ud)
503 {
504         // Check to see if the dest file exists or is
505         // already in the queue
506         gchar *message, *dest;
507         gint count, ii;
508         gint titleindex;
509
510         titleindex = ghb_settings_combo_int(ud->settings, "title");
511         if (titleindex < 0) return FALSE;
512         dest = ghb_settings_get_string(ud->settings, "destination");
513         count = ghb_array_len(ud->queue);
514         for (ii = 0; ii < count; ii++)
515         {
516                 GValue *js;
517                 gchar *filename;
518
519                 js = ghb_array_get_nth(ud->queue, ii);
520                 filename = ghb_settings_get_string(js, "destination");
521                 if (strcmp(dest, filename) == 0)
522                 {
523                         message = g_strdup_printf(
524                                                 "Destination: %s\n\n"
525                                                 "Another queued job has specified the same destination.\n"
526                                                 "Do you want to overwrite?",
527                                                 dest);
528                         if (!ghb_message_dialog(GTK_MESSAGE_QUESTION, message, "Cancel", "Overwrite"))
529                         {
530                                 g_free(filename);
531                                 g_free(dest);
532                                 g_free(message);
533                                 return FALSE;
534                         }
535                         g_free(message);
536                         break;
537                 }
538                 g_free(filename);
539         }
540         gchar *destdir = g_path_get_dirname(dest);
541         if (!g_file_test(destdir, G_FILE_TEST_IS_DIR))
542         {
543                 message = g_strdup_printf(
544                                         "Destination: %s\n\n"
545                                         "This is not a valid directory.",
546                                         destdir);
547                 ghb_message_dialog(GTK_MESSAGE_ERROR, message, "Cancel", NULL);
548                 g_free(dest);
549                 g_free(message);
550                 g_free(destdir);
551                 return FALSE;
552         }
553         if (g_access(destdir, R_OK|W_OK) != 0)
554         {
555                 message = g_strdup_printf(
556                                         "Destination: %s\n\n"
557                                         "Can not read or write the directory.",
558                                         destdir);
559                 ghb_message_dialog(GTK_MESSAGE_ERROR, message, "Cancel", NULL);
560                 g_free(dest);
561                 g_free(message);
562                 g_free(destdir);
563                 return FALSE;
564         }
565         GFile *gfile;
566         GFileInfo *info;
567         guint64 size;
568         gchar *resolved = ghb_resolve_symlink(destdir);
569
570         gfile = g_file_new_for_path(resolved);
571         info = g_file_query_filesystem_info(gfile, 
572                                                 G_FILE_ATTRIBUTE_FILESYSTEM_FREE, NULL, NULL);
573         if (info != NULL)
574         {
575                 if (g_file_info_has_attribute(info, G_FILE_ATTRIBUTE_FILESYSTEM_FREE))
576                 {
577                         size = g_file_info_get_attribute_uint64(info, 
578                                                                         G_FILE_ATTRIBUTE_FILESYSTEM_FREE);
579                         
580                         gint64 fsize = (guint64)10 * 1024 * 1024 * 1024;
581                         if (size < fsize)
582                         {
583                                 message = g_strdup_printf(
584                                                         "Destination filesystem is almost full: %uM free\n\n"
585                                                         "Encode may be incomplete if you proceed.\n",
586                                                         (guint)(size / (1024L*1024L)));
587                                 if (!ghb_message_dialog(GTK_MESSAGE_QUESTION, message, "Cancel", "Proceed"))
588                                 {
589                                         g_free(dest);
590                                         g_free(message);
591                                         return FALSE;
592                                 }
593                                 g_free(message);
594                         }
595                 }
596                 g_object_unref(info);
597         }
598         g_object_unref(gfile);
599         g_free(resolved);
600         g_free(destdir);
601         if (g_file_test(dest, G_FILE_TEST_EXISTS))
602         {
603                 message = g_strdup_printf(
604                                         "Destination: %s\n\n"
605                                         "File already exists.\n"
606                                         "Do you want to overwrite?",
607                                         dest);
608                 if (!ghb_message_dialog(GTK_MESSAGE_QUESTION, message, "Cancel", "Overwrite"))
609                 {
610                         g_free(dest);
611                         g_free(message);
612                         return FALSE;
613                 }
614                 g_free(message);
615                 g_unlink(dest);
616         }
617         g_free(dest);
618         // Validate video quality is in a reasonable range
619         if (!ghb_validate_vquality(ud->settings))
620         {
621                 return FALSE;
622         }
623         // Validate audio settings
624         if (!ghb_validate_audio(ud))
625         {
626                 return FALSE;
627         }
628         // Validate video settings
629         if (!ghb_validate_video(ud))
630         {
631                 return FALSE;
632         }
633         // Validate filter settings
634         if (!ghb_validate_filters(ud))
635         {
636                 return FALSE;
637         }
638         audio_list_refresh(ud);
639         return TRUE;
640 }
641
642 static gboolean
643 queue_add(signal_user_data_t *ud)
644 {
645         // Add settings to the queue
646         GValue *settings;
647         gint titleindex;
648         gint titlenum;
649         
650         g_debug("queue_add ()");
651         if (!validate_settings(ud))
652         {
653                 return FALSE;
654         }
655
656         GtkStatusIcon *si;
657
658         si = GTK_STATUS_ICON(GHB_OBJECT(ud->builder, "hb_status"));
659         gtk_status_icon_set_from_icon_name(si, "hb-status");
660
661         if (ud->queue == NULL)
662                 ud->queue = ghb_array_value_new(32);
663         // Make a copy of current settings to be used for the new job
664         settings = ghb_value_dup(ud->settings);
665         ghb_settings_set_int(settings, "job_status", GHB_QUEUE_PENDING);
666         ghb_settings_set_int(settings, "job_unique_id", 0);
667         titleindex = ghb_settings_combo_int(settings, "title");
668         titlenum = ghb_get_title_number(titleindex);
669         ghb_settings_set_int(settings, "titlenum", titlenum);
670         ghb_array_append(ud->queue, settings);
671         add_to_queue_list(ud, settings, NULL);
672         ghb_save_queue(ud->queue);
673
674         return TRUE;
675 }
676
677 void
678 queue_add_clicked_cb(GtkWidget *widget, signal_user_data_t *ud)
679 {
680         g_debug("queue_add_clicked_cb ()");
681         queue_add(ud);
682 }
683
684 void
685 queue_remove_clicked_cb(GtkWidget *widget, gchar *path, signal_user_data_t *ud)
686 {
687         GtkTreeView *treeview;
688         GtkTreePath *treepath;
689         GtkTreeModel *store;
690         GtkTreeIter iter;
691         gint row;
692         gint *indices;
693         gint unique_id;
694         GValue *settings;
695         gint status;
696
697         g_debug("queue_remove_clicked_cb ()");
698         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "queue_list"));
699         store = gtk_tree_view_get_model(treeview);
700         treepath = gtk_tree_path_new_from_string (path);
701         if (gtk_tree_path_get_depth(treepath) > 1) return;
702         if (gtk_tree_model_get_iter(store, &iter, treepath))
703         {
704                 // Find the entry in the queue
705                 indices = gtk_tree_path_get_indices (treepath);
706                 row = indices[0];
707                 // Can only free the treepath After getting what I need from
708                 // indices since this points into treepath somewhere.
709                 gtk_tree_path_free (treepath);
710                 if (row < 0) return;
711                 if (row >= ghb_array_len(ud->queue))
712                         return;
713                 settings = ghb_array_get_nth(ud->queue, row);
714                 status = ghb_settings_get_int(settings, "job_status");
715                 if (status == GHB_QUEUE_RUNNING)
716                 {
717                         // Ask if wants to stop encode.
718                         if (!ghb_cancel_encode(NULL))
719                         {
720                                 return;
721                         }
722                         unique_id = ghb_settings_get_int(settings, "job_unique_id");
723                         ghb_remove_job(unique_id);
724                 }
725                 // Remove the selected item
726                 gtk_tree_store_remove(GTK_TREE_STORE(store), &iter);
727                 // Remove the corresponding item from the queue list
728                 GValue *old = ghb_array_get_nth(ud->queue, row);
729                 ghb_value_free(old);
730                 ghb_array_remove(ud->queue, row);
731                 ghb_save_queue(ud->queue);
732         }
733         else
734         {       
735                 gtk_tree_path_free (treepath);
736         }
737 }
738
739 static gint
740 find_last_finished(GValue *queue)
741 {
742         GValue *js;
743         gint ii, count;
744         gint status;
745         
746         g_debug("find_last_finished");
747         count = ghb_array_len(queue);
748         for (ii = 0; ii < count; ii++)
749         {
750                 js = ghb_array_get_nth(queue, ii);
751                 status = ghb_settings_get_int(js, "job_status");
752                 if (status != GHB_QUEUE_DONE && status != GHB_QUEUE_RUNNING)
753                 {
754                         return ii-1;
755                 }
756         }
757         return -1;
758 }
759
760 // This little bit is needed to prevent the default drag motion
761 // handler from expanding rows if you hover over them while
762 // dragging.
763 // Also controls where valid drop locations are
764 gboolean
765 queue_drag_motion_cb(
766         GtkTreeView *tv,
767         GdkDragContext *ctx,
768         gint x,
769         gint y,
770         guint time,
771         signal_user_data_t *ud)
772 {
773         GtkTreePath *path = NULL;
774         GtkTreeViewDropPosition pos;
775         gint *indices, row, status, finished;
776         GValue *js;
777         GtkTreeIter iter;
778         GtkTreeView *srctv;
779         GtkTreeModel *model;
780         GtkTreeSelection *select;
781
782         // This bit checks to see if the source is allowed to be
783         // moved.  Only pending and canceled items may be moved.
784         srctv = GTK_TREE_VIEW(gtk_drag_get_source_widget(ctx));
785         select = gtk_tree_view_get_selection (srctv);
786         gtk_tree_selection_get_selected (select, &model, &iter);
787         path = gtk_tree_model_get_path (model, &iter);
788         indices = gtk_tree_path_get_indices(path);
789         row = indices[0];
790         gtk_tree_path_free(path);
791         js = ghb_array_get_nth(ud->queue, row);
792         status = ghb_settings_get_int(js, "job_status");
793         if (status != GHB_QUEUE_PENDING && status != GHB_QUEUE_CANCELED)
794         {
795                 gdk_drag_status(ctx, 0, time);
796                 return TRUE;
797         }
798
799         // The reset checks that the destination is a valid position
800         // in the list.  Can not move above any finished or running items
801         gtk_tree_view_get_dest_row_at_pos (tv, x, y, &path, &pos);
802         if (path == NULL)
803         {
804                 gdk_drag_status(ctx, GDK_ACTION_MOVE, time);
805                 return TRUE;
806         }
807         // Don't allow *drop into*
808         if (pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE)
809                 pos = GTK_TREE_VIEW_DROP_BEFORE;
810         if (pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER)
811                 pos = GTK_TREE_VIEW_DROP_AFTER;
812         // Don't allow droping int child items
813         if (gtk_tree_path_get_depth(path) > 1)
814         {
815                 gtk_tree_path_up(path);
816                 pos = GTK_TREE_VIEW_DROP_AFTER;
817         }
818         indices = gtk_tree_path_get_indices(path);
819         row = indices[0];
820         js = ghb_array_get_nth(ud->queue, row);
821
822         finished = find_last_finished(ud->queue);
823         if (row < finished)
824         {
825                 gtk_tree_path_free(path);
826                 gdk_drag_status(ctx, 0, time);
827                 return TRUE;
828         }
829         if (pos != GTK_TREE_VIEW_DROP_AFTER && 
830                 row == finished)
831         {
832                 gtk_tree_path_free(path);
833                 gdk_drag_status(ctx, 0, time);
834                 return TRUE;
835         }
836         gtk_tree_view_set_drag_dest_row(tv, path, pos);
837         gtk_tree_path_free(path);
838         gdk_drag_status(ctx, GDK_ACTION_MOVE, time);
839         return TRUE;
840 }
841
842 void 
843 queue_drag_cb(
844         GtkTreeView *dstwidget, 
845         GdkDragContext *dc, 
846         gint x, gint y, 
847         GtkSelectionData *selection_data, 
848         guint info, guint t, 
849         signal_user_data_t *ud)
850 {
851         GtkTreePath *path = NULL;
852         //GtkTreeModel *model;
853         GtkTreeViewDropPosition pos;
854         GtkTreeIter dstiter, srciter;
855         gint *indices, row;
856         GValue *js;
857         
858         GtkTreeModel *dstmodel = gtk_tree_view_get_model(dstwidget);
859                         
860         g_debug("queue_drag_cb ()");
861         // This doesn't work here for some reason...
862         // gtk_tree_view_get_drag_dest_row(dstwidget, &path, &pos);
863         gtk_tree_view_get_dest_row_at_pos (dstwidget, x, y, &path, &pos);
864         // This little hack is needed because attempting to drop after
865         // the last item gives us no path or pos.
866         if (path == NULL)
867         {
868                 gint n_children;
869
870                 n_children = gtk_tree_model_iter_n_children(dstmodel, NULL);
871                 if (n_children)
872                 {
873                         pos = GTK_TREE_VIEW_DROP_AFTER;
874                         path = gtk_tree_path_new_from_indices(n_children-1, -1);
875                 }
876                 else
877                 {
878                         pos = GTK_TREE_VIEW_DROP_BEFORE;
879                         path = gtk_tree_path_new_from_indices(0, -1);
880                 }
881         }
882         if (path)
883         {
884                 if (gtk_tree_path_get_depth(path) > 1)
885                         gtk_tree_path_up(path);
886                 if (gtk_tree_model_get_iter (dstmodel, &dstiter, path))
887                 {
888                         GtkTreeIter iter;
889                         GtkTreeView *srcwidget;
890                         GtkTreeModel *srcmodel;
891                         GtkTreeSelection *select;
892                         GtkTreePath *srcpath = NULL;
893                         GtkTreePath *dstpath = NULL;
894
895                         srcwidget = GTK_TREE_VIEW(gtk_drag_get_source_widget(dc));
896                         //srcmodel = gtk_tree_view_get_model(srcwidget);
897                         select = gtk_tree_view_get_selection (srcwidget);
898                         gtk_tree_selection_get_selected (select, &srcmodel, &srciter);
899
900                         srcpath = gtk_tree_model_get_path (srcmodel, &srciter);
901                         indices = gtk_tree_path_get_indices(srcpath);
902                         row = indices[0];
903                         gtk_tree_path_free(srcpath);
904                         js = ghb_array_get_nth(ud->queue, row);
905
906                         switch (pos)
907                         {
908                                 case GTK_TREE_VIEW_DROP_BEFORE:
909                                 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
910                                         gtk_tree_store_insert_before (GTK_TREE_STORE (dstmodel), 
911                                                                                                         &iter, NULL, &dstiter);
912                                         break;
913
914                                 case GTK_TREE_VIEW_DROP_AFTER:
915                                 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER:
916                                         gtk_tree_store_insert_after (GTK_TREE_STORE (dstmodel), 
917                                                                                                         &iter, NULL, &dstiter);
918                                         break;
919
920                                 default:
921                                         break;
922                         }
923                         // Reset job to pending
924                         ghb_settings_set_int(js, "job_status", GHB_QUEUE_PENDING);
925                         add_to_queue_list(ud, js, &iter);
926
927                         dstpath = gtk_tree_model_get_path (dstmodel, &iter);
928                         indices = gtk_tree_path_get_indices(dstpath);
929                         row = indices[0];
930                         gtk_tree_path_free(dstpath);
931                         ghb_array_insert(ud->queue, row, js);
932
933                         srcpath = gtk_tree_model_get_path (srcmodel, &srciter);
934                         indices = gtk_tree_path_get_indices(srcpath);
935                         row = indices[0];
936                         gtk_tree_path_free(srcpath);
937                         ghb_array_remove(ud->queue, row);
938                         gtk_tree_store_remove (GTK_TREE_STORE (srcmodel), &srciter);
939                         ghb_save_queue(ud->queue);
940                 }
941                 gtk_tree_path_free(path);
942         }
943 }
944
945 void
946 ghb_queue_buttons_grey(signal_user_data_t *ud, gboolean working)
947 {
948         GtkWidget *widget;
949         GtkAction *action;
950         gint queue_count;
951         gint titleindex;
952         gboolean title_ok;
953
954         queue_count = ghb_array_len(ud->queue);
955         titleindex = ghb_settings_combo_int(ud->settings, "title");
956         title_ok = (titleindex >= 0);
957
958         widget = GHB_WIDGET (ud->builder, "queue_start1");
959         gtk_widget_set_sensitive (widget, !working && (title_ok || queue_count));
960         widget = GHB_WIDGET (ud->builder, "queue_start2");
961         gtk_widget_set_sensitive (widget, !working && (title_ok || queue_count));
962         action = GHB_ACTION (ud->builder, "queue_start_menu");
963         gtk_action_set_sensitive (action, !working && (title_ok || queue_count));
964         widget = GHB_WIDGET (ud->builder, "queue_pause1");
965         gtk_widget_set_sensitive (widget, working);
966         widget = GHB_WIDGET (ud->builder, "queue_pause2");
967         gtk_widget_set_sensitive (widget, working);
968         action = GHB_ACTION (ud->builder, "queue_pause_menu");
969         gtk_action_set_sensitive (action, working);
970         widget = GHB_WIDGET (ud->builder, "queue_stop");
971         gtk_widget_set_sensitive (widget, working);
972         action = GHB_ACTION (ud->builder, "queue_stop_menu");
973         gtk_action_set_sensitive (action, working);
974 }
975
976 void
977 queue_list_size_allocate_cb(GtkWidget *widget, GtkAllocation *allocation, GtkCellRenderer *cell)
978 {
979         GtkTreeViewColumn *column;
980         gint width;
981         
982         column = gtk_tree_view_get_column (GTK_TREE_VIEW(widget), 0);
983         width = gtk_tree_view_column_get_width(column);
984         g_debug("col width %d alloc width %d", width, allocation->width);
985         // Set new wrap-width.  Shave a little off to accomidate the icons
986         // that share this column.
987         if (width >= 564) // Don't allow below a certain size
988                 g_object_set(cell, "wrap-width", width-70, NULL);
989 }
990
991 void
992 queue_start_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
993 {
994         GValue *js;
995         gboolean running = FALSE;
996         gint count, ii;
997         gint status;
998         gint state;
999
1000         count = ghb_array_len(ud->queue);
1001         for (ii = 0; ii < count; ii++)
1002         {
1003                 js = ghb_array_get_nth(ud->queue, ii);
1004                 status = ghb_settings_get_int(js, "job_status");
1005                 if ((status == GHB_QUEUE_RUNNING) || 
1006                         (status == GHB_QUEUE_PENDING))
1007                 {
1008                         running = TRUE;
1009                         break;
1010                 }
1011         }
1012         if (!running)
1013         {
1014                 // The queue has no running or pending jobs.
1015                 // Add current settings to the queue, then run.
1016                 if (!queue_add(ud))
1017                         return;
1018         }
1019         state = ghb_get_queue_state();
1020         if (state == GHB_STATE_IDLE)
1021         {
1022                 // Add the first pending queue item and start
1023                 ud->current_job = ghb_start_next_job(ud, TRUE);
1024         }
1025 }
1026
1027 void
1028 queue_stop_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
1029 {
1030         ud->cancel_encode = TRUE;
1031         ghb_cancel_encode(NULL);
1032 }
1033
1034 void
1035 queue_pause_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
1036 {
1037         ghb_pause_queue();
1038 }
1039
1040 gboolean
1041 ghb_reload_queue(signal_user_data_t *ud)
1042 {
1043         GValue *queue;
1044         gint unfinished = 0;
1045         gint count, ii;
1046         gint status;
1047         GValue *settings;
1048         gchar *message;
1049
1050         g_debug("ghb_reload_queue");
1051
1052         queue = ghb_load_queue();
1053         // Look for unfinished entries
1054         count = ghb_array_len(queue);
1055         for (ii = 0; ii < count; ii++)
1056         {
1057                 settings = ghb_array_get_nth(queue, ii);
1058                 status = ghb_settings_get_int(settings, "job_status");
1059                 if (status != GHB_QUEUE_DONE && status != GHB_QUEUE_CANCELED)
1060                 {
1061                         unfinished++;
1062                 }
1063         }
1064         if (unfinished)
1065         {
1066                 message = g_strdup_printf(
1067                                         "You have %d unfinished job%s in a saved queue.\n\n"
1068                                         "Would you like to reload %s?",
1069                                         unfinished, 
1070                                         (unfinished > 1) ? "s" : "",
1071                                         (unfinished > 1) ? "them" : "it");
1072                 if (ghb_message_dialog(GTK_MESSAGE_QUESTION, message, "No", "Yes"))
1073                 {
1074                         GtkWidget *widget = GHB_WIDGET (ud->builder, "queue_window");
1075                         gtk_widget_show (widget);
1076
1077                         ud->queue = queue;
1078                         // First get rid of any old items we don't want
1079                         for (ii = count-1; ii >= 0; ii--)
1080                         {
1081                                 settings = ghb_array_get_nth(queue, ii);
1082                                 status = ghb_settings_get_int(settings, "job_status");
1083                                 if (status == GHB_QUEUE_DONE || status == GHB_QUEUE_CANCELED)
1084                                 {
1085                                         GValue *old = ghb_array_get_nth(queue, ii);
1086                                         ghb_value_free(old);
1087                                         ghb_array_remove(queue, ii);
1088                                 }
1089                         }
1090                         count = ghb_array_len(queue);
1091                         for (ii = 0; ii < count; ii++)
1092                         {
1093                                 settings = ghb_array_get_nth(queue, ii);
1094                                 ghb_settings_set_int(settings, "job_unique_id", 0);
1095                                 ghb_settings_set_int(settings, "job_status", GHB_QUEUE_PENDING);
1096                                 add_to_queue_list(ud, settings, NULL);
1097                         }
1098                         ghb_queue_buttons_grey(ud, FALSE);
1099                 }
1100                 else
1101                 {
1102                         ghb_value_free(queue);
1103                         ghb_remove_queue_file();
1104                 }
1105                 g_free(message);
1106         }
1107         return FALSE;
1108 }
1109
1110 gboolean 
1111 queue_key_press_cb(
1112         GtkWidget *widget, 
1113         GdkEventKey *event,
1114         signal_user_data_t *ud)
1115 {
1116         GtkTreeView *treeview;
1117         GtkTreeSelection *selection;
1118         GtkTreeModel *store;
1119         GtkTreeIter iter;
1120         gint row;
1121         gint *indices;
1122         gint unique_id;
1123         GValue *settings;
1124         gint status;
1125
1126         g_debug("queue_key_press_cb ()");
1127         if (event->keyval != GDK_Delete)
1128                 return FALSE;
1129         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "queue_list"));
1130         store = gtk_tree_view_get_model(treeview);
1131
1132         selection = gtk_tree_view_get_selection (treeview);
1133         if (gtk_tree_selection_get_selected(selection, &store, &iter))
1134         {
1135                 GtkTreePath *treepath;
1136
1137                 treepath = gtk_tree_model_get_path (store, &iter);
1138                 // Find the entry in the queue
1139                 indices = gtk_tree_path_get_indices (treepath);
1140                 row = indices[0];
1141                 // Can only free the treepath After getting what I need from
1142                 // indices since this points into treepath somewhere.
1143                 gtk_tree_path_free (treepath);
1144                 if (row < 0) return FALSE;
1145                 if (row >= ghb_array_len(ud->queue))
1146                         return FALSE;
1147                 settings = ghb_array_get_nth(ud->queue, row);
1148                 status = ghb_settings_get_int(settings, "job_status");
1149                 if (status == GHB_QUEUE_RUNNING)
1150                 {
1151                         // Ask if wants to stop encode.
1152                         if (!ghb_cancel_encode(NULL))
1153                         {
1154                                 return TRUE;
1155                         }
1156                         unique_id = ghb_settings_get_int(settings, "job_unique_id");
1157                         ghb_remove_job(unique_id);
1158                 }
1159                 // Remove the selected item
1160                 gtk_tree_store_remove(GTK_TREE_STORE(store), &iter);
1161                 // Remove the corresponding item from the queue list
1162                 GValue *old = ghb_array_get_nth(ud->queue, row);
1163                 ghb_value_free(old);
1164                 ghb_array_remove(ud->queue, row);
1165                 ghb_save_queue(ud->queue);
1166                 return TRUE;
1167         }
1168         return FALSE;
1169 }
1170
1171 GValue *ghb_queue_edit_settings = NULL;
1172
1173 void
1174 queue_edit_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
1175 {
1176         GtkTreeView *treeview;
1177         GtkTreeSelection *selection;
1178         GtkTreeModel *store;
1179         GtkTreeIter iter;
1180         gint row;
1181         gint *indices;
1182         gint status;
1183
1184         g_debug("queue_key_press_cb ()");
1185         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "queue_list"));
1186         store = gtk_tree_view_get_model(treeview);
1187
1188         selection = gtk_tree_view_get_selection (treeview);
1189         if (gtk_tree_selection_get_selected(selection, &store, &iter))
1190         {
1191                 GtkTreePath *treepath;
1192
1193                 treepath = gtk_tree_model_get_path (store, &iter);
1194                 // Find the entry in the queue
1195                 indices = gtk_tree_path_get_indices (treepath);
1196                 row = indices[0];
1197                 // Can only free the treepath After getting what I need from
1198                 // indices since this points into treepath somewhere.
1199                 gtk_tree_path_free (treepath);
1200                 if (row < 0) return;
1201                 if (row >= ghb_array_len(ud->queue))
1202                         return;
1203                 ghb_queue_edit_settings = ghb_array_get_nth(ud->queue, row);
1204                 status = ghb_settings_get_int(ghb_queue_edit_settings, "job_status");
1205                 if (status == GHB_QUEUE_PENDING)
1206                 {
1207                         // Remove the selected item
1208                         gtk_tree_store_remove(GTK_TREE_STORE(store), &iter);
1209                         // Remove the corresponding item from the queue list
1210                         ghb_array_remove(ud->queue, row);
1211                 }
1212                 gchar *source;
1213                 source = ghb_settings_get_string(ghb_queue_edit_settings, "source");
1214                 ghb_do_scan(ud, source, 0, FALSE);
1215                 g_free(source);
1216         }
1217 }
1218