d_osx.rc
author Claus Gittinger <cg@exept.de>
Mon, 30 Jun 2014 18:23:50 +0200
changeset 1359 1c9890b47762
parent 1281 eae7bb6f40ae
child 1386 02c006ef8d87
permissions -rw-r--r--
*** empty log message ***

"*
 * Encoding: iso8859-1
 *
 * $Header$
 *
 * MIMEType: application/x-smalltalk-source
 *
 * ST/X startup configuration file:
 *
 * display configuration - OSX (MAC-OS-10 with X-server), only tried with german keyboard)
 *
 * If your display is the above, create a symbolic link
 * d_<hostname-of-display>.rc -> d_next.rc
 *
 *"

"*
 * view style
 *"
"/ View defaultStyle:#osx.    "/ non-existing
View defaultStyle:#Adwaita.
!

"*
 * keyboard mapping
 *"
|map|

map := Display keyboardMap.
map bindValue:#Alt to:#'Meta_L'.
map bindValue:#Alt to:#'Meta_L'.

map bindValue:(Character value:16r2260) to:#'notequal'.
map bindValue:(Character value:16r201E) to:#'doublelowquotemark'.
map bindValue:(Character value:16r201C) to:#'leftdoublequotemark'.
map bindValue:(Character value:16r201D) to:#'rightdoublequotemark'.
map bindValue:(Character value:16r2018) to:#'leftsinglequotemark'.
map bindValue:(Character value:16r2264) to:#'lessthanequal'.
map bindValue:(Character value:16r2265) to:#'greaterthanequal'.
!

Display buttonPressTimeForMenu:1.
!

"/ does not seem to have a good set of unicode fonts available...
FontDescription defaultEncoding: #'iso8859-1'.
!