- 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
This commit is contained in:
stffrdhrn 2005-10-23 07:17:59 +00:00 committed by stffrdhrn
parent 60796f6c2a
commit 7da82144c0
6 changed files with 13 additions and 4 deletions

View File

@ -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

View File

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

View File

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

BIN
data/input_methods/scim.imc Normal file

Binary file not shown.

BIN
data/input_methods/uim.imc Normal file

Binary file not shown.

View File

@ -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));