aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaView.h
diff options
context:
space:
mode:
authornyamatongwe <nyamatongwe@gmail.com>2013-10-14 08:14:52 +1100
committernyamatongwe <nyamatongwe@gmail.com>2013-10-14 08:14:52 +1100
commit754c30407bb1273a6be74878d8f62250fc4c423d (patch)
treeaa3587e1833ba21450054e0191869c77a8491955 /cocoa/ScintillaView.h
parente44b84645510ce7cb822411af59080b464ff1f69 (diff)
downloadscintilla-mirror-754c30407bb1273a6be74878d8f62250fc4c423d.tar.gz
To follow naming conventions InnerView was renamed to SCIContentView and
MarginView was renamed to SCIMarginView.
Diffstat (limited to 'cocoa/ScintillaView.h')
-rw-r--r--cocoa/ScintillaView.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/cocoa/ScintillaView.h b/cocoa/ScintillaView.h
index f6a0e0dea..41be9fa51 100644
--- a/cocoa/ScintillaView.h
+++ b/cocoa/ScintillaView.h
@@ -49,9 +49,9 @@ extern NSString *const SCIUpdateUINotification;
@end
/**
- * MarginView draws line numbers and other margins next to the text view.
+ * SCIMarginView draws line numbers and other margins next to the text view.
*/
-@interface MarginView : NSRulerView
+@interface SCIMarginView : NSRulerView
{
@private
int marginWidth;
@@ -67,10 +67,10 @@ extern NSString *const SCIUpdateUINotification;
@end
/**
- * InnerView is the Cocoa interface to the Scintilla backend. It handles text input and
+ * SCIContentView is the Cocoa interface to the Scintilla backend. It handles text input and
* provides a canvas for painting the output.
*/
-@interface InnerView : NSView <NSTextInputClient, NSUserInterfaceValidations>
+@interface SCIContentView : NSView <NSTextInputClient, NSUserInterfaceValidations>
{
@private
ScintillaView* mOwner;
@@ -100,10 +100,10 @@ extern NSString *const SCIUpdateUINotification;
Scintilla::ScintillaCocoa* mBackend;
// This is the actual content to which the backend renders itself.
- InnerView* mContent;
+ SCIContentView* mContent;
NSScrollView *scrollView;
- MarginView *marginView;
+ SCIMarginView *marginView;
CGFloat zoomDelta;
@@ -118,7 +118,7 @@ extern NSString *const SCIUpdateUINotification;
@property (nonatomic, assign) id<ScintillaNotificationProtocol> delegate;
@property (nonatomic, readonly) NSScrollView *scrollView;
-+ (Class) innerViewClass;
++ (Class) contentViewClass;
- (void) positionSubViews;
@@ -133,7 +133,7 @@ extern NSString *const SCIUpdateUINotification;
// Scroller handling
- (void) setMarginWidth: (int) width;
- (void) scrollerAction: (id) sender;
-- (InnerView*) content;
+- (SCIContentView*) content;
// NSTextView compatibility layer.
- (NSString*) string;