Ubuntu系統下Sublime Text 2中fcitx中文輸入法的解決方法
前幾天把Ubuntu升級到了13.04 beta 2,順便安裝了fcitx 搜狗輸入法,可是發如今sublime text 2中沒法輸入中文,以前在ubuntu 12.04.2中fcitx正常輸入的,只是有一些小問題。php
本着發現問題,解決問題的原則,咱就找解決方法唄,通過Google和論壇發帖,找到了解決方法。linux
http://my.oschina.net/Khiyuan/blog/98713ubuntu
http://forum.suse.org.cn/viewtopic.php?f=16&t=333vim
http://www.sublimetext.com/forum/viewtopic.php?f=3&t=7006&start=10#p41343sublime-text
在這裏感謝oschina的@Khiyuan 和 bruce.oy 這兩位朋友耐心的爲我解決問題。接下來咱就把方法寫出來。bash
編譯共享內庫
保存下述代碼爲 sublime-imfix.c 文件app
03 |
Use LD_PRELOAD to interpose some function to fix sublime input method support for linux. |
04 |
By Cjacker Huang <jianzhong.huang at i-soft.com.cn> |
06 |
gcc -shared -o libsublime-imfix.so sublime_imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC |
07 |
LD_PRELOAD=./libsublime-imfix.so sublime_text |
11 |
typedef GdkSegment GdkRegionBox; |
21 |
GtkIMContext *local_context; |
24 |
gdk_region_get_clipbox (const GdkRegion *region, |
25 |
GdkRectangle *rectangle) |
27 |
g_return_if_fail (region != NULL); |
28 |
g_return_if_fail (rectangle != NULL); |
30 |
rectangle->x = region->extents.x1; |
31 |
rectangle->y = region->extents.y1; |
32 |
rectangle->width = region->extents.x2 - region->extents.x1; |
33 |
rectangle->height = region->extents.y2 - region->extents.y1; |
35 |
rect.x = rectangle->x; |
36 |
rect.y = rectangle->y; |
38 |
rect.height = rectangle->height; |
39 |
//The caret width is 2; |
40 |
//Maybe sometimes we will make a mistake, but for most of the time , it should be the caret. |
41 |
if (rectangle->width == 2 && GTK_IS_IM_CONTEXT(local_context)) { |
42 |
gtk_im_context_set_cursor_location(local_context, rectangle); |
46 |
//this is needed, for example, if you input something in file dialog and return back the edit area |
47 |
//context will lost, so here we set it again. |
49 |
static GdkFilterReturn event_filter (GdkXEvent *xevent, GdkEvent *event, gpointer im_context) |
51 |
XEvent *xev = (XEvent *)xevent; |
52 |
if (xev-> type == KeyRelease && GTK_IS_IM_CONTEXT(im_context)) { |
53 |
GdkWindow * win = g_object_get_data(G_OBJECT(im_context), "window" ); |
54 |
if (GDK_IS_WINDOW(win)) |
55 |
gtk_im_context_set_client_window(im_context, win); |
57 |
return GDK_FILTER_CONTINUE; |
60 |
void gtk_im_context_set_client_window (GtkIMContext *context, |
63 |
GtkIMContextClass *klass; |
64 |
g_return_if_fail (GTK_IS_IM_CONTEXT (context)); |
65 |
klass = GTK_IM_CONTEXT_GET_CLASS (context); |
66 |
if (klass->set_client_window) |
67 |
klass->set_client_window (context, window); |
69 |
if (!GDK_IS_WINDOW (window)) |
71 |
g_object_set_data(G_OBJECT(context), "window" ,window); |
72 |
int width = gdk_window_get_width(window); |
73 |
int height = gdk_window_get_height(window); |
74 |
if (width != 0 && height !=0) { |
75 |
gtk_im_context_focus_in(context); |
76 |
local_context = context; |
78 |
gdk_window_add_filter (window, event_filter, context); |
安裝C/C++的編譯環境和gtk libgtk2.0-devui
1 |
sudo apt-get install build-essential |
2 |
sudo apt-get install libgtk2.0-dev |
編譯共享內庫this
1 |
gcc -shared -o libsublime-imfix.so sublime_imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC |
啓動 Sublime Text 2spa
好了,如今執行下述命令啓動 Sublime Text 2,就能夠使用fcitx輸入中文了!
1 |
LD_PRELOAD=./libsublime-imfix.so sublime_text |
可是這樣的話,咱們每次都要在終端裏面使用命令啓動sublime text 2,這樣很不方便,接下來咱們還要經過修改sublime-text-2.desktop達到點擊圖標啓動。
打開終端進入applications修改sublime-text-2.desktop
1 |
cd /usr/share/applications |
2 |
sudo vim sublime-text-2.desktop |
打開sublime-text-2.desktop後,將
1 |
Exec=/usr/bin/sublime-text-2 %F |
修改成
1 |
Exec= bash -c 'LD_PRELOAD=/usr/lib/libsublime-imfix.so /usr/bin/sublime-text-2' %F |
還有將
1 |
Exec=/usr/bin/sublime-text-2 --new-window |
修改成
view sourceprint?
1 |
Exec= bash -c 'LD_PRELOAD=/usr/lib/libsublime-imfix.so /usr/bin/sublime-text-2' --new-window |
好了,接下來你在dash中點擊打開sublime text2吧,開始你的代碼之旅吧。