FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
CredentialsInputController.h
1/*
2 Credentials input controller
3
4 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
5
6 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
7 If a copy of the MPL was not distributed with this file, You can obtain one at
8 http://mozilla.org/MPL/2.0/.
9 */
10
11#import <UIKit/UIKit.h>
12
13@class RDPSession;
14
15@interface CredentialsInputController : UIViewController
16{
17 @private
18 IBOutlet UITextField *_textfield_username;
19 IBOutlet UITextField *_textfield_password;
20 IBOutlet UITextField *_textfield_domain;
21 IBOutlet UIButton *_btn_login;
22 IBOutlet UIButton *_btn_cancel;
23 IBOutlet UIScrollView *_scroll_view;
24 IBOutlet UILabel *_lbl_message;
25
26 RDPSession *_session;
27 NSMutableDictionary *_params;
28}
29
30- (id)initWithNibName:(NSString *)nibNameOrNil
31 bundle:(NSBundle *)nibBundleOrNil
32 session:(RDPSession *)session
33 params:(NSMutableDictionary *)params;
34
35@end