- Add some default input method configurations use 'enlightenment_imc' to look

at and edit these files
- Change the input method path, intl means something else


SVN revision: 17789
devs/princeamd/enlightenment-0.17-elive
stffrdhrn 18 years ago committed by stffrdhrn
parent 60796f6c2a
commit 7da82144c0
  1. 1
      configure.in
  2. 2
      data/Makefile.am
  3. 7
      data/input_methods/Makefile.am
  4. BIN
      data/input_methods/scim.imc
  5. BIN
      data/input_methods/uim.imc
  6. 7
      src/bin/e_main.c

@ -298,6 +298,7 @@ data/fonts/Makefile
data/images/Makefile
data/init/Makefile
data/init/images/Makefile
data/input_methods/Makefile
data/themes/Makefile
data/themes/images/Makefile
data/other/Makefile

@ -1,3 +1,3 @@
MAINTAINERCLEANFILES = Makefile.in
SUBDIRS = fonts images init themes other xsession
SUBDIRS = fonts images init themes other xsession input_methods

@ -0,0 +1,7 @@
MAINTAINERCLEANFILES = Makefile.in
filesdir = $(datadir)/enlightenment/data/input_methods
files_DATA = \
scim.imc \
uim.imc
EXTRA_DIST = $(files_DATA)

Binary file not shown.

Binary file not shown.

@ -681,7 +681,8 @@ _e_main_dirs_init(void)
"%s/.e/e/applications/trash",
"%s/.e/e/modules",
"%s/.e/e/config",
"%s/.e/e/locale"
"%s/.e/e/locale",
"%s/.e/e/input_methods"
};
int i;
@ -921,8 +922,8 @@ _e_main_path_init(void)
e_error_message_show("Cannot allocate path for path_input_methods\n");
return 0;
}
e_path_default_path_append(path_input_methods, "~/.e/e/intl");
snprintf(buf, sizeof(buf), "%s/enlightenment/intl", e_prefix_lib_get());
e_path_default_path_append(path_input_methods, "~/.e/e/input_methods");
snprintf(buf, sizeof(buf), "%s/data/input_methods", e_prefix_data_get());
e_path_default_path_append(path_input_methods, buf);
e_path_user_path_set(path_input_methods, &(e_config->path_append_input_methods));

Loading…
Cancel
Save