Serious houskeeping: Better file structure & preparation for Xcode workspace.
This commit is contained in:
27
MasterPassword/ObjC/Mac/MPPasswordWindowController.h
Normal file
27
MasterPassword/ObjC/Mac/MPPasswordWindowController.h
Normal file
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// MPPasswordWindowController.h
|
||||
// MasterPassword-Mac
|
||||
//
|
||||
// Created by Maarten Billemont on 04/03/12.
|
||||
// Copyright (c) 2012 Lyndir. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
@interface MPPasswordWindowController : NSWindowController<NSTextFieldDelegate> {
|
||||
|
||||
NSString *_content;
|
||||
}
|
||||
|
||||
@property (nonatomic, strong) NSString *content;
|
||||
|
||||
@property (nonatomic, weak) IBOutlet NSTextField *siteField;
|
||||
@property (nonatomic, weak) IBOutlet NSTextField *contentField;
|
||||
@property (nonatomic, weak) IBOutlet NSTextField *tipField;
|
||||
@property (nonatomic, weak) IBOutlet NSView *contentContainer;
|
||||
@property (nonatomic, weak) IBOutlet NSProgressIndicator *progressView;
|
||||
@property (nonatomic, weak) IBOutlet NSTextField *userLabel;
|
||||
|
||||
- (void)unlock;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user