[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.swt] Re: How to capture and produce IME composition Event?

Hi,

I asked Felipe about this, and he said that you should be getting the key
downs events with the composed Japanese or Korean characters.  There is IME
support added to swt as of eclipse/swt 3.4, but you should not need it in
this case.

I think your best bet is to log a report with swt (
https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Platform&component=SWT ),
and provide a snippet that demonstrates the problem happening (ideal snippet
template: http://www.eclipse.org/swt/faq.php#whatisasnippet ).  The snippet
can probably just create a one-item Table instead of a full TableViewer to
show the problem.

Grant


"Jiyul" <jeeeyul@xxxxxxxxx> wrote in message
news:h8l4lb$fad$1@xxxxxxxxxxxxxxxxxxxx
> I have a table viewer, and I want to let my users can edit cells
> directly without activation of cell editor like as EXCEL.
>
> At first time, I used method to re-generate key-down event. but it
> didn't work for Korean and Japanese. (In Korean or Japanese, there were
> no key-down events in table)
>
> How do I do this with SWT?