mirror of
https://github.com/objective-see/KnockKnock.git
synced 2026-03-22 06:52:25 +00:00
01c29e7c00
-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
40 lines
555 B
Objective-C
Executable File
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
|