Files
TaskExplorer/VTInfoWindowController.h
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

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