Files
TaskExplorer/CustomTextField.h
Patrick Wardle b35dd8a625 UI fixed/changes for macOS Sierra
filter background processing
support for filtering when enter is hit after trying full #keyword
'not found' binary attribute/#keyword
error alert when opening file in Finder fails
skipper dylib/file/network enumeration for kernel task (pid 0x0)
2016-12-04 22:13:40 -10:00

27 lines
441 B
Objective-C

//
// CustomTextField.h
// SearchField
//
// Created by Patrick Wardle on 8/27/15.
//
//
#import <Cocoa/Cocoa.h>
//NSTextView subclass
// 1) fixes issue with non-alphanumeric characters in keyword matches
// 2) triggers action when user hits enter (1x)
@interface CustomTextField : NSTextView
{
}
//'owner'
@property(nonatomic, retain)id owner;
//last movement
// ->helps avoid 2x 'Enter'
@property NSInteger lastMovement;
@end