mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
//
|
||||
// GameKeyboard.h
|
||||
// RobloxMobile
|
||||
//
|
||||
// Created by Ben Tkacheff on 10/23/12.
|
||||
// Copyright (c) 2012 ROBLOX. All rights reserved.
|
||||
//
|
||||
#pragma once
|
||||
|
||||
#import "ControlComponent.h"
|
||||
#include "v8datamodel/Textbox.h"
|
||||
|
||||
@interface GameKeyboard : ControlComponent <UITextFieldDelegate>
|
||||
{
|
||||
UITextField* textView;
|
||||
boost::shared_ptr<RBX::TextBox> currentTextBox;
|
||||
}
|
||||
|
||||
- (id) init;
|
||||
- (void) dealloc;
|
||||
|
||||
+(id) sharedInstance;
|
||||
|
||||
-(void) hideKeyboard;
|
||||
-(bool) showKeyboard:(const char*) stringToShow;
|
||||
-(bool) showKeyboardWithTextBox:(boost::shared_ptr<RBX::TextBox>) newTextBox;
|
||||
-(void)keyboardWillChangeFrame:(NSNotification *) notification;
|
||||
-(void)keyboardWillHide:(NSNotification *) notification;
|
||||
|
||||
-(NSString*) getText;
|
||||
|
||||
-(void) setDefaultString:(NSString*) defaultString;
|
||||
-(void) setParentView:(UIView*) parentView;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user