Files
gitx/SearchWebView.h
T
2011-03-30 00:17:14 -07:00

19 lines
416 B
Objective-C

//
// SearchWebView.h
// GitX
//
// Created by German Laullon on 19/03/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <WebKit/WebKit.h>
@interface WebView (SearchWebView)
- (NSInteger)highlightAllOccurencesOfString:(NSString*)str;
- (NSInteger)highlightAllOccurencesOfString:(NSString*)str inNode:(DOMNode *)node;
- (void)removeAllHighlights;
@end