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
40 lines
560 B
Objective-C
40 lines
560 B
Objective-C
//
|
|
// vtButton.h
|
|
// TaskExplorer
|
|
//
|
|
// Created by Patrick Wardle on 3/26/15.
|
|
// Copyright (c) 2015 Objective-See. All rights reserved.
|
|
//
|
|
|
|
#import "Binary.h"
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
//#import "ItemTableController.h"
|
|
|
|
@class TaskTableController;
|
|
|
|
@interface VTButton : NSButton
|
|
{
|
|
|
|
}
|
|
|
|
//properties
|
|
|
|
//parent object
|
|
@property(assign)TaskTableController *delegate;
|
|
|
|
//File object
|
|
@property(nonatomic, retain)Binary* binary;
|
|
|
|
//button's row index
|
|
|
|
//flag indicating press
|
|
@property BOOL mouseDown;
|
|
|
|
//flag indicating exit
|
|
@property BOOL mouseExit;
|
|
|
|
|
|
|
|
@end
|