5 // Created by J Osborne on 2/13/13.
9 #import <Cocoa/Cocoa.h>
10 #import "KDSecItems.h"
11 #import "KDSecCircle.h"
13 @interface KDAppDelegate
: NSObject
<NSApplicationDelegate
>
15 @
property (assign
) IBOutlet NSWindow
*window
;
16 @
property (assign
) IBOutlet NSTableView
*itemTable
;
17 @
property (assign
) IBOutlet NSTextFieldCell
*itemTableTitle
;
18 @
property (retain
) id
<NSTableViewDataSource
> itemDataSource
;
20 @
property (assign
) IBOutlet NSButton
*enableKeychainSyncing
;
21 @
property (assign
) IBOutlet NSTextFieldCell
*circleStatusCell
;
22 @
property (assign
) IBOutlet NSTextFieldCell
*peerCountCell
;
23 @
property (assign
) IBOutlet NSTextView
*peerTextList
;
24 @
property (assign
) IBOutlet NSTextFieldCell
*applicantCountCell
;
25 @
property (assign
) IBOutlet NSTextView
*applicantTextList
;
26 @
property (assign
) IBOutlet NSProgressIndicator
*syncSpinner
;
28 @
property (retain
) KDSecCircle
*circle
;
30 @
property (retain
) NSMutableArray
*stuffNotToLeak
;
32 -(IBAction
)enableKeychainSyncingClicked
:(id
)sender
;