mirror of
https://github.com/objective-see/TaskExplorer.git
synced 2026-03-22 07:02:39 +00:00
-autocomplete for filter boxes
-keyboard shortcuts
-save includes dylibs/files/connections
-sync on filtered tasks (was crashing)
-code cleanup
26 lines
326 B
Objective-C
26 lines
326 B
Objective-C
//
|
|
// kkRowCell.h
|
|
// TaskExplorer
|
|
//
|
|
// Created by Patrick Wardle on 4/6/15.
|
|
// Copyright (c) 2015 Objective-See. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface kkRowCell : NSTableCellView
|
|
{
|
|
|
|
}
|
|
|
|
/* PROPERTIES */
|
|
|
|
//tag
|
|
@property NSInteger tag;
|
|
|
|
//color
|
|
@property(nonatomic, retain)NSColor* color;
|
|
|
|
|
|
@end
|