1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
4 * Copyright (C) John Stebbins 2008-2011 <stebbins@stebbins>
6 * presets.c is free software.
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)
14 #include <sys/types.h>
19 #include <glib-object.h>
20 #include <glib/gstdio.h>
25 #include "callbacks.h"
26 #include "audiohandler.h"
27 #include "subtitlehandler.h"
28 #include "hb-backend.h"
30 #include "resources.h"
35 #define MAX_NESTED_PRESET 3
43 static GValue *presetsPlist = NULL;
44 static GValue *internalPlist = NULL;
45 static GValue *prefsPlist = NULL;
46 static gboolean prefs_modified = FALSE;
48 static const GValue* preset_dict_get_value(GValue *dict, const gchar *key);
49 static void store_plist(GValue *plist, const gchar *name);
50 static void store_presets(void);
51 static void store_prefs(void);
54 preset_path_cmp(gint *indices1, gint len1, gint *indices2, gint len2)
57 for (ii = 0; ii < len1 && ii < len2; ii++)
59 if (indices1[ii] != indices2[ii])
60 return indices1[ii] - indices2[ii];
65 // This only handle limited depth
67 ghb_tree_path_new_from_indices(gint *indices, gint len)
72 return gtk_tree_path_new_from_indices(
75 return gtk_tree_path_new_from_indices(
76 indices[0], indices[1], -1);
78 return gtk_tree_path_new_from_indices(
79 indices[0], indices[1], indices[2], -1);
81 return gtk_tree_path_new_from_indices(
82 indices[0], indices[1], indices[2], indices[3], -1);
84 return gtk_tree_path_new_from_indices(
85 indices[0], indices[1], indices[2], indices[3], indices[4], -1);
92 ghb_parse_preset_path(const gchar *path)
98 preset = ghb_array_value_new(MAX_NESTED_PRESET);
99 split = g_strsplit(path, "#", MAX_NESTED_PRESET);
100 for (ii = 0; split[ii] != NULL; ii++)
102 ghb_array_append(preset, ghb_string_value_new(split[ii]));
109 preset_path_from_indices(GValue *presets, gint *indices, gint len)
114 g_debug("preset_path_from_indices");
115 path = ghb_array_value_new(MAX_NESTED_PRESET);
116 for (ii = 0; ii < len; ii++)
122 count = ghb_array_len(presets);
123 if (indices[ii] >= count) break;
124 dict = ghb_array_get_nth(presets, indices[ii]);
125 name = ghb_dict_lookup(dict, "PresetName");
127 ghb_array_append(path, ghb_value_dup(name));
128 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
131 presets = ghb_dict_lookup(dict, "ChildrenArray");
137 ghb_preset_path_string(const GValue *path)
144 gstr = g_string_new("");
147 count = ghb_array_len(path);
148 for (ii = 0; ii < count; ii++)
150 val = ghb_array_get_nth(path, ii);
151 str = ghb_value_string(val);
152 g_string_append(gstr, str);
154 g_string_append(gstr, "->");
158 str = g_string_free(gstr, FALSE);
163 dump_preset_path(const gchar *msg, const GValue *path)
168 debug_show_type (G_VALUE_TYPE(path));
169 str = ghb_preset_path_string(path);
170 g_message("%s path: (%s)", msg, str);
175 dump_preset_indices(const gchar *msg, gint *indices, gint len)
179 g_message("%s indices: len %d", msg, len);
180 for (ii = 0; ii < len; ii++)
182 printf("%d ", indices[ii]);
189 preset_path_cmp(const GValue *path1, const GValue *path2)
196 count = ghb_array_len(path1);
197 ii = ghb_array_len(path2);
200 for (ii = 0; ii < count; ii++)
202 val = ghb_array_get_nth(path1, ii);
203 str1 = ghb_value_string(val);
204 val = ghb_array_get_nth(path2, ii);
205 str2 = ghb_value_string(val);
206 result = strcmp(str1, str2);
217 presets_get_dict(GValue *presets, gint *indices, gint len)
219 gint ii, count, folder;
222 g_debug("presets_get_dict ()");
223 for (ii = 0; ii < len; ii++)
225 count = ghb_array_len(presets);
226 if (indices[ii] >= count) return NULL;
227 dict = ghb_array_get_nth(presets, indices[ii]);
230 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
233 presets = ghb_dict_lookup(dict, "ChildrenArray");
242 presets_get_folder(GValue *presets, gint *indices, gint len)
244 gint ii, count, folder;
247 g_debug("presets_get_folder ()");
248 for (ii = 0; ii < len; ii++)
250 count = ghb_array_len(presets);
251 if (indices[ii] >= count) return NULL;
252 dict = ghb_array_get_nth(presets, indices[ii]);
253 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
256 presets = ghb_dict_lookup(dict, "ChildrenArray");
264 plist_get_dict(GValue *presets, const gchar *name)
266 if (presets == NULL || name == NULL) return NULL;
267 return ghb_dict_lookup(presets, name);
271 preset_get_name(GValue *dict)
273 return g_value_get_string(preset_dict_get_value(dict, "PresetName"));
277 preset_folder_is_open(GValue *dict)
281 gval = preset_dict_get_value(dict, "FolderOpen");
283 return g_value_get_boolean(gval);
288 ghb_preset_folder(GValue *dict)
290 return ghb_value_int(preset_dict_get_value(dict, "Folder"));
294 ghb_preset_type(GValue *dict)
296 return ghb_value_int(preset_dict_get_value(dict, "Type"));
300 presets_remove_nth(GValue *presets, gint pos)
305 if (presets == NULL || pos < 0) return;
306 count = ghb_array_len(presets);
307 if (pos >= count) return;
308 dict = ghb_array_get_nth(presets, pos);
309 ghb_array_remove(presets, pos);
310 ghb_value_free(dict);
319 GValue *folder = NULL;
321 folder = presets_get_folder(presets, indices, len-1);
323 presets_remove_nth(folder, indices[len-1]);
326 g_warning("ghb_presets_remove (): internal preset lookup error");
339 GValue *folder = NULL;
341 folder = presets_get_folder(presets, indices, len-1);
343 ghb_array_replace(folder, indices[len-1], dict);
346 g_warning("ghb_presets_replace (): internal preset lookup error");
357 GValue *folder = NULL;
359 folder = presets_get_folder(presets, indices, len-1);
361 ghb_array_insert(folder, indices[len-1], dict);
364 g_warning("ghb_presets_insert (): internal preset lookup error");
369 presets_find_element(GValue *presets, const gchar *name)
374 g_debug("presets_find_element () (%s)", name);
375 if (presets == NULL || name == NULL) return -1;
376 count = ghb_array_len(presets);
377 for (ii = 0; ii < count; ii++)
380 dict = ghb_array_get_nth(presets, ii);
381 str = preset_get_name(dict);
382 if (strcmp(name, str) == 0)
391 single_find_pos(GValue *presets, const gchar *name, gint type)
394 gint count, ii, ptype, last;
396 if (presets == NULL || name == NULL) return -1;
397 last = count = ghb_array_len(presets);
398 for (ii = 0; ii < count; ii++)
401 dict = ghb_array_get_nth(presets, ii);
402 str = preset_get_name(dict);
403 ptype = ghb_value_int(preset_dict_get_value(dict, "Type"));
404 if (strcasecmp(name, str) <= 0 && ptype == type)
415 presets_find_pos(const GValue *path, gint type, gint *len)
421 gint *indices = NULL;
425 g_debug("presets_find_pos () ");
426 nested = presetsPlist;
427 count = ghb_array_len(path);
428 indices = g_malloc(MAX_NESTED_PRESET * sizeof(gint));
429 for (ii = 0; ii < count-1; ii++)
431 val = ghb_array_get_nth(path, ii);
432 name = g_value_get_string(val);
433 indices[ii] = presets_find_element(nested, name);
434 if (indices[ii] == -1) return NULL;
435 dict = ghb_array_get_nth(nested, indices[ii]);
436 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
440 nested = ghb_dict_lookup(dict, "ChildrenArray");
446 name = g_value_get_string(ghb_array_get_nth(path, count-1));
447 indices[ii] = single_find_pos(nested, name, type);
455 preset_tree_depth(GValue *dict)
459 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
466 presets = ghb_dict_lookup(dict, "ChildrenArray");
467 count = ghb_array_len(presets);
468 for (ii = 0; ii < count; ii++)
472 dict = ghb_array_get_nth(presets, ii);
473 tmp = preset_tree_depth(dict);
474 depth = MAX(depth, tmp);
485 preset_is_default(GValue *dict)
489 val = preset_dict_get_value(dict, "Default");
490 return ghb_value_boolean(val);
494 presets_clear_default(GValue *presets)
498 count = ghb_array_len(presets);
499 for (ii = 0; ii < count; ii++)
504 dict = ghb_array_get_nth(presets, ii);
505 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
510 nested = ghb_dict_lookup(dict, "ChildrenArray");
511 presets_clear_default(nested);
515 if (preset_is_default(dict))
517 ghb_dict_insert(dict, g_strdup("Default"),
518 ghb_boolean_value_new(FALSE));
525 presets_customize(GValue *presets)
529 count = ghb_array_len(presets);
530 for (ii = 0; ii < count; ii++)
536 dict = ghb_array_get_nth(presets, ii);
538 ptype = ghb_value_int(preset_dict_get_value(dict, "Type"));
539 if (ptype != PRESETS_CUSTOM)
541 ghb_dict_insert(dict, g_strdup("Type"),
542 ghb_int64_value_new(PRESETS_CUSTOM));
544 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
549 nested = ghb_dict_lookup(dict, "ChildrenArray");
550 presets_customize(nested);
556 presets_find_default2(GValue *presets, gint *len)
561 count = ghb_array_len(presets);
562 for (ii = 0; ii < count; ii++)
567 dict = ghb_array_get_nth(presets, ii);
568 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
574 nested = ghb_dict_lookup(dict, "ChildrenArray");
576 indices = presets_find_default2(nested, len);
587 if (preset_is_default(dict))
589 indices = g_malloc(MAX_NESTED_PRESET * sizeof(gint));
600 presets_find_default(GValue *presets, gint *len)
603 return presets_find_default2(presets, len);
607 ghb_preset_indices_from_path(
615 gint *indices = NULL;
620 g_debug("ghb_preset_indices_from_path () ");
622 count = ghb_array_len(path);
624 indices = g_malloc(MAX_NESTED_PRESET * sizeof(gint));
626 for (ii = 0; ii < count; ii++)
628 val = ghb_array_get_nth(path, ii);
629 name = g_value_get_string(val);
630 indices[ii] = presets_find_element(nested, name);
631 if (indices[ii] == -1)
638 dict = ghb_array_get_nth(nested, indices[ii]);
639 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
645 nested = ghb_dict_lookup(dict, "ChildrenArray");
653 ghb_presets_get_type(
661 dict = presets_get_dict(presets, indices, len);
664 type = ghb_preset_type(dict);
668 g_warning("ghb_presets_get_type (): internal preset lookup error");
674 ghb_presets_get_folder(
680 gboolean folder = FALSE;
682 dict = presets_get_dict(presets, indices, len);
685 folder = ghb_preset_folder(dict);
689 g_warning("ghb_presets_get_folder (): internal preset lookup error");
695 presets_set_default(gint *indices, gint len)
699 g_debug("presets_set_default ()");
700 presets_clear_default(presetsPlist);
701 dict = presets_get_dict(presetsPlist, indices, len);
704 ghb_dict_insert(dict, g_strdup("Default"), ghb_boolean_value_new(TRUE));
710 presets_set_folder_open(gboolean open, gint *indices, gint len)
714 g_debug("presets_set_folder_open ()");
715 dict = presets_get_dict(presetsPlist, indices, len);
718 ghb_dict_insert(dict, g_strdup("FolderOpen"),
719 ghb_boolean_value_new(open));
723 // Used for sorting dictionaries.
725 key_cmp(gconstpointer a, gconstpointer b)
727 gchar *stra = (gchar*)a;
728 gchar *strb = (gchar*)b;
730 return strcmp(stra, strb);
734 preset_dict_get_value(GValue *dict, const gchar *key)
736 const GValue *gval = NULL;
740 gval = ghb_dict_lookup(dict, key);
742 if (internalPlist == NULL) return NULL;
745 dict = plist_get_dict(internalPlist, "Presets");
746 if (dict == NULL) return NULL;
747 gval = ghb_dict_lookup(dict, key);
753 ghb_presets_get_description(GValue *pdict)
757 if (pdict == NULL) return NULL;
758 desc = g_value_get_string(
759 preset_dict_get_value(pdict, "PresetDescription"));
760 if (desc[0] == 0) return NULL;
765 static void init_settings_from_dict(
766 GValue *dest, GValue *internal, GValue *dict);
769 init_settings_from_array(
777 count = ghb_array_len(array);
778 // The first element of the internal version is always the
779 // template for the allowed values
780 gval = ghb_array_get_nth(internal, 0);
781 for (ii = 0; ii < count; ii++)
784 val = ghb_array_get_nth(array, ii);
787 if (G_VALUE_TYPE(gval) == ghb_dict_get_type())
790 new_dict = ghb_dict_value_new();
791 ghb_array_append(dest, new_dict);
792 if (G_VALUE_TYPE(val) == ghb_dict_get_type())
793 init_settings_from_dict(new_dict, gval, val);
795 init_settings_from_dict(new_dict, gval, gval);
797 else if (G_VALUE_TYPE(gval) == ghb_array_get_type())
800 new_array = ghb_array_value_new(8);
801 ghb_array_append(dest, new_array);
802 if (G_VALUE_TYPE(val) == ghb_array_get_type())
803 init_settings_from_array(new_array, gval, val);
805 init_settings_from_array(new_array, gval, gval);
809 ghb_array_append(dest, val);
815 init_settings_from_dict(
824 ghb_dict_iter_init(&iter, internal);
825 // middle (void*) cast prevents gcc warning "defreferencing type-punned
826 // pointer will break strict-aliasing rules"
827 while (g_hash_table_iter_next(
828 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
832 val = ghb_dict_lookup(dict, key);
835 if (G_VALUE_TYPE(gval) == ghb_dict_get_type())
838 new_dict = ghb_dict_value_new();
839 ghb_settings_take_value(dest, key, new_dict);
840 if (G_VALUE_TYPE(val) == ghb_dict_get_type())
841 init_settings_from_dict(new_dict, gval, val);
843 init_settings_from_dict(new_dict, gval, gval);
845 else if (G_VALUE_TYPE(gval) == ghb_array_get_type())
848 new_array = ghb_array_value_new(8);
849 ghb_settings_take_value(dest, key, new_array);
850 if (G_VALUE_TYPE(val) == ghb_array_get_type())
851 init_settings_from_array(new_array, gval, val);
853 init_settings_from_array(new_array, gval, gval);
858 ghb_settings_set_value(dest, key, val);
865 signal_user_data_t *ud,
873 ghb_dict_iter_init(&iter, internal);
874 // middle (void*) cast prevents gcc warning "defreferencing type-punned
875 // pointer will break strict-aliasing rules"
876 while (g_hash_table_iter_next(
877 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
881 val = ghb_dict_lookup(dict, key);
884 ghb_ui_update(ud, key, val);
889 preset_to_ui(signal_user_data_t *ud, GValue *dict)
891 g_debug("preset_to_ui()\n");
892 // Initialize the ui from presets file.
893 GValue *internal, *hidden;
895 // Get key list from internal default presets. This way we do not
896 // load any unknown keys.
897 if (internalPlist == NULL) return;
898 internal = plist_get_dict(internalPlist, "Presets");
899 hidden = plist_get_dict(internalPlist, "XlatPresets");
900 // Setting a ui widget will cause the corresponding setting
901 // to be set, but it also triggers a callback that can
902 // have the side effect of using other settings values
903 // that have not yet been set. So set *all* settings first
904 // then update the ui.
905 init_settings_from_dict(ud->settings, internal, dict);
906 init_settings_from_dict(ud->settings, hidden, dict);
907 init_ui_from_dict(ud, internal, dict);
908 init_ui_from_dict(ud, hidden, dict);
915 val = ghb_dict_lookup(dict, "PictureDecombDeinterlace");
918 dd = ghb_value_boolean(val);
919 ghb_ui_update(ud, "PictureDeinterlaceDecomb", ghb_boolean_value(!dd));
921 val = ghb_dict_lookup(dict, "PictureHeight");
924 ghb_ui_update(ud, "scale_height", val);
926 val = ghb_dict_lookup(dict, "PictureWidth");
929 ghb_ui_update(ud, "scale_width", val);
935 ghb_settings_to_ui(signal_user_data_t *ud, GValue *dict)
937 init_ui_from_dict(ud, dict, dict);
940 static GValue *current_preset = NULL;
943 ghb_preset_is_custom()
947 if (current_preset == NULL) return FALSE;
948 val = preset_dict_get_value(current_preset, "Type");
949 return (ghb_value_int(val) == 1);
953 ghb_set_preset_from_indices(signal_user_data_t *ud, gint *indices, gint len)
956 gint fallback[2] = {0, -1};
959 dict = presets_get_dict(presetsPlist, indices, len);
964 dict = presets_get_dict(presetsPlist, indices, len);
968 preset_to_ui(ud, NULL);
969 current_preset = NULL;
976 current_preset = dict;
977 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
979 preset_to_ui(ud, NULL);
981 preset_to_ui(ud, dict);
982 path = preset_path_from_indices(presetsPlist, indices, len);
983 ghb_settings_set_value(ud->settings, "preset", path);
984 ghb_value_free(path);
989 curr_preset_get_value(const gchar *key)
991 if (current_preset == NULL) return NULL;
992 return preset_dict_get_value(current_preset, key);
996 ghb_update_from_preset(
997 signal_user_data_t *ud,
1002 g_debug("ghb_update_from_preset() %s", key);
1003 gval = curr_preset_get_value(key);
1006 ghb_ui_update(ud, key, gval);
1012 GtkBuilder *builder,
1016 GtkTreeView *treeview;
1017 GtkTreeSelection *selection;
1018 GtkTreeModel *store;
1022 g_debug("ghb_select_preset2()");
1023 treeview = GTK_TREE_VIEW(GHB_WIDGET(builder, "presets_list"));
1024 selection = gtk_tree_view_get_selection (treeview);
1025 store = gtk_tree_view_get_model (treeview);
1026 path = ghb_tree_path_new_from_indices(indices, len);
1029 if (gtk_tree_model_get_iter(store, &iter, path))
1031 gtk_tree_selection_select_iter (selection, &iter);
1035 if (gtk_tree_model_get_iter_first(store, &iter))
1036 gtk_tree_selection_select_iter (selection, &iter);
1038 gtk_tree_path_free(path);
1043 ghb_select_preset(GtkBuilder *builder, const GValue *path)
1047 g_debug("ghb_select_preset()");
1048 indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
1051 ghb_select_preset2(builder, indices, len);
1057 ghb_select_default_preset(GtkBuilder *builder)
1061 g_debug("ghb_select_default_preset()");
1062 indices = presets_find_default(presetsPlist, &len);
1065 ghb_select_preset2(builder, indices, len);
1071 ghb_get_user_config_dir(gchar *subdir)
1076 dir = g_get_user_config_dir();
1077 if (!g_file_test(dir, G_FILE_TEST_IS_DIR))
1079 dir = g_get_home_dir();
1080 config = g_strdup_printf ("%s/.ghb", dir);
1081 if (!g_file_test(config, G_FILE_TEST_IS_DIR))
1082 g_mkdir (config, 0755);
1086 config = g_strdup_printf ("%s/ghb", dir);
1087 if (!g_file_test(config, G_FILE_TEST_IS_DIR))
1088 g_mkdir (config, 0755);
1095 split = g_strsplit(subdir, G_DIR_SEPARATOR_S, -1);
1096 for (ii = 0; split[ii] != NULL; ii++)
1100 tmp = g_strdup_printf ("%s/%s", config, split[ii]);
1103 if (!g_file_test(config, G_FILE_TEST_IS_DIR))
1104 g_mkdir (config, 0755);
1111 store_plist(GValue *plist, const gchar *name)
1113 gchar *config, *path;
1116 config = ghb_get_user_config_dir(NULL);
1117 path = g_strdup_printf ("%s/%s", config, name);
1118 file = g_fopen(path, "w");
1121 ghb_plist_write(file, plist);
1126 load_plist(const gchar *name)
1128 gchar *config, *path;
1129 GValue *plist = NULL;
1131 config = ghb_get_user_config_dir(NULL);
1132 path = g_strdup_printf ("%s/%s", config, name);
1133 if (g_file_test(path, G_FILE_TEST_IS_REGULAR))
1135 plist = ghb_plist_parse_file(path);
1143 ghb_lock_file(const gchar *name)
1145 #if !defined(_WIN32)
1146 gchar *config, *path;
1149 config = ghb_get_user_config_dir(NULL);
1150 path = g_strdup_printf ("%s/%s", config, name);
1151 fd = open(path, O_RDWR|O_CREAT, S_IRUSR|S_IWUSR);
1153 lock = lockf(fd, F_TLOCK, 0);
1165 ghb_write_pid_file()
1167 #if !defined(_WIN32)
1168 gchar *config, *path;
1175 config = ghb_get_user_config_dir(NULL);
1176 path = g_strdup_printf ("%s/ghb.pid.%d", config, pid);
1178 fp = g_fopen(path, "w");
1179 fprintf(fp, "%d\n", pid);
1182 fd = open(path, O_RDWR|O_CREAT, S_IRUSR|S_IWUSR);
1183 lock = lockf(fd, F_TLOCK, 0);
1191 ghb_unlink_pid_file(int pid)
1193 gchar *config, *path;
1195 config = ghb_get_user_config_dir(NULL);
1196 path = g_strdup_printf ("%s/ghb.pid.%d", config, pid);
1198 if (g_file_test(path, G_FILE_TEST_IS_REGULAR))
1213 config = ghb_get_user_config_dir(NULL);
1215 if (g_file_test(config, G_FILE_TEST_IS_DIR))
1217 GDir *gdir = g_dir_open(config, 0, NULL);
1218 file = g_dir_read_name(gdir);
1221 if (strncmp(file, "ghb.pid.", 8) == 0)
1227 sscanf(file, "ghb.pid.%d", &pid);
1231 file = g_dir_read_name(gdir);
1234 path = g_strdup_printf("%s/%s", config, file);
1236 #if !defined(_WIN32)
1239 fd = open(path, O_RDWR);
1242 lock = lockf(fd, F_TLOCK, 0);
1263 file = g_dir_read_name(gdir);
1272 remove_plist(const gchar *name)
1274 gchar *config, *path;
1276 config = ghb_get_user_config_dir(NULL);
1277 path = g_strdup_printf ("%s/%s", config, name);
1278 if (g_file_test(path, G_FILE_TEST_IS_REGULAR))
1286 static gboolean prefs_initializing = FALSE;
1289 ghb_prefs_to_ui(signal_user_data_t *ud)
1294 GValue *internal, *dict;
1295 GHashTableIter iter;
1298 g_debug("ghb_prefs_to_ui");
1299 prefs_initializing = TRUE;
1301 // Setting a ui widget will cause the corresponding setting
1302 // to be set, but it also triggers a callback that can
1303 // have the side effect of using other settings values
1304 // that have not yet been set. So set *all* settings first
1305 // then update the ui.
1306 internal = plist_get_dict(internalPlist, "Initialization");
1307 ghb_dict_iter_init(&iter, internal);
1308 // middle (void*) cast prevents gcc warning "defreferencing type-punned
1309 // pointer will break strict-aliasing rules"
1310 while (g_hash_table_iter_next(
1311 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1313 ghb_ui_update(ud, key, gval);
1316 dict = plist_get_dict(prefsPlist, "Preferences");
1317 internal = plist_get_dict(internalPlist, "Preferences");
1318 ghb_dict_iter_init(&iter, internal);
1319 // middle (void*) cast prevents gcc warning "defreferencing type-punned
1320 // pointer will break strict-aliasing rules"
1321 while (g_hash_table_iter_next(
1322 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1324 const GValue *value = NULL;
1326 value = ghb_dict_lookup(dict, key);
1329 ghb_settings_set_value(ud->settings, key, value);
1331 internal = plist_get_dict(internalPlist, "Preferences");
1332 ghb_dict_iter_init(&iter, internal);
1333 // middle (void*) cast prevents gcc warning "defreferencing type-punned
1334 // pointer will break strict-aliasing rules"
1335 while (g_hash_table_iter_next(
1336 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1338 const GValue *value = NULL;
1340 value = ghb_dict_lookup(dict, key);
1343 ghb_ui_update(ud, key, value);
1346 val = ghb_settings_get_value(ud->settings, "show_presets");
1347 ghb_ui_update(ud, "show_presets", val);
1348 if (ghb_settings_get_boolean(ud->settings, "hbfd_feature"))
1351 val = ghb_settings_get_value(ud->settings, "hbfd");
1352 ghb_ui_update(ud, "hbfd", val);
1353 action = GHB_ACTION (ud->builder, "hbfd");
1354 gtk_action_set_visible(action, TRUE);
1358 ghb_ui_update(ud, "hbfd", ghb_int64_value(0));
1360 gval = ghb_settings_get_value(ud->settings, "default_source");
1361 ghb_settings_set_value (ud->settings, "scan_source", gval);
1363 str = ghb_settings_get_string(ud->settings, "destination_dir");
1364 ghb_ui_update(ud, "dest_dir", ghb_string_value(str));
1366 gchar *file = g_strdup_printf ("new_video.mp4");
1367 ghb_ui_update(ud, "dest_file", ghb_string_value(file));
1371 prefs_initializing = FALSE;
1375 ghb_prefs_save(GValue *settings)
1379 GHashTableIter iter;
1381 const GValue *value;
1383 if (prefs_initializing) return;
1384 dict = plist_get_dict(internalPlist, "Preferences");
1385 if (dict == NULL) return;
1386 pref_dict = plist_get_dict(prefsPlist, "Preferences");
1387 if (pref_dict == NULL) return;
1388 ghb_dict_iter_init(&iter, dict);
1389 // middle (void*) cast prevents gcc warning "defreferencing type-punned
1390 // pointer will break strict-aliasing rules"
1391 while (g_hash_table_iter_next(
1392 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&value))
1394 value = ghb_settings_get_value(settings, key);
1397 ghb_dict_insert(pref_dict, g_strdup(key), ghb_value_dup(value));
1401 prefs_modified = FALSE;
1405 ghb_pref_set(GValue *settings, const gchar *key)
1407 const GValue *value, *value2;
1409 if (prefs_initializing) return;
1410 value = ghb_settings_get_value(settings, key);
1414 dict = plist_get_dict(prefsPlist, "Preferences");
1415 if (dict == NULL) return;
1416 value2 = ghb_dict_lookup(dict, key);
1417 if (ghb_value_cmp(value, value2) != 0)
1419 ghb_dict_insert(dict, g_strdup(key), ghb_value_dup(value));
1421 prefs_modified = TRUE;
1427 ghb_pref_save(GValue *settings, const gchar *key)
1429 const GValue *value, *value2;
1431 if (prefs_initializing) return;
1432 value = ghb_settings_get_value(settings, key);
1436 dict = plist_get_dict(prefsPlist, "Preferences");
1437 if (dict == NULL) return;
1438 value2 = ghb_dict_lookup(dict, key);
1439 if (ghb_value_cmp(value, value2) != 0)
1441 ghb_dict_insert(dict, g_strdup(key), ghb_value_dup(value));
1443 prefs_modified = FALSE;
1449 ghb_prefs_store(void)
1454 prefs_modified = FALSE;
1459 ghb_settings_init(signal_user_data_t *ud)
1462 GHashTableIter iter;
1467 g_debug("ghb_settings_init");
1468 prefs_initializing = TRUE;
1470 internalPlist = ghb_resource_get("internal-defaults");
1471 // Setting a ui widget will cause the corresponding setting
1472 // to be set, but it also triggers a callback that can
1473 // have the side effect of using other settings values
1474 // that have not yet been set. So set *all* settings first
1475 // then update the ui.
1476 internal = plist_get_dict(internalPlist, "Initialization");
1477 ghb_dict_iter_init(&iter, internal);
1478 // middle (void*) cast prevents gcc warning "defreferencing type-punned
1479 // pointer will break strict-aliasing rules"
1480 while (g_hash_table_iter_next(
1481 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1483 ghb_settings_set_value(ud->settings, key, gval);
1486 internal = plist_get_dict(internalPlist, "Presets");
1487 ghb_dict_iter_init(&iter, internal);
1488 // middle (void*) cast prevents gcc warning "defreferencing type-punned
1489 // pointer will break strict-aliasing rules"
1490 while (g_hash_table_iter_next(
1491 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1493 ghb_settings_set_value(ud->settings, key, gval);
1496 internal = plist_get_dict(internalPlist, "Preferences");
1497 ghb_dict_iter_init(&iter, internal);
1498 // middle (void*) cast prevents gcc warning "defreferencing type-punned
1499 // pointer will break strict-aliasing rules"
1500 while (g_hash_table_iter_next(
1501 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1503 ghb_settings_set_value(ud->settings, key, gval);
1505 prefs_initializing = FALSE;
1509 ghb_settings_close()
1512 ghb_value_free(internalPlist);
1514 ghb_value_free(presetsPlist);
1516 ghb_value_free(prefsPlist);
1521 FindFirstCDROM(void)
1526 strcpy(drive, "A:" G_DIR_SEPARATOR_S);
1527 drives = GetLogicalDrives();
1528 for (ii = 0; ii < 26; ii++)
1534 drive[0] = 'A' + ii;
1535 dtype = GetDriveType(drive);
1536 if (dtype == DRIVE_CDROM)
1538 return g_strdup(drive);
1548 ghb_prefs_load(signal_user_data_t *ud)
1550 GValue *dict, *internal;
1551 GHashTableIter iter;
1553 GValue *gval, *path;
1555 g_debug("ghb_prefs_load");
1556 prefsPlist = load_plist("preferences");
1557 if (prefsPlist == NULL)
1558 prefsPlist = ghb_dict_value_new();
1559 dict = plist_get_dict(prefsPlist, "Preferences");
1560 internal = plist_get_dict(internalPlist, "Preferences");
1561 if (dict == NULL && internal)
1563 dict = ghb_dict_value_new();
1564 ghb_dict_insert(prefsPlist, g_strdup("Preferences"), dict);
1566 // Get defaults from internal defaults
1567 ghb_dict_iter_init(&iter, internal);
1568 // middle (void*) cast prevents gcc warning "defreferencing type-punned
1569 // pointer will break strict-aliasing rules"
1570 while (g_hash_table_iter_next(
1571 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&gval))
1573 ghb_dict_insert(dict, g_strdup(key), ghb_value_dup(gval));
1576 const gchar *dir = g_get_user_special_dir (G_USER_DIRECTORY_DESKTOP);
1581 ghb_dict_insert(dict,
1582 g_strdup("ExportDirectory"), ghb_value_dup(ghb_string_value(dir)));
1584 dir = g_get_user_special_dir (G_USER_DIRECTORY_VIDEOS);
1589 ghb_dict_insert(dict,
1590 g_strdup("destination_dir"), ghb_value_dup(ghb_string_value(dir)));
1592 ghb_dict_insert(dict,
1593 g_strdup("SrtDir"), ghb_value_dup(ghb_string_value(dir)));
1597 source = FindFirstCDROM();
1600 source = g_strdup("C:" G_DIR_SEPARATOR_S);
1602 ghb_dict_insert(dict, g_strdup("default_source"),
1603 ghb_value_dup(ghb_string_value(source)));
1608 // Read legacy default_preset preference and update accordingly
1609 path = ghb_dict_lookup(dict, "default_preset");
1614 if (G_VALUE_TYPE(path) == G_TYPE_STRING)
1618 path = ghb_array_value_new(1);
1619 ghb_array_append(path, ghb_value_dup(str));
1620 indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
1621 ghb_value_free(path);
1624 indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
1628 presets_set_default(indices, len);
1631 ghb_dict_remove(dict, "default_preset");
1637 get_preset_color(gint type, gboolean folder)
1641 if (type == PRESETS_CUSTOM)
1661 ghb_presets_list_init(
1662 signal_user_data_t *ud,
1666 GtkTreeView *treeview;
1667 GtkTreeIter iter, titer, *piter;
1669 GtkTreeStore *store;
1670 const gchar *preset;
1671 GtkTreePath *parent_path;
1672 const gchar *description;
1677 GValue *presets = NULL;
1679 g_debug("ghb_presets_list_init ()");
1680 more_indices = g_malloc((len+1)*sizeof(gint));
1681 memcpy(more_indices, indices, len*sizeof(gint));
1682 presets = presets_get_folder(presetsPlist, indices, len);
1683 if (presets == NULL)
1685 g_warning("Failed to find parent folder when adding child.");
1688 count = ghb_array_len(presets);
1689 treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
1690 store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
1691 parent_path = ghb_tree_path_new_from_indices(indices, len);
1694 gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &titer, parent_path);
1696 gtk_tree_path_free(parent_path);
1702 for (ii = 0; ii < count; ii++)
1708 // Additional settings, add row
1709 dict = ghb_array_get_nth(presets, ii);
1710 preset = preset_get_name(dict);
1711 more_indices[len] = ii;
1712 def = preset_is_default(dict);
1714 description = ghb_presets_get_description(dict);
1715 gtk_tree_store_append(store, &iter, piter);
1716 type = ghb_preset_type(dict);
1717 folder = ghb_preset_folder(dict);
1718 color = get_preset_color(type, folder);
1719 gtk_tree_store_set(store, &iter, 0, preset,
1724 5, type == PRESETS_BUILTIN ? 0 : 1,
1731 if (gtk_tree_model_iter_parent(
1732 GTK_TREE_MODEL(store), &ppiter, piter))
1734 path = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &ppiter);
1735 gtk_tree_view_expand_row(treeview, path, FALSE);
1736 gtk_tree_path_free(path);
1738 path = gtk_tree_model_get_path(GTK_TREE_MODEL(store), piter);
1739 gtk_tree_view_expand_row(treeview, path, FALSE);
1740 gtk_tree_path_free(path);
1744 ghb_presets_list_init(ud, more_indices, len+1);
1745 if (preset_folder_is_open(dict))
1751 path = gtk_tree_model_get_path(GTK_TREE_MODEL(store), piter);
1752 gtk_tree_view_expand_row(treeview, path, FALSE);
1753 gtk_tree_path_free(path);
1755 path = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &iter);
1756 gtk_tree_view_expand_row(treeview, path, FALSE);
1757 gtk_tree_path_free(path);
1761 g_free(more_indices);
1765 presets_list_update_item(
1766 signal_user_data_t *ud,
1771 GtkTreeView *treeview;
1772 GtkTreeStore *store;
1774 GtkTreePath *treepath;
1776 const gchar *description;
1778 gboolean def, folder;
1782 g_debug("presets_list_update_item ()");
1783 dict = presets_get_dict(presetsPlist, indices, len);
1786 treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
1787 store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
1788 treepath = ghb_tree_path_new_from_indices(indices, len);
1789 gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, treepath);
1790 // Additional settings, add row
1791 name = preset_get_name(dict);
1792 def = preset_is_default(dict);
1794 description = ghb_presets_get_description(dict);
1795 type = ghb_preset_type(dict);
1796 folder = ghb_preset_folder(dict);
1797 color = get_preset_color(type, folder);
1798 gtk_tree_store_set(store, &iter, 0, name,
1803 5, type == PRESETS_BUILTIN ? 0 : 1,
1805 if (recurse && folder)
1807 ghb_presets_list_init(ud, indices, len);
1812 presets_list_insert(
1813 signal_user_data_t *ud,
1817 GtkTreeView *treeview;
1818 GtkTreeIter iter, titer, *piter;
1819 GtkTreeStore *store;
1820 const gchar *preset;
1821 const gchar *description;
1823 gboolean def, folder;
1826 GtkTreePath *parent_path;
1830 g_debug("presets_list_insert ()");
1831 treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
1832 store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
1833 presets = presets_get_folder(presetsPlist, indices, len-1);
1834 if (presets == NULL)
1836 g_warning("Failed to find parent folder while adding child.");
1839 parent_path = ghb_tree_path_new_from_indices(indices, len-1);
1842 gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &titer, parent_path);
1844 gtk_tree_path_free(parent_path);
1850 count = ghb_array_len(presets);
1851 if (indices[len-1] >= count)
1853 // Additional settings, add row
1854 dict = ghb_array_get_nth(presets, indices[len-1]);
1855 preset = preset_get_name(dict);
1856 def = preset_is_default(dict);
1858 description = ghb_presets_get_description(dict);
1859 gtk_tree_store_insert(store, &iter, piter, indices[len-1]);
1860 type = ghb_preset_type(dict);
1861 folder = ghb_preset_folder(dict);
1862 color = get_preset_color(type, folder);
1863 gtk_tree_store_set(store, &iter, 0, preset,
1868 5, type == PRESETS_BUILTIN ? 0 : 1,
1872 ghb_presets_list_init(ud, indices, len);
1877 presets_list_remove(
1878 signal_user_data_t *ud,
1882 GtkTreeView *treeview;
1883 GtkTreePath *treepath;
1885 GtkTreeStore *store;
1887 g_debug("presets_list_remove ()");
1888 treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
1889 store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
1890 treepath = ghb_tree_path_new_from_indices(indices, len);
1893 if (gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, treepath))
1894 gtk_tree_store_remove(store, &iter);
1895 gtk_tree_path_free(treepath);
1900 remove_std_presets(signal_user_data_t *ud)
1905 count = ghb_array_len(presetsPlist);
1906 for (ii = count-1; ii >= 0; ii--)
1911 dict = ghb_array_get_nth(presetsPlist, ii);
1912 ptype = ghb_value_int(preset_dict_get_value(dict, "Type"));
1913 if (ptype == PRESETS_BUILTIN)
1915 if (ghb_presets_remove(presetsPlist, &indices, 1))
1917 presets_list_remove(ud, &indices, 1);
1924 ghb_save_queue(GValue *queue)
1930 path = g_strdup_printf ("queue.%d", pid);
1931 store_plist(queue, path);
1943 path = g_strdup_printf ("queue.%d", pid);
1944 queue = load_plist(path);
1950 ghb_load_old_queue(int pid)
1955 path = g_strdup_printf ("queue.%d", pid);
1956 queue = load_plist(path);
1962 ghb_remove_old_queue_file(int pid)
1966 path = g_strdup_printf ("queue.%d", pid);
1972 ghb_remove_queue_file()
1978 path = g_strdup_printf ("queue.%d", pid);
1989 static value_map_t vcodec_xlat[] =
1991 {"MPEG-4 (FFmpeg)", "ffmpeg"},
1992 {"MPEG-4 (XviD)", "ffmpeg"},
1993 {"H.264 (x264)", "x264"},
1994 {"VP3 (Theora)", "theora"},
1998 static value_map_t acodec_xlat[] =
2000 {"AAC (faac)", "faac"},
2001 {"AAC (CoreAudio)", "faac"},
2002 {"AC3 Passthru", "ac3pass"},
2003 {"DTS Passthru", "dtspass"},
2004 {"MP3 (lame)", "lame"},
2005 {"Vorbis (vorbis)", "vorbis"},
2009 value_map_t container_xlat[] =
2011 {"MP4 file", "mp4"},
2012 {"M4V file", "mp4"},
2013 {"MKV file", "mkv"},
2014 {"AVI file", "mkv"},
2015 {"OGM file", "mkv"},
2019 value_map_t framerate_xlat[] =
2021 {"Same as source", "source"},
2026 {"23.976 (NTSC Film)", "23.976"},
2028 {"25 (PAL Film/Video)", "25"},
2029 {"29.97 (NTSC Video)", "29.97"},
2033 value_map_t samplerate_xlat[] =
2044 value_map_t mix_xlat[] =
2047 {"Stereo", "stereo"},
2048 {"Dolby Surround", "dpl1"},
2049 {"Dolby Pro Logic II", "dpl2"},
2050 {"6-channel discrete", "6ch"},
2051 {"AC3 Passthru", "none"},
2055 value_map_t deint_xlat[] =
2065 value_map_t denoise_xlat[] =
2075 value_map_t detel_xlat[] =
2083 value_map_t decomb_xlat[] =
2091 extern iso639_lang_t ghb_language_table[];
2094 export_lang_xlat2(GValue *lin_val)
2098 if (lin_val == NULL) return NULL;
2102 str = ghb_value_string(lin_val);
2103 for (ii = 0; ghb_language_table[ii].eng_name; ii++)
2105 if (strcmp(str, ghb_language_table[ii].iso639_2) == 0)
2109 if (ghb_language_table[ii].native_name[0] != 0)
2110 lang = ghb_language_table[ii].native_name;
2112 lang = ghb_language_table[ii].eng_name;
2114 gval = ghb_string_value_new(lang);
2119 g_debug("Can't map language value: (%s)", str);
2125 export_subtitle_xlat2(GValue *lin_val)
2130 if (lin_val == NULL) return NULL;
2131 str = ghb_value_string(lin_val);
2132 if (strcmp(str, "none") == 0)
2134 gval = ghb_string_value_new("None");
2136 else if (strcmp(str, "auto") == 0)
2138 gval = ghb_string_value_new("Autoselect");
2142 gval = export_lang_xlat2(lin_val);
2149 import_lang_xlat2(GValue *mac_val)
2153 if (mac_val == NULL) return NULL;
2157 str = ghb_value_string(mac_val);
2158 for (ii = 0; ghb_language_table[ii].eng_name; ii++)
2160 if ((strcmp(str, ghb_language_table[ii].eng_name) == 0) ||
2161 (strcmp(str, ghb_language_table[ii].native_name) == 0))
2163 gval = ghb_string_value_new(ghb_language_table[ii].iso639_2);
2168 g_debug("Can't map language value: (%s)", str);
2174 import_subtitle_xlat2(GValue *mac_val)
2179 if (mac_val == NULL) return NULL;
2180 str = ghb_value_string(mac_val);
2181 if (strcmp(str, "None") == 0)
2183 gval = ghb_string_value_new("none");
2185 else if (strcmp(str, "Autoselect") == 0)
2187 gval = ghb_string_value_new("auto");
2191 gval = import_lang_xlat2(mac_val);
2198 export_audio_track_xlat2(GValue *lin_val)
2201 GValue *gval = NULL;
2203 if (lin_val == NULL) return NULL;
2204 str = ghb_value_string(lin_val);
2205 if (strcmp(str, "none") == 0)
2207 gval = ghb_int_value_new(1);
2211 gint val = ghb_value_int(lin_val) + 1;
2212 gval = ghb_int_value_new(val);
2219 import_audio_track_xlat2(GValue *mac_val)
2225 if (mac_val == NULL) return NULL;
2226 val = ghb_value_int(mac_val);
2235 str = g_strdup_printf("%d", val);
2236 gval = ghb_string_value_new(str);
2242 export_value_xlat2(value_map_t *value_map, GValue *lin_val, GType mac_type)
2246 if (lin_val == NULL) return NULL;
2251 str = ghb_value_string(lin_val);
2252 for (ii = 0; value_map[ii].mac_val; ii++)
2254 if (strcmp(str, value_map[ii].lin_val) == 0)
2256 sval = ghb_string_value_new(value_map[ii].mac_val);
2258 gval = ghb_value_new(mac_type);
2259 if (!g_value_transform(sval, gval))
2261 g_warning("can't transform");
2262 ghb_value_free(gval);
2263 ghb_value_free(sval);
2266 ghb_value_free(sval);
2270 g_debug("Can't map value: (%s)", str);
2276 export_value_xlat(GValue *dict)
2278 GValue *lin_val, *gval;
2281 key = "VideoEncoder";
2282 lin_val = ghb_dict_lookup(dict, key);
2283 gval = export_value_xlat2(vcodec_xlat, lin_val, G_TYPE_STRING);
2285 ghb_dict_insert(dict, g_strdup(key), gval);
2287 lin_val = ghb_dict_lookup(dict, key);
2288 gval = export_value_xlat2(container_xlat, lin_val, G_TYPE_STRING);
2290 ghb_dict_insert(dict, g_strdup(key), gval);
2291 key = "VideoFramerate";
2292 lin_val = ghb_dict_lookup(dict, key);
2293 gval = export_value_xlat2(framerate_xlat, lin_val, G_TYPE_STRING);
2295 ghb_dict_insert(dict, g_strdup(key), gval);
2296 key = "PictureDetelecine";
2297 lin_val = ghb_dict_lookup(dict, key);
2298 gval = export_value_xlat2(detel_xlat, lin_val, G_TYPE_INT);
2300 ghb_dict_insert(dict, g_strdup(key), gval);
2301 key = "PictureDecomb";
2302 lin_val = ghb_dict_lookup(dict, key);
2303 gval = export_value_xlat2(decomb_xlat, lin_val, G_TYPE_INT);
2305 ghb_dict_insert(dict, g_strdup(key), gval);
2306 key = "PictureDeinterlace";
2307 lin_val = ghb_dict_lookup(dict, key);
2308 gval = export_value_xlat2(deint_xlat, lin_val, G_TYPE_INT);
2310 ghb_dict_insert(dict, g_strdup(key), gval);
2311 key = "PictureDenoise";
2312 lin_val = ghb_dict_lookup(dict, key);
2313 gval = export_value_xlat2(denoise_xlat, lin_val, G_TYPE_INT);
2315 ghb_dict_insert(dict, g_strdup(key), gval);
2321 slist = ghb_dict_lookup(dict, "SubtitleList");
2322 count = ghb_array_len(slist);
2323 for (ii = 0; ii < count; ii++)
2325 sdict = ghb_array_get_nth(slist, ii);
2326 key = "SubtitleLanguage";
2327 lin_val = ghb_dict_lookup(sdict, key);
2328 gval = export_subtitle_xlat2(lin_val);
2330 ghb_dict_insert(sdict, g_strdup(key), gval);
2336 alist = ghb_dict_lookup(dict, "AudioList");
2337 count = ghb_array_len(alist);
2338 for (ii = 0; ii < count; ii++)
2340 adict = ghb_array_get_nth(alist, ii);
2342 lin_val = ghb_dict_lookup(adict, key);
2343 gval = export_audio_track_xlat2(lin_val);
2345 ghb_dict_insert(adict, g_strdup(key), gval);
2346 key = "AudioEncoder";
2347 lin_val = ghb_dict_lookup(adict, key);
2348 gval = export_value_xlat2(acodec_xlat, lin_val, G_TYPE_STRING);
2350 ghb_dict_insert(adict, g_strdup(key), gval);
2351 key = "AudioSamplerate";
2352 lin_val = ghb_dict_lookup(adict, key);
2353 gval = export_value_xlat2(samplerate_xlat, lin_val, G_TYPE_STRING);
2355 ghb_dict_insert(adict, g_strdup(key), gval);
2356 key = "AudioMixdown";
2357 lin_val = ghb_dict_lookup(adict, key);
2358 gval = export_value_xlat2(mix_xlat, lin_val, G_TYPE_STRING);
2360 ghb_dict_insert(adict, g_strdup(key), gval);
2368 value_map_t *value_map,
2372 GValue *gval, *def_val;
2374 if (mac_val == NULL) return NULL;
2375 def_val = ghb_dict_lookup(defaults, key);
2382 str = ghb_value_string(mac_val);
2383 for (ii = 0; value_map[ii].mac_val; ii++)
2385 if (strcmp(str, value_map[ii].mac_val) == 0)
2387 sval = ghb_string_value_new(value_map[ii].lin_val);
2389 gval = ghb_value_new(G_VALUE_TYPE(def_val));
2390 if (!g_value_transform(sval, gval))
2392 g_warning("can't transform");
2393 ghb_value_free(gval);
2394 ghb_value_free(sval);
2397 ghb_value_free(sval);
2409 str = ghb_value_string(mac_val);
2410 for (ii = 0; value_map[ii].mac_val; ii++)
2412 if (strcmp(str, value_map[ii].mac_val) == 0)
2414 sval = ghb_string_value_new(value_map[ii].lin_val);
2416 gval = ghb_value_new(G_VALUE_TYPE(mac_val));
2417 if (!g_value_transform(sval, gval))
2419 g_warning("can't transform");
2420 ghb_value_free(gval);
2421 ghb_value_free(sval);
2424 ghb_value_free(sval);
2434 import_value_xlat(GValue *dict)
2436 GValue *defaults, *mac_val, *gval;
2439 defaults = plist_get_dict(internalPlist, "Presets");
2440 key = "VideoEncoder";
2441 mac_val = ghb_dict_lookup(dict, key);
2442 gval = import_value_xlat2(defaults, vcodec_xlat, key, mac_val);
2444 ghb_dict_insert(dict, g_strdup(key), gval);
2446 mac_val = ghb_dict_lookup(dict, key);
2447 gval = import_value_xlat2(defaults, container_xlat, key, mac_val);
2449 ghb_dict_insert(dict, g_strdup(key), gval);
2450 key = "VideoFramerate";
2451 mac_val = ghb_dict_lookup(dict, key);
2452 gval = import_value_xlat2(defaults, framerate_xlat, key, mac_val);
2454 ghb_dict_insert(dict, g_strdup(key), gval);
2455 key = "PictureDetelecine";
2456 mac_val = ghb_dict_lookup(dict, key);
2457 gval = import_value_xlat2(defaults, detel_xlat, key, mac_val);
2459 ghb_dict_insert(dict, g_strdup(key), gval);
2460 key = "PictureDecomb";
2461 mac_val = ghb_dict_lookup(dict, key);
2462 gval = import_value_xlat2(defaults, decomb_xlat, key, mac_val);
2464 ghb_dict_insert(dict, g_strdup(key), gval);
2465 key = "PictureDeinterlace";
2466 mac_val = ghb_dict_lookup(dict, key);
2467 gval = import_value_xlat2(defaults, deint_xlat, key, mac_val);
2469 ghb_dict_insert(dict, g_strdup(key), gval);
2470 key = "PictureDenoise";
2471 mac_val = ghb_dict_lookup(dict, key);
2472 gval = import_value_xlat2(defaults, denoise_xlat, key, mac_val);
2474 ghb_dict_insert(dict, g_strdup(key), gval);
2483 sdeflist = ghb_dict_lookup(defaults, "SubtitleList");
2486 slist = ghb_dict_lookup(dict, "SubtitleList");
2489 sdefaults = ghb_array_get_nth(sdeflist, 0);
2490 count = ghb_array_len(slist);
2491 for (ii = 0; ii < count; ii++)
2493 sdict = ghb_array_get_nth(slist, ii);
2494 key = "SubtitleLanguage";
2495 mac_val = ghb_dict_lookup(sdict, key);
2496 gval = import_subtitle_xlat2(mac_val);
2498 ghb_dict_insert(sdict, g_strdup(key), gval);
2505 mac_val = ghb_dict_lookup(dict, key);
2506 slist = ghb_array_value_new(8);
2507 ghb_dict_insert(dict, g_strdup("SubtitleList"), slist);
2512 gval = import_subtitle_xlat2(mac_val);
2513 lang = ghb_value_string(gval);
2514 if (lang && strcasecmp(lang, "none") != 0 && !slist)
2516 sdict = ghb_dict_value_new();
2517 ghb_array_append(slist, sdict);
2518 ghb_dict_insert(sdict, g_strdup("SubtitleLanguage"), gval);
2519 gval = ghb_dict_lookup(dict, "SubtitlesForced");
2522 ghb_dict_insert(sdict, g_strdup("SubtitleForced"),
2523 ghb_value_dup(gval));
2527 ghb_dict_insert(sdict, g_strdup("SubtitleForced"),
2528 ghb_boolean_value_new(FALSE));
2530 ghb_dict_insert(sdict, g_strdup("SubtitleBurned"),
2531 ghb_boolean_value_new(TRUE));
2532 ghb_dict_insert(sdict, g_strdup("SubtitleDefaultTrack"),
2533 ghb_boolean_value_new(FALSE));
2537 ghb_value_free(gval);
2544 ghb_dict_remove(dict, "Subtitles");
2545 ghb_dict_remove(dict, "SubtitlesForced");
2553 adeflist = ghb_dict_lookup(defaults, "AudioList");
2556 adefaults = ghb_array_get_nth(adeflist, 0);
2557 alist = ghb_dict_lookup(dict, "AudioList");
2558 count = ghb_array_len(alist);
2559 for (ii = 0; ii < count; ii++)
2561 adict = ghb_array_get_nth(alist, ii);
2563 mac_val = ghb_dict_lookup(adict, key);
2564 gval = import_audio_track_xlat2(mac_val);
2566 ghb_dict_insert(adict, g_strdup(key), gval);
2567 key = "AudioEncoder";
2568 mac_val = ghb_dict_lookup(adict, key);
2569 gval = import_value_xlat2(adefaults, acodec_xlat, key, mac_val);
2571 ghb_dict_insert(adict, g_strdup(key), gval);
2572 key = "AudioSamplerate";
2573 mac_val = ghb_dict_lookup(adict, key);
2574 gval = import_value_xlat2(adefaults, samplerate_xlat, key, mac_val);
2576 ghb_dict_insert(adict, g_strdup(key), gval);
2577 key = "AudioMixdown";
2578 mac_val = ghb_dict_lookup(adict, key);
2579 gval = import_value_xlat2(adefaults, mix_xlat, key, mac_val);
2581 ghb_dict_insert(adict, g_strdup(key), gval);
2583 mac_val = ghb_dict_lookup(adict, "AudioTrackDRCSlider");
2584 if (mac_val != NULL)
2587 drc = ghb_value_double(mac_val);
2588 if (drc < 1.0 && drc > 0.0)
2590 ghb_dict_insert(adict, g_strdup("AudioTrackDRCSlider"),
2591 ghb_double_value_new(0.0));
2599 import_xlat_preset(GValue *dict)
2606 g_debug("import_xlat_preset ()");
2607 uses_max = ghb_value_boolean(
2608 preset_dict_get_value(dict, "UsesMaxPictureSettings"));
2609 uses_pic = ghb_value_int(
2610 preset_dict_get_value(dict, "UsesPictureSettings"));
2611 par = ghb_value_int(preset_dict_get_value(dict, "PicturePAR"));
2612 vqtype = ghb_value_int(preset_dict_get_value(dict, "VideoQualityType"));
2614 if (uses_max || uses_pic == 2)
2616 ghb_dict_insert(dict, g_strdup("autoscale"),
2617 ghb_boolean_value_new(TRUE));
2623 if (ghb_dict_lookup(dict, "PictureModulus") == NULL)
2624 ghb_dict_insert(dict, g_strdup("PictureModulus"),
2625 ghb_int_value_new(16));
2629 ghb_dict_insert(dict, g_strdup("PictureModulus"),
2630 ghb_int_value_new(1));
2634 if (ghb_dict_lookup(dict, "PictureModulus") == NULL)
2635 ghb_dict_insert(dict, g_strdup("PictureModulus"),
2636 ghb_int_value_new(16));
2640 if (ghb_dict_lookup(dict, "PictureModulus") == NULL)
2641 ghb_dict_insert(dict, g_strdup("PictureModulus"),
2642 ghb_int_value_new(16));
2645 // VideoQualityType/0/1/2 - vquality_type_/target/bitrate/constant
2646 // *note: target is no longer used
2651 ghb_dict_insert(dict, g_strdup("vquality_type_bitrate"),
2652 ghb_boolean_value_new(TRUE));
2653 ghb_dict_insert(dict, g_strdup("vquality_type_constant"),
2654 ghb_boolean_value_new(FALSE));
2658 ghb_dict_insert(dict, g_strdup("vquality_type_bitrate"),
2659 ghb_boolean_value_new(TRUE));
2660 ghb_dict_insert(dict, g_strdup("vquality_type_constant"),
2661 ghb_boolean_value_new(FALSE));
2665 ghb_dict_insert(dict, g_strdup("vquality_type_bitrate"),
2666 ghb_boolean_value_new(FALSE));
2667 ghb_dict_insert(dict, g_strdup("vquality_type_constant"),
2668 ghb_boolean_value_new(TRUE));
2672 ghb_dict_insert(dict, g_strdup("vquality_type_bitrate"),
2673 ghb_boolean_value_new(FALSE));
2674 ghb_dict_insert(dict, g_strdup("vquality_type_constant"),
2675 ghb_boolean_value_new(TRUE));
2679 import_value_xlat(dict);
2681 GValue *mode = ghb_dict_lookup(dict, "VideoFramerateMode");
2684 GValue *fr = ghb_dict_lookup(dict, "VideoFramerate");
2688 gboolean pfr = FALSE;
2689 GValue *pfr_val = ghb_dict_lookup(dict, "VideoFrameratePFR");
2692 pfr = ghb_value_boolean(pfr_val);
2694 str = ghb_value_string(fr);
2695 if (strcmp(str, "source") == 0)
2697 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"),
2698 ghb_boolean_value_new(FALSE));
2699 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"),
2700 ghb_boolean_value_new(TRUE));
2704 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"),
2705 ghb_boolean_value_new(TRUE));
2706 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"),
2707 ghb_boolean_value_new(FALSE));
2711 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"),
2712 ghb_boolean_value_new(FALSE));
2713 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"),
2714 ghb_boolean_value_new(FALSE));
2722 str = ghb_value_string(mode);
2723 if (strcmp(str, "cfr") == 0)
2725 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"),
2726 ghb_boolean_value_new(TRUE));
2727 ghb_dict_insert(dict, g_strdup("VideoFrameratePFR"),
2728 ghb_boolean_value_new(FALSE));
2729 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"),
2730 ghb_boolean_value_new(FALSE));
2732 else if (strcmp(str, "pfr") == 0)
2734 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"),
2735 ghb_boolean_value_new(FALSE));
2736 ghb_dict_insert(dict, g_strdup("VideoFrameratePFR"),
2737 ghb_boolean_value_new(TRUE));
2738 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"),
2739 ghb_boolean_value_new(FALSE));
2743 ghb_dict_insert(dict, g_strdup("VideoFramerateCFR"),
2744 ghb_boolean_value_new(FALSE));
2745 ghb_dict_insert(dict, g_strdup("VideoFrameratePFR"),
2746 ghb_boolean_value_new(FALSE));
2747 ghb_dict_insert(dict, g_strdup("VideoFramerateVFR"),
2748 ghb_boolean_value_new(TRUE));
2756 vquality = ghb_value_double(preset_dict_get_value(dict, "VideoQualitySlider"));
2757 if (vquality > 0.0 && vquality < 1.0)
2761 gval = preset_dict_get_value(dict, "VideoEncoder");
2762 vcodec = ghb_lookup_combo_int("VideoEncoder", gval);
2765 case HB_VCODEC_X264:
2767 vquality = 51. - vquality * 51.;
2770 case HB_VCODEC_FFMPEG:
2772 vquality = 31. - vquality * 30.;
2775 case HB_VCODEC_THEORA:
2777 vquality = vquality * 63.;
2785 ghb_dict_insert(dict, g_strdup("VideoQualitySlider"),
2786 ghb_double_value_new(vquality));
2791 import_xlat_presets(GValue *presets)
2797 g_debug("import_xlat_presets ()");
2798 if (presets == NULL) return;
2799 count = ghb_array_len(presets);
2800 for (ii = 0; ii < count; ii++)
2802 dict = ghb_array_get_nth(presets, ii);
2803 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
2808 nested = ghb_dict_lookup(dict, "ChildrenArray");
2809 import_xlat_presets(nested);
2813 import_xlat_preset(dict);
2819 export_xlat_preset(GValue *dict)
2821 gboolean autoscale, br, constant;
2823 g_debug("export_xlat_prest ()");
2824 autoscale = ghb_value_boolean(preset_dict_get_value(dict, "autoscale"));
2825 br = ghb_value_boolean(
2826 preset_dict_get_value(dict, "vquality_type_bitrate"));
2827 constant = ghb_value_boolean(
2828 preset_dict_get_value(dict, "vquality_type_constant"));
2831 ghb_dict_insert(dict, g_strdup("UsesPictureSettings"),
2832 ghb_int_value_new(2));
2834 ghb_dict_insert(dict, g_strdup("UsesPictureSettings"),
2835 ghb_int_value_new(1));
2837 // VideoQualityType/0/1/2 - vquality_type_/target/bitrate/constant
2838 // *note: target is no longer used
2841 ghb_dict_insert(dict, g_strdup("VideoQualityType"),
2842 ghb_int_value_new(1));
2846 ghb_dict_insert(dict, g_strdup("VideoQualityType"),
2847 ghb_int_value_new(2));
2850 if (ghb_value_boolean(preset_dict_get_value(dict, "VideoFramerateCFR")))
2852 ghb_dict_insert(dict, g_strdup("VideoFramerateMode"),
2853 ghb_string_value_new("cfr"));
2855 else if (ghb_value_boolean(preset_dict_get_value(dict, "VideoFrameratePFR")))
2857 ghb_dict_insert(dict, g_strdup("VideoFramerateMode"),
2858 ghb_string_value_new("pfr"));
2862 ghb_dict_insert(dict, g_strdup("VideoFramerateMode"),
2863 ghb_string_value_new("vfr"));
2866 GValue *alist, *adict;
2869 alist = ghb_dict_lookup(dict, "AudioList");
2870 count = ghb_array_len(alist);
2871 for (ii = 0; ii < count; ii++)
2875 adict = ghb_array_get_nth(alist, ii);
2876 drc = ghb_value_double(
2877 preset_dict_get_value(adict, "AudioTrackDRCSlider"));
2878 if (drc < 1.0 && drc > 0.0)
2880 ghb_dict_insert(adict, g_strdup("AudioTrackDRCSlider"),
2881 ghb_double_value_new(0.0));
2886 GHashTableIter iter;
2889 internal = plist_get_dict(internalPlist, "XlatPresets");
2890 ghb_dict_iter_init(&iter, internal);
2891 // middle (void*) cast prevents gcc warning "defreferencing type-punned
2892 // pointer will break strict-aliasing rules"
2893 while (g_hash_table_iter_next(
2894 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&value))
2896 ghb_dict_remove(dict, key);
2899 // remove obsolete keys
2900 ghb_dict_remove(dict, "UsesMaxPictureSettings");
2901 ghb_dict_remove(dict, "VFR");
2902 ghb_dict_remove(dict, "VideoFrameratePFR");
2904 export_value_xlat(dict);
2908 export_xlat_presets(GValue *presets)
2914 if (presets == NULL) return;
2915 count = ghb_array_len(presets);
2916 for (ii = 0; ii < count; ii++)
2918 dict = ghb_array_get_nth(presets, ii);
2919 folder = ghb_value_boolean(preset_dict_get_value(dict, "Folder"));
2924 nested = ghb_dict_lookup(dict, "ChildrenArray");
2925 export_xlat_presets(nested);
2929 export_xlat_preset(dict);
2934 static guint prefs_timeout_id = 0;
2937 delayed_store_prefs(gpointer data)
2939 store_plist(prefsPlist, "preferences");
2940 prefs_timeout_id = 0;
2949 export = ghb_value_dup(presetsPlist);
2950 export_xlat_presets(export);
2951 store_plist(export, "presets");
2952 ghb_value_free(export);
2958 if (prefs_timeout_id != 0)
2963 mc = g_main_context_default();
2964 source = g_main_context_find_source_by_id(mc, prefs_timeout_id);
2966 g_source_destroy(source);
2968 prefs_timeout_id = g_timeout_add_seconds(1, (GSourceFunc)delayed_store_prefs, NULL);
2972 ghb_presets_reload(signal_user_data_t *ud)
2974 GValue *std_presets;
2978 g_debug("ghb_presets_reload()\n");
2979 std_presets = ghb_resource_get("standard-presets");
2980 if (std_presets == NULL) return;
2982 remove_std_presets(ud);
2983 indices = presets_find_default(presetsPlist, &len);
2986 presets_clear_default(std_presets);
2989 // Merge the keyfile contents into our presets
2990 count = ghb_array_len(std_presets);
2991 for (ii = count-1; ii >= 0; ii--)
2997 std_dict = ghb_array_get_nth(std_presets, ii);
2998 copy_dict = ghb_value_dup(std_dict);
2999 ghb_dict_insert(copy_dict, g_strdup("PresetBuildNumber"),
3000 ghb_int64_value_new(hb_get_build(NULL)));
3001 ghb_presets_insert(presetsPlist, copy_dict, &indices, 1);
3002 presets_list_insert(ud, &indices, 1);
3004 import_xlat_presets(presetsPlist);
3013 count = ghb_array_len(presetsPlist);
3014 for (ii = count-1; ii >= 0; ii--)
3019 dict = ghb_array_get_nth(presetsPlist, ii);
3020 type = ghb_dict_lookup(dict, "Type");
3028 replace_standard_presets()
3030 GValue *std_presets;
3034 count = ghb_array_len(presetsPlist);
3035 for (ii = count-1; ii >= 0; ii--)
3040 dict = ghb_array_get_nth(presetsPlist, ii);
3041 ptype = ghb_value_int(preset_dict_get_value(dict, "Type"));
3042 if (ptype == PRESETS_BUILTIN)
3045 ghb_presets_remove(presetsPlist, &indices, 1);
3049 std_presets = ghb_resource_get("standard-presets");
3050 if (std_presets == NULL) return;
3052 indices = presets_find_default(presetsPlist, &len);
3055 presets_clear_default(std_presets);
3058 // Merge the keyfile contents into our presets
3059 count = ghb_array_len(std_presets);
3060 for (ii = count-1; ii >= 0; ii--)
3066 std_dict = ghb_array_get_nth(std_presets, ii);
3067 copy_dict = ghb_value_dup(std_dict);
3068 ghb_dict_insert(copy_dict, g_strdup("PresetBuildNumber"),
3069 ghb_int64_value_new(hb_get_build(NULL)));
3070 ghb_presets_insert(presetsPlist, copy_dict, &indices, 1);
3072 import_xlat_presets(presetsPlist);
3077 update_standard_presets(signal_user_data_t *ud)
3081 count = ghb_array_len(presetsPlist);
3082 for (ii = count-1; ii >= 0; ii--)
3089 dict = ghb_array_get_nth(presetsPlist, ii);
3090 gval = ghb_dict_lookup(dict, "Type");
3093 // Old preset that doesn't have a Type
3094 replace_standard_presets();
3098 type = ghb_value_int(gval);
3101 gval = ghb_dict_lookup(dict, "PresetBuildNumber");
3104 // Old preset that doesn't have a build number
3105 replace_standard_presets();
3109 build = ghb_value_int64(gval);
3110 if (build != hb_get_build(NULL))
3112 // Build number does not match
3113 replace_standard_presets();
3122 ghb_presets_load(signal_user_data_t *ud)
3124 presetsPlist = load_plist("presets");
3125 if (presetsPlist == NULL)
3127 presetsPlist = ghb_value_dup(ghb_resource_get("standard-presets"));
3128 import_xlat_presets(presetsPlist);
3131 else if (G_VALUE_TYPE(presetsPlist) == ghb_dict_get_type())
3132 { // Presets is older dictionary format. Convert to array
3133 ghb_value_free(presetsPlist);
3134 presetsPlist = ghb_value_dup(ghb_resource_get("standard-presets"));
3135 import_xlat_presets(presetsPlist);
3138 else if (check_old_presets())
3140 ghb_value_free(presetsPlist);
3141 presetsPlist = ghb_value_dup(ghb_resource_get("standard-presets"));
3142 import_xlat_presets(presetsPlist);
3145 update_standard_presets(ud);
3146 import_xlat_presets(presetsPlist);
3150 settings_save(signal_user_data_t *ud, const GValue *path)
3152 GValue *dict, *internal;
3153 GHashTableIter iter;
3156 gint *indices, len, count;
3157 gint *def_indices, def_len;
3159 gboolean replace = FALSE;
3161 g_debug("settings_save");
3162 if (internalPlist == NULL) return;
3163 count = ghb_array_len(path);
3164 name = g_value_get_string(ghb_array_get_nth(path, count-1));
3165 indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
3168 if (ghb_presets_get_folder(presetsPlist, indices, len))
3171 message = g_strdup_printf(
3172 "%s: Folder already exists.\n"
3173 "You can not replace it with a preset.",
3175 ghb_message_dialog(GTK_MESSAGE_ERROR, message, "Cancel", NULL);
3179 dict = ghb_dict_value_new();
3180 ghb_presets_replace(presetsPlist, dict, indices, len);
3185 indices = presets_find_pos(path, PRESETS_CUSTOM, &len);
3188 dict = ghb_dict_value_new();
3189 ghb_presets_insert(presetsPlist, dict, indices, len);
3193 g_warning("failed to find insert path");
3197 current_preset = dict;
3198 ghb_settings_set_int64(ud->settings, "Type", PRESETS_CUSTOM);
3199 ghb_settings_set_int64(ud->settings, "PresetBuildNumber", hb_get_build(NULL));
3201 internal = plist_get_dict(internalPlist, "Presets");
3202 ghb_dict_iter_init(&iter, internal);
3203 // middle (void*) cast prevents gcc warning "defreferencing type-punned
3204 // pointer will break strict-aliasing rules"
3205 while (g_hash_table_iter_next(
3206 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&value))
3210 gval = ghb_settings_get_value(ud->settings, key);
3215 ghb_dict_insert(dict, g_strdup(key), ghb_value_dup(gval));
3217 internal = plist_get_dict(internalPlist, "XlatPresets");
3218 ghb_dict_iter_init(&iter, internal);
3219 // middle (void*) cast prevents gcc warning "defreferencing type-punned
3220 // pointer will break strict-aliasing rules"
3221 while (g_hash_table_iter_next(
3222 &iter, (gpointer*)(void*)&key, (gpointer*)(void*)&value))
3226 gval = ghb_settings_get_value(ud->settings, key);
3231 ghb_dict_insert(dict, g_strdup(key), ghb_value_dup(gval));
3233 ghb_dict_insert(dict, g_strdup("PresetName"), ghb_string_value_new(name));
3236 def_indices = presets_find_default(presetsPlist, &def_len);
3237 if (def_indices != NULL &&
3238 preset_path_cmp(indices, len, def_indices, def_len) != 0)
3240 ghb_dict_insert(dict, g_strdup("Default"),
3241 ghb_boolean_value_new(FALSE));
3243 presets_list_update_item(ud, indices, len, FALSE);
3247 ghb_dict_insert(dict, g_strdup("Default"),
3248 ghb_boolean_value_new(FALSE));
3249 presets_list_insert(ud, indices, len);
3251 if (!ghb_settings_get_boolean( ud->settings, "PictureWidthEnable"))
3253 ghb_dict_remove(dict, "PictureWidth");
3255 if (!ghb_settings_get_boolean( ud->settings, "PictureHeightEnable"))
3257 ghb_dict_remove(dict, "PictureHeight");
3259 ghb_dict_insert(dict, g_strdup("autoscale"),
3260 ghb_boolean_value_new(
3261 !ghb_settings_get_boolean( ud->settings, "PictureWidthEnable") &&
3262 !ghb_settings_get_boolean( ud->settings, "PictureHeightEnable")
3266 ud->dont_clear_presets = TRUE;
3267 // Make the new preset the selected item
3268 ghb_select_preset2(ud->builder, indices, len);
3270 ud->dont_clear_presets = FALSE;
3275 folder_save(signal_user_data_t *ud, const GValue *path)
3277 GValue *dict, *folder;
3278 gint *indices, len, count;
3281 count = ghb_array_len(path);
3282 name = g_value_get_string(ghb_array_get_nth(path, count-1));
3283 indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
3286 if (!ghb_presets_get_folder(presetsPlist, indices, len))
3289 message = g_strdup_printf(
3290 "%s: Preset already exists.\n"
3291 "You can not replace it with a folder.",
3293 ghb_message_dialog(GTK_MESSAGE_ERROR, message, "Cancel", NULL);
3298 // Already exists, update its description
3299 dict = presets_get_dict(presetsPlist, indices, len);
3300 ghb_dict_insert(dict, g_strdup("PresetDescription"),
3301 ghb_value_dup(preset_dict_get_value(
3302 ud->settings, "PresetDescription")));
3303 presets_list_update_item(ud, indices, len, FALSE);
3310 indices = presets_find_pos(path, PRESETS_CUSTOM, &len);
3313 dict = ghb_dict_value_new();
3314 ghb_presets_insert(presetsPlist, dict, indices, len);
3318 g_warning("failed to find insert path");
3322 ghb_dict_insert(dict, g_strdup("PresetDescription"),
3323 ghb_value_dup(preset_dict_get_value(
3324 ud->settings, "PresetDescription")));
3325 ghb_dict_insert(dict, g_strdup("PresetName"), ghb_string_value_new(name));
3326 folder = ghb_array_value_new(8);
3327 ghb_dict_insert(dict, g_strdup("ChildrenArray"), folder);
3328 ghb_dict_insert(dict, g_strdup("Type"),
3329 ghb_int64_value_new(PRESETS_CUSTOM));
3330 ghb_dict_insert(dict, g_strdup("Folder"), ghb_boolean_value_new(TRUE));
3332 presets_list_insert(ud, indices, len);
3339 ghb_presets_list_default(signal_user_data_t *ud)
3341 GtkTreeView *treeview;
3342 GtkTreePath *treepath;
3344 GtkTreeStore *store;
3347 g_debug("ghb_presets_list_default ()");
3348 treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
3349 store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
3350 indices = presets_find_default(presetsPlist, &len);
3351 if (indices == NULL) return;
3352 treepath = ghb_tree_path_new_from_indices(indices, len);
3355 if (gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, treepath))
3357 gtk_tree_store_set(store, &iter,
3362 gtk_tree_path_free(treepath);
3368 ghb_presets_list_clear_default(signal_user_data_t *ud)
3370 GtkTreeView *treeview;
3371 GtkTreePath *treepath;
3373 GtkTreeStore *store;
3376 g_debug("ghb_presets_list_clear_default ()");
3377 treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
3378 store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
3379 indices = presets_find_default(presetsPlist, &len);
3380 if (indices == NULL) return;
3381 treepath = ghb_tree_path_new_from_indices(indices, len);
3384 if (gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, treepath))
3386 gtk_tree_store_set(store, &iter,
3391 gtk_tree_path_free(treepath);
3397 update_audio_presets(signal_user_data_t *ud)
3399 g_debug("update_audio_presets");
3400 const GValue *audio_list;
3402 audio_list = ghb_settings_get_value(ud->settings, "audio_list");
3403 ghb_settings_set_value(ud->settings, "AudioList", audio_list);
3407 update_subtitle_presets(signal_user_data_t *ud)
3409 g_debug("update_subtitle_presets");
3410 const GValue *subtitle_list, *subtitle;
3411 GValue *slist, *dict;
3412 gint count, ii, source;
3414 subtitle_list = ghb_settings_get_value(ud->settings, "subtitle_list");
3415 slist = ghb_array_value_new(8);
3416 count = ghb_array_len(subtitle_list);
3417 for (ii = 0; ii < count; ii++)
3419 subtitle = ghb_array_get_nth(subtitle_list, ii);
3420 source = ghb_settings_get_int(subtitle, "SubtitleSource");
3421 if (source != SRTSUB)
3423 dict = ghb_value_dup(subtitle);
3424 ghb_array_append(slist, dict);
3427 ghb_settings_take_value(ud->settings, "SubtitleList", slist);
3430 G_MODULE_EXPORT void
3431 presets_menu_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3435 menu = GTK_MENU(GHB_WIDGET(ud->builder, "presets_menu"));
3436 gtk_menu_popup(menu, NULL, NULL, NULL, NULL, 1,
3437 gtk_get_current_event_time());
3440 G_MODULE_EXPORT void
3441 preset_import_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3444 GtkResponseType response;
3447 GtkFileFilter *filter;
3449 g_debug("preset_import_clicked_cb ()");
3451 dialog = gtk_file_chooser_dialog_new("Import Preset", NULL,
3452 GTK_FILE_CHOOSER_ACTION_OPEN,
3453 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
3454 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
3457 filter = gtk_file_filter_new();
3458 gtk_file_filter_set_name(filter, "All (*)");
3459 gtk_file_filter_add_pattern(filter, "*");
3460 gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog), filter);
3462 filter = gtk_file_filter_new();
3463 gtk_file_filter_set_name(filter, "Presets (*.plist)");
3464 gtk_file_filter_add_pattern(filter, "*.plist");
3465 gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog), filter);
3466 gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(dialog), filter);
3468 exportDir = ghb_settings_get_string(ud->settings, "ExportDirectory");
3469 if (exportDir == NULL || exportDir[0] == '\0')
3471 exportDir = g_strdup(".");
3473 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), exportDir);
3476 response = gtk_dialog_run(GTK_DIALOG(dialog));
3477 gtk_widget_hide(dialog);
3478 if (response == GTK_RESPONSE_ACCEPT)
3480 GValue *dict, *array;
3484 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
3486 // import the preset
3487 if (!g_file_test(filename, G_FILE_TEST_IS_REGULAR))
3489 gtk_widget_destroy(dialog);
3493 array = ghb_plist_parse_file(filename);
3495 import_xlat_presets(array);
3496 presets_clear_default(array);
3497 presets_customize(array);
3499 count = ghb_array_len(array);
3500 for (ii = 0; ii < count; ii++)
3502 GValue *path, *name;
3506 dict = ghb_array_get_nth(array, ii);
3507 path = ghb_array_value_new(1);
3508 name = ghb_value_dup(ghb_dict_lookup(dict, "PresetName"));
3509 ghb_array_append(path, name);
3510 indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
3511 // Modify the preset name till we make it unique
3512 while (indices != NULL)
3514 gchar *str = ghb_value_string(name);
3516 ghb_value_free(path);
3519 str = g_strdup_printf("%s %d", str, index);
3520 path = ghb_array_value_new(1);
3521 name = ghb_string_value_new(str);
3522 ghb_array_append(path, name);
3526 indices = ghb_preset_indices_from_path(presetsPlist, path, &len);
3528 ghb_dict_insert(dict, g_strdup("PresetName"), ghb_value_dup(name));
3529 indices = presets_find_pos(path, PRESETS_CUSTOM, &len);
3530 ghb_presets_insert(presetsPlist, ghb_value_dup(dict), indices, len);
3531 presets_list_insert(ud, indices, len);
3532 ghb_value_free(path);
3534 ghb_value_free(array);
3536 exportDir = ghb_settings_get_string(ud->settings, "ExportDirectory");
3537 dir = g_path_get_dirname(filename);
3538 if (strcmp(dir, exportDir) != 0)
3540 ghb_settings_set_string(ud->settings, "ExportDirectory", dir);
3541 ghb_pref_save(ud->settings, "ExportDirectory");
3548 gtk_widget_destroy(dialog);
3551 G_MODULE_EXPORT void
3552 preset_export_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3555 GtkResponseType response;
3557 const gchar *name = "";
3558 gint count, *indices, len;
3562 g_debug("preset_export_clicked_cb ()");
3563 preset = ghb_settings_get_value (ud->settings, "preset_selection");
3567 count = ghb_array_len(preset);
3571 name = g_value_get_string(ghb_array_get_nth(preset, count-1));
3573 dialog = gtk_file_chooser_dialog_new("Export Preset", NULL,
3574 GTK_FILE_CHOOSER_ACTION_SAVE,
3575 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
3576 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
3579 exportDir = ghb_settings_get_string(ud->settings, "ExportDirectory");
3580 if (exportDir == NULL || exportDir[0] == '\0')
3582 exportDir = g_strdup(".");
3584 filename = g_strdup_printf("%s.plist", name);
3585 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), exportDir);
3586 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), filename);
3590 indices = ghb_preset_indices_from_path(presetsPlist, preset, &len);
3591 if (indices == NULL)
3594 response = gtk_dialog_run(GTK_DIALOG(dialog));
3595 gtk_widget_hide(dialog);
3596 if (response == GTK_RESPONSE_ACCEPT)
3598 GValue *export, *dict, *array;
3602 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
3604 // export the preset
3605 dict = presets_get_dict(presetsPlist, indices, len);
3607 export = ghb_value_dup(dict);
3608 array = ghb_array_value_new(1);
3609 ghb_array_append(array, export);
3610 presets_clear_default(array);
3611 presets_customize(array);
3612 export_xlat_presets(array);
3614 file = g_fopen(filename, "w");
3617 ghb_plist_write(file, array);
3620 ghb_value_free(array);
3622 exportDir = ghb_settings_get_string(ud->settings, "ExportDirectory");
3623 dir = g_path_get_dirname(filename);
3624 if (strcmp(dir, exportDir) != 0)
3626 ghb_settings_set_string(ud->settings, "ExportDirectory", dir);
3627 ghb_pref_save(ud->settings, "ExportDirectory");
3633 gtk_widget_destroy(dialog);
3637 G_MODULE_EXPORT void
3638 presets_new_folder_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3643 GtkResponseType response;
3644 GValue *preset, *dict;
3645 const gchar *name = "";
3646 const gchar *description = "";
3647 gint count, *indices, len;
3649 g_debug("presets_new_folder_clicked_cb ()");
3650 preset = ghb_settings_get_value (ud->settings, "preset_selection");
3652 count = ghb_array_len(preset);
3654 name = g_value_get_string(ghb_array_get_nth(preset, count-1));
3658 indices = ghb_preset_indices_from_path(presetsPlist, preset, &len);
3659 dict = presets_get_dict(presetsPlist, indices, len);
3662 description = g_value_get_string(
3663 ghb_dict_lookup(dict, "PresetDescription"));
3664 ghb_ui_update(ud, "FolderDescription", ghb_string_value(description));
3667 desc = GTK_TEXT_VIEW(GHB_WIDGET(ud->builder, "FolderDescription"));
3668 dialog = GHB_WIDGET(ud->builder, "preset_new_folder_dialog");
3669 entry = GTK_ENTRY(GHB_WIDGET(ud->builder, "FolderName"));
3670 gtk_entry_set_text(entry, name);
3671 response = gtk_dialog_run(GTK_DIALOG(dialog));
3672 gtk_widget_hide(dialog);
3673 if (response == GTK_RESPONSE_OK)
3676 const gchar *name = gtk_entry_get_text(entry);
3679 if (count > MAX_NESTED_PRESET-1)
3680 count = MAX_NESTED_PRESET-1;
3682 dest = ghb_array_value_new(MAX_NESTED_PRESET);
3683 if (indices != NULL)
3687 ptype = ghb_presets_get_type(presetsPlist, indices, len);
3688 if (ptype == PRESETS_CUSTOM)
3690 ghb_array_copy(dest, preset, count-1);
3693 ghb_array_append(dest, ghb_string_value_new(name));
3694 GValue *val = ghb_widget_value(GTK_WIDGET(desc));
3695 ghb_settings_set_value(ud->settings, "PresetDescription", val);
3696 folder_save(ud, dest);
3697 ghb_value_free(dest);
3699 if (indices != NULL)
3703 G_MODULE_EXPORT void
3704 presets_save_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3709 GtkResponseType response;
3711 const gchar *name = "";
3712 gint count, *indices, len;
3714 g_debug("presets_save_clicked_cb ()");
3715 preset = ghb_settings_get_value (ud->settings, "preset_selection");
3717 count = ghb_array_len(preset);
3719 name = g_value_get_string(ghb_array_get_nth(preset, count-1));
3723 desc = GTK_TEXT_VIEW(GHB_WIDGET(ud->builder, "PresetDescription"));
3724 int width = ghb_settings_get_int(ud->settings, "PictureWidth");
3725 int height = ghb_settings_get_int(ud->settings, "PictureHeight");
3726 gboolean autoscale = ghb_settings_get_boolean(ud->settings, "autoscale");
3727 ghb_ui_update(ud, "PictureWidthEnable",
3728 ghb_boolean_value(width!=0&&!autoscale));
3729 ghb_ui_update(ud, "PictureHeightEnable",
3730 ghb_boolean_value(height!=0&&!autoscale));
3733 width = ghb_settings_get_int(ud->settings, "scale_width");
3734 ghb_ui_update(ud, "PictureWidth", ghb_int_value(width));
3738 height = ghb_settings_get_int(ud->settings, "scale_height");
3739 ghb_ui_update(ud, "PictureHeight", ghb_int_value(height));
3741 dialog = GHB_WIDGET(ud->builder, "preset_save_dialog");
3742 entry = GTK_ENTRY(GHB_WIDGET(ud->builder, "PresetName"));
3743 gtk_entry_set_text(entry, name);
3744 response = gtk_dialog_run(GTK_DIALOG(dialog));
3745 gtk_widget_hide(dialog);
3746 if (response == GTK_RESPONSE_OK)
3749 const gchar *name = gtk_entry_get_text(entry);
3752 dest = ghb_array_value_new(MAX_NESTED_PRESET);
3753 indices = ghb_preset_indices_from_path(presetsPlist, preset, &len);
3758 ptype = ghb_presets_get_type(presetsPlist, indices, len);
3759 if (ptype == PRESETS_CUSTOM)
3761 ghb_array_copy(dest, preset, count-1);
3765 ghb_array_append(dest, ghb_string_value_new(name));
3767 ghb_widget_to_setting(ud->settings, GTK_WIDGET(desc));
3769 // Construct the audio settings presets from the current audio list
3770 update_audio_presets(ud);
3771 update_subtitle_presets(ud);
3772 settings_save(ud, dest);
3773 ghb_value_free(dest);
3777 G_MODULE_EXPORT void
3778 preset_type_changed_cb(GtkWidget *widget, signal_user_data_t *ud)
3780 ghb_widget_to_setting(ud->settings, widget);
3783 G_MODULE_EXPORT void
3784 presets_restore_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3788 g_debug("presets_restore_clicked_cb ()");
3789 // Reload only the standard presets
3790 ghb_presets_reload(ud);
3791 // Updating the presets list shuffles things around
3792 // need to make sure the proper preset is selected
3793 preset = ghb_settings_get_value (ud->settings, "preset");
3794 ghb_select_preset(ud->builder, preset);
3797 G_MODULE_EXPORT void
3798 presets_remove_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
3800 GtkTreeView *treeview;
3801 GtkTreeSelection *selection;
3802 GtkTreeModel *store;
3805 GtkResponseType response;
3807 g_debug("presets_remove_clicked_cb ()");
3808 treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
3809 selection = gtk_tree_view_get_selection (treeview);
3810 if (gtk_tree_selection_get_selected(selection, &store, &iter))
3817 gtk_tree_model_get(store, &iter, 0, &preset, -1);
3818 path = gtk_tree_model_get_path(store, &iter);
3819 indices = gtk_tree_path_get_indices(path);
3820 len = gtk_tree_path_get_depth(path);
3822 folder = ghb_presets_get_folder(presetsPlist, indices, len);
3823 dialog = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL,
3824 GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO,
3825 "Confirm deletion of %s:\n\n%s",
3826 folder ? "folder" : "preset",
3828 response = gtk_dialog_run(GTK_DIALOG(dialog));
3829 gtk_widget_destroy (dialog);
3830 if (response == GTK_RESPONSE_YES)
3832 GtkTreeIter nextIter = iter;
3833 gboolean valid = TRUE;
3834 if (!gtk_tree_model_iter_next(store, &nextIter))
3836 if (!gtk_tree_model_iter_parent(store, &nextIter, &iter))
3841 // Remove the selected item
3842 // First unselect it so that selecting the new item works properly
3843 gtk_tree_selection_unselect_iter (selection, &iter);
3844 if (ghb_presets_remove(presetsPlist, indices, len))
3847 presets_list_remove(ud, indices, len);
3850 valid = gtk_tree_model_get_iter_first(store, &nextIter);
3853 gtk_tree_path_free(path);
3854 path = gtk_tree_model_get_path(store, &nextIter);
3855 indices = gtk_tree_path_get_indices(path);
3856 len = gtk_tree_path_get_depth(path);
3857 ghb_select_preset2(ud->builder, indices, len);
3861 gtk_tree_path_free(path);
3865 // controls where valid drop locations are
3866 G_MODULE_EXPORT gboolean
3867 presets_drag_motion_cb(
3869 GdkDragContext *ctx,
3873 signal_user_data_t *ud)
3875 GtkTreePath *path = NULL;
3876 GtkTreeViewDropPosition drop_pos;
3880 GtkTreeModel *model;
3881 GtkTreeSelection *select;
3882 gint src_ptype, dst_ptype;
3883 gboolean src_folder, dst_folder;
3885 gint tree_depth, ii;
3888 widget = gtk_drag_get_source_widget(ctx);
3889 if (widget == NULL || widget != GTK_WIDGET(tv))
3892 // Get the type of the object being dragged
3893 srctv = GTK_TREE_VIEW(gtk_drag_get_source_widget(ctx));
3894 select = gtk_tree_view_get_selection (srctv);
3895 gtk_tree_selection_get_selected (select, &model, &iter);
3896 path = gtk_tree_model_get_path (model, &iter);
3897 indices = gtk_tree_path_get_indices(path);
3898 len = gtk_tree_path_get_depth(path);
3900 preset = presets_get_dict(presetsPlist, indices, len);
3901 tree_depth = preset_tree_depth(preset);
3903 src_ptype = ghb_presets_get_type(presetsPlist, indices, len);
3904 src_folder = ghb_presets_get_folder(presetsPlist, indices, len);
3905 gtk_tree_path_free(path);
3907 if (src_folder && tree_depth == 1)
3910 // The rest checks that the destination is a valid position
3912 gtk_tree_view_get_dest_row_at_pos (tv, x, y, &path, &drop_pos);
3915 gdk_drag_status(ctx, 0, time);
3918 // Don't allow repositioning of builtin presets
3919 if (src_ptype != PRESETS_CUSTOM)
3921 gdk_drag_status(ctx, 0, time);
3925 len = gtk_tree_path_get_depth(path);
3926 if (len+tree_depth-1 >= MAX_NESTED_PRESET)
3928 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE)
3929 drop_pos = GTK_TREE_VIEW_DROP_BEFORE;
3930 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER)
3931 drop_pos = GTK_TREE_VIEW_DROP_AFTER;
3933 for (ii = len+tree_depth-1; ii > MAX_NESTED_PRESET; ii--)
3934 gtk_tree_path_up(path);
3935 indices = gtk_tree_path_get_indices(path);
3936 len = gtk_tree_path_get_depth(path);
3937 dst_ptype = ghb_presets_get_type(presetsPlist, indices, len);
3938 dst_folder = ghb_presets_get_folder(presetsPlist, indices, len);
3939 // Don't allow mixing custom presets in the builtins
3940 if (dst_ptype != PRESETS_CUSTOM)
3942 gdk_drag_status(ctx, 0, time);
3946 // Only allow *drop into* for folders
3949 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE)
3950 drop_pos = GTK_TREE_VIEW_DROP_BEFORE;
3951 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER)
3952 drop_pos = GTK_TREE_VIEW_DROP_AFTER;
3955 len = gtk_tree_path_get_depth(path);
3956 gtk_tree_view_set_drag_dest_row(tv, path, drop_pos);
3957 gtk_tree_path_free(path);
3958 gdk_drag_status(ctx, GDK_ACTION_MOVE, time);
3962 G_MODULE_EXPORT void
3964 GtkTreeView *dstwidget,
3967 GtkSelectionData *selection_data,
3968 guint info, guint t,
3969 signal_user_data_t *ud)
3971 GtkTreePath *path = NULL;
3972 GtkTreeViewDropPosition drop_pos;
3973 GtkTreeIter dstiter, srciter;
3974 gint *dst_indices, dst_len, *src_indices, src_len;
3976 gboolean src_folder, dst_folder;
3978 GtkTreeModel *dstmodel = gtk_tree_view_get_model(dstwidget);
3980 g_debug("preset_drag_cb ()");
3981 // This doesn't work here for some reason...
3982 // gtk_tree_view_get_drag_dest_row(dstwidget, &path, &drop_pos);
3983 gtk_tree_view_get_dest_row_at_pos (dstwidget, x, y, &path, &drop_pos);
3984 // This little hack is needed because attempting to drop after
3985 // the last item gives us no path or drop_pos.
3990 n_children = gtk_tree_model_iter_n_children(dstmodel, NULL);
3993 drop_pos = GTK_TREE_VIEW_DROP_AFTER;
3994 path = gtk_tree_path_new_from_indices(n_children-1, -1);
3998 drop_pos = GTK_TREE_VIEW_DROP_BEFORE;
3999 path = gtk_tree_path_new_from_indices(0, -1);
4004 GtkTreeView *srcwidget;
4005 GtkTreeModel *srcmodel;
4006 GtkTreeSelection *select;
4007 GtkTreePath *srcpath = NULL;
4009 gint tree_depth, ii;
4011 srcwidget = GTK_TREE_VIEW(gtk_drag_get_source_widget(dc));
4012 select = gtk_tree_view_get_selection (srcwidget);
4013 gtk_tree_selection_get_selected (select, &srcmodel, &srciter);
4015 srcpath = gtk_tree_model_get_path (srcmodel, &srciter);
4016 src_indices = gtk_tree_path_get_indices(srcpath);
4017 src_len = gtk_tree_path_get_depth(srcpath);
4018 src_ptype = ghb_presets_get_type(presetsPlist, src_indices, src_len);
4019 src_folder = ghb_presets_get_folder(presetsPlist, src_indices, src_len);
4020 preset = ghb_value_dup(
4021 presets_get_dict(presetsPlist, src_indices, src_len));
4022 gtk_tree_path_free(srcpath);
4024 // Don't allow repositioning of builtin presets
4025 if (src_ptype != PRESETS_CUSTOM)
4028 tree_depth = preset_tree_depth(preset);
4029 if (src_folder && tree_depth == 1)
4032 dst_len = gtk_tree_path_get_depth(path);
4033 if (dst_len+tree_depth-1 >= MAX_NESTED_PRESET)
4035 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE)
4036 drop_pos = GTK_TREE_VIEW_DROP_BEFORE;
4037 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER)
4038 drop_pos = GTK_TREE_VIEW_DROP_AFTER;
4041 for (ii = dst_len+tree_depth-1; ii > MAX_NESTED_PRESET; ii--)
4042 gtk_tree_path_up(path);
4043 dst_indices = gtk_tree_path_get_indices(path);
4044 dst_len = gtk_tree_path_get_depth(path);
4045 dst_folder = ghb_presets_get_folder(presetsPlist, dst_indices, dst_len);
4046 // Only allow *drop into* for folders
4049 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE)
4050 drop_pos = GTK_TREE_VIEW_DROP_BEFORE;
4051 if (drop_pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER)
4052 drop_pos = GTK_TREE_VIEW_DROP_AFTER;
4054 if (gtk_tree_model_get_iter (dstmodel, &dstiter, path))
4057 GtkTreePath *dstpath = NULL;
4061 case GTK_TREE_VIEW_DROP_BEFORE:
4062 gtk_tree_store_insert_before(GTK_TREE_STORE (dstmodel),
4063 &iter, NULL, &dstiter);
4066 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
4067 gtk_tree_store_insert(GTK_TREE_STORE (dstmodel),
4068 &iter, &dstiter, 0);
4071 case GTK_TREE_VIEW_DROP_AFTER:
4072 gtk_tree_store_insert_after(GTK_TREE_STORE (dstmodel),
4073 &iter, NULL, &dstiter);
4076 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER:
4077 gtk_tree_store_insert_after(GTK_TREE_STORE (dstmodel),
4078 &iter, &dstiter, 0);
4085 dstpath = gtk_tree_model_get_path (dstmodel, &iter);
4086 dst_indices = gtk_tree_path_get_indices(dstpath);
4087 dst_len = gtk_tree_path_get_depth(dstpath);
4088 ghb_presets_insert(presetsPlist, preset, dst_indices, dst_len);
4089 gtk_tree_path_free(dstpath);
4091 srcpath = gtk_tree_model_get_path (srcmodel, &srciter);
4092 src_indices = gtk_tree_path_get_indices(srcpath);
4093 src_len = gtk_tree_path_get_depth(srcpath);
4094 ghb_presets_remove(presetsPlist, src_indices, src_len);
4095 gtk_tree_path_free(srcpath);
4097 gtk_tree_store_remove (GTK_TREE_STORE (srcmodel), &srciter);
4099 dstpath = gtk_tree_model_get_path (dstmodel, &iter);
4100 dst_indices = gtk_tree_path_get_indices(dstpath);
4101 dst_len = gtk_tree_path_get_depth(dstpath);
4102 presets_list_update_item(ud, dst_indices, dst_len, TRUE);
4103 gtk_tree_path_free(dstpath);
4107 gtk_tree_path_free(path);
4112 presets_row_expanded_cb(
4113 GtkTreeView *treeview,
4116 signal_user_data_t *ud)
4119 gboolean expanded, folder;
4122 expanded = gtk_tree_view_row_expanded(treeview, path);
4123 indices = gtk_tree_path_get_indices(path);
4124 len = gtk_tree_path_get_depth(path);
4125 dict = presets_get_dict(presetsPlist, indices, len);
4126 if (preset_folder_is_open(dict))
4135 folder = ghb_presets_get_folder(presetsPlist, indices, len);
4138 presets_set_folder_open(expanded, indices, len);
4141 // Collapsing parent folder collapses all children
4144 GValue *presets = NULL;
4145 gint *more_indices, count, ii;
4147 more_indices = g_malloc((len+1)*sizeof(gint));
4148 memcpy(more_indices, indices, len*sizeof(gint));
4150 presets = presets_get_folder(presetsPlist, indices, len);
4151 count = ghb_array_len(presets);
4152 for (ii = 0; ii < count; ii++)
4154 dict = ghb_array_get_nth(presets, ii);
4155 folder = ghb_preset_folder(dict);
4158 more_indices[len] = ii;
4159 presets_set_folder_open(expanded, more_indices, len+1);
4162 g_free(more_indices);
4168 preset_update_title_deps(signal_user_data_t *ud, ghb_title_info_t *tinfo)
4172 ghb_ui_update(ud, "scale_width",
4173 ghb_int64_value(tinfo->width - tinfo->crop[2] - tinfo->crop[3]));
4174 // If anamorphic or keep_aspect, the hight will be automatically calculated
4175 gboolean keep_aspect;
4177 keep_aspect = ghb_settings_get_boolean(ud->settings, "PictureKeepRatio");
4178 pic_par = ghb_settings_combo_int(ud->settings, "PicturePAR");
4179 if (!(keep_aspect || pic_par) || pic_par == 3)
4181 ghb_ui_update(ud, "scale_height",
4182 ghb_int64_value(tinfo->height - tinfo->crop[0] - tinfo->crop[1]));
4185 // Set the limits of cropping. hb_set_anamorphic_size crashes if
4186 // you pass it a cropped width or height == 0.
4188 bound = tinfo->height / 2 - 2;
4189 widget = GHB_WIDGET (ud->builder, "PictureTopCrop");
4190 gtk_spin_button_set_range (GTK_SPIN_BUTTON(widget), 0, bound);
4191 widget = GHB_WIDGET (ud->builder, "PictureBottomCrop");
4192 gtk_spin_button_set_range (GTK_SPIN_BUTTON(widget), 0, bound);
4193 bound = tinfo->width / 2 - 2;
4194 widget = GHB_WIDGET (ud->builder, "PictureLeftCrop");
4195 gtk_spin_button_set_range (GTK_SPIN_BUTTON(widget), 0, bound);
4196 widget = GHB_WIDGET (ud->builder, "PictureRightCrop");
4197 gtk_spin_button_set_range (GTK_SPIN_BUTTON(widget), 0, bound);
4198 if (ghb_settings_get_boolean(ud->settings, "PictureAutoCrop"))
4200 ghb_ui_update(ud, "PictureTopCrop", ghb_int64_value(tinfo->crop[0]));
4201 ghb_ui_update(ud, "PictureBottomCrop", ghb_int64_value(tinfo->crop[1]));
4202 ghb_ui_update(ud, "PictureLeftCrop", ghb_int64_value(tinfo->crop[2]));
4203 ghb_ui_update(ud, "PictureRightCrop", ghb_int64_value(tinfo->crop[3]));
4208 ghb_refresh_preset(signal_user_data_t *ud)
4210 ghb_title_info_t tinfo;
4214 g_debug("ghb_refresh_preset ()");
4215 preset = ghb_settings_get_value(ud->settings, "preset_selection");
4216 indices = ghb_preset_indices_from_path(presetsPlist, preset, &len);
4221 folder = ghb_presets_get_folder(presetsPlist, indices, len);
4224 ud->dont_clear_presets = TRUE;
4225 ud->scale_busy = TRUE;
4226 // Temporarily set the video_quality range to (0,100)
4227 // This is needed so the video_quality value does not get
4228 // truncated when set. The range will be readjusted below
4229 GtkWidget *qp = GHB_WIDGET(ud->builder, "VideoQualitySlider");
4230 gtk_range_set_range (GTK_RANGE(qp), 0, 100);
4231 gtk_scale_set_digits(GTK_SCALE(qp), 3);
4232 // Clear the audio list prior to changing the preset. Existing
4233 // audio can cause the container extension to be automatically
4234 // changed when it shouldn't be
4235 ghb_clear_audio_list(ud);
4236 ghb_set_preset_from_indices(ud, indices, len);
4238 titleindex = ghb_settings_combo_int(ud->settings, "title");
4239 ghb_set_pref_audio(titleindex, ud);
4240 ghb_set_pref_subtitle(titleindex, ud);
4241 ghb_settings_set_boolean(ud->settings, "preset_modified", FALSE);
4242 if (ghb_get_title_info (&tinfo, titleindex))
4244 preset_update_title_deps(ud, &tinfo);
4246 ud->scale_busy = FALSE;
4247 ghb_set_scale (ud, GHB_PIC_KEEP_PAR|GHB_PIC_USE_MAX);
4248 ud->dont_clear_presets = FALSE;
4250 gdouble vqmin, vqmax, step, page;
4254 ghb_vquality_range(ud, &vqmin, &vqmax, &step,
4255 &page, &digits, &inverted);
4256 gtk_range_set_range (GTK_RANGE(qp), vqmin, vqmax);
4257 gtk_range_set_increments (GTK_RANGE(qp), step, page);
4258 gtk_scale_set_digits(GTK_SCALE(qp), digits);
4259 gtk_range_set_inverted (GTK_RANGE(qp), inverted);
4263 GtkWidget *crop_widget;
4264 crop[0] = ghb_settings_get_int(ud->settings, "PictureTopCrop");
4265 crop[1] = ghb_settings_get_int(ud->settings, "PictureBottomCrop");
4266 crop[2] = ghb_settings_get_int(ud->settings, "PictureLeftCrop");
4267 crop[3] = ghb_settings_get_int(ud->settings, "PictureRightCrop");
4268 crop_widget = GHB_WIDGET (ud->builder, "crop_values");
4269 text = g_strdup_printf("%d:%d:%d:%d",
4270 crop[0], crop[1], crop[2], crop[3]);
4271 gtk_label_set_text (GTK_LABEL(crop_widget), text);
4277 G_MODULE_EXPORT void
4278 presets_list_selection_changed_cb(GtkTreeSelection *selection, signal_user_data_t *ud)
4280 GtkTreeModel *store;
4282 ghb_title_info_t tinfo;
4285 g_debug("presets_list_selection_changed_cb ()");
4286 widget = GHB_WIDGET (ud->builder, "presets_remove");
4287 if (gtk_tree_selection_get_selected(selection, &store, &iter))
4289 GtkTreePath *treepath;
4294 treepath = gtk_tree_model_get_path(store, &iter);
4295 indices = gtk_tree_path_get_indices(treepath);
4296 len = gtk_tree_path_get_depth(treepath);
4298 path = preset_path_from_indices(presetsPlist, indices, len);
4299 ghb_settings_take_value(ud->settings, "preset_selection", path);
4301 folder = ghb_presets_get_folder(presetsPlist, indices, len);
4304 ud->dont_clear_presets = TRUE;
4305 ud->scale_busy = TRUE;
4306 // Temporarily set the video_quality range to (0,100)
4307 // This is needed so the video_quality value does not get
4308 // truncated when set. The range will be readjusted below
4309 GtkWidget *qp = GHB_WIDGET(ud->builder, "VideoQualitySlider");
4310 gtk_range_set_range (GTK_RANGE(qp), 0, 100);
4311 gtk_scale_set_digits(GTK_SCALE(qp), 3);
4312 // Clear the audio list prior to changing the preset. Existing
4313 // audio can cause the container extension to be automatically
4314 // changed when it shouldn't be
4315 ghb_clear_audio_list(ud);
4316 ghb_set_preset_from_indices(ud, indices, len);
4318 titleindex = ghb_settings_combo_int(ud->settings, "title");
4319 ghb_set_pref_audio(titleindex, ud);
4320 ghb_set_pref_subtitle(titleindex, ud);
4321 ghb_settings_set_boolean(ud->settings, "preset_modified", FALSE);
4322 if (ghb_get_title_info (&tinfo, titleindex))
4324 preset_update_title_deps(ud, &tinfo);
4326 ud->scale_busy = FALSE;
4327 ghb_set_scale (ud, GHB_PIC_KEEP_PAR|GHB_PIC_USE_MAX);
4328 ud->dont_clear_presets = FALSE;
4330 gdouble vqmin, vqmax, step, page;
4334 ghb_vquality_range(ud, &vqmin, &vqmax, &step,
4335 &page, &digits, &inverted);
4336 gtk_range_set_range (GTK_RANGE(qp), vqmin, vqmax);
4337 gtk_range_set_increments (GTK_RANGE(qp), step, page);
4338 gtk_scale_set_digits(GTK_SCALE(qp), digits);
4339 gtk_range_set_inverted (GTK_RANGE(qp), inverted);
4343 GtkWidget *crop_widget;
4344 crop[0] = ghb_settings_get_int(ud->settings, "PictureTopCrop");
4345 crop[1] = ghb_settings_get_int(ud->settings, "PictureBottomCrop");
4346 crop[2] = ghb_settings_get_int(ud->settings, "PictureLeftCrop");
4347 crop[3] = ghb_settings_get_int(ud->settings, "PictureRightCrop");
4348 crop_widget = GHB_WIDGET (ud->builder, "crop_values");
4349 text = g_strdup_printf("%d:%d:%d:%d",
4350 crop[0], crop[1], crop[2], crop[3]);
4351 gtk_label_set_text (GTK_LABEL(crop_widget), text);
4354 gtk_tree_path_free(treepath);
4355 gtk_widget_set_sensitive(widget, TRUE);
4359 g_debug("No selection??? Perhaps unselected.");
4360 gtk_widget_set_sensitive(widget, FALSE);
4362 if (ghb_settings_combo_int(ud->settings, "PtoPType") == 0)
4365 start = ghb_settings_get_int(ud->settings, "start_point");
4366 end = ghb_settings_get_int(ud->settings, "end_point");
4367 widget = GHB_WIDGET (ud->builder, "ChapterMarkers");
4368 gtk_widget_set_sensitive(widget, TRUE);
4371 ud->dont_clear_presets = TRUE;
4372 ghb_ui_update(ud, "ChapterMarkers", ghb_boolean_value(FALSE));
4373 ud->dont_clear_presets = FALSE;
4374 gtk_widget_set_sensitive(widget, FALSE);
4380 ghb_clear_presets_selection(signal_user_data_t *ud)
4382 GtkTreeView *treeview;
4383 GtkTreeSelection *selection;
4385 if (ud->dont_clear_presets) return;
4386 g_debug("ghb_clear_presets_selection()");
4387 treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
4388 selection = gtk_tree_view_get_selection (treeview);
4389 gtk_tree_selection_unselect_all (selection);
4390 ghb_settings_set_boolean(ud->settings, "preset_modified", TRUE);
4393 G_MODULE_EXPORT void
4394 presets_frame_size_allocate_cb(GtkWidget *widget, GtkAllocation *allocation, signal_user_data_t *ud)
4396 GtkTreeView *treeview;
4397 GtkTreeSelection *selection;
4398 GtkTreeModel *store;
4401 treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
4402 selection = gtk_tree_view_get_selection(treeview);
4403 if (gtk_tree_selection_get_selected(selection, &store, &iter))
4406 path = gtk_tree_model_get_path (store, &iter);
4407 // Make the parent visible in scroll window if it is not.
4408 gtk_tree_view_scroll_to_cell (treeview, path, NULL, FALSE, 0, 0);
4409 gtk_tree_path_free(path);
4413 G_MODULE_EXPORT void
4414 presets_default_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud)
4419 g_debug("presets_default_clicked_cb ()");
4420 preset = ghb_settings_get_value(ud->settings, "preset_selection");
4421 indices = ghb_preset_indices_from_path(presetsPlist, preset, &len);
4424 if (!ghb_presets_get_folder(presetsPlist, indices, len))
4426 ghb_presets_list_clear_default(ud);
4427 presets_set_default(indices, len);
4428 ghb_presets_list_default(ud);
4434 G_MODULE_EXPORT void
4436 GtkCellRendererText *cell,
4439 signal_user_data_t *ud)
4441 GtkTreePath *treepath;
4442 GtkTreeStore *store;
4443 GtkTreeView *treeview;
4445 gint *indices, len, count;
4447 GValue *preset, *dest;
4449 g_debug("preset_edited_cb ()");
4450 g_debug("path (%s)", path);
4451 g_debug("text (%s)", text);
4453 preset = ghb_settings_get_value (ud->settings, "preset_selection");
4454 dest = ghb_array_value_new(MAX_NESTED_PRESET);
4455 count = ghb_array_len(preset);
4456 ghb_array_copy(dest, preset, count-1);
4457 ghb_array_append(dest, ghb_string_value_new(text));
4458 indices = ghb_preset_indices_from_path(presetsPlist, dest, &len);
4459 ghb_value_free(dest);
4460 if (indices != NULL)
4467 treeview = GTK_TREE_VIEW(GHB_WIDGET(ud->builder, "presets_list"));
4468 store = GTK_TREE_STORE(gtk_tree_view_get_model(treeview));
4469 treepath = gtk_tree_path_new_from_string (path);
4470 indices = gtk_tree_path_get_indices(treepath);
4471 len = gtk_tree_path_get_depth(treepath);
4472 gtk_tree_model_get_iter(GTK_TREE_MODEL(store), &iter, treepath);
4473 gtk_tree_store_set(store, &iter, 0, text, -1);
4475 dict = presets_get_dict(presetsPlist, indices, len);
4476 ghb_dict_insert(dict, g_strdup("PresetName"), ghb_string_value_new(text));
4478 gtk_tree_path_free (treepath);