You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
541 B
27 lines
541 B
9 years ago
|
//
|
||
|
// 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
|