Files
KnockKnock/VTButton.h
T
Patrick Wardle 01c29e7c00 improved launch d&a plugin
-check for 'Program' key first
 -start/calendar interval
added macho parser to classify files as encrypted/packed
fixed bug in signing check (just for ad-hoc, should've bailed if file not signed)
suppress stderr in execTask()
improved sanity checks in various spots
2016-05-31 21:33:58 -10:00

40 lines
555 B
Objective-C
Executable File

//
// vtButton.h
// KnockKnock
//
// Created by Patrick Wardle on 3/26/15.
// Copyright (c) 2015 Objective-See. All rights reserved.
//
#import "File.h"
#import <Cocoa/Cocoa.h>
//#import "ItemTableController.h"
@class ItemTableController;
@interface VTButton : NSButton
{
}
//properties
//parent object
@property(assign)ItemTableController *delegate;
//File object
@property(nonatomic, retain)File* fileObj;
//button's row index
//flag indicating press
@property BOOL mouseDown;
//flag indicating exit
@property BOOL mouseExit;
@end