Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

Other versions
Version 17.0Version 16.0 (current version)Version 15.0Version 14.0Version 13.0Version 12.0Version 11.0Version 10.0Version 9.0Version 8.0 (home page)Version 7.0 (home page)Version 6.0 (home page)Version 5.0 (home page)Version 4.0 (home page)

On this page

Step 8: Deadkeys

Solving the Problem

Probably the easiest solution to the problem which we encountered on the last page is to design the keyboard so that the user types a quote key twice when they want to produce a quote, but once when they want to use it as an accent. However, we cannot simply use the rule:

"'" + "'" > "'"

This will certainly produce a single quote after it's typed twice; however it will still produce the same error, because the following keystroke will continue to swallow the quote character from the context. We need to distinguish between the output of this rule, when the user wants a quote, and that of a single quote press, when the user wants to place an accent on a vowel. To implement this behaviour, we use deadkeys.

Deadkeys

A deadkey is like a character that is used in the context or output but never appears on the screen. We use deadkeys like this:

+ "'" > deadkey(quote)

c Handle acute accents
deadkey(quote) + any( plainvowels ) > index( acutevowels, 2 )

c Handle a single quote
deadkey(quote) + "'" > "'"

Note that for the sake of convenience, a deadkey can also be written in a short form:

dk(quote)     c This is identical to deadkey(quote)

Type the three rules above in place of the existing rule for acute accents in the keyboard so far. If you test the keyboard now, you will find that the error no longer occurs. This is because accented vowels are only produced after the deadkey, and no deadkey is output if the user types a quote key twice.

But we've introduced another difference to the keyboard now: the quote is no longer displayed before you type the vowel. This is because we are converting the quote to a deadkey. If we prefer, we can still distinguish between rules in the above manner and display the quote, if we just add a quote before the deadkey, like this:

+ "'" > "'" dk(quote)

c Handle acute accents
"'" dk(quote) + any( plainvowels ) > index( acutevowels, 2 )

c Handle a single quote
"'" dk(quote) + "'" > "'"

However, we will not use this technique for the Quick French keyboard.

Now we can make changes so that all the other accents use deadkeys as well, for consistency, and add rules to output the accent character by typing the key twice.

The Quick French keyboard is now complete. The full source is on the next page.

Step 9: The Finished Keyboard