Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

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

Index

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. 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.

Another difference is that the quote is no longer displayed before you type the vowel: this is because we are converting the quote to a deadkey. If necessary, 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 for the Quick French keyboard, as it could cause some confusion when the user wants to type a quote, and not an accent.

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