mirror of
https://github.com/objective-see/TaskExplorer.git
synced 2026-03-22 07:02:39 +00:00
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)
27 lines
441 B
Objective-C
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
|