OSDN Git Service

17e00346b7362ea472f7e5992318b8d308d5e784
[handbrake-jp/handbrake-jp-git.git] / gtk / src / presets.c
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3  * presets.c
4  * Copyright (C) John Stebbins 2008-2011 <stebbins@stebbins>
5  * 
6  * presets.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 <sys/types.h>
15 #include <sys/stat.h>
16 #include <fcntl.h>
17 #include <unistd.h>
18 #include <glib.h>
19 #include <glib-object.h>
20 #include <glib/gstdio.h>
21 #include <string.h>
22 #include <gtk/gtk.h>
23 #include "hb.h"
24 #include "settings.h"
25 #include "callbacks.h"
26 #include "audiohandler.h"
27 #include "subtitlehandler.h"
28 #include "hb-backend.h"
29 #include "plist.h"
30 #include "resources.h"
31 #include "presets.h"
32 #include "values.h"
33 #include "lang.h"
34
35 #define MAX_NESTED_PRESET 3
36
37 enum
38 {
39         PRESETS_BUILTIN = 0,
40         PRESETS_CUSTOM
41 };
42
43 static GValue *presetsPlist = NULL;
44 static GValue *internalPlist = NULL;
45 static GValue *prefsPlist = NULL;
46 static gboolean prefs_modified = FALSE;
47
48 static const GValue* preset_dict_get_value(GValue *dict, const gchar *key);
49 static void store_plist(GValue *plist, const gchar *name);
50 static void store_presets(void);
51 static void store_prefs(void);
52
53 gint
54 preset_path_cmp(gint *indices1, gint len1, gint *indices2, gint len2)
55 {
56         gint ii;
57         for (ii = 0; ii < len1 && ii < len2; ii++)
58         {
59                 if (indices1[ii] != indices2[ii])
60                         return indices1[ii] - indices2[ii];
61         }
62         return len1 - len2;
63 }
64
65 // This only handle limited depth
66 GtkTreePath*
67 ghb_tree_path_new_from_indices(gint *indices, gint len)
68 {
69         switch (len)
70         {
71                 case 1:
72                         return gtk_tree_path_new_from_indices(
73                                 indices[0], -1);
74                 case 2:
75                         return gtk_tree_path_new_from_indices(
76                                 indices[0], indices[1], -1);
77                 case 3:
78                         return gtk_tree_path_new_from_indices(
79                                 indices[0], indices[1], indices[2], -1);
80                 case 4:
81                         return gtk_tree_path_new_from_indices(
82                                 indices[0], indices[1], indices[2], indices[3], -1);
83                 case 5:
84                         return gtk_tree_path_new_from_indices(
85                                 indices[0], indices[1], indices[2], indices[3], indices[4], -1);
86                 default:
87                         return NULL;
88         }
89 }
90
91 GValue*
92 ghb_parse_preset_path(const gchar *path)
93 {
94         gchar **split;
95         GValue *preset;
96         gint ii;
97
98         preset = ghb_array_value_new(MAX_NESTED_PRESET);
99         split = g_strsplit(path, "#", MAX_NESTED_PRESET);
100         for (ii = 0; split[ii] != NULL; ii++)
101         {
102                 ghb_array_append(preset, ghb_string_value_new(split[ii]));
103         }
104         g_strfreev(split);
105         return preset;
106 }
107
108 static GValue*
109 preset_path_from_indices(GValue *presets, gint *indices, gint len)
110 {
111         gint ii;
112         GValue *path;
113
114         g_debug("preset_path_from_indices");
115         path = ghb_array_value_new(MAX_NESTED_PRESET);
116         for (ii = 0; ii < len; ii++)
117         {
118                 GValue *dict;
119                 gint count, folder;
120                 const GValue *name;
121
122                 count = ghb_array_len(presets);
123                 if (indices[ii] >= count) break;
124                 dict = ghb_array_get_nth(presets, indices[ii]);
125                 name = ghb_dict_lookup(dict, "PresetName");
126                 if (name)
127                         ghb_array_append(path, ghb_value_dup(name));
128                 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
129                 if (!folder)
130                         break;
131                 presets = ghb_dict_lookup(dict, "ChildrenArray");
132         }
133         return path;
134 }
135
136 gchar*
137 ghb_preset_path_string(const GValue *path)
138 {
139         gint count, ii;
140         GString *gstr;
141         GValue *val;
142         gchar *str;
143
144         gstr = g_string_new("");
145         if (path != NULL)
146         {
147                 count = ghb_array_len(path);
148                 for (ii = 0; ii < count; ii++)
149                 {
150                         val = ghb_array_get_nth(path, ii);
151                         str = ghb_value_string(val);
152                         g_string_append(gstr, str);
153                         if (ii < count-1)
154                                 g_string_append(gstr, "->");
155                         g_free(str);
156                 }
157         }
158         str = g_string_free(gstr, FALSE);
159         return str;
160 }
161
162 void
163 dump_preset_path(const gchar *msg, const GValue *path)
164 {
165         gchar *str;
166
167         if (path)
168                 debug_show_type (G_VALUE_TYPE(path));
169         str = ghb_preset_path_string(path);
170         g_message("%s path: (%s)", msg, str);
171         g_free(str);
172 }
173
174 void
175 dump_preset_indices(const gchar *msg, gint *indices, gint len)
176 {
177         gint ii;
178
179         g_message("%s indices: len %d", msg, len);
180         for (ii = 0; ii < len; ii++)
181         {
182                 printf("%d ", indices[ii]);
183         }
184         printf("\n");
185 }
186
187 #if 0
188 static gint
189 preset_path_cmp(const GValue *path1, const GValue *path2)
190 {
191         gint count, ii;
192         GValue *val;
193         gchar *str1, *str2;
194         gint result;
195
196         count = ghb_array_len(path1);
197         ii = ghb_array_len(path2);
198         if (ii != count)
199                 return ii - count;
200         for (ii = 0; ii < count; ii++)
201         {
202                 val = ghb_array_get_nth(path1, ii);
203                 str1 = ghb_value_string(val);
204                 val = ghb_array_get_nth(path2, ii);
205                 str2 = ghb_value_string(val);
206                 result = strcmp(str1, str2);
207                 if (result != 0)
208                         return result;
209                 g_free(str1);
210                 g_free(str2);
211         }
212         return 0;
213 }
214 #endif
215
216 static GValue*
217 presets_get_dict(GValue *presets, gint *indices, gint len)
218 {
219         gint ii, count, folder;
220         GValue *dict = NULL;
221
222         g_debug("presets_get_dict ()");
223         for (ii = 0; ii < len; ii++)
224         {
225                 count = ghb_array_len(presets);
226                 if (indices[ii] >= count) return NULL;
227                 dict = ghb_array_get_nth(presets, indices[ii]);
228                 if (ii < len-1)
229                 {
230                         folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
231                         if (!folder)
232                                 return NULL;
233                         presets = ghb_dict_lookup(dict, "ChildrenArray");
234                 }
235         }
236         if (ii < len)
237                 return NULL;
238         return dict;
239 }
240
241 static GValue*
242 presets_get_folder(GValue *presets, gint *indices, gint len)
243 {
244         gint ii, count, folder;
245         GValue *dict;
246
247         g_debug("presets_get_folder ()");
248         for (ii = 0; ii < len; ii++)
249         {
250                 count = ghb_array_len(presets);
251                 if (indices[ii] >= count) return NULL;
252                 dict = ghb_array_get_nth(presets, indices[ii]);
253                 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
254                 if (!folder)
255                         break;
256                 presets = ghb_dict_lookup(dict, "ChildrenArray");
257         }
258         if (ii < len)
259                 return NULL;
260         return presets;
261 }
262
263 static GValue*
264 plist_get_dict(GValue *presets, const gchar *name)
265 {
266         if (presets == NULL || name == NULL) return NULL;
267         return ghb_dict_lookup(presets, name);
268 }
269
270 static const gchar*
271 preset_get_name(GValue *dict)
272 {
273         return g_value_get_string(preset_dict_get_value(dict, "PresetName"));
274 }
275
276 static gboolean
277 preset_folder_is_open(GValue *dict)
278 {
279         const GValue *gval;
280
281         gval = preset_dict_get_value(dict, "FolderOpen");
282         if (gval != NULL)
283                 return g_value_get_boolean(gval);
284         return FALSE;
285 }
286
287 gboolean
288 ghb_preset_folder(GValue *dict)
289 {
290         return ghb_value_int(preset_dict_get_value(dict, "Folder"));
291 }
292
293 gint
294 ghb_preset_type(GValue *dict)
295 {
296         return ghb_value_int(preset_dict_get_value(dict, "Type"));
297 }
298
299 static void
300 presets_remove_nth(GValue *presets, gint pos)
301 {
302         GValue *dict;
303         gint count;
304         
305         if (presets == NULL || pos < 0) return;
306         count = ghb_array_len(presets);
307         if (pos >= count) return;
308         dict = ghb_array_get_nth(presets, pos);
309         ghb_array_remove(presets, pos);
310         ghb_value_free(dict);
311 }
312
313 gboolean
314 ghb_presets_remove(
315         GValue *presets, 
316         gint *indices,
317         gint len)
318 {
319         GValue *folder = NULL;
320
321         folder = presets_get_folder(presets, indices, len-1);
322         if (folder)
323                 presets_remove_nth(folder, indices[len-1]);
324         else
325         {
326                 g_warning("ghb_presets_remove (): internal preset lookup error");
327                 return FALSE;
328         }
329         return TRUE;
330 }
331
332 static void
333 ghb_presets_replace(
334         GValue *presets, 
335         GValue *dict,
336         gint *indices,
337         gint len)
338 {
339         GValue *folder = NULL;
340
341         folder = presets_get_folder(presets, indices, len-1);
342         if (folder)
343                 ghb_array_replace(folder, indices[len-1], dict);
344         else
345         {
346                 g_warning("ghb_presets_replace (): internal preset lookup error");
347         }
348 }
349
350 static void
351 ghb_presets_insert(
352         GValue *presets, 
353         GValue *dict,
354         gint *indices,
355         gint len)
356 {
357         GValue *folder = NULL;
358
359         folder = presets_get_folder(presets, indices, len-1);
360         if (folder)
361                 ghb_array_insert(folder, indices[len-1], dict);
362         else
363         {
364                 g_warning("ghb_presets_insert (): internal preset lookup error");
365         }
366 }
367
368 static gint
369 presets_find_element(GValue *presets, const gchar *name)
370 {
371         GValue *dict;
372         gint count, ii;
373         
374         g_debug("presets_find_element () (%s)", name);
375         if (presets == NULL || name == NULL) return -1;
376         count = ghb_array_len(presets);
377         for (ii = 0; ii < count; ii++)
378         {
379                 const gchar *str;
380                 dict = ghb_array_get_nth(presets, ii);
381                 str = preset_get_name(dict);
382                 if (strcmp(name, str) == 0)
383                 {
384                         return ii;
385                 }
386         }
387         return -1;
388 }
389
390 static gint
391 single_find_pos(GValue *presets, const gchar *name, gint type)
392 {
393         GValue *dict;
394         gint count, ii, ptype, last;
395         
396         if (presets == NULL || name == NULL) return -1;
397         last = count = ghb_array_len(presets);
398         for (ii = 0; ii < count; ii++)
399         {
400                 const gchar *str;
401                 dict = ghb_array_get_nth(presets, ii);
402                 str = preset_get_name(dict);
403                 ptype = ghb_value_int(preset_dict_get_value(dict, "Type"));
404                 if (strcasecmp(name, str) <= 0 && ptype == type)
405                 {
406                         return ii;
407                 }
408                 if (ptype == type)
409                         last = ii+1;
410         }
411         return last;
412 }
413
414 static gint*
415 presets_find_pos(const GValue *path, gint type, gint *len)
416 {
417         GValue *nested;
418         GValue *val;
419         gint count, ii;
420         gboolean folder;
421         gint *indices = NULL;
422         const gchar *name;
423         GValue *dict;
424
425         g_debug("presets_find_pos () ");
426         nested = presetsPlist;
427         count = ghb_array_len(path);
428         indices = g_malloc(MAX_NESTED_PRESET * sizeof(gint));
429         for (ii = 0; ii < count-1; ii++)
430         {
431                 val = ghb_array_get_nth(path, ii);
432                 name = g_value_get_string(val);
433                 indices[ii] = presets_find_element(nested, name);
434                 if (indices[ii] == -1) return NULL;
435                 dict = ghb_array_get_nth(nested, indices[ii]);
436                 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
437                 nested = NULL;
438                 if (!folder)
439                         break;
440                 nested = ghb_dict_lookup(dict, "ChildrenArray");
441         }
442         if (nested)
443         {
444                 const gchar *name;
445
446                 name = g_value_get_string(ghb_array_get_nth(path, count-1));
447                 indices[ii] = single_find_pos(nested, name, type);
448                 ii++;
449         }
450         *len = ii;
451         return indices;
452 }
453
454 static gint
455 preset_tree_depth(GValue *dict)
456 {
457         gboolean folder;
458
459         folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
460         if (folder)
461         {
462                 gint depth = 0;
463                 gint count, ii;
464                 GValue *presets;
465
466                 presets = ghb_dict_lookup(dict, "ChildrenArray");
467                 count = ghb_array_len(presets);
468                 for (ii = 0; ii < count; ii++)
469                 {
470                         gint tmp;
471
472                         dict = ghb_array_get_nth(presets, ii);
473                         tmp = preset_tree_depth(dict);
474                         depth = MAX(depth, tmp);
475                 }
476                 return depth + 1;
477         }
478         else
479         {
480                 return 1;
481         }
482 }
483
484 static gboolean
485 preset_is_default(GValue *dict)
486 {
487         const GValue *val;
488
489         val = preset_dict_get_value(dict, "Default");
490         return ghb_value_boolean(val);
491 }
492
493 static void
494 presets_clear_default(GValue *presets)
495 {
496         gint count, ii;
497
498         count = ghb_array_len(presets);
499         for (ii = 0; ii < count; ii++)
500         {
501                 GValue *dict;
502                 gboolean folder;
503
504                 dict = ghb_array_get_nth(presets, ii);
505                 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
506                 if (folder)
507                 {
508                         GValue *nested;
509
510                         nested = ghb_dict_lookup(dict, "ChildrenArray");
511                         presets_clear_default(nested);
512                 }
513                 else
514                 {
515                         if (preset_is_default(dict))
516                         {
517                                 ghb_dict_insert(dict, g_strdup("Default"), 
518                                                                 ghb_boolean_value_new(FALSE));
519                         }
520                 }
521         }
522 }
523
524 static void
525 presets_customize(GValue *presets)
526 {
527         gint count, ii;
528
529         count = ghb_array_len(presets);
530         for (ii = 0; ii < count; ii++)
531         {
532                 GValue *dict;
533                 gboolean folder;
534                 gint ptype;
535
536                 dict = ghb_array_get_nth(presets, ii);
537
538                 ptype = ghb_value_int(preset_dict_get_value(dict, "Type"));
539                 if (ptype != PRESETS_CUSTOM)
540                 {
541                         ghb_dict_insert(dict, g_strdup("Type"), 
542                                                 ghb_int64_value_new(PRESETS_CUSTOM));
543                 }
544                 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
545                 if (folder)
546                 {
547                         GValue *nested;
548
549                         nested = ghb_dict_lookup(dict, "ChildrenArray");
550                         presets_customize(nested);
551                 }
552         }
553 }
554
555 static gint*
556 presets_find_default2(GValue *presets, gint *len)
557 {
558         gint count, ii;
559         gint *indices;
560
561         count = ghb_array_len(presets);
562         for (ii = 0; ii < count; ii++)
563         {
564                 GValue *dict;
565                 gboolean folder;
566
567                 dict = ghb_array_get_nth(presets, ii);
568                 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
569                 if (folder)
570                 {
571                         GValue *nested;
572                         gint pos = *len;
573
574                         nested = ghb_dict_lookup(dict, "ChildrenArray");
575                         (*len)++;
576                         indices = presets_find_default2(nested, len);
577                         if (indices)
578                         {
579                                 indices[pos] = ii;
580                                 return indices;
581                         }
582                         else
583                                 *len = pos;
584                 }
585                 else
586                 {
587                         if (preset_is_default(dict))
588                         {
589                                 indices = g_malloc(MAX_NESTED_PRESET * sizeof(gint));
590                                 indices[*len] = ii;
591                                 (*len)++;
592                                 return indices;
593                         }
594                 }
595         }
596         return NULL;
597 }
598
599 static gint*
600 presets_find_default(GValue *presets, gint *len)
601 {
602         *len = 0;
603         return presets_find_default2(presets, len);
604 }
605
606 gint*
607 ghb_preset_indices_from_path(
608         GValue *presets, 
609         const GValue *path,
610         gint *len)
611 {
612         GValue *nested;
613         GValue *val;
614         gint count, ii;
615         gint *indices = NULL;
616         const gchar *name;
617         GValue *dict;
618         gboolean folder;
619
620         g_debug("ghb_preset_indices_from_path () ");
621         nested = presets;
622         count = ghb_array_len(path);
623         if (count)
624                 indices = g_malloc(MAX_NESTED_PRESET * sizeof(gint));
625         *len = 0;
626         for (ii = 0; ii < count; ii++)
627         {
628                 val = ghb_array_get_nth(path, ii);
629                 name = g_value_get_string(val);
630                 indices[ii] = presets_find_element(nested, name);
631                 if (indices[ii] == -1)
632                 {
633                         g_free(indices);
634                         return NULL;
635                 }
636                 if (ii < count-1)
637                 {
638                         dict = ghb_array_get_nth(nested, indices[ii]);
639                         folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
640                         if (!folder)
641                         {
642                                 g_free(indices);
643                                 return NULL;
644                         }
645                         nested = ghb_dict_lookup(dict, "ChildrenArray");
646                 }
647         }
648         *len = ii;
649         return indices;
650 }
651
652 static gint
653 ghb_presets_get_type(
654         GValue *presets, 
655         gint *indices,
656         gint len)
657 {
658         GValue *dict;
659         gint type = 0;
660
661         dict = presets_get_dict(presets, indices, len);
662         if (dict)
663         {
664                 type = ghb_preset_type(dict);
665         }
666         else
667         {
668                 g_warning("ghb_presets_get_type (): internal preset lookup error");
669         }
670         return type;
671 }
672
673 static gboolean
674 ghb_presets_get_folder(
675         GValue *presets, 
676         gint *indices,
677         gint len)
678 {
679         GValue *dict;
680         gboolean folder = FALSE;
681
682         dict = presets_get_dict(presets, indices, len);
683         if (dict)
684         {
685                 folder = ghb_preset_folder(dict);
686         }
687         else
688         {
689                 g_warning("ghb_presets_get_folder (): internal preset lookup error");
690         }
691         return folder;
692 }
693
694 void
695 presets_set_default(gint *indices, gint len)
696 {
697         GValue *dict;
698         
699         g_debug("presets_set_default ()");
700         presets_clear_default(presetsPlist);
701         dict = presets_get_dict(presetsPlist, indices, len);
702         if (dict)
703         {
704                 ghb_dict_insert(dict, g_strdup("Default"), ghb_boolean_value_new(TRUE));
705         }
706         store_presets();
707 }
708
709 static void
710 presets_set_folder_open(gboolean open, gint *indices, gint len)
711 {
712         GValue *dict;
713         
714         g_debug("presets_set_folder_open ()");
715         dict = presets_get_dict(presetsPlist, indices, len);
716         if (dict)
717         {
718                 ghb_dict_insert(dict, g_strdup("FolderOpen"), 
719                                                 ghb_boolean_value_new(open));
720         }
721 }
722
723 // Used for sorting dictionaries.
724 gint
725 key_cmp(gconstpointer a, gconstpointer b)
726 {
727         gchar *stra = (gchar*)a;
728         gchar *strb = (gchar*)b;
729
730         return strcmp(stra, strb);
731 }
732
733 static const GValue*
734 preset_dict_get_value(GValue *dict, const gchar *key)
735 {
736         const GValue *gval = NULL;
737
738         if (dict)
739         {
740                 gval = ghb_dict_lookup(dict, key);
741         }
742         if (internalPlist == NULL) return NULL;
743         if (gval == NULL)
744         {
745                 dict = plist_get_dict(internalPlist, "Presets");
746                 if (dict == NULL) return NULL;
747                 gval = ghb_dict_lookup(dict, key);
748         }
749         return gval;
750 }
751
752 const gchar*
753 ghb_presets_get_description(GValue *pdict)
754 {
755         const gchar *desc;
756
757         if (pdict == NULL) return NULL;
758         desc = g_value_get_string(
759                         preset_dict_get_value(pdict, "PresetDescription"));
760         if (desc[0] == 0) return NULL;
761         return desc;
762 }
763
764
765 static void init_settings_from_dict(
766         GValue *dest, GValue *internal, GValue *dict);
767
768 static void
769 init_settings_from_array(
770         GValue *dest, 
771         GValue *internal,
772         GValue *array)
773 {
774         GValue *gval, *val;
775         gint count, ii;
776         
777         count = ghb_array_len(array);
778         // The first element of the internal version is always the 
779         // template for the allowed values
780         gval = ghb_array_get_nth(internal, 0);
781         for (ii = 0; ii < count; ii++)
782         {
783                 val = NULL;
784                 val = ghb_array_get_nth(array, ii);
785                 if (val == NULL)
786                         val = gval;
787                 if (G_VALUE_TYPE(gval) == ghb_dict_get_type())
788                 {
789                         GValue *new_dict;
790                         new_dict = ghb_dict_value_new();
791                         ghb_array_append(dest, new_dict);
792                         if (G_VALUE_TYPE(val) == ghb_dict_get_type())
793                                 init_settings_from_dict(new_dict, gval, val);
794                         else
795                                 init_settings_from_dict(new_dict, gval, gval);
796                 }
797                 else if (G_VALUE_TYPE(gval) == ghb_array_get_type())
798                 {
799                         GValue *new_array;
800                         new_array = ghb_array_value_new(8);
801                         ghb_array_append(dest, new_array);
802                         if (G_VALUE_TYPE(val) == ghb_array_get_type())
803                                 init_settings_from_array(new_array, gval, val);
804                         else
805                                 init_settings_from_array(new_array, gval, gval);
806                 }
807                 else
808                 {
809                         ghb_array_append(dest, val);
810                 }
811         }
812 }
813
814 static void
815 init_settings_from_dict(
816         GValue *dest, 
817         GValue *internal,
818         GValue *dict)
819 {
820         GHashTableIter iter;
821         gchar *key;
822         GValue *gval, *val;
823         
824         ghb_dict_iter_init(&iter, internal);
825         // middle (void*) cast prevents gcc warning "defreferencing type-punned
826         // pointer will break strict-aliasing rules"
827         while (g_hash_table_iter_next(
828                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
829         {
830                 val = NULL;
831                 if (dict)
832                         val = ghb_dict_lookup(dict, key);
833                 if (val == NULL)
834                         val = gval;
835                 if (G_VALUE_TYPE(gval) == ghb_dict_get_type())
836                 {
837                         GValue *new_dict;
838                         new_dict = ghb_dict_value_new();
839                         ghb_settings_take_value(dest, key, new_dict);
840                         if (G_VALUE_TYPE(val) == ghb_dict_get_type())
841                                 init_settings_from_dict(new_dict, gval, val);
842                         else
843                                 init_settings_from_dict(new_dict, gval, gval);
844                 }
845                 else if (G_VALUE_TYPE(gval) == ghb_array_get_type())
846                 {
847                         GValue *new_array;
848                         new_array = ghb_array_value_new(8);
849                         ghb_settings_take_value(dest, key, new_array);
850                         if (G_VALUE_TYPE(val) == ghb_array_get_type())
851                                 init_settings_from_array(new_array, gval, val);
852                         else
853                                 init_settings_from_array(new_array, gval, gval);
854         
855                 }
856                 else
857                 {
858                         ghb_settings_set_value(dest, key, val);
859                 }
860         }
861 }
862
863 void
864 init_ui_from_dict(
865         signal_user_data_t *ud, 
866         GValue *internal,
867         GValue *dict)
868 {
869         GHashTableIter iter;
870         gchar *key;
871         GValue *gval, *val;
872         
873         ghb_dict_iter_init(&iter, internal);
874         // middle (void*) cast prevents gcc warning "defreferencing type-punned
875         // pointer will break strict-aliasing rules"
876         while (g_hash_table_iter_next(
877                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
878         {
879                 val = NULL;
880                 if (dict)
881                         val = ghb_dict_lookup(dict, key);
882                 if (val == NULL)
883                         val = gval;
884                 ghb_ui_update(ud, key, val);
885         }
886 }
887
888 static void
889 preset_to_ui(signal_user_data_t *ud, GValue *dict)
890 {
891         g_debug("preset_to_ui()\n");
892         // Initialize the ui from presets file.
893         GValue *internal, *hidden;
894
895         // Get key list from internal default presets.  This way we do not
896         // load any unknown keys.
897         if (internalPlist == NULL) return;
898         internal = plist_get_dict(internalPlist, "Presets");
899         hidden = plist_get_dict(internalPlist, "XlatPresets");
900         // Setting a ui widget will cause the corresponding setting
901         // to be set, but it also triggers a callback that can 
902         // have the side effect of using other settings values
903         // that have not yet been set.  So set *all* settings first
904         // then update the ui.
905         init_settings_from_dict(ud->settings, internal, dict);
906         init_settings_from_dict(ud->settings, hidden, dict);
907         init_ui_from_dict(ud, internal, dict);
908         init_ui_from_dict(ud, hidden, dict);
909
910         if (dict != NULL)
911         {
912                 GValue *val;
913                 gboolean dd;
914
915                 val = ghb_dict_lookup(dict, "PictureDecombDeinterlace");
916                 if (val != NULL)
917                 {
918                         dd = ghb_value_boolean(val);
919                         ghb_ui_update(ud, "PictureDeinterlaceDecomb", ghb_boolean_value(!dd));
920                 }
921                 val = ghb_dict_lookup(dict, "PictureHeight");
922                 if (val != NULL)
923                 {
924                         ghb_ui_update(ud, "scale_height", val);
925                 }
926                 val = ghb_dict_lookup(dict, "PictureWidth");
927                 if (val != NULL)
928                 {
929                         ghb_ui_update(ud, "scale_width", val);
930                 }
931         }
932 }
933
934 void
935 ghb_settings_to_ui(signal_user_data_t *ud, GValue *dict)
936 {
937         init_ui_from_dict(ud, dict, dict);
938 }
939
940 static GValue *current_preset = NULL;
941
942 gboolean
943 ghb_preset_is_custom()
944 {
945         const GValue *val;
946
947         if (current_preset == NULL) return FALSE;
948         val = preset_dict_get_value(current_preset, "Type");
949         return (ghb_value_int(val) == 1);
950 }
951
952 void
953 ghb_set_preset_from_indices(signal_user_data_t *ud, gint *indices, gint len)
954 {
955         GValue *dict = NULL;
956         gint fallback[2] = {0, -1};
957
958         if (indices)
959                 dict = presets_get_dict(presetsPlist, indices, len);
960         if (dict == NULL)
961         {
962                 indices = fallback;
963                 len = 1;
964                 dict = presets_get_dict(presetsPlist, indices, len);
965         }
966         if (dict == NULL)
967         {
968                 preset_to_ui(ud, NULL);
969                 current_preset = NULL;
970         }
971         else
972         {
973                 GValue *path;
974                 gboolean folder;
975
976                 current_preset = dict;
977                 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
978                 if (folder)
979                         preset_to_ui(ud, NULL);
980                 else
981                         preset_to_ui(ud, dict);
982                 path = preset_path_from_indices(presetsPlist, indices, len);
983                 ghb_settings_set_value(ud->settings, "preset", path);
984                 ghb_value_free(path);
985         }
986 }
987
988 static const GValue*
989 curr_preset_get_value(const gchar *key)
990 {
991         if (current_preset == NULL) return NULL;
992         return preset_dict_get_value(current_preset, key);
993 }
994
995 void
996 ghb_update_from_preset(
997         signal_user_data_t *ud, 
998         const gchar *key)
999 {
1000         const GValue *gval;
1001         
1002         g_debug("ghb_update_from_preset() %s", key);
1003         gval = curr_preset_get_value(key);
1004         if (gval != NULL)
1005         {
1006                 ghb_ui_update(ud, key, gval);
1007         }
1008 }
1009
1010 static void
1011 ghb_select_preset2(
1012         GtkBuilder *builder, 
1013         gint *indices, 
1014         gint len)
1015 {
1016         GtkTreeView *treeview;
1017         GtkTreeSelection *selection;
1018         GtkTreeModel *store;
1019         GtkTreeIter iter;
1020         GtkTreePath *path;
1021         
1022         g_debug("ghb_select_preset2()");
1023         treeview = GTK_TREE_VIEW(GHB_WIDGET(builder, "presets_list"));
1024         selection = gtk_tree_view_get_selection (treeview);
1025         store = gtk_tree_view_get_model (treeview);
1026         path = ghb_tree_path_new_from_indices(indices, len);
1027         if (path)
1028         {
1029                 if (gtk_tree_model_get_iter(store, &iter, path))
1030                 {
1031                         gtk_tree_selection_select_iter (selection, &iter);
1032                 }
1033                 else
1034                 {
1035                         if (gtk_tree_model_get_iter_first(store, &iter))
1036                                 gtk_tree_selection_select_iter (selection, &iter);
1037                 }
1038                 gtk_tree_path_free(path);
1039         }
1040 }
1041
1042 void
1043 ghb_select_preset(GtkBuilder *builder, const GValue *path)
1044 {
1045         gint *indices, len;
1046
1047         g_debug("ghb_select_preset()");
1048         indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
1049         if (indices)
1050         {
1051                 ghb_select_preset2(builder, indices, len);
1052                 g_free(indices);
1053         }
1054 }
1055
1056 void
1057 ghb_select_default_preset(GtkBuilder *builder)
1058 {
1059         gint *indices, len;
1060
1061         g_debug("ghb_select_default_preset()");
1062         indices = presets_find_default(presetsPlist, &len);
1063         if (indices)
1064         {
1065                 ghb_select_preset2(builder, indices, len);
1066                 g_free(indices);
1067         }
1068 }
1069
1070 gchar*
1071 ghb_get_user_config_dir(gchar *subdir)
1072 {
1073         const gchar *dir;
1074         gchar *config;
1075
1076         dir = g_get_user_config_dir();
1077         if (!g_file_test(dir, G_FILE_TEST_IS_DIR))
1078         {
1079                 dir = g_get_home_dir();
1080                 config = g_strdup_printf ("%s/.ghb", dir);
1081                 if (!g_file_test(config, G_FILE_TEST_IS_DIR))
1082                         g_mkdir (config, 0755);
1083         }
1084         else
1085         {
1086                 config = g_strdup_printf ("%s/ghb", dir);
1087                 if (!g_file_test(config, G_FILE_TEST_IS_DIR))
1088                         g_mkdir (config, 0755);
1089         }
1090         if (subdir)
1091         {
1092                 gchar **split;
1093                 gint ii;
1094
1095                 split = g_strsplit(subdir, G_DIR_SEPARATOR_S, -1);
1096                 for (ii = 0; split[ii] != NULL; ii++)
1097                 {
1098                         gchar *tmp;
1099
1100                         tmp = g_strdup_printf ("%s/%s", config, split[ii]);
1101                         g_free(config);
1102                         config = tmp;
1103                         if (!g_file_test(config, G_FILE_TEST_IS_DIR))
1104                                 g_mkdir (config, 0755);
1105                 }
1106         }
1107         return config;
1108 }
1109
1110 static void
1111 store_plist(GValue *plist, const gchar *name)
1112 {
1113         gchar *config, *path;
1114         FILE *file;
1115
1116         config = ghb_get_user_config_dir(NULL);
1117         path = g_strdup_printf ("%s/%s", config, name);
1118         file = g_fopen(path, "w");
1119         g_free(config);
1120         g_free(path);
1121         ghb_plist_write(file, plist);
1122         fclose(file);
1123 }
1124
1125 static GValue*
1126 load_plist(const gchar *name)
1127 {
1128         gchar *config, *path;
1129         GValue *plist = NULL;
1130
1131         config = ghb_get_user_config_dir(NULL);
1132         path = g_strdup_printf ("%s/%s", config, name);
1133         if (g_file_test(path, G_FILE_TEST_IS_REGULAR))
1134         {
1135                 plist = ghb_plist_parse_file(path);
1136         }
1137         g_free(config);
1138         g_free(path);
1139         return plist;
1140 }
1141
1142 gboolean
1143 ghb_lock_file(const gchar *name)
1144 {
1145 #if !defined(_WIN32)
1146         gchar *config, *path;
1147         int fd, lock = 0;
1148
1149         config = ghb_get_user_config_dir(NULL);
1150         path = g_strdup_printf ("%s/%s", config, name);
1151         fd = open(path, O_RDWR|O_CREAT, S_IRUSR|S_IWUSR);
1152         if (fd >= 0)
1153                 lock = lockf(fd, F_TLOCK, 0);
1154         if (lock)
1155                 close(fd);
1156         g_free(config);
1157         g_free(path);
1158         return !lock;
1159 #else
1160         return 1;
1161 #endif
1162 }
1163
1164 void
1165 ghb_write_pid_file()
1166 {
1167 #if !defined(_WIN32)
1168         gchar *config, *path;
1169         pid_t pid;
1170         FILE *fp;
1171         int fd, lock;
1172
1173         pid = getpid();
1174
1175         config = ghb_get_user_config_dir(NULL);
1176         path = g_strdup_printf ("%s/ghb.pid.%d", config, pid);
1177
1178         fp = g_fopen(path, "w");
1179         fprintf(fp, "%d\n", pid);
1180         fclose(fp);
1181
1182         fd = open(path, O_RDWR|O_CREAT, S_IRUSR|S_IWUSR);
1183         lock = lockf(fd, F_TLOCK, 0);
1184
1185         g_free(config);
1186         g_free(path);
1187 #endif
1188 }
1189
1190 void
1191 ghb_unlink_pid_file(int pid)
1192 {
1193         gchar *config, *path;
1194
1195         config = ghb_get_user_config_dir(NULL);
1196         path = g_strdup_printf ("%s/ghb.pid.%d", config, pid);
1197
1198         if (g_file_test(path, G_FILE_TEST_IS_REGULAR))
1199         {
1200                 g_unlink(path);
1201         }
1202
1203         g_free(config);
1204         g_free(path);
1205 }
1206
1207 int
1208 ghb_find_pid_file()
1209 {
1210         const gchar *file;
1211         gchar *config;
1212
1213         config = ghb_get_user_config_dir(NULL);
1214
1215         if (g_file_test(config, G_FILE_TEST_IS_DIR))
1216         {
1217                 GDir *gdir = g_dir_open(config, 0, NULL);
1218                 file = g_dir_read_name(gdir);
1219                 while (file)
1220                 {
1221                         if (strncmp(file, "ghb.pid.", 8) == 0)
1222                         {
1223                                 gchar *path;
1224                                 pid_t my_pid;
1225                                 int pid;
1226
1227                                 sscanf(file, "ghb.pid.%d", &pid);
1228                                 my_pid = getpid();
1229                                 if (my_pid == pid)
1230                                 {
1231                                         file = g_dir_read_name(gdir);
1232                                         continue;
1233                                 }
1234                                 path = g_strdup_printf("%s/%s", config, file);
1235
1236 #if !defined(_WIN32)
1237                                 int fd, lock = 1;
1238
1239                                 fd = open(path, O_RDWR);
1240                                 if (fd >= 0)
1241                                 {
1242                                         lock = lockf(fd, F_TLOCK, 0);
1243                                 }
1244                                 if (lock == 0)
1245                                 {
1246                                         close(fd);
1247                                         g_dir_close(gdir);
1248                                         g_unlink(path);
1249                                         g_free(path);
1250                                         g_free(config);
1251                                         return pid;
1252                                 }
1253                                 g_free(path);
1254                                 close(fd);
1255 #else
1256                                 g_dir_close(gdir);
1257                                 g_unlink(path);
1258                                 g_free(path);
1259                                 g_free(config);
1260                                 return pid;
1261 #endif
1262                         }
1263                         file = g_dir_read_name(gdir);
1264                 }
1265                 g_dir_close(gdir);
1266         }
1267         g_free(config);
1268         return -1;
1269 }
1270
1271 static void
1272 remove_plist(const gchar *name)
1273 {
1274         gchar *config, *path;
1275
1276         config = ghb_get_user_config_dir(NULL);
1277         path = g_strdup_printf ("%s/%s", config, name);
1278         if (g_file_test(path, G_FILE_TEST_IS_REGULAR))
1279         {
1280                 g_unlink(path);
1281         }
1282         g_free(path);
1283         g_free(config);
1284 }
1285
1286 static gboolean prefs_initializing = FALSE;
1287
1288 void
1289 ghb_prefs_to_ui(signal_user_data_t *ud)
1290 {
1291         const GValue *gval;
1292         gchar *key;
1293         gchar *str;
1294         GValue *internal, *dict;
1295         GHashTableIter iter;
1296         
1297
1298         g_debug("ghb_prefs_to_ui");
1299         prefs_initializing = TRUE;
1300
1301         // Setting a ui widget will cause the corresponding setting
1302         // to be set, but it also triggers a callback that can 
1303         // have the side effect of using other settings values
1304         // that have not yet been set.  So set *all* settings first
1305         // then update the ui.
1306         internal = plist_get_dict(internalPlist, "Initialization");
1307         ghb_dict_iter_init(&iter, internal);
1308         // middle (void*) cast prevents gcc warning "defreferencing type-punned
1309         // pointer will break strict-aliasing rules"
1310         while (g_hash_table_iter_next(
1311                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1312         {
1313                 ghb_ui_update(ud, key, gval);
1314         }
1315
1316         dict = plist_get_dict(prefsPlist, "Preferences");
1317         internal = plist_get_dict(internalPlist, "Preferences");
1318         ghb_dict_iter_init(&iter, internal);
1319         // middle (void*) cast prevents gcc warning "defreferencing type-punned
1320         // pointer will break strict-aliasing rules"
1321         while (g_hash_table_iter_next(
1322                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1323         {
1324                 const GValue *value = NULL;
1325                 if (dict)
1326                         value = ghb_dict_lookup(dict, key);
1327                 if (value == NULL)
1328                         value = gval;
1329                 ghb_settings_set_value(ud->settings, key, value);
1330         }
1331         internal = plist_get_dict(internalPlist, "Preferences");
1332         ghb_dict_iter_init(&iter, internal);
1333         // middle (void*) cast prevents gcc warning "defreferencing type-punned
1334         // pointer will break strict-aliasing rules"
1335         while (g_hash_table_iter_next(
1336                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1337         {
1338                 const GValue *value = NULL;
1339                 if (dict)
1340                         value = ghb_dict_lookup(dict, key);
1341                 if (value == NULL)
1342                         value = gval;
1343                 ghb_ui_update(ud, key, value);
1344         }
1345         const GValue *val;
1346         val = ghb_settings_get_value(ud->settings, "show_presets");
1347         ghb_ui_update(ud, "show_presets", val);
1348         if (ghb_settings_get_boolean(ud->settings, "hbfd_feature"))
1349         {
1350                 GtkAction *action;
1351                 val = ghb_settings_get_value(ud->settings, "hbfd");
1352                 ghb_ui_update(ud, "hbfd", val);
1353                 action = GHB_ACTION (ud->builder, "hbfd");
1354                 gtk_action_set_visible(action, TRUE);
1355         }
1356         else
1357         {
1358                 ghb_ui_update(ud, "hbfd", ghb_int64_value(0));
1359         }
1360         gval = ghb_settings_get_value(ud->settings, "default_source");
1361         ghb_settings_set_value (ud->settings, "scan_source", gval);
1362
1363         str = ghb_settings_get_string(ud->settings, "destination_dir");
1364         ghb_ui_update(ud, "dest_dir", ghb_string_value(str));
1365
1366         gchar *file = g_strdup_printf ("new_video.mp4");
1367         ghb_ui_update(ud, "dest_file", ghb_string_value(file));
1368         g_free(str);
1369         g_free(file);
1370
1371         prefs_initializing = FALSE;
1372 }
1373
1374 void
1375 ghb_prefs_save(GValue *settings)
1376 {
1377         GValue *dict;
1378         GValue *pref_dict;
1379         GHashTableIter iter;
1380         gchar *key;
1381         const GValue *value;
1382         
1383         if (prefs_initializing) return;
1384         dict = plist_get_dict(internalPlist, "Preferences");
1385         if (dict == NULL) return;
1386         pref_dict = plist_get_dict(prefsPlist, "Preferences");
1387         if (pref_dict == NULL) return;
1388         ghb_dict_iter_init(&iter, dict);
1389         // middle (void*) cast prevents gcc warning "defreferencing type-punned
1390         // pointer will break strict-aliasing rules"
1391         while (g_hash_table_iter_next(
1392                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&value))
1393         {
1394                 value = ghb_settings_get_value(settings, key);
1395                 if (value != NULL)
1396                 {
1397                         ghb_dict_insert(pref_dict, g_strdup(key), ghb_value_dup(value));
1398                 }
1399         }
1400         store_prefs();
1401         prefs_modified = FALSE;
1402 }
1403
1404 void
1405 ghb_pref_set(GValue *settings, const gchar *key)
1406 {
1407         const GValue *value, *value2;
1408         
1409         if (prefs_initializing) return;
1410         value = ghb_settings_get_value(settings, key);
1411         if (value != NULL)
1412         {
1413                 GValue *dict;
1414                 dict = plist_get_dict(prefsPlist, "Preferences");
1415                 if (dict == NULL) return;
1416                 value2 = ghb_dict_lookup(dict, key);
1417                 if (ghb_value_cmp(value, value2) != 0)
1418                 {
1419                         ghb_dict_insert(dict, g_strdup(key), ghb_value_dup(value));
1420                         store_prefs();
1421                         prefs_modified = TRUE;
1422                 }
1423         }
1424 }
1425
1426 void
1427 ghb_pref_save(GValue *settings, const gchar *key)
1428 {
1429         const GValue *value, *value2;
1430         
1431         if (prefs_initializing) return;
1432         value = ghb_settings_get_value(settings, key);
1433         if (value != NULL)
1434         {
1435                 GValue *dict;
1436                 dict = plist_get_dict(prefsPlist, "Preferences");
1437                 if (dict == NULL) return;
1438                 value2 = ghb_dict_lookup(dict, key);
1439                 if (ghb_value_cmp(value, value2) != 0)
1440                 {
1441                         ghb_dict_insert(dict, g_strdup(key), ghb_value_dup(value));
1442                         store_prefs();
1443                         prefs_modified = FALSE;
1444                 }
1445         }
1446 }
1447
1448 void
1449 ghb_prefs_store(void)
1450 {
1451         if (prefs_modified)
1452         {
1453                 store_prefs();
1454                 prefs_modified = FALSE;
1455         }
1456 }
1457
1458 void
1459 ghb_settings_init(signal_user_data_t *ud)
1460 {
1461         GValue *internal;
1462         GHashTableIter iter;
1463         gchar *key;
1464         GValue *gval;
1465
1466
1467         g_debug("ghb_settings_init");
1468         prefs_initializing = TRUE;
1469
1470         internalPlist = ghb_resource_get("internal-defaults");
1471         // Setting a ui widget will cause the corresponding setting
1472         // to be set, but it also triggers a callback that can 
1473         // have the side effect of using other settings values
1474         // that have not yet been set.  So set *all* settings first
1475         // then update the ui.
1476         internal = plist_get_dict(internalPlist, "Initialization");
1477         ghb_dict_iter_init(&iter, internal);
1478         // middle (void*) cast prevents gcc warning "defreferencing type-punned
1479         // pointer will break strict-aliasing rules"
1480         while (g_hash_table_iter_next(
1481                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1482         {
1483                 ghb_settings_set_value(ud->settings, key, gval);
1484         }
1485
1486         internal = plist_get_dict(internalPlist, "Presets");
1487         ghb_dict_iter_init(&iter, internal);
1488         // middle (void*) cast prevents gcc warning "defreferencing type-punned
1489         // pointer will break strict-aliasing rules"
1490         while (g_hash_table_iter_next(
1491                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1492         {
1493                 ghb_settings_set_value(ud->settings, key, gval);
1494         }
1495
1496         internal = plist_get_dict(internalPlist, "Preferences");
1497         ghb_dict_iter_init(&iter, internal);
1498         // middle (void*) cast prevents gcc warning "defreferencing type-punned
1499         // pointer will break strict-aliasing rules"
1500         while (g_hash_table_iter_next(
1501                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1502         {
1503                 ghb_settings_set_value(ud->settings, key, gval);
1504         }
1505         prefs_initializing = FALSE;
1506 }
1507
1508 void
1509 ghb_settings_close()
1510 {
1511         if (internalPlist)
1512                 ghb_value_free(internalPlist);
1513         if (presetsPlist)
1514                 ghb_value_free(presetsPlist);
1515         if (prefsPlist)
1516                 ghb_value_free(prefsPlist);
1517 }
1518
1519 #if defined(_WIN32)
1520 gchar*
1521 FindFirstCDROM(void)
1522 {
1523         gint ii, drives;
1524         gchar drive[5];
1525
1526         strcpy(drive, "A:" G_DIR_SEPARATOR_S);
1527         drives = GetLogicalDrives();
1528         for (ii = 0; ii < 26; ii++)
1529         {
1530                 if (drives & 0x01)
1531                 {
1532                         guint dtype;
1533
1534                         drive[0] = 'A' + ii;
1535                         dtype = GetDriveType(drive);
1536                         if (dtype == DRIVE_CDROM)
1537                         {
1538                                 return g_strdup(drive);
1539                         }
1540                 }
1541                 drives >>= 1;
1542         }
1543         return NULL;
1544 }
1545 #endif
1546
1547 void
1548 ghb_prefs_load(signal_user_data_t *ud)
1549 {
1550         GValue *dict, *internal;
1551         GHashTableIter iter;
1552         gchar *key;
1553         GValue *gval, *path;
1554         
1555         g_debug("ghb_prefs_load");
1556         prefsPlist = load_plist("preferences");
1557         if (prefsPlist == NULL)
1558                 prefsPlist = ghb_dict_value_new();
1559         dict = plist_get_dict(prefsPlist, "Preferences");
1560         internal = plist_get_dict(internalPlist, "Preferences");
1561         if (dict == NULL && internal)
1562         {
1563                 dict = ghb_dict_value_new();
1564                 ghb_dict_insert(prefsPlist, g_strdup("Preferences"), dict);
1565
1566                 // Get defaults from internal defaults 
1567                 ghb_dict_iter_init(&iter, internal);
1568                 // middle (void*) cast prevents gcc warning "defreferencing type-punned
1569                 // pointer will break strict-aliasing rules"
1570                 while (g_hash_table_iter_next(
1571                                 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1572                 {
1573                         ghb_dict_insert(dict, g_strdup(key), ghb_value_dup(gval));
1574                 }
1575
1576                 const gchar *dir = g_get_user_special_dir (G_USER_DIRECTORY_DESKTOP);
1577                 if (dir == NULL)
1578                 {
1579                         dir = ".";
1580                 }
1581                 ghb_dict_insert(dict, 
1582                         g_strdup("ExportDirectory"), ghb_value_dup(ghb_string_value(dir)));
1583
1584                 dir = g_get_user_special_dir (G_USER_DIRECTORY_VIDEOS);
1585                 if (dir == NULL)
1586                 {
1587                         dir = ".";
1588                 }
1589                 ghb_dict_insert(dict, 
1590                         g_strdup("destination_dir"), ghb_value_dup(ghb_string_value(dir)));
1591
1592                 ghb_dict_insert(dict, 
1593                         g_strdup("SrtDir"), ghb_value_dup(ghb_string_value(dir)));
1594 #if defined(_WIN32)
1595                 gchar *source;
1596
1597                 source = FindFirstCDROM();
1598                 if (source == NULL)
1599                 {
1600                         source = g_strdup("C:" G_DIR_SEPARATOR_S);
1601                 }
1602                 ghb_dict_insert(dict, g_strdup("default_source"), 
1603                                                 ghb_value_dup(ghb_string_value(source)));
1604                 g_free(source);
1605 #endif
1606                 store_prefs();
1607         }
1608         // Read legacy default_preset preference and update accordingly
1609         path = ghb_dict_lookup(dict, "default_preset");
1610         if (path)
1611         {
1612                 gint *indices, len;
1613
1614                 if (G_VALUE_TYPE(path) == G_TYPE_STRING)
1615                 {
1616                         GValue *str = path;
1617
1618                         path = ghb_array_value_new(1);
1619                         ghb_array_append(path, ghb_value_dup(str));
1620                         indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
1621                         ghb_value_free(path);
1622                 }
1623                 else
1624                         indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
1625
1626                 if (indices)
1627                 {
1628                         presets_set_default(indices, len);
1629                         g_free(indices);
1630                 }
1631                 ghb_dict_remove(dict, "default_preset");
1632                 store_prefs();
1633         }
1634 }
1635
1636 static const gchar*
1637 get_preset_color(gint type, gboolean folder)
1638 {
1639         const gchar *color;
1640
1641         if (type == PRESETS_CUSTOM)
1642         {
1643                 color = "DimGray";
1644                 if (folder)
1645                 {
1646                         color = "black";
1647                 }
1648         }
1649         else
1650         {
1651                 color = "blue";
1652                 if (folder)
1653                 {
1654                         color = "Navy";
1655                 }
1656         }
1657         return color;
1658 }
1659
1660 void
1661 ghb_presets_list_init(
1662         signal_user_data_t *ud, 
1663         gint *indices,
1664         gint len)
1665 {
1666         GtkTreeView *treeview;
1667         GtkTreeIter iter, titer, *piter;
1668         
1669         GtkTreeStore *store;
1670         const gchar *preset;
1671         GtkTreePath *parent_path;
1672         const gchar *description;
1673         gboolean def;
1674         gint count, ii;
1675         GValue *dict;
1676         gint *more_indices;
1677         GValue *presets = NULL;
1678         
1679         g_debug("ghb_presets_list_init ()");
1680         more_indices = g_malloc((len+1)*sizeof(gint));
1681         memcpy(more_indices, indices, len*sizeof(gint));
1682         presets = presets_get_folder(presetsPlist, indices, len);
1683         if (presets == NULL)
1684         {
1685                 g_warning("Failed to find parent folder when adding child.");
1686                 return;
1687         }
1688         count = ghb_array_len(presets);
1689         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
1690         store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
1691         parent_path = ghb_tree_path_new_from_indices(indices, len);
1692         if (parent_path)
1693         {
1694                 gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &titer, parent_path);
1695                 piter = &titer;
1696                 gtk_tree_path_free(parent_path);
1697         }
1698         else
1699         {
1700                 piter = NULL;
1701         }
1702         for (ii = 0; ii < count; ii++)
1703         {
1704                 const gchar *color;
1705                 gint type;
1706                 gboolean folder;
1707
1708                 // Additional settings, add row
1709                 dict = ghb_array_get_nth(presets, ii);
1710                 preset = preset_get_name(dict);
1711                 more_indices[len] = ii;
1712                 def = preset_is_default(dict);
1713
1714                 description = ghb_presets_get_description(dict);
1715                 gtk_tree_store_append(store, &iter, piter);
1716                 type = ghb_preset_type(dict);
1717                 folder = ghb_preset_folder(dict);
1718                 color = get_preset_color(type, folder);
1719                 gtk_tree_store_set(store, &iter, 0, preset, 
1720                                                         1, def ? 800 : 400, 
1721                                                         2, def ? 2 : 0,
1722                                                         3, color, 
1723                                                         4, description,
1724                                                         5, type == PRESETS_BUILTIN ? 0 : 1,
1725                                                         -1);
1726                 if (def && piter)
1727                 {
1728                         GtkTreePath *path;
1729                         GtkTreeIter ppiter;
1730
1731                         if (gtk_tree_model_iter_parent(
1732                                 GTK_TREE_MODEL(store), &ppiter, piter))
1733                         {
1734                                 path = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &ppiter);
1735                                 gtk_tree_view_expand_row(treeview, path, FALSE);
1736                                 gtk_tree_path_free(path);
1737                         }
1738                         path = gtk_tree_model_get_path(GTK_TREE_MODEL(store), piter);
1739                         gtk_tree_view_expand_row(treeview, path, FALSE);
1740                         gtk_tree_path_free(path);
1741                 }
1742                 if (folder)
1743                 {
1744                         ghb_presets_list_init(ud, more_indices, len+1);
1745                         if (preset_folder_is_open(dict))
1746                         {
1747                                 GtkTreePath *path;
1748
1749                                 if (piter != NULL)
1750                                 {
1751                                         path = gtk_tree_model_get_path(GTK_TREE_MODEL(store), piter);
1752                                         gtk_tree_view_expand_row(treeview, path, FALSE);
1753                                         gtk_tree_path_free(path);
1754                                 }
1755                                 path = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &iter);
1756                                 gtk_tree_view_expand_row(treeview, path, FALSE);
1757                                 gtk_tree_path_free(path);
1758                         }
1759                 }
1760         }
1761         g_free(more_indices);
1762 }
1763
1764 static void
1765 presets_list_update_item(
1766         signal_user_data_t *ud, 
1767         gint *indices,
1768         gint len,
1769         gboolean recurse)
1770 {
1771         GtkTreeView *treeview;
1772         GtkTreeStore *store;
1773         GtkTreeIter iter;
1774         GtkTreePath *treepath;
1775         const gchar *name;
1776         const gchar *description;
1777         gint type;
1778         gboolean def, folder;
1779         GValue *dict;
1780         const gchar *color;
1781         
1782         g_debug("presets_list_update_item ()");
1783         dict = presets_get_dict(presetsPlist, indices, len);
1784         if (dict == NULL)
1785                 return;
1786         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
1787         store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
1788         treepath = ghb_tree_path_new_from_indices(indices, len);
1789         gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, treepath);
1790         // Additional settings, add row
1791         name = preset_get_name(dict);
1792         def = preset_is_default(dict);
1793
1794         description = ghb_presets_get_description(dict);
1795         type = ghb_preset_type(dict);
1796         folder = ghb_preset_folder(dict);
1797         color = get_preset_color(type, folder);
1798         gtk_tree_store_set(store, &iter, 0, name, 
1799                                                 1, def ? 800 : 400, 
1800                                                 2, def ? 2 : 0,
1801                                                 3, color,
1802                                                 4, description,
1803                                                 5, type == PRESETS_BUILTIN ? 0 : 1,
1804                                                 -1);
1805         if (recurse && folder)
1806         {
1807                 ghb_presets_list_init(ud, indices, len);
1808         }
1809 }
1810
1811 static void
1812 presets_list_insert(
1813         signal_user_data_t *ud, 
1814         gint *indices,
1815         gint len)
1816 {
1817         GtkTreeView *treeview;
1818         GtkTreeIter iter, titer, *piter;
1819         GtkTreeStore *store;
1820         const gchar *preset;
1821         const gchar *description;
1822         gint type;
1823         gboolean def, folder;
1824         gint count;
1825         GValue *presets;
1826         GtkTreePath *parent_path;
1827         GValue *dict;
1828         const gchar *color;
1829         
1830         g_debug("presets_list_insert ()");
1831         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
1832         store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
1833         presets = presets_get_folder(presetsPlist, indices, len-1);
1834         if (presets == NULL)
1835         {
1836                 g_warning("Failed to find parent folder while adding child.");
1837                 return;
1838         }
1839         parent_path = ghb_tree_path_new_from_indices(indices, len-1);
1840         if (parent_path)
1841         {
1842                 gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &titer, parent_path);
1843                 piter = &titer;
1844                 gtk_tree_path_free(parent_path);
1845         }
1846         else
1847         {
1848                 piter = NULL;
1849         }
1850         count = ghb_array_len(presets);
1851         if (indices[len-1] >= count)
1852                 return;
1853         // Additional settings, add row
1854         dict = ghb_array_get_nth(presets, indices[len-1]);
1855         preset = preset_get_name(dict);
1856         def = preset_is_default(dict);
1857
1858         description = ghb_presets_get_description(dict);
1859         gtk_tree_store_insert(store, &iter, piter, indices[len-1]);
1860         type = ghb_preset_type(dict);
1861         folder = ghb_preset_folder(dict);
1862         color = get_preset_color(type, folder);
1863         gtk_tree_store_set(store, &iter, 0, preset, 
1864                                                 1, def ? 800 : 400, 
1865                                                 2, def ? 2 : 0,
1866                                                 3, color,
1867                                                 4, description,
1868                                                 5, type == PRESETS_BUILTIN ? 0 : 1,
1869                                                 -1);
1870         if (folder)
1871         {
1872                 ghb_presets_list_init(ud, indices, len);
1873         }
1874 }
1875
1876 static void
1877 presets_list_remove(
1878         signal_user_data_t *ud, 
1879         gint *indices,
1880         gint len)
1881 {
1882         GtkTreeView *treeview;
1883         GtkTreePath *treepath;
1884         GtkTreeIter iter;
1885         GtkTreeStore *store;
1886         
1887         g_debug("presets_list_remove ()");
1888         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
1889         store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
1890         treepath = ghb_tree_path_new_from_indices(indices, len);
1891         if (treepath)
1892         {
1893                 if (gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, treepath))
1894                         gtk_tree_store_remove(store, &iter);
1895                 gtk_tree_path_free(treepath);
1896         }
1897 }
1898
1899 static void
1900 remove_std_presets(signal_user_data_t *ud)
1901 {
1902         gint count, ii;
1903         gint indices = 0;
1904
1905         count = ghb_array_len(presetsPlist);
1906         for (ii = count-1; ii >= 0; ii--)
1907         {
1908                 GValue *dict;
1909                 gint ptype;
1910
1911                 dict = ghb_array_get_nth(presetsPlist, ii);
1912                 ptype = ghb_value_int(preset_dict_get_value(dict, "Type"));
1913                 if (ptype == PRESETS_BUILTIN)
1914                 {
1915                         if (ghb_presets_remove(presetsPlist, &indices, 1))
1916                         {
1917                                 presets_list_remove(ud, &indices, 1);
1918                         }
1919                 }
1920         }
1921 }
1922
1923 void
1924 ghb_save_queue(GValue *queue)
1925 {
1926         pid_t pid;
1927         char *path;
1928
1929         pid = getpid();
1930         path = g_strdup_printf ("queue.%d", pid);
1931         store_plist(queue, path);
1932         g_free(path);
1933 }
1934
1935 GValue*
1936 ghb_load_queue()
1937 {
1938         GValue *queue;
1939         pid_t pid;
1940         char *path;
1941
1942         pid = getpid();
1943         path = g_strdup_printf ("queue.%d", pid);
1944         queue = load_plist(path);
1945         g_free(path);
1946         return queue;
1947 }
1948
1949 GValue*
1950 ghb_load_old_queue(int pid)
1951 {
1952         GValue *queue;
1953         char *path;
1954
1955         path = g_strdup_printf ("queue.%d", pid);
1956         queue = load_plist(path);
1957         g_free(path);
1958         return queue;
1959 }
1960
1961 void
1962 ghb_remove_old_queue_file(int pid)
1963 {
1964         char *path;
1965
1966         path = g_strdup_printf ("queue.%d", pid);
1967         remove_plist(path);
1968         g_free(path);
1969 }
1970
1971 void
1972 ghb_remove_queue_file()
1973 {
1974         pid_t pid;
1975         char *path;
1976
1977         pid = getpid();
1978         path = g_strdup_printf ("queue.%d", pid);
1979         remove_plist(path);
1980         g_free(path);
1981 }
1982
1983 typedef struct
1984 {
1985         gchar *mac_val;
1986         gchar *lin_val;
1987 } value_map_t;
1988
1989 static value_map_t vcodec_xlat[] =
1990 {
1991         {"MPEG-4 (FFmpeg)", "ffmpeg"},
1992         {"MPEG-4 (XviD)", "ffmpeg"},
1993         {"H.264 (x264)", "x264"},
1994         {"VP3 (Theora)", "theora"},
1995         {NULL,NULL}
1996 };
1997
1998 static value_map_t acodec_xlat[] =
1999 {
2000         {"AAC (faac)", "faac"},
2001         {"AAC (CoreAudio)", "faac"},
2002         {"AC3 Passthru", "ac3pass"},
2003         {"DTS Passthru", "dtspass"},
2004         {"MP3 (lame)", "lame"},
2005         {"Vorbis (vorbis)", "vorbis"},
2006         {NULL,NULL}
2007 };
2008
2009 value_map_t container_xlat[] =
2010 {
2011         {"MP4 file", "mp4"},
2012         {"M4V file", "mp4"},
2013         {"MKV file", "mkv"},
2014         {"AVI file", "mkv"},
2015         {"OGM file", "mkv"},
2016         {NULL, NULL}
2017 };
2018
2019 value_map_t framerate_xlat[] =
2020 {
2021         {"Same as source", "source"},
2022         {"5", "5"},
2023         {"10", "10"},
2024         {"12", "12"},
2025         {"15", "15"},
2026         {"23.976 (NTSC Film)", "23.976"},
2027         {"24", "24"},
2028         {"25 (PAL Film/Video)", "25"},
2029         {"29.97 (NTSC Video)", "29.97"},
2030         {NULL, NULL}
2031 };
2032
2033 value_map_t samplerate_xlat[] =
2034 {
2035         {"Auto", "source"},
2036         {"22.05", "22.05"},
2037         {"24", "24"},
2038         {"32", "32"},
2039         {"44.1", "44.1"},
2040         {"48", "48"},
2041         {NULL, NULL}
2042 };
2043
2044 value_map_t mix_xlat[] =
2045 {
2046         {"Mono", "mono"},
2047         {"Stereo", "stereo"},
2048         {"Dolby Surround", "dpl1"},
2049         {"Dolby Pro Logic II", "dpl2"},
2050         {"6-channel discrete", "6ch"},
2051         {"AC3 Passthru", "none"},
2052         {NULL, NULL}
2053 };
2054
2055 value_map_t deint_xlat[] =
2056 {
2057         {"0", "off"},
2058         {"1", "custom"},
2059         {"2", "fast"},
2060         {"3", "slow"},
2061         {"4", "slower"},
2062         {NULL, NULL}
2063 };
2064
2065 value_map_t denoise_xlat[] =
2066 {
2067         {"0", "off"},
2068         {"1", "custom"},
2069         {"2", "weak"},
2070         {"3", "medium"},
2071         {"4", "strong"},
2072         {NULL, NULL}
2073 };
2074
2075 value_map_t detel_xlat[] =
2076 {
2077         {"0", "off"},
2078         {"1", "custom"},
2079         {"2", "default"},
2080         {NULL, NULL}
2081 };
2082
2083 value_map_t decomb_xlat[] =
2084 {
2085         {"0", "off"},
2086         {"1", "custom"},
2087         {"2", "default"},
2088         {NULL, NULL}
2089 };
2090
2091 extern iso639_lang_t ghb_language_table[];
2092
2093 static GValue*
2094 export_lang_xlat2(GValue *lin_val)
2095 {
2096         GValue *gval;
2097
2098         if (lin_val == NULL) return NULL;
2099         gint ii;
2100         gchar *str;
2101
2102         str = ghb_value_string(lin_val);
2103         for (ii = 0; ghb_language_table[ii].eng_name; ii++)
2104         {
2105                 if (strcmp(str, ghb_language_table[ii].iso639_2) == 0)
2106                 {
2107                         const gchar *lang;
2108
2109                         if (ghb_language_table[ii].native_name[0] != 0)
2110                                 lang = ghb_language_table[ii].native_name;
2111                         else
2112                                 lang = ghb_language_table[ii].eng_name;
2113
2114                         gval = ghb_string_value_new(lang);
2115                         g_free(str);
2116                         return gval;
2117                 }
2118         }
2119         g_debug("Can't map language value: (%s)", str);
2120         g_free(str);
2121         return NULL;
2122 }
2123
2124 static GValue*
2125 export_subtitle_xlat2(GValue *lin_val)
2126 {
2127         gchar *str;
2128         GValue *gval;
2129
2130         if (lin_val == NULL) return NULL;
2131         str = ghb_value_string(lin_val);
2132         if (strcmp(str, "none") == 0)
2133         {
2134                 gval = ghb_string_value_new("None");
2135         }
2136         else if (strcmp(str, "auto") == 0)
2137         {
2138                 gval = ghb_string_value_new("Autoselect");
2139         }
2140         else
2141         {
2142                 gval = export_lang_xlat2(lin_val);
2143         }
2144         g_free(str);
2145         return gval;
2146 }
2147
2148 static GValue*
2149 import_lang_xlat2(GValue *mac_val)
2150 {
2151         GValue *gval;
2152
2153         if (mac_val == NULL) return NULL;
2154         gint ii;
2155         gchar *str;
2156
2157         str = ghb_value_string(mac_val);
2158         for (ii = 0; ghb_language_table[ii].eng_name; ii++)
2159         {
2160                 if ((strcmp(str, ghb_language_table[ii].eng_name) == 0) ||
2161                         (strcmp(str, ghb_language_table[ii].native_name) == 0))
2162                 {
2163                         gval = ghb_string_value_new(ghb_language_table[ii].iso639_2);
2164                         g_free(str);
2165                         return gval;
2166                 }
2167         }
2168         g_debug("Can't map language value: (%s)", str);
2169         g_free(str);
2170         return NULL;
2171 }
2172
2173 static GValue*
2174 import_subtitle_xlat2(GValue *mac_val)
2175 {
2176         gchar *str;
2177         GValue *gval;
2178
2179         if (mac_val == NULL) return NULL;
2180         str = ghb_value_string(mac_val);
2181         if (strcmp(str, "None") == 0)
2182         {
2183                 gval = ghb_string_value_new("none");
2184         }
2185         else if (strcmp(str, "Autoselect") == 0)
2186         {
2187                 gval = ghb_string_value_new("auto");
2188         }
2189         else
2190         {
2191                 gval = import_lang_xlat2(mac_val);
2192         }
2193         g_free(str);
2194         return gval;
2195 }
2196
2197 static GValue*
2198 export_audio_track_xlat2(GValue *lin_val)
2199 {
2200         gchar *str;
2201         GValue *gval = NULL;
2202
2203         if (lin_val == NULL) return NULL;
2204         str = ghb_value_string(lin_val);
2205         if (strcmp(str, "none") == 0)
2206         {
2207                 gval = ghb_int_value_new(1);
2208         }
2209         else
2210         {
2211                 gint val = ghb_value_int(lin_val) + 1;
2212                 gval = ghb_int_value_new(val);
2213         }
2214         g_free(str);
2215         return gval;
2216 }
2217
2218 static GValue*
2219 import_audio_track_xlat2(GValue *mac_val)
2220 {
2221         gint val;
2222         gchar *str;
2223         GValue *gval;
2224
2225         if (mac_val == NULL) return NULL;
2226         val = ghb_value_int(mac_val);
2227         if (val <= 0)
2228         {
2229                 val = 0;
2230         }
2231         else
2232         {
2233                 val--;
2234         }
2235         str = g_strdup_printf("%d", val);
2236         gval = ghb_string_value_new(str);
2237         g_free(str);
2238         return gval;
2239 }
2240
2241 static GValue*
2242 export_value_xlat2(value_map_t *value_map, GValue *lin_val, GType mac_type)
2243 {
2244         GValue *gval;
2245
2246         if (lin_val == NULL) return NULL;
2247         gint ii;
2248         gchar *str;
2249         GValue *sval;
2250
2251         str = ghb_value_string(lin_val);
2252         for (ii = 0; value_map[ii].mac_val; ii++)
2253         {
2254                 if (strcmp(str, value_map[ii].lin_val) == 0)
2255                 {
2256                         sval = ghb_string_value_new(value_map[ii].mac_val);
2257                         g_free(str);
2258                         gval = ghb_value_new(mac_type);
2259                         if (!g_value_transform(sval, gval))
2260                         {
2261                                 g_warning("can't transform");
2262                                 ghb_value_free(gval);
2263                                 ghb_value_free(sval);
2264                                 return NULL;
2265                         }
2266                         ghb_value_free(sval);
2267                         return gval;
2268                 }
2269         }
2270         g_debug("Can't map value: (%s)", str);
2271         g_free(str);
2272         return NULL;
2273 }
2274
2275 static void
2276 export_value_xlat(GValue *dict)
2277 {
2278         GValue *lin_val, *gval;
2279         const gchar *key;
2280
2281         key = "VideoEncoder";
2282         lin_val = ghb_dict_lookup(dict, key);
2283         gval = export_value_xlat2(vcodec_xlat, lin_val, G_TYPE_STRING);
2284         if (gval)
2285                 ghb_dict_insert(dict, g_strdup(key), gval);
2286         key = "FileFormat";
2287         lin_val = ghb_dict_lookup(dict, key);
2288         gval = export_value_xlat2(container_xlat, lin_val, G_TYPE_STRING);
2289         if (gval)
2290                 ghb_dict_insert(dict, g_strdup(key), gval);
2291         key = "VideoFramerate";
2292         lin_val = ghb_dict_lookup(dict, key);
2293         gval = export_value_xlat2(framerate_xlat, lin_val, G_TYPE_STRING);
2294         if (gval)
2295                 ghb_dict_insert(dict, g_strdup(key), gval);
2296         key = "PictureDetelecine";
2297         lin_val = ghb_dict_lookup(dict, key);
2298         gval = export_value_xlat2(detel_xlat, lin_val, G_TYPE_INT);
2299         if (gval)
2300                 ghb_dict_insert(dict, g_strdup(key), gval);
2301         key = "PictureDecomb";
2302         lin_val = ghb_dict_lookup(dict, key);
2303         gval = export_value_xlat2(decomb_xlat, lin_val, G_TYPE_INT);
2304         if (gval)
2305                 ghb_dict_insert(dict, g_strdup(key), gval);
2306         key = "PictureDeinterlace";
2307         lin_val = ghb_dict_lookup(dict, key);
2308         gval = export_value_xlat2(deint_xlat, lin_val, G_TYPE_INT);
2309         if (gval)
2310                 ghb_dict_insert(dict, g_strdup(key), gval);
2311         key = "PictureDenoise";
2312         lin_val = ghb_dict_lookup(dict, key);
2313         gval = export_value_xlat2(denoise_xlat, lin_val, G_TYPE_INT);
2314         if (gval)
2315                 ghb_dict_insert(dict, g_strdup(key), gval);
2316
2317         GValue *slist;
2318         GValue *sdict;
2319         gint count, ii;
2320
2321         slist = ghb_dict_lookup(dict, "SubtitleList");
2322         count = ghb_array_len(slist);
2323         for (ii = 0; ii < count; ii++)
2324         {
2325                 sdict = ghb_array_get_nth(slist, ii);
2326                 key = "SubtitleLanguage";
2327                 lin_val = ghb_dict_lookup(sdict, key);
2328                 gval = export_subtitle_xlat2(lin_val);
2329                 if (gval)
2330                         ghb_dict_insert(sdict, g_strdup(key), gval);
2331         }
2332
2333         GValue *alist;
2334         GValue *adict;
2335
2336         alist = ghb_dict_lookup(dict, "AudioList");
2337         count = ghb_array_len(alist);
2338         for (ii = 0; ii < count; ii++)
2339         {
2340                 adict = ghb_array_get_nth(alist, ii);
2341                 key = "AudioTrack";
2342                 lin_val = ghb_dict_lookup(adict, key);
2343                 gval = export_audio_track_xlat2(lin_val);
2344                 if (gval)
2345                         ghb_dict_insert(adict, g_strdup(key), gval);
2346                 key = "AudioEncoder";
2347                 lin_val = ghb_dict_lookup(adict, key);
2348                 gval = export_value_xlat2(acodec_xlat, lin_val, G_TYPE_STRING);
2349                 if (gval)
2350                         ghb_dict_insert(adict, g_strdup(key), gval);
2351                 key = "AudioSamplerate";
2352                 lin_val = ghb_dict_lookup(adict, key);
2353                 gval = export_value_xlat2(samplerate_xlat, lin_val, G_TYPE_STRING);
2354                 if (gval)
2355                         ghb_dict_insert(adict, g_strdup(key), gval);
2356                 key = "AudioMixdown";
2357                 lin_val = ghb_dict_lookup(adict, key);
2358                 gval = export_value_xlat2(mix_xlat, lin_val, G_TYPE_STRING);
2359                 if (gval)
2360                         ghb_dict_insert(adict, g_strdup(key), gval);
2361         }
2362 }
2363
2364
2365 static GValue*
2366 import_value_xlat2(
2367         GValue *defaults, 
2368         value_map_t *value_map,
2369         const gchar *key, 
2370         GValue *mac_val)
2371 {
2372         GValue *gval, *def_val;
2373
2374         if (mac_val == NULL) return NULL;
2375         def_val = ghb_dict_lookup(defaults, key);
2376         if (def_val)
2377         {
2378                 gint ii;
2379                 gchar *str;
2380                 GValue *sval;
2381
2382                 str = ghb_value_string(mac_val);
2383                 for (ii = 0; value_map[ii].mac_val; ii++)
2384                 {
2385                         if (strcmp(str, value_map[ii].mac_val) == 0)
2386                         {
2387                                 sval = ghb_string_value_new(value_map[ii].lin_val);
2388                                 g_free(str);
2389                                 gval = ghb_value_new(G_VALUE_TYPE(def_val));
2390                                 if (!g_value_transform(sval, gval))
2391                                 {
2392                                         g_warning("can't transform");
2393                                         ghb_value_free(gval);
2394                                         ghb_value_free(sval);
2395                                         return NULL;
2396                                 }
2397                                 ghb_value_free(sval);
2398                                 return gval;
2399                         }
2400                 }
2401                 g_free(str);
2402         }
2403         else
2404         {
2405                 gint ii;
2406                 gchar *str;
2407                 GValue *sval;
2408
2409                 str = ghb_value_string(mac_val);
2410                 for (ii = 0; value_map[ii].mac_val; ii++)
2411                 {
2412                         if (strcmp(str, value_map[ii].mac_val) == 0)
2413                         {
2414                                 sval = ghb_string_value_new(value_map[ii].lin_val);
2415                                 g_free(str);
2416                                 gval = ghb_value_new(G_VALUE_TYPE(mac_val));
2417                                 if (!g_value_transform(sval, gval))
2418                                 {
2419                                         g_warning("can't transform");
2420                                         ghb_value_free(gval);
2421                                         ghb_value_free(sval);
2422                                         return NULL;
2423                                 }
2424                                 ghb_value_free(sval);
2425                                 return gval;
2426                         }
2427                 }
2428                 g_free(str);
2429         }
2430         return NULL;
2431 }
2432
2433 static void
2434 import_value_xlat(GValue *dict)
2435 {
2436         GValue *defaults, *mac_val, *gval;
2437         const gchar *key;
2438
2439         defaults = plist_get_dict(internalPlist, "Presets");
2440         key = "VideoEncoder";
2441         mac_val = ghb_dict_lookup(dict, key);
2442         gval = import_value_xlat2(defaults, vcodec_xlat, key, mac_val);
2443         if (gval)
2444                 ghb_dict_insert(dict, g_strdup(key), gval);
2445         key = "FileFormat";
2446         mac_val = ghb_dict_lookup(dict, key);
2447         gval = import_value_xlat2(defaults, container_xlat, key, mac_val);
2448         if (gval)
2449                 ghb_dict_insert(dict, g_strdup(key), gval);
2450         key = "VideoFramerate";
2451         mac_val = ghb_dict_lookup(dict, key);
2452         gval = import_value_xlat2(defaults, framerate_xlat, key, mac_val);
2453         if (gval)
2454                 ghb_dict_insert(dict, g_strdup(key), gval);
2455         key = "PictureDetelecine";
2456         mac_val = ghb_dict_lookup(dict, key);
2457         gval = import_value_xlat2(defaults, detel_xlat, key, mac_val);
2458         if (gval)
2459                 ghb_dict_insert(dict, g_strdup(key), gval);
2460         key = "PictureDecomb";
2461         mac_val = ghb_dict_lookup(dict, key);
2462         gval = import_value_xlat2(defaults, decomb_xlat, key, mac_val);
2463         if (gval)
2464                 ghb_dict_insert(dict, g_strdup(key), gval);
2465         key = "PictureDeinterlace";
2466         mac_val = ghb_dict_lookup(dict, key);
2467         gval = import_value_xlat2(defaults, deint_xlat, key, mac_val);
2468         if (gval)
2469                 ghb_dict_insert(dict, g_strdup(key), gval);
2470         key = "PictureDenoise";
2471         mac_val = ghb_dict_lookup(dict, key);
2472         gval = import_value_xlat2(defaults, denoise_xlat, key, mac_val);
2473         if (gval)
2474                 ghb_dict_insert(dict, g_strdup(key), gval);
2475
2476
2477         GValue *sdeflist;
2478         GValue *sdefaults;
2479         GValue *slist;
2480         GValue *sdict;
2481         gint count, ii;
2482
2483         sdeflist = ghb_dict_lookup(defaults, "SubtitleList");
2484         if (sdeflist)
2485         {
2486                 slist = ghb_dict_lookup(dict, "SubtitleList");
2487                 if (slist)
2488                 {
2489                         sdefaults = ghb_array_get_nth(sdeflist, 0);
2490                         count = ghb_array_len(slist);
2491                         for (ii = 0; ii < count; ii++)
2492                         {
2493                                 sdict = ghb_array_get_nth(slist, ii);
2494                                 key = "SubtitleLanguage";
2495                                 mac_val = ghb_dict_lookup(sdict, key);
2496                                 gval = import_subtitle_xlat2(mac_val);
2497                                 if (gval)
2498                                         ghb_dict_insert(sdict, g_strdup(key), gval);
2499                         }
2500                 
2501                 }
2502                 else
2503                 {
2504                         key = "Subtitles";
2505                         mac_val = ghb_dict_lookup(dict, key);
2506                         slist = ghb_array_value_new(8);
2507                         ghb_dict_insert(dict, g_strdup("SubtitleList"), slist);
2508                         if (mac_val)
2509                         {
2510                                 gchar *lang;
2511         
2512                                 gval = import_subtitle_xlat2(mac_val);
2513                                 lang = ghb_value_string(gval);
2514                                 if (lang && strcasecmp(lang, "none") != 0 && !slist)
2515                                 {
2516                                         sdict = ghb_dict_value_new();
2517                                         ghb_array_append(slist, sdict);
2518                                         ghb_dict_insert(sdict, g_strdup("SubtitleLanguage"), gval);
2519                                         gval = ghb_dict_lookup(dict, "SubtitlesForced");
2520                                         if (gval != NULL)
2521                                         {
2522                                                 ghb_dict_insert(sdict, g_strdup("SubtitleForced"), 
2523                                                                                 ghb_value_dup(gval));
2524                                         }
2525                                         else
2526                                         {
2527                                                 ghb_dict_insert(sdict, g_strdup("SubtitleForced"), 
2528                                                                                 ghb_boolean_value_new(FALSE));
2529                                         }
2530                                         ghb_dict_insert(sdict, g_strdup("SubtitleBurned"),
2531                                                                         ghb_boolean_value_new(TRUE));
2532                                         ghb_dict_insert(sdict, g_strdup("SubtitleDefaultTrack"),
2533                                                                         ghb_boolean_value_new(FALSE));
2534                                 }
2535                                 else
2536                                 {
2537                                         ghb_value_free(gval);
2538                                 }
2539                                 if (lang)
2540                                         g_free(lang);
2541                         }
2542                 }
2543         }
2544         ghb_dict_remove(dict, "Subtitles");
2545         ghb_dict_remove(dict, "SubtitlesForced");
2546
2547
2548         GValue *alist;
2549         GValue *adict;
2550         GValue *adefaults;
2551         GValue *adeflist;
2552
2553         adeflist = ghb_dict_lookup(defaults, "AudioList");
2554         if (adeflist)
2555         {
2556                 adefaults = ghb_array_get_nth(adeflist, 0);
2557                 alist = ghb_dict_lookup(dict, "AudioList");
2558                 count = ghb_array_len(alist);
2559                 for (ii = 0; ii < count; ii++)
2560                 {
2561                         adict = ghb_array_get_nth(alist, ii);
2562                         key = "AudioTrack";
2563                         mac_val = ghb_dict_lookup(adict, key);
2564                         gval = import_audio_track_xlat2(mac_val);
2565                         if (gval)
2566                                 ghb_dict_insert(adict, g_strdup(key), gval);
2567                         key = "AudioEncoder";
2568                         mac_val = ghb_dict_lookup(adict, key);
2569                         gval = import_value_xlat2(adefaults, acodec_xlat, key, mac_val);
2570                         if (gval)
2571                                 ghb_dict_insert(adict, g_strdup(key), gval);
2572                         key = "AudioSamplerate";
2573                         mac_val = ghb_dict_lookup(adict, key);
2574                         gval = import_value_xlat2(adefaults, samplerate_xlat, key, mac_val);
2575                         if (gval)
2576                                 ghb_dict_insert(adict, g_strdup(key), gval);
2577                         key = "AudioMixdown";
2578                         mac_val = ghb_dict_lookup(adict, key);
2579                         gval = import_value_xlat2(adefaults, mix_xlat, key, mac_val);
2580                         if (gval)
2581                                 ghb_dict_insert(adict, g_strdup(key), gval);
2582
2583                         mac_val = ghb_dict_lookup(adict, "AudioTrackDRCSlider");
2584                         if (mac_val != NULL)
2585                         {
2586                                 gdouble drc;
2587                                 drc = ghb_value_double(mac_val);
2588                                 if (drc < 1.0 && drc > 0.0)
2589                                 {
2590                                         ghb_dict_insert(adict, g_strdup("AudioTrackDRCSlider"), 
2591                                                                         ghb_double_value_new(0.0));
2592                                 }
2593                         }
2594                 }
2595         }
2596 }
2597
2598 static void
2599 import_xlat_preset(GValue *dict)
2600 {
2601         gboolean uses_max;
2602         gint uses_pic;
2603         gint par;
2604         gint vqtype;
2605
2606         g_debug("import_xlat_preset ()");
2607         uses_max = ghb_value_boolean(
2608                                                 preset_dict_get_value(dict, "UsesMaxPictureSettings"));
2609         uses_pic = ghb_value_int(
2610                                                 preset_dict_get_value(dict, "UsesPictureSettings"));
2611         par = ghb_value_int(preset_dict_get_value(dict, "PicturePAR"));
2612         vqtype = ghb_value_int(preset_dict_get_value(dict, "VideoQualityType"));
2613
2614         if (uses_max || uses_pic == 2)
2615         {
2616                 ghb_dict_insert(dict, g_strdup("autoscale"), 
2617                                                 ghb_boolean_value_new(TRUE));
2618         }
2619         switch (par)
2620         {
2621         case 0:
2622         {
2623                 if (ghb_dict_lookup(dict, "PictureModulus") == NULL)
2624                         ghb_dict_insert(dict, g_strdup("PictureModulus"), 
2625                                                         ghb_int_value_new(16));
2626         } break;
2627         case 1:
2628         {
2629                 ghb_dict_insert(dict, g_strdup("PictureModulus"), 
2630                                                 ghb_int_value_new(1));
2631         } break;
2632         case 2:
2633         {
2634                 if (ghb_dict_lookup(dict, "PictureModulus") == NULL)
2635                         ghb_dict_insert(dict, g_strdup("PictureModulus"), 
2636                                                         ghb_int_value_new(16));
2637         } break;
2638         default:
2639         {
2640                 if (ghb_dict_lookup(dict, "PictureModulus") == NULL)
2641                         ghb_dict_insert(dict, g_strdup("PictureModulus"), 
2642                                                         ghb_int_value_new(16));
2643         } break;
2644         }
2645         // VideoQualityType/0/1/2 - vquality_type_/target/bitrate/constant
2646         switch (vqtype)
2647         {
2648         case 0:
2649         {
2650                 ghb_dict_insert(dict, g_strdup("vquality_type_target"), 
2651                                                 ghb_boolean_value_new(TRUE));
2652                 ghb_dict_insert(dict, g_strdup("vquality_type_bitrate"), 
2653                                                 ghb_boolean_value_new(FALSE));
2654                 ghb_dict_insert(dict, g_strdup("vquality_type_constant"), 
2655                                                 ghb_boolean_value_new(FALSE));
2656         } break;
2657         case 1:
2658         {
2659                 ghb_dict_insert(dict, g_strdup("vquality_type_target"), 
2660                                                 ghb_boolean_value_new(FALSE));
2661                 ghb_dict_insert(dict, g_strdup("vquality_type_bitrate"), 
2662                                                 ghb_boolean_value_new(TRUE));
2663                 ghb_dict_insert(dict, g_strdup("vquality_type_constant"), 
2664                                                 ghb_boolean_value_new(FALSE));
2665         } break;
2666         case 2:
2667         {
2668                 ghb_dict_insert(dict, g_strdup("vquality_type_target"), 
2669                                                 ghb_boolean_value_new(FALSE));
2670                 ghb_dict_insert(dict, g_strdup("vquality_type_bitrate"), 
2671                                                 ghb_boolean_value_new(FALSE));
2672                 ghb_dict_insert(dict, g_strdup("vquality_type_constant"), 
2673                                                 ghb_boolean_value_new(TRUE));
2674         } break;
2675         default:
2676         {
2677                 ghb_dict_insert(dict, g_strdup("vquality_type_target"), 
2678                                                 ghb_boolean_value_new(FALSE));
2679                 ghb_dict_insert(dict, g_strdup("vquality_type_bitrate"), 
2680                                                 ghb_boolean_value_new(FALSE));
2681                 ghb_dict_insert(dict, g_strdup("vquality_type_constant"), 
2682                                                 ghb_boolean_value_new(TRUE));
2683         } break;
2684         }
2685
2686         import_value_xlat(dict);
2687
2688         GValue *mode = ghb_dict_lookup(dict, "VideoFramerateMode");
2689         if (mode == NULL)
2690         {
2691                 GValue *fr = ghb_dict_lookup(dict, "VideoFramerate");
2692                 if (fr)
2693                 {
2694                         gchar *str;
2695                         gboolean pfr = FALSE;
2696                         GValue *pfr_val = ghb_dict_lookup(dict, "VideoFrameratePFR");
2697                         if (pfr_val)
2698                         {
2699                                 pfr = ghb_value_boolean(pfr_val);
2700                         }
2701                         str = ghb_value_string(fr);
2702                         if (strcmp(str, "source") == 0)
2703                         {
2704                                 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"), 
2705                                                                 ghb_boolean_value_new(FALSE));
2706                                 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"), 
2707                                                                 ghb_boolean_value_new(TRUE));
2708                         }
2709                         else if (!pfr)
2710                         {
2711                                 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"), 
2712                                                                 ghb_boolean_value_new(TRUE));
2713                                 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"), 
2714                                                                 ghb_boolean_value_new(FALSE));
2715                         }
2716                         else
2717                         {
2718                                 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"), 
2719                                                                 ghb_boolean_value_new(FALSE));
2720                                 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"), 
2721                                                                 ghb_boolean_value_new(FALSE));
2722                         }
2723             g_free(str);
2724                 }
2725         }
2726         else
2727         {
2728                 gchar *str;
2729                 str = ghb_value_string(mode);
2730                 if (strcmp(str, "cfr") == 0)
2731                 {
2732                                 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"), 
2733                                                                 ghb_boolean_value_new(TRUE));
2734                                 ghb_dict_insert(dict, g_strdup("VideoFrameratePFR"), 
2735                                                                 ghb_boolean_value_new(FALSE));
2736                                 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"), 
2737                                                                 ghb_boolean_value_new(FALSE));
2738                 }
2739                 else if (strcmp(str, "pfr") == 0)
2740                 {
2741                                 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"), 
2742                                                                 ghb_boolean_value_new(FALSE));
2743                                 ghb_dict_insert(dict, g_strdup("VideoFrameratePFR"), 
2744                                                                 ghb_boolean_value_new(TRUE));
2745                                 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"), 
2746                                                                 ghb_boolean_value_new(FALSE));
2747                 }
2748                 else
2749                 {
2750                                 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"), 
2751                                                                 ghb_boolean_value_new(FALSE));
2752                                 ghb_dict_insert(dict, g_strdup("VideoFrameratePFR"), 
2753                                                                 ghb_boolean_value_new(FALSE));
2754                                 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"), 
2755                                                                 ghb_boolean_value_new(TRUE));
2756                 }
2757                 g_free(str);
2758         }
2759
2760         gdouble vquality;
2761         const GValue *gval;
2762
2763         vquality = ghb_value_double(preset_dict_get_value(dict, "VideoQualitySlider"));
2764         if (vquality > 0.0 && vquality < 1.0)
2765         {
2766                 gint vcodec;
2767
2768                 gval = preset_dict_get_value(dict, "VideoEncoder");
2769                 vcodec = ghb_lookup_combo_int("VideoEncoder", gval);
2770                 switch (vcodec)
2771                 {
2772                         case HB_VCODEC_X264:
2773                         {
2774                                 vquality = 51. - vquality * 51.;
2775                         } break;
2776
2777                         case HB_VCODEC_FFMPEG:
2778                         {
2779                                 vquality = 31. - vquality * 30.;
2780                         } break;
2781
2782                         case HB_VCODEC_THEORA:
2783                         {
2784                                 vquality = vquality * 63.;
2785                         } break;
2786
2787                         default:
2788                         {
2789                                 vquality = 0.;
2790                         } break;
2791                 }
2792                 ghb_dict_insert(dict, g_strdup("VideoQualitySlider"), 
2793                                                 ghb_double_value_new(vquality));
2794         }
2795 }
2796
2797 static void
2798 import_xlat_presets(GValue *presets)
2799 {
2800         gint count, ii;
2801         GValue *dict;
2802         gboolean folder;
2803
2804         g_debug("import_xlat_presets ()");
2805         if (presets == NULL) return;
2806         count = ghb_array_len(presets);
2807         for (ii = 0; ii < count; ii++)
2808         {
2809                 dict = ghb_array_get_nth(presets, ii);
2810                 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
2811                 if (folder)
2812                 {
2813                         GValue *nested;
2814
2815                         nested = ghb_dict_lookup(dict, "ChildrenArray");
2816                         import_xlat_presets(nested);
2817                 }
2818                 else
2819                 {
2820                         import_xlat_preset(dict);
2821                 }
2822         }
2823 }
2824
2825 static void
2826 export_xlat_preset(GValue *dict)
2827 {
2828         gboolean autoscale, target, br, constant;
2829
2830         g_debug("export_xlat_prest ()");
2831         autoscale = ghb_value_boolean(preset_dict_get_value(dict, "autoscale"));
2832         target = ghb_value_boolean(
2833                                 preset_dict_get_value(dict, "vquality_type_target"));
2834         br = ghb_value_boolean(
2835                                 preset_dict_get_value(dict, "vquality_type_bitrate"));
2836         constant = ghb_value_boolean(
2837                                 preset_dict_get_value(dict, "vquality_type_constant"));
2838
2839         if (autoscale)
2840                 ghb_dict_insert(dict, g_strdup("UsesPictureSettings"), 
2841                                                 ghb_int_value_new(2));
2842         else
2843                 ghb_dict_insert(dict, g_strdup("UsesPictureSettings"), 
2844                                                 ghb_int_value_new(1));
2845
2846         // VideoQualityType/0/1/2 - vquality_type_/target/bitrate/constant
2847         if (target)
2848         {
2849                 ghb_dict_insert(dict, g_strdup("VideoQualityType"), 
2850                                                 ghb_int_value_new(0));
2851         }
2852         else if (br)
2853         {
2854                 ghb_dict_insert(dict, g_strdup("VideoQualityType"), 
2855                                                 ghb_int_value_new(1));
2856         }
2857         else if (constant)
2858         {
2859                 ghb_dict_insert(dict, g_strdup("VideoQualityType"), 
2860                                                 ghb_int_value_new(2));
2861         }
2862
2863         if (ghb_value_boolean(preset_dict_get_value(dict, "VideoFramerateCFR")))
2864         {
2865                 ghb_dict_insert(dict, g_strdup("VideoFramerateMode"), 
2866                                                 ghb_string_value_new("cfr"));
2867         }
2868         else if (ghb_value_boolean(preset_dict_get_value(dict, "VideoFrameratePFR")))
2869         {
2870                 ghb_dict_insert(dict, g_strdup("VideoFramerateMode"), 
2871                                                 ghb_string_value_new("pfr"));
2872         }
2873         else
2874         {
2875                 ghb_dict_insert(dict, g_strdup("VideoFramerateMode"), 
2876                                                 ghb_string_value_new("vfr"));
2877         }
2878
2879         GValue *alist, *adict;
2880         gint count, ii;
2881
2882         alist = ghb_dict_lookup(dict, "AudioList");
2883         count = ghb_array_len(alist);
2884         for (ii = 0; ii < count; ii++)
2885         {
2886                 gdouble drc;
2887
2888                 adict = ghb_array_get_nth(alist, ii);
2889                 drc = ghb_value_double(
2890                                 preset_dict_get_value(adict, "AudioTrackDRCSlider"));
2891                 if (drc < 1.0 && drc > 0.0)
2892                 {
2893                         ghb_dict_insert(adict, g_strdup("AudioTrackDRCSlider"), 
2894                                                         ghb_double_value_new(0.0));
2895                 }
2896         }
2897
2898         GValue *internal;
2899         GHashTableIter iter;
2900         gchar *key;
2901         GValue *value;
2902         internal = plist_get_dict(internalPlist, "XlatPresets");
2903         ghb_dict_iter_init(&iter, internal);
2904         // middle (void*) cast prevents gcc warning "defreferencing type-punned
2905         // pointer will break strict-aliasing rules"
2906         while (g_hash_table_iter_next(
2907                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&value))
2908         {
2909                 ghb_dict_remove(dict, key);
2910         }
2911
2912         // remove obsolete keys
2913         ghb_dict_remove(dict, "UsesMaxPictureSettings");
2914         ghb_dict_remove(dict, "VFR");
2915         ghb_dict_remove(dict, "VideoFrameratePFR");
2916
2917         export_value_xlat(dict);
2918 }
2919
2920 static void
2921 export_xlat_presets(GValue *presets)
2922 {
2923         gint count, ii;
2924         GValue *dict;
2925         gboolean folder;
2926
2927         if (presets == NULL) return;
2928         count = ghb_array_len(presets);
2929         for (ii = 0; ii < count; ii++)
2930         {
2931                 dict = ghb_array_get_nth(presets, ii);
2932                 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
2933                 if (folder)
2934                 {
2935                         GValue *nested;
2936
2937                         nested = ghb_dict_lookup(dict, "ChildrenArray");
2938                         export_xlat_presets(nested);
2939                 }
2940                 else
2941                 {
2942                         export_xlat_preset(dict);
2943                 }
2944         }
2945 }
2946
2947 static guint prefs_timeout_id = 0;
2948
2949 static gboolean
2950 delayed_store_prefs(gpointer data)
2951 {
2952         store_plist(prefsPlist, "preferences");
2953         prefs_timeout_id = 0;
2954         return FALSE;
2955 }
2956
2957 static void
2958 store_presets()
2959 {
2960         GValue *export;
2961
2962         export = ghb_value_dup(presetsPlist);
2963         export_xlat_presets(export);
2964         store_plist(export, "presets");
2965         ghb_value_free(export);
2966 }
2967
2968 static void
2969 store_prefs(void)
2970 {
2971         if (prefs_timeout_id != 0)
2972         {
2973                 GMainContext *mc;
2974                 GSource *source;
2975
2976                 mc = g_main_context_default();
2977                 source = g_main_context_find_source_by_id(mc, prefs_timeout_id);
2978                 if (source != NULL)
2979                         g_source_destroy(source);
2980         }
2981         prefs_timeout_id = g_timeout_add_seconds(1, (GSourceFunc)delayed_store_prefs, NULL);
2982 }
2983
2984 void
2985 ghb_presets_reload(signal_user_data_t *ud)
2986 {
2987         GValue *std_presets;
2988         gint count, ii;
2989         int *indices, len;
2990
2991         g_debug("ghb_presets_reload()\n");
2992         std_presets = ghb_resource_get("standard-presets");
2993         if (std_presets == NULL) return;
2994
2995         remove_std_presets(ud);
2996         indices = presets_find_default(presetsPlist, &len);
2997         if (indices)
2998         {
2999                 presets_clear_default(std_presets);
3000                 g_free(indices);
3001         }
3002         // Merge the keyfile contents into our presets
3003         count = ghb_array_len(std_presets);
3004         for (ii = count-1; ii >= 0; ii--)
3005         {
3006                 GValue *std_dict;
3007                 GValue *copy_dict;
3008                 gint indices = 0;
3009
3010                 std_dict = ghb_array_get_nth(std_presets, ii);
3011                 copy_dict = ghb_value_dup(std_dict);
3012                 ghb_dict_insert(copy_dict, g_strdup("PresetBuildNumber"), 
3013                                                 ghb_int64_value_new(hb_get_build(NULL)));
3014                 ghb_presets_insert(presetsPlist, copy_dict, &indices, 1);
3015                 presets_list_insert(ud, &indices, 1);
3016         }
3017         import_xlat_presets(presetsPlist);
3018         store_presets();
3019 }
3020
3021 static gboolean
3022 check_old_presets()
3023 {
3024         gint count, ii;
3025
3026         count = ghb_array_len(presetsPlist);
3027         for (ii = count-1; ii >= 0; ii--)
3028         {
3029                 GValue *dict;
3030                 GValue *type;
3031
3032                 dict = ghb_array_get_nth(presetsPlist, ii);
3033                 type = ghb_dict_lookup(dict, "Type");
3034                 if (type == NULL)
3035                         return TRUE;
3036         }
3037         return FALSE;
3038 }
3039
3040 static void
3041 replace_standard_presets()
3042 {
3043         GValue *std_presets;
3044         int *indices, len;
3045         gint count, ii;
3046
3047         count = ghb_array_len(presetsPlist);
3048         for (ii = count-1; ii >= 0; ii--)
3049         {
3050                 GValue *dict;
3051                 gint ptype;
3052
3053                 dict = ghb_array_get_nth(presetsPlist, ii);
3054                 ptype = ghb_value_int(preset_dict_get_value(dict, "Type"));
3055                 if (ptype == PRESETS_BUILTIN)
3056                 {
3057                         gint indices = 0;
3058                         ghb_presets_remove(presetsPlist, &indices, 1);
3059                 }
3060         }
3061
3062         std_presets = ghb_resource_get("standard-presets");
3063         if (std_presets == NULL) return;
3064
3065         indices = presets_find_default(presetsPlist, &len);
3066         if (indices)
3067         {
3068                 presets_clear_default(std_presets);
3069                 g_free(indices);
3070         }
3071         // Merge the keyfile contents into our presets
3072         count = ghb_array_len(std_presets);
3073         for (ii = count-1; ii >= 0; ii--)
3074         {
3075                 GValue *std_dict;
3076                 GValue *copy_dict;
3077                 gint indices = 0;
3078
3079                 std_dict = ghb_array_get_nth(std_presets, ii);
3080                 copy_dict = ghb_value_dup(std_dict);
3081                 ghb_dict_insert(copy_dict, g_strdup("PresetBuildNumber"), 
3082                                                 ghb_int64_value_new(hb_get_build(NULL)));
3083                 ghb_presets_insert(presetsPlist, copy_dict, &indices, 1);
3084         }
3085         import_xlat_presets(presetsPlist);
3086         store_presets();
3087 }
3088
3089 static void
3090 update_standard_presets(signal_user_data_t *ud)
3091 {
3092         gint count, ii;
3093
3094         count = ghb_array_len(presetsPlist);
3095         for (ii = count-1; ii >= 0; ii--)
3096         {
3097                 GValue *dict;
3098                 const GValue *gval;
3099                 gint64 build;
3100                 gint type;
3101
3102                 dict = ghb_array_get_nth(presetsPlist, ii);
3103                 gval = ghb_dict_lookup(dict, "Type");
3104                 if (gval == NULL)
3105                 {
3106                         // Old preset that doesn't have a Type
3107                         replace_standard_presets();
3108                         return;
3109                 }
3110                         
3111                 type = ghb_value_int(gval);
3112                 if (type == 0)
3113                 {
3114                         gval = ghb_dict_lookup(dict, "PresetBuildNumber");
3115                         if (gval == NULL)
3116                         {
3117                                 // Old preset that doesn't have a build number
3118                                 replace_standard_presets();
3119                                 return;
3120                         }
3121
3122                         build = ghb_value_int64(gval);
3123                         if (build != hb_get_build(NULL))
3124                         {
3125                                 // Build number does not match
3126                                 replace_standard_presets();
3127                                 return;
3128                         }
3129                 }
3130         }
3131         return;
3132 }
3133
3134 void
3135 ghb_presets_load(signal_user_data_t *ud)
3136 {
3137         presetsPlist = load_plist("presets");
3138         if (presetsPlist == NULL)
3139         {
3140                 presetsPlist = ghb_value_dup(ghb_resource_get("standard-presets"));
3141                 import_xlat_presets(presetsPlist);
3142                 store_presets();
3143         }
3144         else if (G_VALUE_TYPE(presetsPlist) == ghb_dict_get_type())
3145         { // Presets is older dictionary format. Convert to array
3146                 ghb_value_free(presetsPlist);
3147                 presetsPlist = ghb_value_dup(ghb_resource_get("standard-presets"));
3148                 import_xlat_presets(presetsPlist);
3149                 store_presets();
3150         }
3151         else if (check_old_presets())
3152         {
3153                 ghb_value_free(presetsPlist);
3154                 presetsPlist = ghb_value_dup(ghb_resource_get("standard-presets"));
3155                 import_xlat_presets(presetsPlist);
3156                 store_presets();
3157         }
3158         update_standard_presets(ud);
3159         import_xlat_presets(presetsPlist);
3160 }
3161
3162 static void
3163 settings_save(signal_user_data_t *ud, const GValue *path)
3164 {
3165         GValue *dict, *internal;
3166         GHashTableIter iter;
3167         gchar *key;
3168         GValue *value;
3169         gint *indices, len, count;
3170         gint *def_indices, def_len;
3171         const gchar *name;
3172         gboolean replace = FALSE;
3173
3174         g_debug("settings_save");
3175         if (internalPlist == NULL) return;
3176         count = ghb_array_len(path);
3177         name = g_value_get_string(ghb_array_get_nth(path, count-1));
3178         indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
3179         if (indices)
3180         {
3181                 if (ghb_presets_get_folder(presetsPlist, indices, len))
3182                 {
3183                         gchar *message;
3184                         message = g_strdup_printf(
3185                                                 "%s: Folder already exists.\n"
3186                                                 "You can not replace it with a preset.",
3187                                                 name);
3188                         ghb_message_dialog(GTK_MESSAGE_ERROR, message, "Cancel", NULL);
3189                         g_free(message);
3190                         return;
3191                 }
3192                 dict = ghb_dict_value_new();
3193                 ghb_presets_replace(presetsPlist, dict, indices, len);
3194                 replace = TRUE;
3195         }
3196         else
3197         {
3198                 indices = presets_find_pos(path, PRESETS_CUSTOM, &len);
3199                 if (indices)
3200                 {
3201                         dict = ghb_dict_value_new();
3202                         ghb_presets_insert(presetsPlist, dict, indices, len);
3203                 }
3204                 else
3205                 {
3206                         g_warning("failed to find insert path");
3207                         return;
3208                 }
3209         }
3210         current_preset = dict;
3211         ghb_settings_set_int64(ud->settings, "Type", PRESETS_CUSTOM);
3212         ghb_settings_set_int64(ud->settings, "PresetBuildNumber", hb_get_build(NULL));
3213
3214         internal = plist_get_dict(internalPlist, "Presets");
3215         ghb_dict_iter_init(&iter, internal);
3216         // middle (void*) cast prevents gcc warning "defreferencing type-punned
3217         // pointer will break strict-aliasing rules"
3218         while (g_hash_table_iter_next(
3219                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&value))
3220         {
3221                 const GValue *gval;
3222
3223                 gval = ghb_settings_get_value(ud->settings, key);
3224                 if (gval == NULL)
3225                 {
3226                         continue;
3227                 }
3228                 ghb_dict_insert(dict, g_strdup(key), ghb_value_dup(gval));
3229         }
3230         internal = plist_get_dict(internalPlist, "XlatPresets");
3231         ghb_dict_iter_init(&iter, internal);
3232         // middle (void*) cast prevents gcc warning "defreferencing type-punned
3233         // pointer will break strict-aliasing rules"
3234         while (g_hash_table_iter_next(
3235                         &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&value))
3236         {
3237                 const GValue *gval;
3238
3239                 gval = ghb_settings_get_value(ud->settings, key);
3240                 if (gval == NULL)
3241                 {
3242                         continue;
3243                 }
3244                 ghb_dict_insert(dict, g_strdup(key), ghb_value_dup(gval));
3245         }
3246         ghb_dict_insert(dict, g_strdup("PresetName"), ghb_string_value_new(name));
3247         if (replace)
3248         {
3249                 def_indices = presets_find_default(presetsPlist, &def_len);
3250                 if (def_indices != NULL && 
3251                         preset_path_cmp(indices, len, def_indices, def_len) != 0)
3252                 {
3253                         ghb_dict_insert(dict, g_strdup("Default"), 
3254                                                         ghb_boolean_value_new(FALSE));
3255                 }
3256                 presets_list_update_item(ud, indices, len, FALSE);
3257         }
3258         else
3259         {
3260                 ghb_dict_insert(dict, g_strdup("Default"), 
3261                                                 ghb_boolean_value_new(FALSE));
3262                 presets_list_insert(ud, indices, len);
3263         }
3264         if (!ghb_settings_get_boolean( ud->settings, "PictureWidthEnable"))
3265         {
3266                 ghb_dict_remove(dict, "PictureWidth");
3267         }
3268         if (!ghb_settings_get_boolean( ud->settings, "PictureHeightEnable"))
3269         {
3270                 ghb_dict_remove(dict, "PictureHeight");
3271         }
3272         ghb_dict_insert(dict, g_strdup("autoscale"), 
3273                 ghb_boolean_value_new(
3274                         !ghb_settings_get_boolean( ud->settings, "PictureWidthEnable") &&
3275                         !ghb_settings_get_boolean( ud->settings, "PictureHeightEnable")
3276                 )
3277         );
3278         store_presets();
3279         ud->dont_clear_presets = TRUE;
3280         // Make the new preset the selected item
3281         ghb_select_preset2(ud->builder, indices, len);
3282         g_free(indices);
3283         ud->dont_clear_presets = FALSE;
3284         return;
3285 }
3286
3287 static void
3288 folder_save(signal_user_data_t *ud, const GValue *path)
3289 {
3290         GValue *dict, *folder;
3291         gint *indices, len, count;
3292         const gchar *name;
3293
3294         count = ghb_array_len(path);
3295         name = g_value_get_string(ghb_array_get_nth(path, count-1));
3296         indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
3297         if (indices)
3298         {
3299                 if (!ghb_presets_get_folder(presetsPlist, indices, len))
3300                 {
3301                         gchar *message;
3302                         message = g_strdup_printf(
3303                                                 "%s: Preset already exists.\n"
3304                                                 "You can not replace it with a folder.",
3305                                                 name);
3306                         ghb_message_dialog(GTK_MESSAGE_ERROR, message, "Cancel", NULL);
3307                         g_free(message);
3308                         g_free(indices);
3309                         return;
3310                 }
3311                 // Already exists, update its description
3312                 dict = presets_get_dict(presetsPlist, indices, len);
3313                 ghb_dict_insert(dict, g_strdup("PresetDescription"), 
3314                         ghb_value_dup(preset_dict_get_value(
3315                                 ud->settings, "PresetDescription")));
3316                 presets_list_update_item(ud, indices, len, FALSE);
3317                 g_free(indices);
3318                 store_presets();
3319                 return;
3320         }
3321         else
3322         {
3323                 indices = presets_find_pos(path, PRESETS_CUSTOM, &len);
3324                 if (indices)
3325                 {
3326                         dict = ghb_dict_value_new();
3327                         ghb_presets_insert(presetsPlist, dict, indices, len);
3328                 }
3329                 else
3330                 {
3331                         g_warning("failed to find insert path");
3332                         return;
3333                 }
3334         }
3335         ghb_dict_insert(dict, g_strdup("PresetDescription"), 
3336                 ghb_value_dup(preset_dict_get_value(
3337                         ud->settings, "PresetDescription")));
3338         ghb_dict_insert(dict, g_strdup("PresetName"), ghb_string_value_new(name));
3339         folder = ghb_array_value_new(8);
3340         ghb_dict_insert(dict, g_strdup("ChildrenArray"), folder);
3341         ghb_dict_insert(dict, g_strdup("Type"),
3342                                                         ghb_int64_value_new(PRESETS_CUSTOM));
3343         ghb_dict_insert(dict, g_strdup("Folder"), ghb_boolean_value_new(TRUE));
3344
3345         presets_list_insert(ud, indices, len);
3346         g_free(indices);
3347         store_presets();
3348         return;
3349 }
3350
3351 void
3352 ghb_presets_list_default(signal_user_data_t *ud)
3353 {
3354         GtkTreeView *treeview;
3355         GtkTreePath *treepath;
3356         GtkTreeIter iter;
3357         GtkTreeStore *store;
3358         gint *indices, len;
3359         
3360         g_debug("ghb_presets_list_default ()");
3361         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
3362         store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
3363         indices = presets_find_default(presetsPlist, &len);
3364         if (indices == NULL) return;
3365         treepath = ghb_tree_path_new_from_indices(indices, len);
3366         if (treepath)
3367         {
3368                 if (gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, treepath))
3369                 {
3370                         gtk_tree_store_set(store, &iter, 
3371                                                 1, 800, 
3372                                                 2, 2 ,
3373                                                 -1);
3374                 }
3375                 gtk_tree_path_free(treepath);
3376         }
3377         g_free(indices);
3378 }
3379
3380 void
3381 ghb_presets_list_clear_default(signal_user_data_t *ud)
3382 {
3383         GtkTreeView *treeview;
3384         GtkTreePath *treepath;
3385         GtkTreeIter iter;
3386         GtkTreeStore *store;
3387         gint *indices, len;
3388         
3389         g_debug("ghb_presets_list_clear_default ()");
3390         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
3391         store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
3392         indices = presets_find_default(presetsPlist, &len);
3393         if (indices == NULL) return;
3394         treepath = ghb_tree_path_new_from_indices(indices, len);
3395         if (treepath)
3396         {
3397                 if (gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, treepath))
3398                 {
3399                         gtk_tree_store_set(store, &iter, 
3400                                                 1, 400, 
3401                                                 2, 0 ,
3402                                                 -1);
3403                 }
3404                 gtk_tree_path_free(treepath);
3405         }
3406         g_free(indices);
3407 }
3408
3409 static void
3410 update_audio_presets(signal_user_data_t *ud)
3411 {
3412         g_debug("update_audio_presets");
3413         const GValue *audio_list;
3414
3415         audio_list = ghb_settings_get_value(ud->settings, "audio_list");
3416         ghb_settings_set_value(ud->settings, "AudioList", audio_list);
3417 }
3418
3419 static void
3420 update_subtitle_presets(signal_user_data_t *ud)
3421 {
3422         g_debug("update_subtitle_presets");
3423         const GValue *subtitle_list, *subtitle;
3424         GValue *slist, *dict;
3425         gint count, ii, source;
3426
3427         subtitle_list = ghb_settings_get_value(ud->settings, "subtitle_list");
3428         slist = ghb_array_value_new(8);
3429         count = ghb_array_len(subtitle_list);
3430         for (ii = 0; ii < count; ii++)
3431         {
3432                 subtitle = ghb_array_get_nth(subtitle_list, ii);
3433                 source = ghb_settings_get_int(subtitle, "SubtitleSource");
3434                 if (source != SRTSUB)
3435                 {
3436                         dict = ghb_value_dup(subtitle);
3437                         ghb_array_append(slist, dict);
3438                 }
3439         }
3440         ghb_settings_take_value(ud->settings, "SubtitleList", slist);
3441 }
3442
3443 G_MODULE_EXPORT void
3444 presets_menu_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3445 {
3446         GtkMenu *menu;
3447
3448         menu = GTK_MENU(GHB_WIDGET(ud->builder, "presets_menu"));
3449         gtk_menu_popup(menu, NULL, NULL, NULL, NULL, 1, 
3450                                         gtk_get_current_event_time());
3451 }
3452
3453 G_MODULE_EXPORT void
3454 preset_import_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3455 {
3456         GtkWidget *dialog;
3457         GtkResponseType response;
3458         gchar *exportDir;
3459         gchar *filename;
3460         GtkFileFilter *filter;
3461
3462         g_debug("preset_import_clicked_cb ()");
3463
3464         dialog = gtk_file_chooser_dialog_new("Import Preset", NULL,
3465                                 GTK_FILE_CHOOSER_ACTION_OPEN,
3466                                 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
3467                                 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
3468                                 NULL);
3469
3470         filter = gtk_file_filter_new();
3471         gtk_file_filter_set_name(filter, "All (*)");
3472         gtk_file_filter_add_pattern(filter, "*");
3473         gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog), filter);
3474
3475         filter = gtk_file_filter_new();
3476         gtk_file_filter_set_name(filter, "Presets (*.plist)");
3477         gtk_file_filter_add_pattern(filter, "*.plist");
3478         gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog), filter);
3479         gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(dialog), filter);
3480
3481         exportDir = ghb_settings_get_string(ud->settings, "ExportDirectory");
3482         if (exportDir == NULL || exportDir[0] == '\0')
3483         {
3484                 exportDir = g_strdup(".");
3485         }
3486         gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), exportDir);
3487         g_free(exportDir);
3488
3489         response = gtk_dialog_run(GTK_DIALOG(dialog));
3490         gtk_widget_hide(dialog);
3491         if (response == GTK_RESPONSE_ACCEPT)
3492         {
3493                 GValue *dict, *array;
3494                 gchar  *dir;
3495                 gint count, ii;
3496
3497                 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
3498
3499                 // import the preset
3500                 if (!g_file_test(filename, G_FILE_TEST_IS_REGULAR))
3501                 {
3502                         gtk_widget_destroy(dialog);
3503                         g_free(filename);
3504                         return;
3505                 }
3506                 array = ghb_plist_parse_file(filename);
3507
3508                 import_xlat_presets(array);
3509                 presets_clear_default(array);
3510                 presets_customize(array);
3511
3512                 count = ghb_array_len(array);
3513                 for (ii = 0; ii < count; ii++)
3514                 {
3515                         GValue *path, *name;
3516                         gint *indices, len;
3517                         gint index = 1;
3518
3519                         dict = ghb_array_get_nth(array, ii);
3520                         path = ghb_array_value_new(1);
3521                         name = ghb_value_dup(ghb_dict_lookup(dict, "PresetName"));
3522                         ghb_array_append(path, name);
3523                         indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
3524                         // Modify the preset name till we make it unique
3525                         while (indices != NULL)
3526                         {
3527                                 gchar *str = ghb_value_string(name);
3528
3529                                 ghb_value_free(path);
3530                                 g_free(indices);
3531
3532                                 str = g_strdup_printf("%s %d", str, index);
3533                                 path = ghb_array_value_new(1);
3534                                 name = ghb_string_value_new(str);
3535                                 ghb_array_append(path, name);
3536                                 g_free(str);
3537
3538                                 index++;
3539                                 indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
3540                         }
3541                         ghb_dict_insert(dict, g_strdup("PresetName"), ghb_value_dup(name));
3542                         indices = presets_find_pos(path, PRESETS_CUSTOM, &len);
3543                         ghb_presets_insert(presetsPlist, ghb_value_dup(dict), indices, len);
3544                         presets_list_insert(ud, indices, len);
3545                         ghb_value_free(path);
3546                 }
3547                 ghb_value_free(array);
3548
3549                 exportDir = ghb_settings_get_string(ud->settings, "ExportDirectory");
3550                 dir = g_path_get_dirname(filename);
3551                 if (strcmp(dir, exportDir) != 0)
3552                 {
3553                         ghb_settings_set_string(ud->settings, "ExportDirectory", dir);
3554                         ghb_pref_save(ud->settings, "ExportDirectory");
3555                 }
3556                 g_free(filename);
3557                 g_free(exportDir);
3558                 g_free(dir);
3559                 store_presets();
3560         }
3561         gtk_widget_destroy(dialog);
3562 }
3563
3564 G_MODULE_EXPORT void
3565 preset_export_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3566 {
3567         GtkWidget *dialog;
3568         GtkResponseType response;
3569         GValue *preset;
3570         const gchar *name = "";
3571         gint count, *indices, len;
3572         gchar *exportDir;
3573         gchar *filename;
3574
3575         g_debug("preset_export_clicked_cb ()");
3576         preset = ghb_settings_get_value (ud->settings, "preset_selection");
3577         if (preset == NULL)
3578                 return;
3579
3580         count = ghb_array_len(preset);
3581         if (count <= 0)
3582                 return;
3583
3584         name = g_value_get_string(ghb_array_get_nth(preset, count-1));
3585
3586         dialog = gtk_file_chooser_dialog_new("Export Preset", NULL,
3587                                 GTK_FILE_CHOOSER_ACTION_SAVE,
3588                                 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
3589                                 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
3590                                 NULL);
3591
3592         exportDir = ghb_settings_get_string(ud->settings, "ExportDirectory");
3593         if (exportDir == NULL || exportDir[0] == '\0')
3594         {
3595                 exportDir = g_strdup(".");
3596         }
3597         filename = g_strdup_printf("%s.plist", name);
3598         gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), exportDir);
3599         gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), filename);
3600         g_free(filename);
3601         g_free(exportDir);
3602
3603         indices = ghb_preset_indices_from_path(presetsPlist, preset, &len);
3604         if (indices == NULL)
3605                 return;
3606
3607         response = gtk_dialog_run(GTK_DIALOG(dialog));
3608         gtk_widget_hide(dialog);
3609         if (response == GTK_RESPONSE_ACCEPT)
3610         {
3611                 GValue *export, *dict, *array;
3612                 FILE *file;
3613                 gchar  *dir;
3614
3615                 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
3616
3617                 // export the preset
3618                 dict = presets_get_dict(presetsPlist, indices, len);
3619
3620                 export = ghb_value_dup(dict);
3621                 array = ghb_array_value_new(1);
3622                 ghb_array_append(array, export);
3623                 presets_clear_default(array);
3624                 presets_customize(array);
3625                 export_xlat_presets(array);
3626
3627                 file = g_fopen(filename, "w");
3628                 if (file != NULL)
3629                 {
3630                         ghb_plist_write(file, array);
3631                         fclose(file);
3632                 }
3633                 ghb_value_free(array);
3634
3635                 exportDir = ghb_settings_get_string(ud->settings, "ExportDirectory");
3636                 dir = g_path_get_dirname(filename);
3637                 if (strcmp(dir, exportDir) != 0)
3638                 {
3639                         ghb_settings_set_string(ud->settings, "ExportDirectory", dir);
3640                         ghb_pref_save(ud->settings, "ExportDirectory");
3641                 }
3642                 g_free(exportDir);
3643                 g_free(dir);
3644                 g_free(filename);
3645         }
3646         gtk_widget_destroy(dialog);
3647         g_free(indices);
3648 }
3649
3650 G_MODULE_EXPORT void
3651 presets_new_folder_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3652 {
3653         GtkWidget *dialog;
3654         GtkEntry *entry;
3655         GtkTextView *desc;
3656         GtkResponseType response;
3657         GValue *preset, *dict;
3658         const gchar *name = "";
3659         const gchar *description = "";
3660         gint count, *indices, len;
3661
3662         g_debug("presets_new_folder_clicked_cb ()");
3663         preset = ghb_settings_get_value (ud->settings, "preset_selection");
3664
3665         count = ghb_array_len(preset);
3666         if (count > 0)
3667                 name = g_value_get_string(ghb_array_get_nth(preset, count-1));
3668         else
3669                 count = 1;
3670
3671         indices = ghb_preset_indices_from_path(presetsPlist, preset, &len);
3672         dict = presets_get_dict(presetsPlist, indices, len);
3673         if (dict != NULL)
3674         {
3675                 description = g_value_get_string(
3676                                                         ghb_dict_lookup(dict, "PresetDescription"));
3677                 ghb_ui_update(ud, "FolderDescription", ghb_string_value(description));
3678         }
3679
3680         desc = GTK_TEXT_VIEW(GHB_WIDGET(ud->builder, "FolderDescription"));
3681         dialog = GHB_WIDGET(ud->builder, "preset_new_folder_dialog");
3682         entry = GTK_ENTRY(GHB_WIDGET(ud->builder, "FolderName"));
3683         gtk_entry_set_text(entry, name);
3684         response = gtk_dialog_run(GTK_DIALOG(dialog));
3685         gtk_widget_hide(dialog);
3686         if (response == GTK_RESPONSE_OK)
3687         {
3688                 // save the preset
3689                 const gchar *name = gtk_entry_get_text(entry);
3690                 GValue *dest;
3691
3692                 if (count > MAX_NESTED_PRESET-1)
3693                         count = MAX_NESTED_PRESET-1;
3694
3695                 dest = ghb_array_value_new(MAX_NESTED_PRESET);
3696                 if (indices != NULL)
3697                 {
3698                         gint ptype;
3699
3700                         ptype = ghb_presets_get_type(presetsPlist, indices, len);
3701                         if (ptype == PRESETS_CUSTOM)
3702                         {
3703                                 ghb_array_copy(dest, preset, count-1);
3704                         }
3705                 }
3706                 ghb_array_append(dest, ghb_string_value_new(name));
3707                 GValue *val = ghb_widget_value(GTK_WIDGET(desc));
3708                 ghb_settings_set_value(ud->settings, "PresetDescription", val);
3709                 folder_save(ud, dest);
3710                 ghb_value_free(dest);
3711         }
3712         if (indices != NULL)
3713                 g_free(indices);
3714 }
3715
3716 G_MODULE_EXPORT void
3717 presets_save_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3718 {
3719         GtkWidget *dialog;
3720         GtkEntry *entry;
3721         GtkTextView *desc;
3722         GtkResponseType response;
3723         GValue *preset;
3724         const gchar *name = "";
3725         gint count, *indices, len;
3726
3727         g_debug("presets_save_clicked_cb ()");
3728         preset = ghb_settings_get_value (ud->settings, "preset_selection");
3729
3730         count = ghb_array_len(preset);
3731         if (count > 0)
3732                 name = g_value_get_string(ghb_array_get_nth(preset, count-1));
3733         else
3734                 count = 1;
3735
3736         desc = GTK_TEXT_VIEW(GHB_WIDGET(ud->builder, "PresetDescription"));
3737         int width = ghb_settings_get_int(ud->settings, "PictureWidth");
3738         int height = ghb_settings_get_int(ud->settings, "PictureHeight");
3739         gboolean autoscale = ghb_settings_get_boolean(ud->settings, "autoscale");
3740         ghb_ui_update(ud, "PictureWidthEnable", 
3741                 ghb_boolean_value(width!=0&&!autoscale));
3742         ghb_ui_update(ud, "PictureHeightEnable", 
3743                 ghb_boolean_value(height!=0&&!autoscale));
3744         if (!width)
3745         {
3746                 width = ghb_settings_get_int(ud->settings, "scale_width");
3747                 ghb_ui_update(ud, "PictureWidth", ghb_int_value(width));
3748         }
3749         if (!height)
3750         {
3751                 height = ghb_settings_get_int(ud->settings, "scale_height");
3752                 ghb_ui_update(ud, "PictureHeight", ghb_int_value(height));
3753         }
3754         dialog = GHB_WIDGET(ud->builder, "preset_save_dialog");
3755         entry = GTK_ENTRY(GHB_WIDGET(ud->builder, "PresetName"));
3756         gtk_entry_set_text(entry, name);
3757         response = gtk_dialog_run(GTK_DIALOG(dialog));
3758         gtk_widget_hide(dialog);
3759         if (response == GTK_RESPONSE_OK)
3760         {
3761                 // save the preset
3762                 const gchar *name = gtk_entry_get_text(entry);
3763                 GValue *dest;
3764
3765                 dest = ghb_array_value_new(MAX_NESTED_PRESET);
3766                 indices = ghb_preset_indices_from_path(presetsPlist, preset, &len);
3767                 if (indices)
3768                 {
3769                         gint ptype;
3770
3771                         ptype = ghb_presets_get_type(presetsPlist, indices, len);
3772                         if (ptype == PRESETS_CUSTOM)
3773                         {
3774                                 ghb_array_copy(dest, preset, count-1);
3775                         }
3776                         g_free(indices);
3777                 }
3778                 ghb_array_append(dest, ghb_string_value_new(name));
3779
3780                 ghb_widget_to_setting(ud->settings, GTK_WIDGET(desc));
3781
3782                 // Construct the audio settings presets from the current audio list
3783                 update_audio_presets(ud);
3784                 update_subtitle_presets(ud);
3785                 settings_save(ud, dest);
3786                 ghb_value_free(dest);
3787         }
3788 }
3789
3790 G_MODULE_EXPORT void
3791 preset_type_changed_cb(GtkWidget *widget, signal_user_data_t *ud)
3792 {
3793         ghb_widget_to_setting(ud->settings, widget);
3794 }
3795
3796 G_MODULE_EXPORT void
3797 presets_restore_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3798 {
3799         GValue *preset;
3800
3801         g_debug("presets_restore_clicked_cb ()");
3802         // Reload only the standard presets
3803         ghb_presets_reload(ud);
3804         // Updating the presets list shuffles things around
3805         // need to make sure the proper preset is selected
3806         preset = ghb_settings_get_value (ud->settings, "preset");
3807         ghb_select_preset(ud->builder, preset);
3808 }
3809
3810 G_MODULE_EXPORT void
3811 presets_remove_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3812 {
3813         GtkTreeView *treeview;
3814         GtkTreeSelection *selection;
3815         GtkTreeModel *store;
3816         GtkTreeIter iter;
3817         gchar *preset;
3818         GtkResponseType response;
3819
3820         g_debug("presets_remove_clicked_cb ()");
3821         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
3822         selection = gtk_tree_view_get_selection (treeview);
3823         if (gtk_tree_selection_get_selected(selection, &store, &iter))
3824         {
3825                 GtkWidget *dialog;
3826                 GtkTreePath *path;
3827                 gint *indices, len;
3828                 gboolean folder;
3829
3830                 gtk_tree_model_get(store, &iter, 0, &preset, -1);
3831                 path = gtk_tree_model_get_path(store, &iter);
3832                 indices = gtk_tree_path_get_indices(path);
3833                 len = gtk_tree_path_get_depth(path);
3834
3835                 folder = ghb_presets_get_folder(presetsPlist, indices, len);
3836                 dialog = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL,
3837                                                         GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO,
3838                                                         "Confirm deletion of %s:\n\n%s", 
3839                                                         folder ? "folder" : "preset",
3840                                                         preset);
3841                 response = gtk_dialog_run(GTK_DIALOG(dialog));
3842                 gtk_widget_destroy (dialog);
3843                 if (response == GTK_RESPONSE_YES)
3844                 {
3845                         GtkTreeIter nextIter = iter;
3846                         gboolean valid = TRUE;
3847                         if (!gtk_tree_model_iter_next(store, &nextIter))
3848                         {
3849                                 if (!gtk_tree_model_iter_parent(store, &nextIter, &iter))
3850                                 {
3851                                         valid = FALSE;
3852                                 }
3853                         }
3854                         // Remove the selected item
3855                         // First unselect it so that selecting the new item works properly
3856                         gtk_tree_selection_unselect_iter (selection, &iter);
3857                         if (ghb_presets_remove(presetsPlist, indices, len))
3858                         {
3859                                 store_presets();
3860                                 presets_list_remove(ud, indices, len);
3861                         }
3862                         if (!valid)
3863                                 valid = gtk_tree_model_get_iter_first(store, &nextIter);
3864                         if (valid)
3865                         {
3866                                 gtk_tree_path_free(path);
3867                                 path = gtk_tree_model_get_path(store, &nextIter);
3868                                 indices = gtk_tree_path_get_indices(path);
3869                                 len = gtk_tree_path_get_depth(path);
3870                                 ghb_select_preset2(ud->builder, indices, len);
3871                         }
3872                 }
3873                 g_free(preset);
3874                 gtk_tree_path_free(path);
3875         }
3876 }
3877
3878 // controls where valid drop locations are
3879 G_MODULE_EXPORT gboolean
3880 presets_drag_motion_cb(
3881         GtkTreeView *tv,
3882         GdkDragContext *ctx,
3883         gint x,
3884         gint y,
3885         guint time,
3886         signal_user_data_t *ud)
3887 {
3888         GtkTreePath *path = NULL;
3889         GtkTreeViewDropPosition drop_pos;
3890         gint *indices, len;
3891         GtkTreeIter iter;
3892         GtkTreeView *srctv;
3893         GtkTreeModel *model;
3894         GtkTreeSelection *select;
3895         gint src_ptype, dst_ptype;
3896         gboolean src_folder, dst_folder;
3897         GValue *preset;
3898         gint tree_depth, ii;
3899         GtkWidget *widget;
3900
3901         widget = gtk_drag_get_source_widget(ctx);
3902         if (widget == NULL || widget != GTK_WIDGET(tv))
3903                 return TRUE;
3904
3905         // Get the type of the object being dragged
3906         srctv = GTK_TREE_VIEW(gtk_drag_get_source_widget(ctx));
3907         select = gtk_tree_view_get_selection (srctv);
3908         gtk_tree_selection_get_selected (select, &model, &iter);
3909         path = gtk_tree_model_get_path (model, &iter);
3910         indices = gtk_tree_path_get_indices(path);
3911         len = gtk_tree_path_get_depth(path);
3912
3913         preset = presets_get_dict(presetsPlist, indices, len);
3914         tree_depth = preset_tree_depth(preset);
3915
3916         src_ptype = ghb_presets_get_type(presetsPlist, indices, len);
3917         src_folder = ghb_presets_get_folder(presetsPlist, indices, len);
3918         gtk_tree_path_free(path);
3919
3920         if (src_folder && tree_depth == 1)
3921                 tree_depth = 2;
3922
3923         // The rest checks that the destination is a valid position
3924         // in the list.
3925         gtk_tree_view_get_dest_row_at_pos (tv, x, y, &path, &drop_pos);
3926         if (path == NULL)
3927         {
3928                 gdk_drag_status(ctx, 0, time);
3929                 return TRUE;
3930         }
3931         // Don't allow repositioning of builtin presets
3932         if (src_ptype != PRESETS_CUSTOM)
3933         {
3934                 gdk_drag_status(ctx, 0, time);
3935                 return TRUE;
3936         }
3937
3938         len = gtk_tree_path_get_depth(path);
3939         if (len+tree_depth-1 >= MAX_NESTED_PRESET)
3940         {
3941                 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE)
3942                         drop_pos = GTK_TREE_VIEW_DROP_BEFORE;
3943                 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER)
3944                         drop_pos = GTK_TREE_VIEW_DROP_AFTER;
3945         }
3946         for (ii = len+tree_depth-1; ii > MAX_NESTED_PRESET; ii--)
3947                 gtk_tree_path_up(path);
3948         indices = gtk_tree_path_get_indices(path);
3949         len = gtk_tree_path_get_depth(path);
3950         dst_ptype = ghb_presets_get_type(presetsPlist, indices, len);
3951         dst_folder = ghb_presets_get_folder(presetsPlist, indices, len);
3952         // Don't allow mixing custom presets in the builtins
3953         if (dst_ptype != PRESETS_CUSTOM)
3954         {
3955                 gdk_drag_status(ctx, 0, time);
3956                 return TRUE;
3957         }
3958
3959         // Only allow *drop into* for folders
3960         if (!dst_folder)
3961         { 
3962                 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE)
3963                         drop_pos = GTK_TREE_VIEW_DROP_BEFORE;
3964                 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER)
3965                         drop_pos = GTK_TREE_VIEW_DROP_AFTER;
3966         }
3967
3968         len = gtk_tree_path_get_depth(path);
3969         gtk_tree_view_set_drag_dest_row(tv, path, drop_pos);
3970         gtk_tree_path_free(path);
3971         gdk_drag_status(ctx, GDK_ACTION_MOVE, time);
3972         return TRUE;
3973 }
3974
3975 G_MODULE_EXPORT void 
3976 presets_drag_cb(
3977         GtkTreeView *dstwidget, 
3978         GdkDragContext *dc, 
3979         gint x, gint y, 
3980         GtkSelectionData *selection_data, 
3981         guint info, guint t, 
3982         signal_user_data_t *ud)
3983 {
3984         GtkTreePath *path = NULL;
3985         GtkTreeViewDropPosition drop_pos;
3986         GtkTreeIter dstiter, srciter;
3987         gint *dst_indices, dst_len, *src_indices, src_len;
3988         gint src_ptype;
3989         gboolean src_folder, dst_folder;
3990         
3991         GtkTreeModel *dstmodel = gtk_tree_view_get_model(dstwidget);
3992                         
3993         g_debug("preset_drag_cb ()");
3994         // This doesn't work here for some reason...
3995         // gtk_tree_view_get_drag_dest_row(dstwidget, &path, &drop_pos);
3996         gtk_tree_view_get_dest_row_at_pos (dstwidget, x, y, &path, &drop_pos);
3997         // This little hack is needed because attempting to drop after
3998         // the last item gives us no path or drop_pos.
3999         if (path == NULL)
4000         {
4001                 gint n_children;
4002
4003                 n_children = gtk_tree_model_iter_n_children(dstmodel, NULL);
4004                 if (n_children)
4005                 {
4006                         drop_pos = GTK_TREE_VIEW_DROP_AFTER;
4007                         path = gtk_tree_path_new_from_indices(n_children-1, -1);
4008                 }
4009                 else
4010                 {
4011                         drop_pos = GTK_TREE_VIEW_DROP_BEFORE;
4012                         path = gtk_tree_path_new_from_indices(0, -1);
4013                 }
4014         }
4015         if (path)
4016         {
4017                 GtkTreeView *srcwidget;
4018                 GtkTreeModel *srcmodel;
4019                 GtkTreeSelection *select;
4020                 GtkTreePath *srcpath = NULL;
4021                 GValue *preset;
4022                 gint tree_depth, ii;
4023
4024                 srcwidget = GTK_TREE_VIEW(gtk_drag_get_source_widget(dc));
4025                 select = gtk_tree_view_get_selection (srcwidget);
4026                 gtk_tree_selection_get_selected (select, &srcmodel, &srciter);
4027
4028                 srcpath = gtk_tree_model_get_path (srcmodel, &srciter);
4029                 src_indices = gtk_tree_path_get_indices(srcpath);
4030                 src_len = gtk_tree_path_get_depth(srcpath);
4031                 src_ptype = ghb_presets_get_type(presetsPlist, src_indices, src_len);
4032                 src_folder = ghb_presets_get_folder(presetsPlist, src_indices, src_len);
4033                 preset = ghb_value_dup(
4034                                         presets_get_dict(presetsPlist, src_indices, src_len));
4035                 gtk_tree_path_free(srcpath);
4036
4037                 // Don't allow repositioning of builtin presets
4038                 if (src_ptype != PRESETS_CUSTOM)
4039                         return;
4040
4041                 tree_depth = preset_tree_depth(preset);
4042                 if (src_folder && tree_depth == 1)
4043                         tree_depth = 2;
4044
4045                 dst_len = gtk_tree_path_get_depth(path);
4046                 if (dst_len+tree_depth-1 >= MAX_NESTED_PRESET)
4047                 {
4048                         if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE)
4049                                 drop_pos = GTK_TREE_VIEW_DROP_BEFORE;
4050                         if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER)
4051                                 drop_pos = GTK_TREE_VIEW_DROP_AFTER;
4052                 }
4053
4054                 for (ii = dst_len+tree_depth-1; ii > MAX_NESTED_PRESET; ii--)
4055                         gtk_tree_path_up(path);
4056                 dst_indices = gtk_tree_path_get_indices(path);
4057                 dst_len = gtk_tree_path_get_depth(path);
4058                 dst_folder = ghb_presets_get_folder(presetsPlist, dst_indices, dst_len);
4059                 // Only allow *drop into* for folders
4060                 if (!dst_folder)
4061                 { 
4062                         if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE)
4063                                 drop_pos = GTK_TREE_VIEW_DROP_BEFORE;
4064                         if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER)
4065                                 drop_pos = GTK_TREE_VIEW_DROP_AFTER;
4066                 }
4067                 if (gtk_tree_model_get_iter (dstmodel, &dstiter, path))
4068                 {
4069                         GtkTreeIter iter;
4070                         GtkTreePath *dstpath = NULL;
4071
4072                         switch (drop_pos)
4073                         {
4074                                 case GTK_TREE_VIEW_DROP_BEFORE:
4075                                         gtk_tree_store_insert_before(GTK_TREE_STORE (dstmodel), 
4076                                                                                                 &iter, NULL, &dstiter);
4077                                         break;
4078
4079                                 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
4080                                         gtk_tree_store_insert(GTK_TREE_STORE (dstmodel), 
4081                                                                                                 &iter, &dstiter, 0);
4082                                         break;
4083
4084                                 case GTK_TREE_VIEW_DROP_AFTER:
4085                                         gtk_tree_store_insert_after(GTK_TREE_STORE (dstmodel), 
4086                                                                                                 &iter, NULL, &dstiter);
4087                                         break;
4088
4089                                 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER:
4090                                         gtk_tree_store_insert_after(GTK_TREE_STORE (dstmodel), 
4091                                                                                                 &iter, &dstiter, 0);
4092                                         break;
4093
4094                                 default:
4095                                         break;
4096                         }
4097
4098                         dstpath = gtk_tree_model_get_path (dstmodel, &iter);
4099                         dst_indices = gtk_tree_path_get_indices(dstpath);
4100                         dst_len = gtk_tree_path_get_depth(dstpath);
4101                         ghb_presets_insert(presetsPlist, preset, dst_indices, dst_len);
4102                         gtk_tree_path_free(dstpath);
4103
4104                         srcpath = gtk_tree_model_get_path (srcmodel, &srciter);
4105                         src_indices = gtk_tree_path_get_indices(srcpath);
4106                         src_len = gtk_tree_path_get_depth(srcpath);
4107                         ghb_presets_remove(presetsPlist, src_indices, src_len);
4108                         gtk_tree_path_free(srcpath);
4109
4110                         gtk_tree_store_remove (GTK_TREE_STORE (srcmodel), &srciter);
4111
4112                         dstpath = gtk_tree_model_get_path (dstmodel, &iter);
4113                         dst_indices = gtk_tree_path_get_indices(dstpath);
4114                         dst_len = gtk_tree_path_get_depth(dstpath);
4115                         presets_list_update_item(ud, dst_indices, dst_len, TRUE);
4116                         gtk_tree_path_free(dstpath);
4117
4118                         store_presets();
4119                 }
4120                 gtk_tree_path_free(path);
4121         }
4122 }
4123
4124 void
4125 presets_row_expanded_cb(
4126         GtkTreeView *treeview, 
4127         GtkTreeIter *iter, 
4128         GtkTreePath *path, 
4129         signal_user_data_t *ud)
4130 {
4131         gint *indices, len;
4132         gboolean expanded, folder;
4133         GValue *dict;
4134
4135         expanded = gtk_tree_view_row_expanded(treeview, path);
4136         indices = gtk_tree_path_get_indices(path);
4137         len = gtk_tree_path_get_depth(path);
4138         dict = presets_get_dict(presetsPlist, indices, len);
4139         if (preset_folder_is_open(dict))
4140         {
4141                 if (expanded)
4142                         return;
4143         }
4144         else if (!expanded)
4145         {
4146                 return;
4147         }
4148         folder = ghb_presets_get_folder(presetsPlist, indices, len);
4149         if (folder)
4150         {
4151                 presets_set_folder_open(expanded, indices, len);
4152         }
4153
4154         // Collapsing parent folder collapses all children
4155         if (!expanded)
4156         {
4157                 GValue *presets = NULL;
4158                 gint *more_indices, count, ii;
4159
4160                 more_indices = g_malloc((len+1)*sizeof(gint));
4161                 memcpy(more_indices, indices, len*sizeof(gint));
4162
4163                 presets = presets_get_folder(presetsPlist, indices, len);
4164                 count = ghb_array_len(presets);
4165                 for (ii = 0; ii < count; ii++)
4166                 {
4167                         dict = ghb_array_get_nth(presets, ii);
4168                         folder = ghb_preset_folder(dict);
4169                         if (folder)
4170                         {
4171                                 more_indices[len] = ii;
4172                                 presets_set_folder_open(expanded, more_indices, len+1);
4173                         }
4174                 }
4175                 g_free(more_indices);
4176         }
4177         store_presets();
4178 }
4179
4180 static void
4181 preset_update_title_deps(signal_user_data_t *ud, ghb_title_info_t *tinfo)
4182 {
4183         GtkWidget *widget;
4184
4185         ghb_ui_update(ud, "scale_width", 
4186                         ghb_int64_value(tinfo->width - tinfo->crop[2] - tinfo->crop[3]));
4187         // If anamorphic or keep_aspect, the hight will be automatically calculated
4188         gboolean keep_aspect;
4189         gint pic_par;
4190         keep_aspect = ghb_settings_get_boolean(ud->settings, "PictureKeepRatio");
4191         pic_par = ghb_settings_combo_int(ud->settings, "PicturePAR");
4192         if (!(keep_aspect || pic_par) || pic_par == 3)
4193         {
4194                 ghb_ui_update(ud, "scale_height", 
4195                         ghb_int64_value(tinfo->height - tinfo->crop[0] - tinfo->crop[1]));
4196         }
4197
4198         // Set the limits of cropping.  hb_set_anamorphic_size crashes if
4199         // you pass it a cropped width or height == 0.
4200         gint bound;
4201         bound = tinfo->height / 2 - 2;
4202         widget = GHB_WIDGET (ud->builder, "PictureTopCrop");
4203         gtk_spin_button_set_range (GTK_SPIN_BUTTON(widget), 0, bound);
4204         widget = GHB_WIDGET (ud->builder, "PictureBottomCrop");
4205         gtk_spin_button_set_range (GTK_SPIN_BUTTON(widget), 0, bound);
4206         bound = tinfo->width / 2 - 2;
4207         widget = GHB_WIDGET (ud->builder, "PictureLeftCrop");
4208         gtk_spin_button_set_range (GTK_SPIN_BUTTON(widget), 0, bound);
4209         widget = GHB_WIDGET (ud->builder, "PictureRightCrop");
4210         gtk_spin_button_set_range (GTK_SPIN_BUTTON(widget), 0, bound);
4211         if (ghb_settings_get_boolean(ud->settings, "PictureAutoCrop"))
4212         {
4213                 ghb_ui_update(ud, "PictureTopCrop", ghb_int64_value(tinfo->crop[0]));
4214                 ghb_ui_update(ud, "PictureBottomCrop", ghb_int64_value(tinfo->crop[1]));
4215                 ghb_ui_update(ud, "PictureLeftCrop", ghb_int64_value(tinfo->crop[2]));
4216                 ghb_ui_update(ud, "PictureRightCrop", ghb_int64_value(tinfo->crop[3]));
4217         }
4218 }
4219
4220 void
4221 ghb_refresh_preset(signal_user_data_t *ud)
4222 {
4223         ghb_title_info_t tinfo;
4224         GValue *preset;
4225         gint *indices, len;
4226
4227         g_debug("ghb_refresh_preset ()");
4228         preset = ghb_settings_get_value(ud->settings, "preset_selection");
4229         indices = ghb_preset_indices_from_path(presetsPlist, preset, &len);
4230         if (indices)
4231         {
4232                 gboolean folder;
4233
4234                 folder = ghb_presets_get_folder(presetsPlist, indices, len);
4235                 if (!folder)
4236                 {
4237                         ud->dont_clear_presets = TRUE;
4238                         ud->scale_busy = TRUE;
4239                         // Temporarily set the video_quality range to (0,100)
4240                         // This is needed so the video_quality value does not get
4241                         // truncated when set.  The range will be readjusted below
4242                         GtkWidget *qp = GHB_WIDGET(ud->builder, "VideoQualitySlider");
4243                         gtk_range_set_range (GTK_RANGE(qp), 0, 100);
4244                         gtk_scale_set_digits(GTK_SCALE(qp), 3);
4245                         // Clear the audio list prior to changing the preset.  Existing 
4246                         // audio can cause the container extension to be automatically 
4247                         // changed when it shouldn't be
4248                         ghb_clear_audio_list(ud);
4249                         ghb_set_preset_from_indices(ud, indices, len);
4250                         gint titleindex;
4251                         titleindex = ghb_settings_combo_int(ud->settings, "title");
4252                         ghb_set_pref_audio(titleindex, ud);
4253                         ghb_set_pref_subtitle(titleindex, ud);
4254                         ghb_settings_set_boolean(ud->settings, "preset_modified", FALSE);
4255                         if (ghb_get_title_info (&tinfo, titleindex))
4256                         {
4257                                 preset_update_title_deps(ud, &tinfo);
4258                         }
4259                         ud->scale_busy = FALSE;
4260                         ghb_set_scale (ud, GHB_PIC_KEEP_PAR|GHB_PIC_USE_MAX);
4261                         ud->dont_clear_presets = FALSE;
4262
4263                         gdouble vqmin, vqmax, step, page;
4264                         gint digits;
4265                         gboolean inverted;
4266
4267                         ghb_vquality_range(ud, &vqmin, &vqmax, &step, 
4268                                                                 &page, &digits, &inverted);
4269                         gtk_range_set_range (GTK_RANGE(qp), vqmin, vqmax);
4270                         gtk_range_set_increments (GTK_RANGE(qp), step, page);
4271                         gtk_scale_set_digits(GTK_SCALE(qp), digits);
4272                         gtk_range_set_inverted (GTK_RANGE(qp), inverted);
4273
4274                         gchar *text;
4275                         gint crop[4];
4276                         GtkWidget *crop_widget;
4277                         crop[0] = ghb_settings_get_int(ud->settings, "PictureTopCrop");
4278                         crop[1] = ghb_settings_get_int(ud->settings, "PictureBottomCrop");
4279                         crop[2] = ghb_settings_get_int(ud->settings, "PictureLeftCrop");
4280                         crop[3] = ghb_settings_get_int(ud->settings, "PictureRightCrop");
4281                         crop_widget = GHB_WIDGET (ud->builder, "crop_values");
4282                         text = g_strdup_printf("%d:%d:%d:%d", 
4283                                                                         crop[0], crop[1], crop[2], crop[3]);
4284                         gtk_label_set_text (GTK_LABEL(crop_widget), text);
4285                         g_free(text);
4286                 }
4287         }
4288 }
4289
4290 G_MODULE_EXPORT void
4291 presets_list_selection_changed_cb(GtkTreeSelection *selection, signal_user_data_t *ud)
4292 {
4293         GtkTreeModel *store;
4294         GtkTreeIter iter;
4295         ghb_title_info_t tinfo;
4296         GtkWidget *widget;
4297         
4298         g_debug("presets_list_selection_changed_cb ()");
4299         widget = GHB_WIDGET (ud->builder, "presets_remove");
4300         if (gtk_tree_selection_get_selected(selection, &store, &iter))
4301         {
4302                 GtkTreePath *treepath;
4303                 gint *indices, len;
4304                 GValue *path;
4305                 gboolean folder;
4306
4307                 treepath = gtk_tree_model_get_path(store, &iter);
4308                 indices = gtk_tree_path_get_indices(treepath);
4309                 len = gtk_tree_path_get_depth(treepath);
4310
4311                 path = preset_path_from_indices(presetsPlist, indices, len);
4312                 ghb_settings_take_value(ud->settings, "preset_selection", path);
4313
4314                 folder = ghb_presets_get_folder(presetsPlist, indices, len);
4315                 if (!folder)
4316                 {
4317                         ud->dont_clear_presets = TRUE;
4318                         ud->scale_busy = TRUE;
4319                         // Temporarily set the video_quality range to (0,100)
4320                         // This is needed so the video_quality value does not get
4321                         // truncated when set.  The range will be readjusted below
4322                         GtkWidget *qp = GHB_WIDGET(ud->builder, "VideoQualitySlider");
4323                         gtk_range_set_range (GTK_RANGE(qp), 0, 100);
4324                         gtk_scale_set_digits(GTK_SCALE(qp), 3);
4325                         // Clear the audio list prior to changing the preset.  Existing 
4326                         // audio can cause the container extension to be automatically 
4327                         // changed when it shouldn't be
4328                         ghb_clear_audio_list(ud);
4329                         ghb_set_preset_from_indices(ud, indices, len);
4330                         gint titleindex;
4331                         titleindex = ghb_settings_combo_int(ud->settings, "title");
4332                         ghb_set_pref_audio(titleindex, ud);
4333                         ghb_set_pref_subtitle(titleindex, ud);
4334                         ghb_settings_set_boolean(ud->settings, "preset_modified", FALSE);
4335                         if (ghb_get_title_info (&tinfo, titleindex))
4336                         {
4337                                 preset_update_title_deps(ud, &tinfo);
4338                         }
4339                         ud->scale_busy = FALSE;
4340                         ghb_set_scale (ud, GHB_PIC_KEEP_PAR|GHB_PIC_USE_MAX);
4341                         ud->dont_clear_presets = FALSE;
4342
4343                         gdouble vqmin, vqmax, step, page;
4344                         gint digits;
4345                         gboolean inverted;
4346
4347                         ghb_vquality_range(ud, &vqmin, &vqmax, &step, 
4348                                                                 &page, &digits, &inverted);
4349                         gtk_range_set_range (GTK_RANGE(qp), vqmin, vqmax);
4350                         gtk_range_set_increments (GTK_RANGE(qp), step, page);
4351                         gtk_scale_set_digits(GTK_SCALE(qp), digits);
4352                         gtk_range_set_inverted (GTK_RANGE(qp), inverted);
4353
4354                         gchar *text;
4355                         gint crop[4];
4356                         GtkWidget *crop_widget;
4357                         crop[0] = ghb_settings_get_int(ud->settings, "PictureTopCrop");
4358                         crop[1] = ghb_settings_get_int(ud->settings, "PictureBottomCrop");
4359                         crop[2] = ghb_settings_get_int(ud->settings, "PictureLeftCrop");
4360                         crop[3] = ghb_settings_get_int(ud->settings, "PictureRightCrop");
4361                         crop_widget = GHB_WIDGET (ud->builder, "crop_values");
4362                         text = g_strdup_printf("%d:%d:%d:%d", 
4363                                                                         crop[0], crop[1], crop[2], crop[3]);
4364                         gtk_label_set_text (GTK_LABEL(crop_widget), text);
4365                         g_free(text);
4366                 }
4367                 gtk_tree_path_free(treepath);
4368                 gtk_widget_set_sensitive(widget, TRUE);
4369         }
4370         else
4371         {
4372                 g_debug("No selection???  Perhaps unselected.");
4373                 gtk_widget_set_sensitive(widget, FALSE);
4374         }
4375         if (ghb_settings_combo_int(ud->settings, "PtoPType") == 0)
4376         {
4377                 gint start, end;
4378                 start = ghb_settings_get_int(ud->settings, "start_point");
4379                 end = ghb_settings_get_int(ud->settings, "end_point");
4380                 widget = GHB_WIDGET (ud->builder, "ChapterMarkers");
4381                 gtk_widget_set_sensitive(widget, TRUE);
4382                 if (start == end)
4383                 {
4384                         ud->dont_clear_presets = TRUE;
4385                         ghb_ui_update(ud, "ChapterMarkers", ghb_boolean_value(FALSE));
4386                         ud->dont_clear_presets = FALSE;
4387                         gtk_widget_set_sensitive(widget, FALSE);
4388                 }
4389         }
4390 }
4391
4392 void
4393 ghb_clear_presets_selection(signal_user_data_t *ud)
4394 {
4395         GtkTreeView *treeview;
4396         GtkTreeSelection *selection;
4397         
4398         if (ud->dont_clear_presets) return;
4399         g_debug("ghb_clear_presets_selection()");
4400         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
4401         selection = gtk_tree_view_get_selection (treeview);
4402         gtk_tree_selection_unselect_all (selection);
4403         ghb_settings_set_boolean(ud->settings, "preset_modified", TRUE);
4404 }
4405
4406 G_MODULE_EXPORT void
4407 presets_frame_size_allocate_cb(GtkWidget *widget, GtkAllocation *allocation, signal_user_data_t *ud)
4408 {
4409         GtkTreeView *treeview;
4410         GtkTreeSelection *selection;
4411         GtkTreeModel *store;
4412         GtkTreeIter iter;
4413         
4414         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
4415         selection = gtk_tree_view_get_selection(treeview);
4416         if (gtk_tree_selection_get_selected(selection, &store, &iter))
4417         {
4418                 GtkTreePath *path;
4419                 path = gtk_tree_model_get_path (store, &iter);
4420                 // Make the parent visible in scroll window if it is not.
4421                 gtk_tree_view_scroll_to_cell (treeview, path, NULL, FALSE, 0, 0);
4422                 gtk_tree_path_free(path);
4423         }
4424 }
4425
4426 G_MODULE_EXPORT void
4427 presets_default_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
4428 {
4429         GValue *preset;
4430         gint *indices, len;
4431
4432         g_debug("presets_default_clicked_cb ()");
4433         preset = ghb_settings_get_value(ud->settings, "preset_selection");
4434         indices = ghb_preset_indices_from_path(presetsPlist, preset, &len);
4435         if (indices)
4436         {
4437                 if (!ghb_presets_get_folder(presetsPlist, indices, len))
4438                 {
4439                         ghb_presets_list_clear_default(ud);
4440                         presets_set_default(indices, len);
4441                         ghb_presets_list_default(ud);
4442                 }
4443                 g_free(indices);
4444         }
4445 }
4446
4447 G_MODULE_EXPORT void
4448 preset_edited_cb(
4449         GtkCellRendererText *cell, 
4450         gchar *path, 
4451         gchar *text, 
4452         signal_user_data_t *ud)
4453 {
4454         GtkTreePath *treepath;
4455         GtkTreeStore *store;
4456         GtkTreeView *treeview;
4457         GtkTreeIter iter;
4458         gint *indices, len, count;
4459         GValue *dict;
4460         GValue *preset, *dest;
4461         
4462         g_debug("preset_edited_cb ()");
4463         g_debug("path (%s)", path);
4464         g_debug("text (%s)", text);
4465
4466         preset = ghb_settings_get_value (ud->settings, "preset_selection");
4467         dest = ghb_array_value_new(MAX_NESTED_PRESET);
4468         count = ghb_array_len(preset);
4469         ghb_array_copy(dest, preset, count-1);
4470         ghb_array_append(dest, ghb_string_value_new(text));
4471         indices = ghb_preset_indices_from_path(presetsPlist, dest, &len);
4472         ghb_value_free(dest);
4473         if (indices != NULL)
4474         {
4475                 // Already exists
4476                 g_free(indices);
4477                 return;
4478         }
4479
4480         treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
4481         store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
4482         treepath = gtk_tree_path_new_from_string (path);
4483         indices = gtk_tree_path_get_indices(treepath);
4484         len = gtk_tree_path_get_depth(treepath);
4485         gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, treepath);
4486         gtk_tree_store_set(store, &iter, 0, text, -1);
4487
4488         dict = presets_get_dict(presetsPlist, indices, len);
4489         ghb_dict_insert(dict, g_strdup("PresetName"), ghb_string_value_new(text));
4490         store_presets();
4491         gtk_tree_path_free (treepath);
4492 }
4493