mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
16 lines
488 B
Objective-C
16 lines
488 B
Objective-C
//
|
|
// KMKeyboardMenuView.h
|
|
// KeymanEngine
|
|
//
|
|
// Created by Serkan Kurt on 18/03/2015.
|
|
// Copyright (c) 2017 SIL International. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "KMInputViewController.h"
|
|
|
|
@interface KMKeyboardMenuView : UIView <UITableViewDelegate, UITableViewDataSource, UIGestureRecognizerDelegate>
|
|
|
|
- (id)initWithKeyFrame:(CGRect)keyFrame inputViewController:(KMInputViewController *)inputViewController closeButtonTitle:(NSString *)closeButtonTitle;
|
|
|
|
@end
|