Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_SystemCocoa.mm
| Show First 20 Lines • Show All 301 Lines • ▼ Show 20 Lines | default: { | ||||
| return GHOST_kKeyQuote; | return GHOST_kKeyQuote; | ||||
| case '\\': | case '\\': | ||||
| return GHOST_kKeyBackslash; | return GHOST_kKeyBackslash; | ||||
| case '[': | case '[': | ||||
| return GHOST_kKeyLeftBracket; | return GHOST_kKeyLeftBracket; | ||||
| case ']': | case ']': | ||||
| return GHOST_kKeyRightBracket; | return GHOST_kKeyRightBracket; | ||||
| case '`': | case '`': | ||||
| case '<': /* On AZERTY Keyboards. */ | |||||
| return GHOST_kKeyAccentGrave; | return GHOST_kKeyAccentGrave; | ||||
| default: | default: | ||||
| return GHOST_kKeyUnknown; | return GHOST_kKeyUnknown; | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| return GHOST_kKeyUnknown; | return GHOST_kKeyUnknown; | ||||
| ▲ Show 20 Lines • Show All 1,650 Lines • Show Last 20 Lines | |||||