2 # include "elementary_config.h"
9 #include <Elementary.h>
13 Elm_Config *_elm_config = NULL;
14 char *_elm_profile = NULL;
15 static Eet_Data_Descriptor *_config_edd = NULL;
16 static Eet_Data_Descriptor *_config_font_overlay_edd = NULL;
18 static Ecore_Poller *_elm_cache_flush_poller = NULL;
20 const char *_elm_engines[] = {
29 "software_16_wince_gdi",
36 /* whenever you want to add a new text class support into Elementary,
37 declare it both here and in the (default) theme */
38 static const Elm_Text_Class _elm_text_classes[] = {
39 {"button", "Button Labels"},
40 {"label", "Text Labels"},
41 {"entry", "Text Entries"},
42 {"title_bar", "Title Bar"},
43 {"list_item", "List Items"},
44 {"grid_item", "Grid Items"},
45 {"toolbar_item", "Toolbar Items"},
46 {"menu_item", "Menu Items"},
50 static void _desc_init(void);
51 static void _desc_shutdown(void);
52 static void _profile_fetch_from_conf(void);
53 static void _config_free(void);
54 static void _config_apply(void);
55 static Elm_Config *_config_user_load(void);
56 static Elm_Config *_config_system_load(void);
57 static void _config_load(void);
58 static void _config_update(void);
59 static void _env_get(void);
60 static size_t _elm_data_dir_snprintf(char *dst,
64 static size_t _elm_user_dir_snprintf(char *dst,
69 #define ELM_CONFIG_VAL(edd, type, member, dtype) \
70 EET_DATA_DESCRIPTOR_ADD_BASIC(edd, type, #member, member, dtype)
71 #define ELM_CONFIG_LIST(edd, type, member, eddtype) \
72 EET_DATA_DESCRIPTOR_ADD_LIST(edd, type, #member, member, eddtype)
74 #ifdef HAVE_ELEMENTARY_X
75 static Ecore_Event_Handler *_prop_change_handler = NULL;
76 static Ecore_X_Window _root_1st = 0;
78 static Ecore_X_Atom _atom[ATOM_COUNT];
79 static Ecore_X_Atom _atom_config = 0;
80 static const char *_atom_names[ATOM_COUNT] =
82 "ENLIGHTENMENT_SCALE",
83 "ENLIGHTENMENT_FINGER_SIZE",
84 "ENLIGHTENMENT_THEME",
85 "ENLIGHTENMENT_PROFILE",
86 "ENLIGHTENMENT_FONT_OVERLAY",
87 "ENLIGHTENMENT_CACHE_FLUSH_INTERVAL",
88 "ENLIGHTENMENT_CACHE_FLUSH_ENABLE",
89 "ENLIGHTENMENT_FONT_CACHE",
90 "ENLIGHTENMENT_IMAGE_CACHE",
91 "ENLIGHTENMENT_EDJE_FILE_CACHE",
92 "ENLIGHTENMENT_EDJE_COLLECTION_CACHE",
93 "ENLIGHTENMENT_THUMBSCROLL_BOUNCE_ENABLE",
94 "ENLIGHTENMENT_THUMBSCROLL_BOUNCE_FRICTION",
95 "ENLIGHTENMENT_THUMBSCROLL_ENABLE",
96 "ENLIGHTENMENT_THUMBSCROLL_THRESHOLD",
97 "ENLIGHTENMENT_THUMBSCROLL_MOMENTUM_THRESHOLD",
98 "ENLIGHTENMENT_THUMBSCROLL_FRICTION",
99 "ENLIGHTENMENT_THUMBSCROLL_BORDER_FRICTION",
100 "ENLIGHTENMENT_THUMBSCROLL_SENSITIVITY_FRICTION",
101 "ENLIGHTENMENT_THUMBSCROLL_PAGE_SCROLL_FRICTION",
102 "ENLIGHTENMENT_THUMBSCROLL_BRING_IN_SCROLL_FRICTION",
103 "ENLIGHTENMENT_THUMBSCROLL_ZOOM_FRICTION",
104 "ENLIGHTENMENT_CONFIG"
106 #define ATOM_E_SCALE 0
107 #define ATOM_E_FINGER_SIZE 1
108 #define ATOM_E_THEME 2
109 #define ATOM_E_PROFILE 3
110 #define ATOM_E_FONT_OVERLAY 4
111 #define ATOM_E_CACHE_FLUSH_INTERVAL 5
112 #define ATOM_E_CACHE_FLUSH_ENABLE 6
113 #define ATOM_E_FONT_CACHE 7
114 #define ATOM_E_IMAGE_CACHE 8
115 #define ATOM_E_EDJE_FILE_CACHE 9
116 #define ATOM_E_EDJE_COLLECTION_CACHE 10
117 #define ATOM_E_THUMBSCROLL_BOUNCE_ENABLE 11
118 #define ATOM_E_THUMBSCROLL_BOUNCE_FRICTION 12
119 #define ATOM_E_THUMBSCROLL_ENABLE 13
120 #define ATOM_E_THUMBSCROLL_THRESHOLD 14
121 #define ATOM_E_THUMBSCROLL_MOMENTUM_THRESHOLD 15
122 #define ATOM_E_THUMBSCROLL_FRICTION 16
123 #define ATOM_E_THUMBSCROLL_BORDER_FRICTION 17
124 #define ATOM_E_THUMBSCROLL_SENSITIVITY_FRICTION 18
125 #define ATOM_E_THUMBSCROLL_PAGE_SCROLL_FRICTION 19
126 #define ATOM_E_THUMBSCROLL_BRING_IN_SCROLL_FRICTION 20
127 #define ATOM_E_THUMBSCROLL_ZOOM_FRICTION 21
128 #define ATOM_E_CONFIG 22
130 static Eina_Bool _prop_config_get(void);
131 static Eina_Bool _prop_change(void *data __UNUSED__,
132 int ev_type __UNUSED__,
136 _prop_config_get(void)
141 unsigned char *data = NULL;
142 Elm_Config *config_data;
144 snprintf(buf, sizeof(buf), "ENLIGHTENMENT_CONFIG_%s", _elm_profile);
145 atom = ecore_x_atom_get(buf);
147 if (!ecore_x_window_prop_property_get(_root_1st,
148 atom, _atom[ATOM_E_CONFIG],
151 if (!ecore_x_window_prop_property_get(_root_1st,
152 _atom[ATOM_E_CONFIG],
153 _atom[ATOM_E_CONFIG],
157 _atom_config = _atom[ATOM_E_CONFIG];
166 config_data = eet_data_descriptor_decode(_config_edd, data, size);
168 if (!config_data) return EINA_FALSE;
170 /* What do we do on version mismatch when someone changes the
171 * config in the rootwindow? */
172 /* Most obvious case, new version and we are still linked to
173 * whatever was there before, we just ignore until user restarts us */
174 if (config_data->config_version > ELM_CONFIG_VERSION)
176 /* What in the case the version is older? Do we even support those
177 * cases or we only check for equality above? */
180 _elm_config = config_data;
182 _elm_config_font_overlay_apply();
189 _prop_change(void *data __UNUSED__,
190 int ev_type __UNUSED__,
193 Ecore_X_Event_Window_Property *event = ev;
195 if (event->win == _root_1st)
197 if (event->atom == _atom[ATOM_E_SCALE])
199 unsigned int val = 1000;
201 if (ecore_x_window_prop_card32_get(event->win,
207 pscale = _elm_config->scale;
208 if (val > 0) _elm_config->scale = (double)val / 1000.0;
209 if (pscale != _elm_config->scale)
216 else if (event->atom == _atom[ATOM_E_FINGER_SIZE])
218 unsigned int val = 1000;
220 if (ecore_x_window_prop_card32_get(event->win,
226 pfinger_size = _elm_config->finger_size;
227 _elm_config->finger_size = val;
228 if (pfinger_size != _elm_config->finger_size)
235 else if (event->atom == _atom[ATOM_E_THEME])
239 val = ecore_x_window_prop_string_get(event->win,
241 eina_stringshare_replace(&_elm_config->theme, val);
244 _elm_theme_parse(NULL, val);
250 else if (event->atom == _atom[ATOM_E_PROFILE])
254 val = ecore_x_window_prop_string_get(event->win,
262 if (strcmp(_elm_profile, val)) changed = 1;
268 if (!_prop_config_get())
273 _elm_config_font_overlay_apply();
279 else if (event->atom == _atom[ATOM_E_FONT_OVERLAY])
281 unsigned int val = 1000;
283 if (ecore_x_window_prop_card32_get(event->win,
290 _elm_config_font_overlay_apply();
294 else if (event->atom == _atom[ATOM_E_CACHE_FLUSH_INTERVAL])
296 unsigned int val = 1000;
298 if (ecore_x_window_prop_card32_get(event->win,
302 int cache_flush_interval;
304 cache_flush_interval = _elm_config->cache_flush_poll_interval;
305 _elm_config->cache_flush_poll_interval = val;
306 if (cache_flush_interval !=
307 _elm_config->cache_flush_poll_interval)
311 else if (event->atom == _atom[ATOM_E_CACHE_FLUSH_ENABLE])
313 unsigned int val = 1000;
315 if (ecore_x_window_prop_card32_get(event->win,
319 _elm_config->cache_flush_enable = !!val;
323 else if (event->atom == _atom[ATOM_E_FONT_CACHE])
325 unsigned int val = 1000;
327 if (ecore_x_window_prop_card32_get(event->win,
333 font_cache = _elm_config->font_cache;
334 _elm_config->font_cache = val;
335 if (font_cache != _elm_config->font_cache)
339 else if (event->atom == _atom[ATOM_E_IMAGE_CACHE])
341 unsigned int val = 1000;
343 if (ecore_x_window_prop_card32_get(event->win,
349 image_cache = _elm_config->image_cache;
350 _elm_config->image_cache = val;
351 if (image_cache != _elm_config->image_cache)
355 else if (event->atom == _atom[ATOM_E_EDJE_FILE_CACHE])
357 unsigned int val = 1000;
359 if (ecore_x_window_prop_card32_get(event->win,
365 edje_file_cache = _elm_config->edje_cache;
366 _elm_config->edje_cache = val;
367 if (edje_file_cache != _elm_config->edje_cache)
371 else if (event->atom == _atom[ATOM_E_EDJE_COLLECTION_CACHE])
373 unsigned int val = 1000;
375 if (ecore_x_window_prop_card32_get(event->win,
379 int edje_collection_cache;
381 edje_collection_cache = _elm_config->edje_collection_cache;
382 _elm_config->edje_collection_cache = val;
383 if (edje_collection_cache !=
384 _elm_config->edje_collection_cache)
388 else if (event->atom == _atom[ATOM_E_THUMBSCROLL_BOUNCE_ENABLE])
390 unsigned int val = 1000;
392 if (ecore_x_window_prop_card32_get(event->win,
396 _elm_config->thumbscroll_bounce_enable = !!val;
399 else if (event->atom == _atom[ATOM_E_THUMBSCROLL_BOUNCE_FRICTION])
401 unsigned int val = 1000;
403 if (ecore_x_window_prop_card32_get(event->win,
408 _elm_config->thumbscroll_bounce_friction =
409 (double)val / 1000.0;
412 else if (event->atom == _atom[ATOM_E_THUMBSCROLL_ENABLE])
414 unsigned int val = 1000;
416 if (ecore_x_window_prop_card32_get(event->win,
420 _elm_config->thumbscroll_enable = !!val;
423 else if (event->atom == _atom[ATOM_E_THUMBSCROLL_THRESHOLD])
425 unsigned int val = 1000;
427 if (ecore_x_window_prop_card32_get(event->win,
431 if (val > 0) _elm_config->thumbscroll_threshold = val;
434 else if (event->atom == _atom[ATOM_E_THUMBSCROLL_MOMENTUM_THRESHOLD])
436 unsigned int val = 1000;
438 if (ecore_x_window_prop_card32_get(event->win,
442 _elm_config->thumbscroll_momentum_threshold =
443 (double)val / 1000.0;
446 else if (event->atom == _atom[ATOM_E_THUMBSCROLL_FRICTION])
448 unsigned int val = 1000;
450 if (ecore_x_window_prop_card32_get(event->win,
454 _elm_config->thumbscroll_friction = (double)val / 1000.0;
457 else if (event->atom == _atom[ATOM_E_THUMBSCROLL_BORDER_FRICTION])
459 unsigned int val = 1000;
461 if (ecore_x_window_prop_card32_get(event->win,
465 _elm_config->thumbscroll_border_friction =
466 (double)val / 1000.0;
469 else if (event->atom == _atom[ATOM_E_THUMBSCROLL_SENSITIVITY_FRICTION])
471 unsigned int val = 1000;
473 if (ecore_x_window_prop_card32_get(event->win,
477 _elm_config->thumbscroll_sensitivity_friction =
478 (double)val / 1000.0;
481 else if (event->atom == _atom[ATOM_E_THUMBSCROLL_PAGE_SCROLL_FRICTION])
483 unsigned int val = 1000;
485 if (ecore_x_window_prop_card32_get(event->win,
489 _elm_config->page_scroll_friction =
490 (double)val / 1000.0;
493 else if (event->atom ==
494 _atom[ATOM_E_THUMBSCROLL_BRING_IN_SCROLL_FRICTION])
496 unsigned int val = 1000;
498 if (ecore_x_window_prop_card32_get(event->win,
502 _elm_config->bring_in_scroll_friction =
503 (double)val / 1000.0;
506 else if (event->atom ==
507 _atom[ATOM_E_THUMBSCROLL_ZOOM_FRICTION])
509 unsigned int val = 1000;
511 if (ecore_x_window_prop_card32_get(event->win,
515 _elm_config->zoom_friction = (double)val / 1000.0;
518 else if (((_atom_config > 0) && (event->atom == _atom_config)) ||
519 (event->atom == _atom[ATOM_E_CONFIG]))
524 return ECORE_CALLBACK_PASS_ON;
532 Eet_Data_Descriptor_Class eddc;
534 EET_EINA_FILE_DATA_DESCRIPTOR_CLASS_SET(&eddc, Elm_Config);
535 eddc.func.str_direct_alloc = NULL;
536 eddc.func.str_direct_free = NULL;
538 _config_edd = eet_data_descriptor_file_new(&eddc);
541 printf("EEEK! eet_data_descriptor_file_new() failed\n");
545 memset(&eddc, 0, sizeof(eddc)); /* just in case... */
546 EET_EINA_STREAM_DATA_DESCRIPTOR_CLASS_SET(&eddc, Elm_Font_Overlay);
547 eddc.func.str_direct_alloc = NULL;
548 eddc.func.str_direct_free = NULL;
550 _config_font_overlay_edd = eet_data_descriptor_stream_new(&eddc);
551 if (!_config_font_overlay_edd)
553 printf("EEEK! eet_data_descriptor_stream_new() failed\n");
554 eet_data_descriptor_free(_config_edd);
557 #define T_INT EET_T_INT
558 #define T_DOUBLE EET_T_DOUBLE
559 #define T_STRING EET_T_STRING
560 #define T_UCHAR EET_T_UCHAR
562 #define T Elm_Font_Overlay
563 #define D _config_font_overlay_edd
564 ELM_CONFIG_VAL(D, T, text_class, EET_T_STRING);
565 ELM_CONFIG_VAL(D, T, font, EET_T_STRING);
566 ELM_CONFIG_VAL(D, T, size, EET_T_INT);
571 #define D _config_edd
572 ELM_CONFIG_VAL(D, T, config_version, T_INT);
573 ELM_CONFIG_VAL(D, T, engine, T_STRING);
574 ELM_CONFIG_VAL(D, T, vsync, T_UCHAR);
575 ELM_CONFIG_VAL(D, T, thumbscroll_enable, T_UCHAR);
576 ELM_CONFIG_VAL(D, T, thumbscroll_threshold, T_INT);
577 ELM_CONFIG_VAL(D, T, thumbscroll_momentum_threshold, T_DOUBLE);
578 ELM_CONFIG_VAL(D, T, thumbscroll_friction, T_DOUBLE);
579 ELM_CONFIG_VAL(D, T, thumbscroll_bounce_friction, T_DOUBLE);
580 ELM_CONFIG_VAL(D, T, thumbscroll_border_friction, T_DOUBLE);
581 ELM_CONFIG_VAL(D, T, thumbscroll_sensitivity_friction, T_DOUBLE);
582 ELM_CONFIG_VAL(D, T, page_scroll_friction, T_DOUBLE);
583 ELM_CONFIG_VAL(D, T, bring_in_scroll_friction, T_DOUBLE);
584 ELM_CONFIG_VAL(D, T, zoom_friction, T_DOUBLE);
585 ELM_CONFIG_VAL(D, T, thumbscroll_bounce_enable, T_UCHAR);
586 ELM_CONFIG_VAL(D, T, scroll_smooth_time_interval, T_DOUBLE);
587 ELM_CONFIG_VAL(D, T, scroll_smooth_amount, T_DOUBLE);
588 ELM_CONFIG_VAL(D, T, scroll_smooth_history_weight, T_DOUBLE);
589 ELM_CONFIG_VAL(D, T, scroll_smooth_future_time, T_DOUBLE);
590 ELM_CONFIG_VAL(D, T, scroll_smooth_time_window, T_DOUBLE);
591 ELM_CONFIG_VAL(D, T, scale, T_DOUBLE);
592 ELM_CONFIG_VAL(D, T, bgpixmap, T_INT);
593 ELM_CONFIG_VAL(D, T, compositing, T_INT);
594 /* EET_DATA_DESCRIPTOR_ADD_LIST(D, T, "font_dirs", font_dirs, sub_edd); */
595 ELM_CONFIG_LIST(D, T, font_overlays, _config_font_overlay_edd);
596 ELM_CONFIG_VAL(D, T, font_hinting, T_INT);
597 ELM_CONFIG_VAL(D, T, cache_flush_poll_interval, T_INT);
598 ELM_CONFIG_VAL(D, T, cache_flush_enable, T_UCHAR);
599 ELM_CONFIG_VAL(D, T, image_cache, T_INT);
600 ELM_CONFIG_VAL(D, T, font_cache, T_INT);
601 ELM_CONFIG_VAL(D, T, edje_cache, T_INT);
602 ELM_CONFIG_VAL(D, T, edje_collection_cache, T_INT);
603 ELM_CONFIG_VAL(D, T, finger_size, T_INT);
604 ELM_CONFIG_VAL(D, T, fps, T_DOUBLE);
605 ELM_CONFIG_VAL(D, T, theme, T_STRING);
606 ELM_CONFIG_VAL(D, T, modules, T_STRING);
607 ELM_CONFIG_VAL(D, T, tooltip_delay, T_DOUBLE);
608 ELM_CONFIG_VAL(D, T, cursor_engine_only, T_UCHAR);
609 ELM_CONFIG_VAL(D, T, focus_highlight_enable, T_UCHAR);
610 ELM_CONFIG_VAL(D, T, focus_highlight_animate, T_UCHAR);
611 ELM_CONFIG_VAL(D, T, toolbar_shrink_mode, T_INT);
612 ELM_CONFIG_VAL(D, T, fileselector_expand_enable, T_UCHAR);
613 ELM_CONFIG_VAL(D, T, inwin_dialogs_enable, T_UCHAR);
614 ELM_CONFIG_VAL(D, T, icon_size, T_INT);
615 ELM_CONFIG_VAL(D, T, longpress_timeout, T_DOUBLE);
616 ELM_CONFIG_VAL(D, T, effect_enable, T_UCHAR);
617 ELM_CONFIG_VAL(D, T, desktop_entry, T_UCHAR);
618 ELM_CONFIG_VAL(D, T, password_show_last, T_UCHAR);
619 ELM_CONFIG_VAL(D, T, password_show_last_timeout, T_DOUBLE);
633 eet_data_descriptor_free(_config_edd);
637 if (_config_font_overlay_edd)
639 eet_data_descriptor_free(_config_font_overlay_edd);
640 _config_font_overlay_edd = NULL;
645 _sort_files_cb(const void *f1,
648 return strcmp(f1, f2);
652 _elm_config_current_profile_get(void)
658 _elm_data_dir_snprintf(char *dst,
663 size_t data_dir_len, off;
666 data_dir_len = eina_strlcpy(dst, _elm_data_dir, size);
668 off = data_dir_len + 1;
673 dst[data_dir_len] = '/';
675 off = off + vsnprintf(dst + off, size - off, fmt, ap);
683 _elm_user_dir_snprintf(char *dst,
689 size_t user_dir_len, off;
693 home = evil_homedir_get();
695 home = getenv("HOME");
700 user_dir_len = eina_str_join_len(dst, size, '/', home, strlen(home),
701 ".elementary", sizeof(".elementary") - 1);
703 off = user_dir_len + 1;
708 dst[user_dir_len] = '/';
710 off = off + vsnprintf(dst + off, size - off, fmt, ap);
718 _elm_config_profile_dir_get(const char *prof,
726 _elm_user_dir_snprintf(buf, sizeof(buf), "config/%s", prof);
728 if (ecore_file_is_dir(buf))
734 snprintf(buf, sizeof(buf), "%s/config/%s", _elm_data_dir, prof);
736 if (ecore_file_is_dir(buf))
743 _elm_config_font_overlays_list(void)
745 return _elm_config->font_overlays;
749 _elm_config_font_overlay_set(const char *text_class,
753 Elm_Font_Overlay *efd;
756 EINA_LIST_FOREACH(_elm_config->font_overlays, l, efd)
758 if (strcmp(efd->text_class, text_class))
761 if (efd->font) eina_stringshare_del(efd->font);
762 efd->font = eina_stringshare_add(font);
764 _elm_config->font_overlays =
765 eina_list_promote_list(_elm_config->font_overlays, l);
769 /* the text class doesn't exist */
770 efd = calloc(1, sizeof(Elm_Font_Overlay));
771 efd->text_class = eina_stringshare_add(text_class);
772 efd->font = eina_stringshare_add(font);
775 _elm_config->font_overlays = eina_list_prepend(_elm_config->font_overlays,
780 _elm_config_font_overlay_remove(const char *text_class)
782 Elm_Font_Overlay *efd;
785 EINA_LIST_FOREACH(_elm_config->font_overlays, l, efd)
787 if (strcmp(efd->text_class, text_class))
790 _elm_config->font_overlays =
791 eina_list_remove_list(_elm_config->font_overlays, l);
792 if (efd->text_class) eina_stringshare_del(efd->text_class);
793 if (efd->font) eina_stringshare_del(efd->font);
801 _elm_config_font_overlay_apply(void)
803 Elm_Font_Overlay *efd;
807 for (i = 0; _elm_text_classes[i].desc; i++)
808 edje_text_class_del(_elm_text_classes[i].name);
810 EINA_LIST_FOREACH(_elm_config->font_overlays, l, efd)
811 edje_text_class_set(efd->text_class, efd->font, efd->size);
815 _elm_config_text_classes_get(void)
817 Eina_List *ret = NULL;
820 for (i = 0; _elm_text_classes[i].desc; i++)
823 tc = malloc(sizeof(*tc));
825 *tc = _elm_text_classes[i];
827 ret = eina_list_append(ret, tc);
834 _elm_config_text_classes_free(Eina_List *l)
838 EINA_LIST_FREE(l, tc)
843 _elm_config_profiles_list(void)
845 const Eina_File_Direct_Info *info;
846 Eina_List *flist = NULL;
847 Eina_Iterator *file_it;
852 len = _elm_user_dir_snprintf(buf, sizeof(buf), "config");
854 file_it = eina_file_direct_ls(buf);
861 len = sizeof(buf) - len;
863 EINA_ITERATOR_FOREACH(file_it, info)
865 if (info->name_length >= len)
868 if (info->type == EINA_FILE_DIR)
871 eina_list_sorted_insert(flist, _sort_files_cb,
872 eina_stringshare_add(info->path +
877 eina_iterator_free(file_it);
880 len = eina_str_join_len(buf, sizeof(buf), '/', _elm_data_dir,
881 strlen(_elm_data_dir), "config",
882 sizeof("config") - 1);
884 file_it = eina_file_direct_ls(buf);
891 len = sizeof(buf) - len;
892 EINA_ITERATOR_FOREACH(file_it, info)
894 if (info->name_length >= len)
904 EINA_LIST_FOREACH(flist, l, tmp)
905 if (!strcmp(info->path + info->name_start, tmp))
910 eina_list_sorted_insert(flist, _sort_files_cb,
911 eina_stringshare_add(info->path +
920 eina_iterator_free(file_it);
924 EINA_LIST_FREE(flist, dir)
925 eina_stringshare_del(dir);
931 _profile_fetch_from_conf(void)
933 char buf[PATH_MAX], *p, *s;
937 _elm_profile = strdup("default");
939 // if env var - use profile without question
940 s = getenv("ELM_PROFILE");
944 _elm_profile = strdup(s);
949 _elm_user_dir_snprintf(buf, sizeof(buf), "config/profile.cfg");
950 ef = eet_open(buf, EET_FILE_MODE_READ);
953 p = eet_read(ef, "config", &len);
957 _elm_profile = malloc(len + 1);
958 memcpy(_elm_profile, p, len);
959 _elm_profile[len] = 0;
968 _elm_data_dir_snprintf(buf, sizeof(buf), "config/profile.cfg");
969 ef = eet_open(buf, EET_FILE_MODE_READ);
972 p = eet_read(ef, "config", &len);
976 _elm_profile = malloc(len + 1);
977 memcpy(_elm_profile, p, len);
978 _elm_profile[len] = 0;
988 Elm_Font_Overlay *fo;
991 if (!_elm_config) return;
992 EINA_LIST_FREE(_elm_config->font_dirs, fontdir)
994 eina_stringshare_del(fontdir);
996 if (_elm_config->engine) eina_stringshare_del(_elm_config->engine);
997 EINA_LIST_FREE(_elm_config->font_overlays, fo)
999 if (fo->text_class) eina_stringshare_del(fo->text_class);
1000 if (fo->font) eina_stringshare_del(fo->font);
1003 if (_elm_config->theme) eina_stringshare_del(_elm_config->theme);
1004 if (_elm_config->modules) eina_stringshare_del(_elm_config->modules);
1012 _elm_theme_parse(NULL, _elm_config->theme);
1013 ecore_animator_frametime_set(1.0 / _elm_config->fps);
1017 _config_sub_apply(void)
1019 edje_frametime_set(1.0 / _elm_config->fps);
1020 edje_scale_set(_elm_config->scale);
1021 edje_password_show_last_set(_elm_config->password_show_last);
1022 edje_password_show_last_timeout_set(_elm_config->password_show_last_timeout);
1023 if (_elm_config->modules) _elm_module_parse(_elm_config->modules);
1027 _elm_cache_flush_cb(void *data __UNUSED__)
1030 return ECORE_CALLBACK_RENEW;
1033 /* kind of abusing this call right now -- shared between all of those
1034 * properties -- but they are not meant to be called that periodically
1044 EINA_LIST_FOREACH(_elm_win_list, l, win)
1046 Evas *e = evas_object_evas_get(win);
1047 evas_image_cache_set(e, _elm_config->image_cache * 1024);
1048 evas_font_cache_set(e, _elm_config->font_cache * 1024);
1050 edje_file_cache_set(_elm_config->edje_cache);
1051 edje_collection_cache_set(_elm_config->edje_collection_cache);
1053 if (_elm_cache_flush_poller)
1055 ecore_poller_del(_elm_cache_flush_poller);
1056 _elm_cache_flush_poller = NULL;
1058 if (_elm_config->cache_flush_enable)
1060 if (_elm_config->cache_flush_poll_interval > 0)
1062 _elm_cache_flush_poller =
1063 ecore_poller_add(ECORE_POLLER_CORE,
1064 _elm_config->cache_flush_poll_interval,
1065 _elm_cache_flush_cb, NULL);
1071 _config_user_load(void)
1073 Elm_Config *cfg = NULL;
1077 _elm_user_dir_snprintf(buf, sizeof(buf), "config/%s/base.cfg",
1080 ef = eet_open(buf, EET_FILE_MODE_READ);
1083 cfg = eet_data_read(ef, _config_edd, "config");
1090 _config_system_load(void)
1092 Elm_Config *cfg = NULL;
1096 _elm_data_dir_snprintf(buf, sizeof(buf), "config/%s/base.cfg",
1099 ef = eet_open(buf, EET_FILE_MODE_READ);
1102 cfg = eet_data_read(ef, _config_edd, "config");
1111 _elm_config = _config_user_load();
1114 if (_elm_config->config_version < ELM_CONFIG_VERSION)
1119 /* no user config, fallback for system. No need to check version for
1120 * this one, if it's not the right one, someone screwed up at the time
1121 * of installing it */
1122 _elm_config = _config_system_load();
1123 if (_elm_config) return;
1124 /* FIXME: config load could have failed because of a non-existent
1125 * profile. Fallback to default before moving on */
1127 // config load fail - defaults
1128 /* XXX: do these make sense? Only if it's valid to install the lib
1129 * without the config, but do we want that? */
1130 _elm_config = ELM_NEW(Elm_Config);
1131 _elm_config->config_version = ELM_CONFIG_VERSION;
1132 _elm_config->engine = eina_stringshare_add("software_x11");
1133 _elm_config->vsync = 0;
1134 _elm_config->thumbscroll_enable = EINA_TRUE;
1135 _elm_config->thumbscroll_threshold = 24;
1136 _elm_config->thumbscroll_momentum_threshold = 100.0;
1137 _elm_config->thumbscroll_friction = 1.0;
1138 _elm_config->thumbscroll_bounce_friction = 0.5;
1139 _elm_config->thumbscroll_bounce_enable = EINA_TRUE;
1140 _elm_config->page_scroll_friction = 0.5;
1141 _elm_config->bring_in_scroll_friction = 0.5;
1142 _elm_config->zoom_friction = 0.5;
1143 _elm_config->thumbscroll_border_friction = 0.5;
1144 _elm_config->thumbscroll_sensitivity_friction = 0.25; // magic number! just trial and error shows this makes it behave "nicer" and not run off at high speed all the time
1145 _elm_config->scroll_smooth_time_interval = 0.008;
1146 _elm_config->scroll_smooth_amount = 1.0;
1147 _elm_config->scroll_smooth_history_weight = 0.3;
1148 _elm_config->scroll_smooth_future_time = 0.0;
1149 _elm_config->scroll_smooth_time_window = 0.2;
1150 _elm_config->scale = 1.0;
1151 _elm_config->bgpixmap = 0;
1152 _elm_config->compositing = 1;
1153 _elm_config->font_hinting = 2;
1154 _elm_config->cache_flush_poll_interval = 512;
1155 _elm_config->cache_flush_enable = EINA_TRUE;
1156 _elm_config->font_dirs = NULL;
1157 _elm_config->image_cache = 4096;
1158 _elm_config->font_cache = 512;
1159 _elm_config->edje_cache = 32;
1160 _elm_config->edje_collection_cache = 64;
1161 _elm_config->finger_size = 40;
1162 _elm_config->fps = 60.0;
1163 _elm_config->theme = eina_stringshare_add("default");
1164 _elm_config->modules = NULL;
1165 _elm_config->tooltip_delay = 1.0;
1166 _elm_config->cursor_engine_only = EINA_TRUE;
1167 _elm_config->focus_highlight_enable = EINA_FALSE;
1168 _elm_config->focus_highlight_animate = EINA_TRUE;
1169 _elm_config->toolbar_shrink_mode = 2;
1170 _elm_config->fileselector_expand_enable = EINA_FALSE;
1171 _elm_config->inwin_dialogs_enable = EINA_FALSE;
1172 _elm_config->icon_size = 32;
1173 _elm_config->longpress_timeout = 1.0;
1174 _elm_config->effect_enable = EINA_TRUE;
1175 _elm_config->desktop_entry = EINA_FALSE;
1176 _elm_config->is_mirrored = EINA_FALSE; /* Read sys value in env_get() */
1177 _elm_config->password_show_last = EINA_FALSE;
1178 _elm_config->password_show_last_timeout = 2.0;
1182 _elm_config_eet_close_error_get(Eet_File *ef,
1186 const char *erstr = NULL;
1188 err = eet_close(ef);
1191 case EET_ERROR_WRITE_ERROR:
1192 erstr = "An error occurred while saving Elementary's "
1193 "settings to disk. The error could not be "
1194 "deterimined. The file where the error occurred was: "
1195 "%s. This file has been deleted to avoid corrupt data.";
1198 case EET_ERROR_WRITE_ERROR_FILE_TOO_BIG:
1199 erstr = "Elementary's settings files are too big "
1200 "for the file system they are being saved to. "
1201 "This error is very strange as the files should "
1202 "be extremely small. Please check the settings "
1203 "for your home directory. "
1204 "The file where the error occurred was: %s ."
1205 "This file has been deleted to avoid corrupt data.";
1208 case EET_ERROR_WRITE_ERROR_IO_ERROR:
1209 erstr = "An output error occurred when writing the settings "
1210 "files for Elementary. Your disk is having troubles "
1211 "and possibly needs replacement. "
1212 "The file where the error occurred was: %s ."
1213 "This file has been deleted to avoid corrupt data.";
1216 case EET_ERROR_WRITE_ERROR_OUT_OF_SPACE:
1217 erstr = "Elementary cannot write its settings file "
1218 "because it ran out of space to write the file. "
1219 "You have either run out of disk space or have "
1220 "gone over your quota limit. "
1221 "The file where the error occurred was: %s ."
1222 "This file has been deleted to avoid corrupt data.";
1225 case EET_ERROR_WRITE_ERROR_FILE_CLOSED:
1226 erstr = "Elementary unexpectedly had the settings file "
1227 "it was writing closed on it. This is very unusual. "
1228 "The file where the error occurred was: %s "
1229 "This file has been deleted to avoid corrupt data.";
1237 /* delete any partially-written file */
1238 ecore_file_unlink(file);
1239 return strdup(erstr);
1246 _elm_config_profile_save(void)
1248 char buf[4096], buf2[4096];
1254 len = _elm_user_dir_snprintf(buf, sizeof(buf), "config/profile.cfg");
1255 if (len + 1 >= sizeof(buf))
1258 len = _elm_user_dir_snprintf(buf2, sizeof(buf2), "config/profile.cfg.tmp");
1259 if (len + 1 >= sizeof(buf2))
1262 ef = eet_open(buf2, EET_FILE_MODE_WRITE);
1266 ok = eet_write(ef, "config", _elm_profile, strlen(_elm_profile), 0);
1270 err = _elm_config_eet_close_error_get(ef, buf2);
1278 ret = ecore_file_mv(buf2, buf);
1281 ERR("Error saving Elementary's configuration file");
1285 ecore_file_unlink(buf2);
1289 ecore_file_unlink(buf2);
1294 _elm_config_save(void)
1296 char buf[4096], buf2[4096];
1302 len = _elm_user_dir_snprintf(buf, sizeof(buf), "config/%s", _elm_profile);
1303 if (len + 1 >= sizeof(buf))
1306 ok = ecore_file_mkpath(buf);
1309 ERR("Problem acessing Elementary's user configuration directory: %s",
1314 if (!_elm_config_profile_save())
1320 if (len + sizeof("base.cfg") >= sizeof(buf) - len)
1323 memcpy(buf + len, "base.cfg", sizeof("base.cfg"));
1324 len += sizeof("base.cfg") - 1;
1326 if (len + sizeof(".tmp") >= sizeof(buf))
1329 memcpy(buf2, buf, len);
1330 memcpy(buf2 + len, ".tmp", sizeof(".tmp"));
1332 ef = eet_open(buf2, EET_FILE_MODE_WRITE);
1336 ok = eet_data_write(ef, _config_edd, "config", _elm_config, 1);
1340 err = _elm_config_eet_close_error_get(ef, buf2);
1348 ret = ecore_file_mv(buf2, buf);
1351 ERR("Error saving Elementary's configuration file");
1355 ecore_file_unlink(buf2);
1359 ecore_file_unlink(buf2);
1364 _config_update(void)
1368 tcfg = _config_system_load();
1371 /* weird profile or something? We should probably fill
1372 * with hardcoded defaults, or get from default previx */
1375 #define IFCFG(v) if ((_elm_config->config_version & 0xffff) < (v)) {
1376 #define IFCFGELSE } else {
1378 #define COPYVAL(x) do {_elm_config->x = tcfg->x; } while(0)
1379 #define COPYPTR(x) do {_elm_config->x = tcfg->x; tcfg->x = NULL; } while(0)
1380 #define COPYSTR(x) COPYPTR(x)
1382 /* we also need to update for property changes in the root window
1383 * if needed, but that will be dependent on new properties added
1384 * with each version */
1387 COPYVAL(longpress_timeout);
1397 /* after updating user config, we must save */
1406 s = getenv("ELM_ENGINE");
1409 if ((!strcasecmp(s, "x11")) ||
1410 (!strcasecmp(s, "x")) ||
1411 (!strcasecmp(s, "software-x11")) ||
1412 (!strcasecmp(s, "software_x11")))
1413 eina_stringshare_replace(&_elm_config->engine, ELM_SOFTWARE_X11);
1414 else if ((!strcasecmp(s, "opengl")) ||
1415 (!strcasecmp(s, "gl")) ||
1416 (!strcasecmp(s, "opengl-x11")) ||
1417 (!strcasecmp(s, "opengl_x11")))
1418 eina_stringshare_replace(&_elm_config->engine, ELM_OPENGL_X11);
1419 else if ((!strcasecmp(s, "x11-8")) ||
1420 (!strcasecmp(s, "x8")) ||
1421 (!strcasecmp(s, "software-8-x11")) ||
1422 (!strcasecmp(s, "software_8_x11")))
1423 eina_stringshare_replace(&_elm_config->engine, ELM_SOFTWARE_8_X11);
1424 else if ((!strcasecmp(s, "x11-16")) ||
1425 (!strcasecmp(s, "x16")) ||
1426 (!strcasecmp(s, "software-16-x11")) ||
1427 (!strcasecmp(s, "software_16_x11")))
1428 eina_stringshare_replace(&_elm_config->engine, ELM_SOFTWARE_16_X11);
1430 else if ((!strcasecmp(s, "xrender")) ||
1431 (!strcasecmp(s, "xr")) ||
1432 (!strcasecmp(s, "xrender-x11")) ||
1433 (!strcasecmp(s, "xrender_x11")))
1434 eina_stringshare_replace(&_elm_config->engine, ELM_XRENDER_X11);
1436 else if ((!strcasecmp(s, "fb")) ||
1437 (!strcasecmp(s, "software-fb")) ||
1438 (!strcasecmp(s, "software_fb")))
1439 eina_stringshare_replace(&_elm_config->engine, ELM_SOFTWARE_FB);
1440 else if ((!strcasecmp(s, "directfb")) ||
1441 (!strcasecmp(s, "dfb")))
1442 eina_stringshare_replace(&_elm_config->engine, ELM_SOFTWARE_DIRECTFB);
1443 else if ((!strcasecmp(s, "sdl")) ||
1444 (!strcasecmp(s, "software-sdl")) ||
1445 (!strcasecmp(s, "software_sdl")))
1446 eina_stringshare_replace(&_elm_config->engine, ELM_SOFTWARE_SDL);
1447 else if ((!strcasecmp(s, "sdl-16")) ||
1448 (!strcasecmp(s, "software-16-sdl")) ||
1449 (!strcasecmp(s, "software_16_sdl")))
1450 eina_stringshare_replace(&_elm_config->engine, ELM_SOFTWARE_16_SDL);
1451 else if ((!strcasecmp(s, "opengl-sdl")) ||
1452 (!strcasecmp(s, "opengl_sdl")) ||
1453 (!strcasecmp(s, "gl-sdl")) ||
1454 (!strcasecmp(s, "gl_sdl")))
1455 eina_stringshare_replace(&_elm_config->engine, ELM_OPENGL_SDL);
1456 else if ((!strcasecmp(s, "gdi")) ||
1457 (!strcasecmp(s, "software-gdi")) ||
1458 (!strcasecmp(s, "software_gdi")))
1459 eina_stringshare_replace(&_elm_config->engine, ELM_SOFTWARE_WIN32);
1460 else if ((!strcasecmp(s, "wince-gdi")) ||
1461 (!strcasecmp(s, "software-16-wince-gdi")) ||
1462 (!strcasecmp(s, "software_16_wince_gdi")))
1463 eina_stringshare_replace(&_elm_config->engine, ELM_SOFTWARE_16_WINCE);
1464 else if ((!strncmp(s, "shot:", 5)))
1465 eina_stringshare_replace(&_elm_config->engine, s);
1468 s = getenv("ELM_VSYNC");
1469 if (s) _elm_config->vsync = !!atoi(s);
1471 s = getenv("ELM_THUMBSCROLL_ENABLE");
1472 if (s) _elm_config->thumbscroll_enable = !!atoi(s);
1473 s = getenv("ELM_THUMBSCROLL_THRESHOLD");
1474 if (s) _elm_config->thumbscroll_threshold = atoi(s);
1475 // FIXME: floatformat locale issues here 1.0 vs 1,0 - should just be 1.0
1476 s = getenv("ELM_THUMBSCROLL_MOMENTUM_THRESHOLD");
1477 if (s) _elm_config->thumbscroll_momentum_threshold = atof(s);
1478 s = getenv("ELM_THUMBSCROLL_FRICTION");
1479 if (s) _elm_config->thumbscroll_friction = atof(s);
1480 s = getenv("ELM_THUMBSCROLL_BOUNCE_ENABLE");
1481 if (s) _elm_config->thumbscroll_bounce_enable = !!atoi(s);
1482 s = getenv("ELM_THUMBSCROLL_BOUNCE_FRICTION");
1483 if (s) _elm_config->thumbscroll_bounce_friction = atof(s);
1484 s = getenv("ELM_PAGE_SCROLL_FRICTION");
1485 if (s) _elm_config->page_scroll_friction = atof(s);
1486 s = getenv("ELM_BRING_IN_SCROLL_FRICTION");
1487 if (s) _elm_config->bring_in_scroll_friction = atof(s);
1488 s = getenv("ELM_ZOOM_FRICTION");
1489 if (s) _elm_config->zoom_friction = atof(s);
1490 s = getenv("ELM_THUMBSCROLL_BORDER_FRICTION");
1500 _elm_config->thumbscroll_border_friction = friction;
1502 s = getenv("ELM_THUMBSCROLL_SENSITIVITY_FRICTION");
1512 _elm_config->thumbscroll_sensitivity_friction = friction;
1514 s = getenv("ELM_SCROLL_SMOOTH_TIME_INTERVAL");
1515 if (s) _elm_config->scroll_smooth_time_interval = atof(s);
1516 s = getenv("ELM_SCROLL_SMOOTH_AMOUNT");
1517 if (s) _elm_config->scroll_smooth_amount = atof(s);
1518 s = getenv("ELM_SCROLL_SMOOTH_HISTORY_WEIGHT");
1519 if (s) _elm_config->scroll_smooth_history_weight = atof(s);
1520 s = getenv("ELM_SCROLL_SMOOTH_FUTURE_TIME");
1521 if (s) _elm_config->scroll_smooth_future_time = atof(s);
1522 s = getenv("ELM_SCROLL_SMOOTH_TIME_WINDOW");
1523 if (s) _elm_config->scroll_smooth_time_window = atof(s);
1524 s = getenv("ELM_THEME");
1525 if (s) eina_stringshare_replace(&_elm_config->theme, s);
1527 s = getenv("ELM_FONT_HINTING");
1530 if (!strcasecmp(s, "none")) _elm_config->font_hinting = 0;
1531 else if (!strcasecmp(s, "auto"))
1532 _elm_config->font_hinting = 1;
1533 else if (!strcasecmp(s, "bytecode"))
1534 _elm_config->font_hinting = 2;
1537 s = getenv("ELM_FONT_PATH");
1543 EINA_LIST_FREE(_elm_config->font_dirs, p)
1545 eina_stringshare_del(p);
1548 buf2 = alloca(strlen(s) + 1);
1553 if ((*p == ':') || (*p == 0))
1558 strncpy(buf2, pp, len);
1560 _elm_config->font_dirs =
1561 eina_list_append(_elm_config->font_dirs,
1562 eina_stringshare_add(buf2));
1575 s = getenv("ELM_IMAGE_CACHE");
1576 if (s) _elm_config->image_cache = atoi(s);
1578 s = getenv("ELM_FONT_CACHE");
1579 if (s) _elm_config->font_cache = atoi(s);
1581 s = getenv("ELM_SCALE");
1582 if (s) _elm_config->scale = atof(s);
1584 _elm_config->finger_size =
1585 (double)_elm_config->finger_size * _elm_config->scale;
1586 s = getenv("ELM_FINGER_SIZE");
1587 if (s) _elm_config->finger_size = atoi(s);
1589 s = getenv("ELM_PASSWORD_SHOW_LAST");
1590 if (s) _elm_config->password_show_last = !!atoi(s);
1592 s = getenv("ELM_PASSWORD_SHOW_LAST_TIMEOUT");
1595 double pw_show_last_timeout = atof(s);
1596 if (pw_show_last_timeout >= 0.0)
1597 _elm_config->password_show_last_timeout = pw_show_last_timeout;
1600 s = getenv("ELM_FPS");
1601 if (s) _elm_config->fps = atof(s);
1602 if (_elm_config->fps < 1.0) _elm_config->fps = 1.0;
1604 s = getenv("ELM_MODULES");
1605 if (s) eina_stringshare_replace(&_elm_config->modules, s);
1607 /* Get RTL orientation from system */
1608 setlocale(LC_ALL, "");
1609 bindtextdomain(PACKAGE, LOCALE_DIR);
1610 _elm_config->is_mirrored = !strcmp(E_("default:LTR"), "default:RTL");
1612 s = getenv("ELM_TOOLTIP_DELAY");
1615 double delay = atof(s);
1617 _elm_config->tooltip_delay = delay;
1620 s = getenv("ELM_CURSOR_ENGINE_ONLY");
1621 if (s) _elm_config->cursor_engine_only = !!atoi(s);
1623 s = getenv("ELM_FOCUS_HIGHLIGHT_ENABLE");
1624 if (s) _elm_config->focus_highlight_enable = !!atoi(s);
1626 s = getenv("ELM_FOCUS_HIGHLIGHT_ANIMATE");
1627 if (s) _elm_config->focus_highlight_animate = !!atoi(s);
1629 s = getenv("ELM_TOOLBAR_SHRINK_MODE");
1630 if (s) _elm_config->toolbar_shrink_mode = atoi(s);
1632 s = getenv("ELM_FILESELECTOR_EXPAND_ENABLE");
1633 if (s) _elm_config->fileselector_expand_enable = !!atoi(s);
1635 s = getenv("ELM_INWIN_DIALOGS_ENABLE");
1636 if (s) _elm_config->inwin_dialogs_enable = !!atoi(s);
1638 s = getenv("ELM_ICON_SIZE");
1639 if (s) _elm_config->icon_size = atoi(s);
1641 s = getenv("ELM_LONGPRESS_TIMEOUT");
1642 if (s) _elm_config->longpress_timeout = atof(s);
1643 if (_elm_config->longpress_timeout < 0.0)
1644 _elm_config->longpress_timeout = 0.0;
1646 s = getenv("ELM_EFFECT_ENABLE");
1647 if (s) _elm_config->effect_enable = !!atoi(s);
1649 s = getenv("ELM_DESKTOP_ENTRY");
1650 if (s) _elm_config->desktop_entry = !!atoi(s);
1654 * Get the system mirrored mode. This determines the default mirrored mode
1657 * @return EINA_TRUE if mirrored is set, EINA_FALSE otherwise
1660 elm_mirrored_get(void)
1662 return _elm_config->is_mirrored;
1666 * Set the system mirrored mode. This determines the default mirrored mode
1669 * @param mirrored EINA_TRUE to set mirrored mode, EINA_FALSE to unset it.
1672 elm_mirrored_set(Eina_Bool mirrored)
1674 _elm_config->is_mirrored = mirrored;
1679 _elm_config_init(void)
1682 _profile_fetch_from_conf();
1684 // NOTE: Do not merge upstream code. Just leave it.
1687 // _elm_config_font_overlay_apply();
1692 _elm_config_sub_init(void)
1694 // NOTE: Do not merge upstream code. Just leave it.
1697 _elm_config_font_overlay_apply();
1700 #define ENGINE_COMPARE(name) (!strcmp(_elm_config->engine, name))
1701 if (ENGINE_COMPARE(ELM_SOFTWARE_X11) ||
1702 ENGINE_COMPARE(ELM_SOFTWARE_16_X11) ||
1703 ENGINE_COMPARE(ELM_XRENDER_X11) ||
1704 ENGINE_COMPARE(ELM_OPENGL_X11))
1705 #undef ENGINE_COMPARE
1707 #ifdef HAVE_ELEMENTARY_X
1708 unsigned int val = 1000;
1710 if (!ecore_x_init(NULL))
1712 ERR("Cannot connect to X11 display. check $DISPLAY variable");
1715 _root_1st = ecore_x_window_root_first_get();
1717 if (!ecore_x_screen_is_composited(0))
1718 _elm_config->compositing = 0;
1720 ecore_x_atoms_get(_atom_names, ATOM_COUNT, _atom);
1721 ecore_x_event_mask_set(_root_1st,
1722 ECORE_X_EVENT_MASK_WINDOW_PROPERTY);
1723 _prop_change_handler = ecore_event_handler_add
1724 (ECORE_X_EVENT_WINDOW_PROPERTY, _prop_change, NULL);
1725 if (!getenv("ELM_SCALE"))
1727 if (ecore_x_window_prop_card32_get(_root_1st,
1728 _atom[ATOM_E_SCALE],
1733 _elm_config->scale = (double)val / 1000.0;
1734 // FIXME: hack until e export finger size too
1735 if (!getenv("ELM_FINGER_SIZE"))
1737 _elm_config->finger_size = 40.0 * _elm_config->scale;
1739 edje_scale_set(_elm_config->scale);
1743 if (!getenv("ELM_FINGER_SIZE"))
1745 if (ecore_x_window_prop_card32_get(_root_1st,
1746 _atom[ATOM_E_FINGER_SIZE],
1751 _elm_config->finger_size = val;
1755 if (!getenv("ELM_THEME"))
1759 s = ecore_x_window_prop_string_get(_root_1st,
1760 _atom[ATOM_E_THEME]);
1763 eina_stringshare_replace(&_elm_config->theme, s);
1764 _elm_theme_parse(NULL, s);
1768 if (!getenv("ELM_PROFILE"))
1772 s = ecore_x_window_prop_string_get(_root_1st,
1773 _atom[ATOM_E_PROFILE]);
1780 if (strcmp(_elm_profile, s)) changed = 1;
1784 if (changed) _prop_config_get();
1789 _config_sub_apply();
1793 _elm_config_reload(void)
1798 _elm_config_font_overlay_apply();
1804 _elm_config_engine_set(const char *engine)
1806 if (_elm_config->engine && strcmp(_elm_config->engine, engine))
1807 eina_stringshare_del(_elm_config->engine);
1809 _elm_config->engine = eina_stringshare_add(engine);
1813 _elm_config_profile_set(const char *profile)
1815 Eina_Bool changed = EINA_FALSE;
1819 if (strcmp(_elm_profile, profile))
1824 _elm_profile = strdup(profile);
1831 _elm_config_font_overlay_apply();
1838 _elm_config_shutdown(void)
1840 #define ENGINE_COMPARE(name) (!strcmp(_elm_config->engine, name))
1841 if (ENGINE_COMPARE(ELM_SOFTWARE_X11) ||
1842 ENGINE_COMPARE(ELM_SOFTWARE_16_X11) ||
1843 ENGINE_COMPARE(ELM_XRENDER_X11) ||
1844 ENGINE_COMPARE(ELM_OPENGL_X11))
1845 #undef ENGINE_COMPARE
1847 #ifdef HAVE_ELEMENTARY_X
1848 ecore_event_handler_del(_prop_change_handler);
1849 _prop_change_handler = NULL;
1856 _elm_profile = NULL;