Mercurial > geeqie.yaz
annotate src/options.c @ 1307:e8f21b91885d
Glibification again.
author | zas_ |
---|---|
date | Sat, 21 Feb 2009 20:43:35 +0000 |
parents | 4a3ae0e6f1eb |
children | 55ea4962887a |
rev | line source |
---|---|
508 | 1 /* |
2 * Geeqie | |
1284 | 3 * Copyright (C) 2008 - 2009 The Geeqie Team |
508 | 4 * |
5 * Authors: Vladimir Nadvornik, Laurent Monin | |
6 * | |
7 * This software is released under the GNU General Public License (GNU GPL). | |
8 * Please read the included file COPYING for more information. | |
9 * This software comes with no warranty of any kind, use at your own risk! | |
10 */ | |
11 | |
12 #include "main.h" | |
13 #include "options.h" | |
14 | |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
15 #include "bar_exif.h" |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
16 #include "editors.h" |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
17 #include "filefilter.h" |
612 | 18 #include "histogram.h" /* HCHAN_RGB */ |
619
2ccc7d856d55
Initialize to correct value (OSD_SHOW_NOTHING instead of FALSE).
zas_
parents:
612
diff
changeset
|
19 #include "image-overlay.h" /* OSD_SHOW_NOTHING */ |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
20 #include "layout.h" |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
21 #include "layout_image.h" |
1019 | 22 #include "rcfile.h" |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
23 #include "ui_bookmark.h" |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
24 #include "ui_fileops.h" |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
25 #include "window.h" |
612 | 26 |
508 | 27 ConfOptions *init_options(ConfOptions *options) |
28 { | |
29 if (!options) options = g_new0(ConfOptions, 1); | |
30 | |
31 options->collections.rectangular_selection = FALSE; | |
32 | |
1034 | 33 options->color_profile.enabled = TRUE; |
508 | 34 options->color_profile.input_type = 0; |
35 options->color_profile.screen_file = NULL; | |
36 options->color_profile.screen_type = 0; | |
37 options->color_profile.use_image = TRUE; | |
38 | |
39 options->dnd_icon_size = 48; | |
40 options->duplicates_similarity_threshold = 99; | |
594
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
556
diff
changeset
|
41 |
508 | 42 options->file_filter.disable = FALSE; |
43 options->file_filter.show_dot_directory = FALSE; | |
44 options->file_filter.show_hidden_files = FALSE; | |
45 | |
46 options->file_ops.confirm_delete = TRUE; | |
47 options->file_ops.enable_delete_key = TRUE; | |
48 options->file_ops.enable_in_place_rename = TRUE; | |
49 options->file_ops.safe_delete_enable = FALSE; | |
50 options->file_ops.safe_delete_folder_maxsize = 128; | |
51 options->file_ops.safe_delete_path = NULL; | |
52 | |
53 options->file_sort.ascending = TRUE; | |
54 options->file_sort.case_sensitive = FALSE; | |
55 options->file_sort.method = SORT_NAME; | |
56 | |
57 options->fullscreen.above = FALSE; | |
58 options->fullscreen.clean_flip = FALSE; | |
59 options->fullscreen.disable_saver = TRUE; | |
60 options->fullscreen.screen = -1; | |
61 | |
612 | 62 options->histogram.last_channel_mode = HCHAN_RGB; |
63 options->histogram.last_log_mode = 1; | |
64 | |
508 | 65 memset(&options->image.border_color, 0, sizeof(options->image.border_color)); |
870
3dd2cb78d0f9
Make better matching between options types in options.h and the rest of the code.
zas_
parents:
848
diff
changeset
|
66 options->image.dither_quality = GDK_RGB_DITHER_NORMAL; |
508 | 67 options->image.enable_read_ahead = TRUE; |
68 options->image.exif_rotate_enable = TRUE; | |
69 options->image.fit_window_to_image = FALSE; | |
70 options->image.idle_read_loop_count = IMAGE_LOADER_IDLE_READ_LOOP_COUNT_DEFAULT; | |
71 options->image.limit_autofit_size = FALSE; | |
1034 | 72 options->image.limit_window_size = TRUE; |
508 | 73 options->image.max_autofit_size = 100; |
1034 | 74 options->image.max_window_size = 90; |
508 | 75 options->image.read_buffer_size = IMAGE_LOADER_READ_BUFFER_SIZE_DEFAULT; |
1037
86148ec8a299
fixed various problems with preserving viewport on image change,
nadvornik
parents:
1034
diff
changeset
|
76 options->image.scroll_reset_method = SCROLL_RESET_NOCHANGE; |
508 | 77 options->image.tile_cache_max = 10; |
848 | 78 options->image.image_cache_max = 128; /* 4 x 10MPix */ |
508 | 79 options->image.use_custom_border_color = FALSE; |
80 options->image.zoom_2pass = TRUE; | |
81 options->image.zoom_increment = 5; | |
1034 | 82 options->image.zoom_mode = ZOOM_RESET_NONE; |
870
3dd2cb78d0f9
Make better matching between options types in options.h and the rest of the code.
zas_
parents:
848
diff
changeset
|
83 options->image.zoom_quality = GDK_INTERP_BILINEAR; |
1034 | 84 options->image.zoom_to_fit_allow_expand = FALSE; |
508 | 85 |
870
3dd2cb78d0f9
Make better matching between options types in options.h and the rest of the code.
zas_
parents:
848
diff
changeset
|
86 options->image_overlay.common.state = OSD_SHOW_NOTHING; |
508 | 87 options->image_overlay.common.show_at_startup = FALSE; |
88 options->image_overlay.common.template_string = NULL; | |
822
df541dc41707
Allow to set image overlay info position through options:
zas_
parents:
768
diff
changeset
|
89 options->image_overlay.common.x = 10; |
df541dc41707
Allow to set image overlay info position through options:
zas_
parents:
768
diff
changeset
|
90 options->image_overlay.common.y = -10; |
508 | 91 |
92 options->layout.dir_view_type = DIRVIEW_LIST; | |
556
fe675761d091
Replace Layout icon_view field by more generic file_view_type.
zas_
parents:
508
diff
changeset
|
93 options->layout.file_view_type = FILEVIEW_LIST; |
508 | 94 options->layout.float_window.h = 450; |
95 options->layout.float_window.vdivider_pos = -1; | |
96 options->layout.float_window.w = 260; | |
97 options->layout.float_window.x = 0; | |
98 options->layout.float_window.y = 0; | |
980
a4a38ea9fbaa
Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents:
870
diff
changeset
|
99 options->layout.home_path = NULL; |
1034 | 100 options->layout.main_window.h = 540; |
508 | 101 options->layout.main_window.hdivider_pos = -1; |
102 options->layout.main_window.maximized = FALSE; | |
103 options->layout.main_window.vdivider_pos = 200; | |
1034 | 104 options->layout.main_window.w = 720; |
508 | 105 options->layout.main_window.x = 0; |
106 options->layout.main_window.y = 0; | |
107 options->layout.order = NULL; | |
1034 | 108 options->layout.save_window_positions = TRUE; |
825 | 109 options->layout.show_directory_date = FALSE; |
508 | 110 options->layout.show_marks = FALSE; |
111 options->layout.show_thumbnails = FALSE; | |
112 options->layout.style = 0; | |
113 options->layout.toolbar_hidden = FALSE; | |
114 options->layout.tools_float = FALSE; | |
115 options->layout.tools_hidden = FALSE; | |
1034 | 116 options->layout.tools_restore_state = TRUE; |
508 | 117 |
118 options->lazy_image_sync = FALSE; | |
119 options->mousewheel_scrolls = FALSE; | |
120 options->open_recent_list_maxsize = 10; | |
121 options->place_dialogs_under_mouse = FALSE; | |
122 | |
123 options->panels.exif.enabled = FALSE; | |
124 options->panels.exif.width = PANEL_DEFAULT_WIDTH; | |
125 options->panels.info.enabled = FALSE; | |
126 options->panels.info.width = PANEL_DEFAULT_WIDTH; | |
127 options->panels.sort.action_state = 0; | |
128 options->panels.sort.enabled = FALSE; | |
129 options->panels.sort.mode_state = 0; | |
130 options->panels.sort.selection_state = 0; | |
1272 | 131 options->panels.sort.action_filter = NULL; |
132 | |
1034 | 133 options->progressive_key_scrolling = TRUE; |
594
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
556
diff
changeset
|
134 |
1208 | 135 options->metadata.enable_metadata_dirs = FALSE; |
136 options->metadata.save_in_image_file = FALSE; | |
137 options->metadata.save_legacy_IPTC = FALSE; | |
138 options->metadata.warn_on_write_problems = TRUE; | |
139 options->metadata.save_legacy_format = FALSE; | |
140 options->metadata.sync_grouped_files = TRUE; | |
141 options->metadata.confirm_write = TRUE; | |
1244 | 142 options->metadata.confirm_after_timeout = FALSE; |
143 options->metadata.confirm_timeout = 10; | |
1208 | 144 options->metadata.confirm_on_image_change = FALSE; |
145 options->metadata.confirm_on_dir_change = TRUE; | |
594
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
556
diff
changeset
|
146 |
1034 | 147 options->show_copy_path = TRUE; |
508 | 148 options->show_icon_names = TRUE; |
149 | |
1034 | 150 options->slideshow.delay = 50; |
508 | 151 options->slideshow.random = FALSE; |
152 options->slideshow.repeat = FALSE; | |
153 | |
630
83d3ded39e49
An option to save and restore the last path used was added.
zas_
parents:
629
diff
changeset
|
154 options->startup.path = NULL; |
629 | 155 options->startup.restore_path = FALSE; |
630
83d3ded39e49
An option to save and restore the last path used was added.
zas_
parents:
629
diff
changeset
|
156 options->startup.use_last_path = FALSE; |
508 | 157 |
158 options->thumbnails.cache_into_dirs = FALSE; | |
159 options->thumbnails.enable_caching = TRUE; | |
160 options->thumbnails.fast = TRUE; | |
161 options->thumbnails.max_height = DEFAULT_THUMB_HEIGHT; | |
162 options->thumbnails.max_width = DEFAULT_THUMB_WIDTH; | |
870
3dd2cb78d0f9
Make better matching between options types in options.h and the rest of the code.
zas_
parents:
848
diff
changeset
|
163 options->thumbnails.quality = GDK_INTERP_TILES; |
508 | 164 options->thumbnails.spec_standard = TRUE; |
165 options->thumbnails.use_xvpics = TRUE; | |
1060 | 166 options->thumbnails.use_exif = FALSE; |
508 | 167 |
168 options->tree_descend_subdirs = FALSE; | |
169 options->update_on_time_change = TRUE; | |
170 | |
171 return options; | |
172 } | |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
173 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
174 void setup_default_options(ConfOptions *options) |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
175 { |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
176 gchar *path; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
177 gint i; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
178 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
179 bookmark_add_default(_("Home"), homedir()); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
180 path = g_build_filename(homedir(), "Desktop", NULL); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
181 bookmark_add_default(_("Desktop"), path); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
182 g_free(path); |
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1060
diff
changeset
|
183 bookmark_add_default(_("Collections"), get_collections_dir()); |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
184 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
185 g_free(options->file_ops.safe_delete_path); |
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1060
diff
changeset
|
186 options->file_ops.safe_delete_path = g_strdup(get_trash_dir()); |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
187 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
188 for (i = 0; i < COLOR_PROFILE_INPUTS; i++) |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
189 { |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
190 options->color_profile.input_file[i] = NULL; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
191 options->color_profile.input_name[i] = NULL; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
192 } |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
193 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
194 set_default_image_overlay_template_string(&options->image_overlay.common.template_string); |
1229
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1208
diff
changeset
|
195 options->sidecar.ext = g_strdup(".jpg;%raw;.xmp"); |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
196 options->layout.order = g_strdup("123"); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
197 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
198 options->shell.path = g_strdup(GQ_DEFAULT_SHELL_PATH); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
199 options->shell.options = g_strdup(GQ_DEFAULT_SHELL_OPTIONS); |
1013
88ebc61e33ae
Allow to override documentation paths through options:
zas_
parents:
980
diff
changeset
|
200 |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
201 for (i = 0; ExifUIList[i].key; i++) |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
202 ExifUIList[i].current = ExifUIList[i].default_value; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
203 } |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
204 |
1019 | 205 static void sync_options_with_current_state(ConfOptions *options) |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
206 { |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
207 LayoutWindow *lw = NULL; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
208 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
209 if (layout_valid(&lw)) |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
210 { |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
211 options->layout.main_window.maximized = window_maximized(lw->window); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
212 if (!options->layout.main_window.maximized) |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
213 { |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
214 layout_geometry_get(NULL, &options->layout.main_window.x, &options->layout.main_window.y, |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
215 &options->layout.main_window.w, &options->layout.main_window.h); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
216 } |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
217 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
218 options->image_overlay.common.state = image_osd_get(lw->image); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
219 } |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
220 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
221 layout_geometry_get_dividers(NULL, &options->layout.main_window.hdivider_pos, &options->layout.main_window.vdivider_pos); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
222 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
223 layout_views_get(NULL, &options->layout.dir_view_type, &options->layout.file_view_type); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
224 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
225 options->layout.show_thumbnails = layout_thumb_get(NULL); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
226 options->layout.show_marks = layout_marks_get(NULL); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
227 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
228 layout_sort_get(NULL, &options->file_sort.method, &options->file_sort.ascending); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
229 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
230 layout_geometry_get_tools(NULL, &options->layout.float_window.x, &options->layout.float_window.y, |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
231 &options->layout.float_window.w, &options->layout.float_window.h, &options->layout.float_window.vdivider_pos); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
232 layout_tools_float_get(NULL, &options->layout.tools_float, &options->layout.tools_hidden); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
233 options->layout.toolbar_hidden = layout_toolbar_hidden(NULL); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
234 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
235 options->color_profile.enabled = layout_image_color_profile_get_use(NULL); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
236 layout_image_color_profile_get(NULL, |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
237 &options->color_profile.input_type, |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
238 &options->color_profile.screen_type, |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
239 &options->color_profile.use_image); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
240 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
241 if (options->startup.restore_path && options->startup.use_last_path) |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
242 { |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
243 g_free(options->startup.path); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
244 options->startup.path = g_strdup(layout_get_path(NULL)); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
245 } |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
246 } |
1019 | 247 |
248 void save_options(ConfOptions *options) | |
249 { | |
250 gchar *rc_path; | |
251 | |
252 sync_options_with_current_state(options); | |
253 | |
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1060
diff
changeset
|
254 rc_path = g_build_filename(get_rc_dir(), RC_FILE_NAME, NULL); |
1019 | 255 save_options_to(rc_path, options); |
256 g_free(rc_path); | |
257 } | |
258 | |
259 void load_options(ConfOptions *options) | |
260 { | |
261 gboolean success; | |
262 gchar *rc_path; | |
263 | |
264 if (isdir(GQ_SYSTEM_WIDE_DIR)) | |
265 { | |
266 rc_path = g_build_filename(GQ_SYSTEM_WIDE_DIR, RC_FILE_NAME, NULL); | |
267 success = load_options_from(rc_path, options); | |
268 DEBUG_1("Loading options from %s ... %s", rc_path, success ? "done" : "failed"); | |
269 g_free(rc_path); | |
270 } | |
271 | |
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1060
diff
changeset
|
272 rc_path = g_build_filename(get_rc_dir(), RC_FILE_NAME, NULL); |
1019 | 273 success = load_options_from(rc_path, options); |
274 DEBUG_1("Loading options from %s ... %s", rc_path, success ? "done" : "failed"); | |
275 g_free(rc_path); | |
276 } | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1037
diff
changeset
|
277 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |