qual é a diferença entre xim e uim?

12

Eu encontrei (enquanto enfrente este problema ) duas palavras relacionadas ao método de entrada que são xim & uim . Eu conheço apenas o nome: Método de Entrada X e Método de Entrada Universal.

Eu quero saber Qual é a diferença de uso, funcionalidade e trabalho entre o xim e o uim?

    
por Pandya 05.06.2015 / 07:12

1 resposta

5

A maior diferença é que a maioria dos sistemas de entrada são implementados no servidor-cliente, uim é apenas uma biblioteca.

Most users don't need an input method system at all or only need simple, table-based converters. Such users don't require or are unwilling to install a complex input method system, so we want to keep uim simple.

Veja a página oficial do Github para maiores esclarecimentos.

Uim is an input method module library which supports various scripts and can act as a front end for a range of input methods, including anthy, canna, prime, or skk (for japanese), pinyin (for chinese), byeoru (for korean), and m17n (for many other languages). most of its functions are implemented in scheme, so it's very simple and flexible.Source

Now what about XIM? XIM is a pretty obsolete input method protocol which both ibus and fcitx implement for legacy support reasons only. There is no real reason why you would want to use XIM nowadays over any of those two. The only reason why you would want to set GTK_IM_MODULE="xim" is to override GTK's hardcoded ComposeKey settings. Source

    
por 04.10.2016 / 09:34