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
63 lines
1.4 KiB
Objective-C
63 lines
1.4 KiB
Objective-C
//
|
|
// VTInfoWindow.h
|
|
// TaskExplorer
|
|
//
|
|
// Created by Patrick Wardle on 3/29/15.
|
|
// Copyright (c) 2015 Objective-See. All rights reserved.
|
|
//
|
|
|
|
@class File;
|
|
@class HyperlinkTextField;
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface VTInfoWindowController : NSWindowController
|
|
{
|
|
|
|
}
|
|
|
|
/* PROPERTIES */
|
|
|
|
//window controller
|
|
@property(nonatomic, strong)VTInfoWindowController *windowController;
|
|
|
|
//file object
|
|
@property(nonatomic, retain)Binary* item;
|
|
|
|
//row index
|
|
//@property NSUInteger rowIndex;
|
|
|
|
//properties in window
|
|
@property (weak) IBOutlet NSTextField *unknownFile;
|
|
|
|
@property (weak) IBOutlet NSTextField *fileNameLabel;
|
|
@property (weak) IBOutlet HyperlinkTextField *fileName;
|
|
|
|
@property (weak) IBOutlet NSTextField *detectionRatioLabel;
|
|
@property (weak) IBOutlet NSTextField *detectionRatio;
|
|
|
|
@property (weak) IBOutlet NSTextField *analysisURLLabel;
|
|
@property (weak) IBOutlet NSTextField *analysisURL;
|
|
|
|
@property (weak) IBOutlet NSButton *closeButton;
|
|
|
|
@property (weak) IBOutlet NSButton *submitButton;
|
|
@property (weak) IBOutlet NSProgressIndicator *progressIndicator;
|
|
@property (strong) IBOutlet NSView *overlayView;
|
|
@property (weak) IBOutlet NSTextField *statusMsg;
|
|
|
|
/* METHODS */
|
|
|
|
//init method
|
|
// ->save item and load nib
|
|
-(id)initWithItem:(Binary*)binary;
|
|
|
|
//'submit' button handler
|
|
-(IBAction)vtButtonHandler:(id)sender;
|
|
|
|
//'close' button handler
|
|
-(IBAction)closeButtonHandler:(id)sender;
|
|
|
|
|
|
@end
|