Wiki Page Content

Differences between revisions 2 and 3
Revision 2 as of 2010-08-19 06:00:35
Size: 2391
Editor: DanielWyatt
Comment:
Revision 3 as of 2010-08-19 19:01:47
Size: 2392
Editor: DanielWyatt
Comment:
Deletions are marked like this. Additions are marked like this.
Line 25: Line 25:
 1. The user determines the composition is satisfactor and commits it (usually with the enter key). The user may instead choose to open the [[#CandidateList|Candidate List]] and select a [[#Candidate|Candidate]].  1. The user determines the composition is satisfactory and commits it (usually with the enter key). The user may instead choose to open the [[#CandidateList|Candidate List]] and select a [[#Candidate|Candidate]].

Text Input

Why?

Why does SDL need a text input API?

When I press a key on my keyboard, my program receives a character event, right?

Well, it's not always that simple. Sometimes it can take multiple key presses to produce a character. Sometimes a single key press can produce multiple characters.

Text input is not as simple as it seems, particularly when you consider International users (and you should). It's not hard to figure out why that is when you look at languages like Chinese, Japanese, and Korean. These languages, collectively referred to as the CJK, have thousands of symbols.

It would not be feasible to have a keyboard with over ten-thousand keys, would it? The solution to this is a software input method.

Terms

  • IME - Input Method Editor. A software input method. This is typically a program that intercepts key presses and interprets them before (eventually) passing them onto the application.

  • Composition - The text a user is currently inputting. This text is not yet finalized (committed) and the IME may modify it.

  • Candidate - An optional alternative text for the composition, gathered by the IME in the Candidate List.

  • Candidate List - A list of Candidates, used when there is any ambiguity.

Basic Workflow

  1. The user activates an input method. This is typically done via a hotkey or by selecting an input method in a GUI.
  2. The user begins to type in their selected language, starting a Composition.

  3. The IME intercepts the key press events and interprets them.

  4. The user determines the composition is satisfactory and commits it (usually with the enter key). The user may instead choose to open the Candidate List and select a Candidate.

  5. The IME passes on the text that has been generated.

While this provides a good overview, it may not be accurate for all platforms.

Whenever the Composition is changed, the application can retrieve it.

SDL

So how does SDL handle text input?

Functions

Events

None: Tutorials/TextInput (last edited 2020-06-20 12:07:24 by SylvainBeucler)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit