aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaView.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2010-04-22 09:28:18 +0000
committernyamatongwe <unknown>2010-04-22 09:28:18 +0000
commit5075f7e200be157a77e4fd446ae47badd24bb6e2 (patch)
treea780e2c7bffab445e8a885561ec7d91dc1b6915b /cocoa/ScintillaView.h
parent552cb2390c71235d92862897f593130211db0c6a (diff)
downloadscintilla-mirror-5075f7e200be157a77e4fd446ae47badd24bb6e2.tar.gz
Updated to launchpad scintilla-cocoa revision 33.
Context menu implemented. Many warnings avoided. Make files added.
Diffstat (limited to 'cocoa/ScintillaView.h')
-rw-r--r--cocoa/ScintillaView.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/cocoa/ScintillaView.h b/cocoa/ScintillaView.h
index 8368e46c3..73903c369 100644
--- a/cocoa/ScintillaView.h
+++ b/cocoa/ScintillaView.h
@@ -85,7 +85,9 @@ extern NSString *SCIUpdateUINotification;
// NSTextView compatibility layer.
- (NSString*) string;
- (void) setString: (NSString*) aString;
+- (void) insertText: (NSString*) aString;
- (void) setEditable: (BOOL) editable;
+- (BOOL) isEditable;
- (NSRange) selectedRange;
- (NSString*) selectedString;
@@ -96,8 +98,10 @@ extern NSString *SCIUpdateUINotification;
// Back end properties getters and setters.
- (void) setGeneralProperty: (int) property parameter: (long) parameter value: (long) value;
+- (long) getGeneralProperty: (int) property;
- (long) getGeneralProperty: (int) property parameter: (long) parameter;
- (long) getGeneralProperty: (int) property parameter: (long) parameter extra: (long) extra;
+- (long) getGeneralProperty: (int) property ref: (const void*) ref;
- (void) setColorProperty: (int) property parameter: (long) parameter value: (NSColor*) value;
- (void) setColorProperty: (int) property parameter: (long) parameter fromHTML: (NSString*) fromHTML;
- (NSColor*) getColorProperty: (int) property parameter: (long) parameter;