FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
AdvancedKeyboardView Class Reference
Inheritance diagram for AdvancedKeyboardView:
Collaboration diagram for AdvancedKeyboardView:

Instance Methods

(id) - initWithFrame:delegate:
 

Properties

NSObject< AdvancedKeyboardDelegate > * delegate
 

Detailed Description

Definition at line 24 of file AdvancedKeyboardView.h.

Method Documentation

◆ initWithFrame:delegate:

- (id) initWithFrame: (CGRect)  frame
delegate: (NSObject<AdvancedKeyboardDelegate> *)  delegate 

Definition at line 93 of file AdvancedKeyboardView.m.

139 :(CGRect)frame delegate:(NSObject<AdvancedKeyboardDelegate> *)delegate
140{
141 self = [super initWithFrame:frame];
142 if (self)
143 {
144 _delegate = delegate;
145
146 self.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
147 self.backgroundColor = [UIColor blackColor];
148 // Initialization code
149
150 [self initCursorKeysView];
151 [self initNumPadKeysView];
152 [self initFunctionKeysView];
153
154 // set function keys view to the initial view and hide others
155 _cur_view = _function_keys_view;
156 [_numpad_keys_view setHidden:YES];
157 [_cursor_keys_view setHidden:YES];
158 }
159 return self;
160}

Property Documentation

◆ delegate

- (NSObject<AdvancedKeyboardDelegate>*) delegate
readwriteatomicassign

Definition at line 43 of file AdvancedKeyboardView.h.


The documentation for this class was generated from the following files: