public
Description:
Homepage:
Clone URL: git://github.com/jessegrosjean/quickcursor.git
quickcursor / PTKeyCodeTranslator.h
100644 27 lines (20 sloc) 0.541 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// PTKeyCodeTranslator.h
// Chercher
//
// Created by Finlay Dobbie on Sat Oct 11 2003.
// Copyright (c) 2003 Cliché Software. All rights reserved.
//
 
#import <Carbon/Carbon.h>
 
@interface PTKeyCodeTranslator : NSObject
{
    TISInputSourceRef keyboardLayout;
    const UCKeyboardLayout *uchrData;
    UInt32 keyTranslateState;
    UInt32 deadKeyState;
}
 
+ (id)currentTranslator;
 
- (id)initWithKeyboardLayout:(TISInputSourceRef)aLayout;
- (NSString *)translateKeyCode:(short)keyCode;
 
- (TISInputSourceRef)keyboardLayout;
 
@end