| Line 25... |
Line 25... |
| 25 |
* http://www.gnu.org/copyleft/gpl.html. You can also obtain it by
|
25 |
* http://www.gnu.org/copyleft/gpl.html. You can also obtain it by
|
| 26 |
* writing to the Free Software Foundation, Inc., 59 Temple Place,
|
26 |
* writing to the Free Software Foundation, Inc., 59 Temple Place,
|
| 27 |
* Suite 330, Boston, MA 02111-1307 USA.
|
27 |
* Suite 330, Boston, MA 02111-1307 USA.
|
| 28 |
*
|
28 |
*
|
| 29 |
* Created by Simon Urbanek on 5/11/05.
|
29 |
* Created by Simon Urbanek on 5/11/05.
|
| 30 |
* $Id: RTextView.h 6230 2012-08-11 16:19:16Z bibiko $
|
30 |
* $Id: RTextView.h 7927 2021-02-12 02:19:59Z urbaneks $
|
| 31 |
*/
|
31 |
*/
|
| 32 |
|
32 |
|
| 33 |
#import "CCComp.h"
|
33 |
#import "CCComp.h"
|
| 34 |
|
34 |
|
| 35 |
/* RTextView is a subclass of NSTextView with some additional properties:
|
35 |
/* RTextView is a subclass of NSTextView with some additional properties:
|
| Line 77... |
Line 77... |
| 77 |
- (NSRange)getRangeForCurrentWord;
|
77 |
- (NSRange)getRangeForCurrentWord;
|
| 78 |
- (NSRange)getRangeForCurrentWordOfRange:(NSRange)curRange;
|
78 |
- (NSRange)getRangeForCurrentWordOfRange:(NSRange)curRange;
|
| 79 |
|
79 |
|
| 80 |
- (void)setConsoleMode:(BOOL)isConsole;
|
80 |
- (void)setConsoleMode:(BOOL)isConsole;
|
| 81 |
|
81 |
|
| 82 |
- (int) parserContextForPosition:(int)position;
|
82 |
- (int) parserContextForPosition:(NSInteger)position;
|
| 83 |
- (void) showHelpForCurrentFunction;
|
83 |
- (void) showHelpForCurrentFunction;
|
| 84 |
- (void) currentFunctionHint;
|
84 |
- (void) currentFunctionHint;
|
| 85 |
- (BOOL) wrapSelectionWithPrefix:(NSString *)prefix suffix:(NSString *)suffix;
|
85 |
- (BOOL) wrapSelectionWithPrefix:(NSString *)prefix suffix:(NSString *)suffix;
|
| 86 |
- (BOOL) isNextCharMarkedBy:(id)attribute withValue:(id)aValue;
|
86 |
- (BOOL) isNextCharMarkedBy:(id)attribute withValue:(id)aValue;
|
| 87 |
- (BOOL) isCursorAdjacentToAlphanumCharWithInsertionOf:(unichar)aChar;
|
87 |
- (BOOL) isCursorAdjacentToAlphanumCharWithInsertionOf:(unichar)aChar;
|