Blame client/iOS/Controllers/CredentialsInputController.h

Packit 1fb8d4
/*
Packit 1fb8d4
 Credentials input controller
Packit Service 5a9772
Packit 1fb8d4
 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
Packit Service 5a9772
Packit Service 5a9772
 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
Packit Service 5a9772
 If a copy of the MPL was not distributed with this file, You can obtain one at
Packit Service 5a9772
 http://mozilla.org/MPL/2.0/.
Packit 1fb8d4
 */
Packit 1fb8d4
Packit 1fb8d4
#import <UIKit/UIKit.h>
Packit 1fb8d4
Packit 1fb8d4
@class RDPSession;
Packit 1fb8d4
Packit 1fb8d4
@interface CredentialsInputController : UIViewController
Packit 1fb8d4
{
Packit Service 5a9772
  @private
Packit Service 5a9772
	IBOutlet UITextField *_textfield_username;
Packit Service 5a9772
	IBOutlet UITextField *_textfield_password;
Packit Service 5a9772
	IBOutlet UITextField *_textfield_domain;
Packit Service 5a9772
	IBOutlet UIButton *_btn_login;
Packit Service 5a9772
	IBOutlet UIButton *_btn_cancel;
Packit Service 5a9772
	IBOutlet UIScrollView *_scroll_view;
Packit Service 5a9772
	IBOutlet UILabel *_lbl_message;
Packit Service 5a9772
Packit Service 5a9772
	RDPSession *_session;
Packit Service 5a9772
	NSMutableDictionary *_params;
Packit 1fb8d4
}
Packit 1fb8d4
Packit Service 5a9772
- (id)initWithNibName:(NSString *)nibNameOrNil
Packit Service 5a9772
               bundle:(NSBundle *)nibBundleOrNil
Packit Service 5a9772
              session:(RDPSession *)session
Packit Service 5a9772
               params:(NSMutableDictionary *)params;
Packit 1fb8d4
Packit 1fb8d4
@end