summaryrefslogtreecommitdiffstats
path: root/src/kim/agent/mac/AuthenticationController.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kim/agent/mac/AuthenticationController.h')
-rw-r--r--src/kim/agent/mac/AuthenticationController.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/kim/agent/mac/AuthenticationController.h b/src/kim/agent/mac/AuthenticationController.h
index ed5d9d79a1..4035668e2e 100644
--- a/src/kim/agent/mac/AuthenticationController.h
+++ b/src/kim/agent/mac/AuthenticationController.h
@@ -25,11 +25,14 @@
#import <Cocoa/Cocoa.h>
@class IPCClient;
+@class KerberosTimeFormatter;
@class BadgedImageView;
@interface AuthenticationController : NSWindowController {
IPCClient *associatedClient;
+ IBOutlet KerberosTimeFormatter *lifetimeFormatter;
+
IBOutlet NSView *containerView;
IBOutlet NSView *identityView;
IBOutlet NSView *passwordView;
@@ -45,7 +48,7 @@
IBOutlet BadgedImageView *errorBadge;
// Controls that need to be made key
- IBOutlet NSTextField *usernameField;
+ IBOutlet NSTextField *identityField;
IBOutlet NSTextField *passwordField;
IBOutlet NSTextField *samPromptField;
IBOutlet NSTextField *oldPasswordField;
@@ -60,9 +63,14 @@
IBOutlet NSSlider *validLifetimeSlider;
IBOutlet NSSlider *renewableLifetimeSlider;
+
+ NSMutableArray *favoriteIdentities;
+ NSMutableDictionary *favoriteOptions;
}
@property (readwrite, retain) IPCClient *associatedClient;
+@property (readwrite, retain) NSMutableArray *favoriteIdentities;
+@property (readwrite, retain) NSMutableDictionary *favoriteOptions;
- (void) setContent: (NSMutableDictionary *) newContent;