2011-02-01 09:51:02 -06:00
|
|
|
//
|
|
|
|
// MGMHTTPPlugIn.h
|
|
|
|
// CocoaShare
|
|
|
|
//
|
2011-02-02 14:58:24 -06:00
|
|
|
// Created by Mr. Gecko on 1/18/11.
|
2015-12-28 11:52:44 -06:00
|
|
|
// Copyright (c) 2015 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
|
2011-02-01 09:51:02 -06:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface MGMHTTPPlugIn : NSObject {
|
|
|
|
IBOutlet NSView *view;
|
|
|
|
IBOutlet NSTextField *urlField;
|
|
|
|
IBOutlet NSTextField *userField;
|
|
|
|
IBOutlet NSTextField *passwordField;
|
|
|
|
IBOutlet NSButton *loginButton;
|
|
|
|
BOOL userLoggingIn;
|
|
|
|
int loginTries;
|
|
|
|
}
|
|
|
|
- (void)releaseView;
|
|
|
|
|
|
|
|
- (void)login;
|
|
|
|
- (void)lockLogin;
|
|
|
|
- (void)unlockLogin;
|
|
|
|
- (IBAction)login:(id)sender;
|
|
|
|
@end
|