IMEの制御 †
ただ単に、IMEをON/OFFしたり、ONかOFFか調べたりします。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
| #module "Ime_Control"
#uselib "imm32"
#cfunc ImmGetContext "ImmGetContext" sptr
#func ImmReleaseContext "ImmReleaseContext" sptr,sptr
#func ImmSetOpenStatus "ImmSetOpenStatus" sptr,sptr
#cfunc ImmGetOpenStatus "ImmGetOpenStatus" sptr
#deffunc imeset int imesw
himc=ImmGetContext(hwnd)
ImmSetOpenStatus himc,imesw
ImmReleaseContext hwnd,himc
return
#defcfunc imeget
himc=ImmGetContext(hwnd)
imesw=ImmGetOpenStatus(himc)
ImmReleaseContext hwnd,himc
return imesw
#global
|
1
2
3
|
| if imeget()=0 : imesw=1 : else : imesw=0
objsel id
imeset imesw
|
- せっかくですので載せました。 -- hiroki?