mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 11:42:30 +00:00
30 lines
837 B
Objective-C
30 lines
837 B
Objective-C
//
|
|
// MPGroupInspectorViewController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 27.07.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPViewController.h"
|
|
@class MPDocument;
|
|
@class HNHUIRoundedTextField;
|
|
|
|
@interface MPGroupInspectorViewController : MPViewController
|
|
|
|
@property (strong) IBOutlet NSView *contentView;
|
|
@property (weak) IBOutlet HNHUIRoundedTextField *titleTextField;
|
|
|
|
@property (weak) IBOutlet NSButton *expiresCheckButton;
|
|
@property (weak) IBOutlet NSButton *expireDateSelectButton;
|
|
|
|
@property (weak) IBOutlet NSPopUpButton *searchPopupButton;
|
|
@property (weak) IBOutlet NSPopUpButton *autotypePopupButton;
|
|
@property (weak) IBOutlet HNHUIRoundedTextField *autotypeSequenceTextField;
|
|
|
|
- (void)setupBindings:(MPDocument *)document;
|
|
- (void)beginEditing;
|
|
- (void)endEditing;
|
|
|
|
@end
|