Added test for custom field ui. Field can be added/removed. But no data is displayes/stored

This commit is contained in:
michael starke
2013-06-27 04:35:09 +02:00
parent dbd424ffae
commit 81c3bdcb5a
8 changed files with 871 additions and 37 deletions

View File

@@ -0,0 +1,17 @@
//
// MPCustomFieldView.h
// MacPass
//
// Created by Michael Starke on 27.06.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface MPCustomFieldView : NSView
@property (assign) IBOutlet NSTextField *labelTextField;
@property (assign) IBOutlet NSTextField *valueTextField;
@property (assign) IBOutlet NSButton *deleteButton;
@end