mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
20 lines
463 B
Objective-C
20 lines
463 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)
|
|
|
|
- (DOMRange *)highlightAllOccurencesOfString:(NSString*)str;
|
|
- (NSInteger)highlightAllOccurencesOfString:(NSString*)str inNode:(DOMNode *)node;
|
|
- (void)removeAllHighlights;
|
|
- (void)updateSearch:(NSSearchField *)sender;
|
|
|
|
@end
|