1#import <Foundation/NSObject.h>
12 id replaceAllScopeMatrix;
14 BOOL findStringChangedSinceLastPasteboardUpdate;
15 BOOL lastFindWasSuccessful;
22- (BOOL)find:(BOOL)direction;
25- (NSPanel *)findPanel;
28- (NSTextView *)textObjectToSearchIn;
31- (NSString *)findString;
32- (void)setFindString:(NSString *)string;
35- (void)appDidActivate:(NSNotification *)notification;
36- (void)addWillDeactivate:(NSNotification *)notification;
37- (void)loadFindStringFromPasteboard;
38- (void)loadFindStringToPasteboard;
41- (void)findNext:(
id)sender;
42- (void)findPrevious:(
id)sender;
43- (void)findNextAndOrderFindPanelOut:(
id)sender;
44- (void)replace:(
id)sender;
45- (void)replaceAndFind:(
id)sender;
46- (void)replaceAll:(
id)sender;
47- (void)orderFrontFindPanel:(
id)sender;
52@interface NSString (NSStringTextFinding)
54- (NSRange)findString:(NSString *)string selectedRange:(NSRange)selectedRange options:(
unsigned)mask wrap:(BOOL)wrapFlag;
Definition TextFinder.h:6