Removed HNHUIBadgedTextField in favour of a composed UI

This commit is contained in:
Michael Starke
2018-09-26 11:04:20 +02:00
parent 05ac9a0142
commit 182f448535
7 changed files with 124 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
//
// MPOutlineTableCellView.h
// MacPass
//
// Created by Michael Starke on 26.09.18.
// Copyright © 2018 HicknHack Software GmbH. All rights reserved.
//
#import <Cocoa/Cocoa.h>
NS_ASSUME_NONNULL_BEGIN
@interface MPOutlineTableCellView : NSTableCellView
@property (nonatomic) NSInteger count;
@property (nonatomic) BOOL hideZeroCount;
@property (nonatomic, strong) IBOutlet NSButton *countButton;
@end
NS_ASSUME_NONNULL_END