mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-30 20:27:39 +00:00
20 lines
457 B
Objective-C
20 lines
457 B
Objective-C
//
|
|
// OSKWindowController.h
|
|
// Keyman4MacIM
|
|
//
|
|
// Created by Serkan Kurt on 30/04/2015.
|
|
// Copyright (c) 2017 SIL International. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <KeymanEngine4Mac/KeymanEngine4Mac.h>
|
|
|
|
@interface OSKWindowController : NSWindowController <NSWindowDelegate>
|
|
|
|
@property (nonatomic, weak) IBOutlet OSKView *oskView;
|
|
|
|
- (void)prepareToShowOsk;
|
|
- (void)resetOSK;
|
|
- (NSEventModifierFlags)getOskEventModifierFlags;
|
|
|
|
@end
|