OSDN Git Service

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