Files
Patrick Wardle c813cc583d v.1.2.0 beta
-autocomplete for filter boxes
	-keyboard shortcuts
      	-save includes dylibs/files/connections
	-sync on filtered tasks (was crashing)
  	-code cleanup
2015-08-31 22:00:25 -10:00

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