Codebase list mozc / 878d7b2
Remove patches/add_tegaki_ui_scim_mozc.patch and patches/add_tegaki_ui_ibus_mozc.patch Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@debian.org> Nobuhiro Iwamatsu 12 years ago
4 changed file(s) with 3 addition(s) and 72 deletion(s). Raw diff Collapse all Expand all
11
22 * New upstream release (r105).
33 * Update patches/support-kfreebsd.patch.
4 * Remove unnecessary patches.
5 - patches/add_tegaki_ui_scim_mozc.patch
6 - patches/add_tegaki_ui_ibus_mozc.patch
47
58 -- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 28 Mar 2012 12:34:56 +0900
69
+0
-35
debian/patches/add_tegaki_ui_ibus_mozc.patch less more
0 Description: Add tegaki UI for ibus mozc.
1 Forwarded: none
2 Author: Nobuhiro iwamatsu <iwamatsut@debian.org>
3 Last-Update: 2011-12-06
4
5
6 diff --git a/unix/ibus/mozc_engine_property.cc b/unix/ibus/mozc_engine_property.cc
7 index 63bb411..29a0d8e 100755
8 --- a/unix/ibus/mozc_engine_property.cc
9 +++ b/unix/ibus/mozc_engine_property.cc
10 @@ -121,6 +121,24 @@ const MozcEngineToolProperty kMozcEngineToolProperties[] = {
11 "character_palette.png",
12 },
13 {
14 + "Tool.WordRegisterDialog",
15 + "word_register_dialog",
16 + "Word register tool",
17 + NULL,
18 + },
19 + {
20 + "Tool.InputPad",
21 + "character_palette",
22 + "Character Input palette",
23 + NULL,
24 + },
25 + {
26 + "Tool.HandWriting",
27 + "hand_writing",
28 + "Hand-written character recognition",
29 + NULL,
30 + },
31 + {
32 "Tool.AboutDialog",
33 "about_dialog",
34 "About Mozc",
+0
-35
debian/patches/add_tegaki_ui_scim_mozc.patch less more
0 Description: Add tegaki UI for scim mozc.
1 Forwarded: none
2 Author: Nobuhiro iwamatsu <iwamatsut@debian.org>
3 Last-Update: 2011-10-04
4
5 diff --git a/unix/scim/scim_mozc.cc b/unix/scim/scim_mozc.cc
6 index 742aa3f..2fa0218 100755
7 --- a/unix/scim/scim_mozc.cc
8 +++ b/unix/scim/scim_mozc.cc
9 @@ -48,6 +48,12 @@ const char kPropTool[] = "/Mozc/Tool";
10 const char kPropToolIcon[] = SCIM_ICONDIR "/scim-mozc-tool.png";
11 const char kPropToolDictionary[] = "/Mozc/Tool/dictionary";
12 const char kPropToolDictionaryIcon[] = SCIM_ICONDIR "/scim-mozc-dictionary.png";
13 +const char kPropToolWordregister[] = "/Mozc/Tool/wordregister";
14 +const char kPropToolWordregisterIcon[] = "";
15 +const char kPropToolInputpad[] = "/Mozc/Tool/inputpad";
16 +const char kPropToolInputpadIcon[] = "";
17 +const char kPropToolHandwriting[] = "/Mozc/Tool/handwriting";
18 +const char kPropToolHandwritingIcon[] = "";
19 const char kPropToolProperty[] = "/Mozc/Tool/property";
20 const char kPropToolPropertyIcon[] = SCIM_ICONDIR "/scim-mozc-properties.png";
21
22 @@ -260,6 +266,12 @@ void ScimMozc::trigger_property(const scim::String &property) {
23 args = "--mode=dictionary_tool";
24 } else if (property == kPropToolProperty) {
25 args = "--mode=config_dialog";
26 + } else if (property == kPropToolWordregister) {
27 + args = "--mode=word_register_dialog";
28 + } else if (property == kPropToolInputpad) {
29 + args = "--mode=character_palette";
30 + } else if (property == kPropToolHandwriting) {
31 + args = "--mode=hand_writing";
32 } else {
33 // Unknown property.
34 return;
00 support-kfreebsd.patch
11 uim-mozc.patch
22 # add_file_to_gypfile_check.patch
3 add_tegaki_ui_scim_mozc.patch
4 add_tegaki_ui_ibus_mozc.patch