Menu

[r11]: / Application / SCAuthorizationUI.h  Maximize  Restore  History

Download this file

45 lines (30 with data), 895 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* SCAuthorizationUI */
#import <Cocoa/Cocoa.h>
#import "SCAuthToken.h"
#define MODAL_AUTH_MODE_PENDING 0 // Pending or inactive.
#define MODAL_AUTH_MODE_SUCCESS 1
#define MODAL_AUTH_MODE_FAILURE 2
@interface SCAuthorizationUI : NSObject
{
IBOutlet id authWindow;
IBOutlet NSTextField* usernameField;
IBOutlet NSTextField* passwordField;
@private
id controller;
SEL cancelSelector;
SEL authorizationSelector;
int modalAuthMode;
SCAuthToken *token;
}
- (IBAction)authorize:(id)sender;
- (IBAction)cancel:(id)sender;
- (void) showForWindow:(id)window;
- (BOOL) runModalForWindow:(id)window;
- (id) controller;
- (void) setController:(id)c;
- (SEL) cancelSelector;
- (void) setCancelSelector:(SEL)value;
- (SEL) authorizationSelector;
- (void) setAuthorizationSelector:(SEL)value;
- (SCAuthToken *) authorizationToken;
@end
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.