2
0

Rewrite Mac UI for better multiple site handling.

This commit is contained in:
Maarten Billemont
2014-02-12 00:13:12 -05:00
parent 5b4e86a90a
commit 4f3efde6f0
14 changed files with 1234 additions and 3680 deletions

View File

@@ -8,15 +8,13 @@
#import <Cocoa/Cocoa.h>
@interface MPPasswordWindowController : NSWindowController<NSTextFieldDelegate, NSComboBoxDelegate>
@interface MPPasswordWindowController : NSWindowController<NSTextFieldDelegate>
@property(nonatomic, weak) IBOutlet NSTextField *siteLabel;
@property(nonatomic, strong) NSMutableArray *elements;
@property(nonatomic, weak) IBOutlet NSTextField *siteField;
@property(nonatomic, weak) IBOutlet NSTextField *contentField;
@property(nonatomic, weak) IBOutlet NSTextField *tipField;
@property(nonatomic, weak) IBOutlet NSComboBox *typeField;
@property(nonatomic, weak) IBOutlet NSView *contentContainer;
@property(nonatomic, weak) IBOutlet NSProgressIndicator *progressView;
@property(nonatomic, weak) IBOutlet NSTextField *userLabel;
@property(nonatomic, weak) IBOutlet NSCollectionView *siteCollectionView;
@end