aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaView.h
AgeCommit message (Collapse)AuthorFilesLines
2020-11-09Update Xcode project and remove SciLexer.h from ScintillaView.h.Neil1-1/+0
2019-12-13Add or fix file name comments.Neil1-0/+1
2019-01-06Bug [#2022]. Fix incorrect horizontal offset on macOS 10.14 Mojave.Chinh Nguyen1-0/+7
2017-06-08Indented consistently by using astyle.Neil1-55/+55
2017-06-05Converted to Automatic Reference Counting.Neil Hodgson1-1/+1
2016-11-19Moved @private sections from header into implementation.Neil Hodgson1-47/+9
Hid properties and methods which are for internal use.
2016-11-18Remove Scintilla namespace and ScintillaCocoa declaration from ScintillaView.hNeil Hodgson1-12/+3
2016-11-11Make IME indicator visible in single phase drawing mode.Neil1-0/+2
2016-11-11Bug [#1881]. Fix IME bug where selectedRange wasn't implementing correctly.Neil1-0/+1
Also return nil from attributedSubstringForProposedRange for ranges outside document as this is specified behaviour.
2016-11-05Support for NSAccessibility protocol added sufficient for the VoiceOverNeil Hodgson1-1/+2
screen reader.
2015-03-11Update drag and drop to use current APIs instead of deprecated APIs.Neil Hodgson1-1/+5
2015-02-22Implement additional methods from the NSTextInputClient protocol so that moreNeil Hodgson1-2/+0
features of the IME work. attributedSubstringForProposedRange:actualRange: and characterIndexForPoint: now have full implementations. This required using UTF-16 document indexes in many places as that is what Cocoa wants. Tentative undo is used for the composition text instead of turning off undo as that is safer and similar to IME code on other platforms.
2014-07-15Switch from tracking rectangle to tracking area. This is the more recent ↵Neil Hodgson1-1/+1
Cocoa API and allows detection of mouse movement when the view does not have the focus which is needed for dwell events.
2014-07-10Fix the insertText: method on ScintillaView to accept NSAttributedString as ↵Neil Hodgson1-1/+1
well as NSString, since insertText: is from the NSResponder superclass where it is defined to accept both.
2014-06-17Move internal methods out of header.Neil Hodgson1-4/+0
2014-06-07Failed to use the correct argument type in previous commit.Neil Hodgson1-1/+1
2014-06-07registerNotifyCallback is now marked as deprecated and will be removed in a ↵Neil Hodgson1-2/+2
future release. Client code should use the delegate or subclassing instead.
2014-03-26Refactor range deletion into a method on ScintillaView.Neil Hodgson1-0/+2
For removeMarkedText, use range deletion instead of setting the selection and inserting an empty string as this has fewer side effects and should avoid crashes when an autocompletion list is active.
2013-12-15Format normalization - whitespace and braces made consistent.Neil1-4/+4
Parameter names added to method declarations.
2013-11-17Fix problem where cursor didn’t change over margin after showing a dialog.Neil Hodgson1-0/+1
2013-10-14To follow naming conventions InnerView was renamed to SCIContentView andnyamatongwe1-8/+8
MarginView was renamed to SCIMarginView.
2013-10-06Allow subclassing InnerView.nyamatongwe1-0/+2
2013-09-30Removed command: method from ScintillaNotificationProtocol as all events can ↵nyamatongwe1-3/+0
now be received through the notification: method.
2013-09-18Reimplement notifications from ScintillaCocoa to ScintillaView as a delegate ↵nyamatongwe1-1/+6
relationship using ScintillaNotificationProtocol. Add optional command:idFrom: method to ScintillaNotificationProtocol for command notifications. In a future version registerNotifyCallback: and ScintillaCocoa::RegisterNotifyCallback will be deprecated.
2013-09-10Pass control ID with WM_NOTIFY for compatibility with other platforms.nyamatongwe1-1/+1
2013-09-09Remove dealloc from @interface as it should not be directly called.nyamatongwe1-2/+0
2013-09-09Use const for constant strings as recommended in Effective Objective C 2.0nyamatongwe1-1/+1
2013-09-09Since overlay scroll bars, the info bar is always full width so remove variablenyamatongwe1-1/+0
for width and comments that is no longer correct.
2013-09-08Stop exposing Scintilla implementation to clients from ScintillaView header.nyamatongwe1-3/+25
Platform.h and ScintillaCocoa.h are no longer imported in ScintillaView.h
2013-06-15Simplify direct access using Scintilla messages and avoid call layers.nyamatongwe1-0/+3
2013-04-24Feature: [feature-requests:#987]. Cocoa user interface validation.nyamatongwe1-1/+1
2013-04-17Switch from implementing NSTextInput to its replacement NSTextInputClientnyamatongwe1-1/+1
NSTextInput is slated for deprecation and NSTextInputClient allows the selection of accented characters through pressing and holding the base key.
2013-03-15Use an NSScrollView on Cocoa for kinetic scrolling and hiding scrollbars ↵nyamatongwe1-7/+22
unless wanted. Also affects platform-independent code.
2013-03-15Removed owner property as it is not used.nyamatongwe1-4/+0
2013-03-10Make property readonly to avoid potential ownership/lifetime issues.nyamatongwe1-1/+1
2013-01-10Add a replace method and a parameter for backwards search.nyamatongwe1-1/+14
From Mike Lischke.
2013-01-10Turn off undo collection for IME composition.nyamatongwe1-1/+2
From Mike Lischke.
2013-01-04Implement a delegate for Scintilla notifications.nyamatongwe1-0/+7
From Mike Lischke at Oracle.
2013-01-04Fix object ownership and thus memory management. Change owner and backendnyamatongwe1-4/+7
properties to (nonatomic, assign) as pointers to owners should not be retained and backend is a pointer to a C++ object. Move property declarations before methods. Update copyright notice. From Mike Lischke at Oracle.
2012-08-14Break reference cycle between ScintillaView and its InnerView.nyamatongwe1-1/+1
2012-07-29Decrease sensitivity of pinch-zoom. From Chinh Nguyen.nyamatongwe1-0/+2
2012-03-13Change name of the 'layout' method of ScintillaView and InfoBar to ↵nyamatongwe1-1/+1
'positionSubViews' as 'layout' has been added to their superclass NSView in OS X 10.7. The existing 'layout' method interfered with the new automatic layout feature.
2011-11-09Remove unused variable.nyamatongwe1-3/+0
2011-05-27Expose registerNotifyCallback on ScintillaView class.nyamatongwe1-0/+2
From Elizabeth Irizarry of Adobe.
2011-02-07Merged in current scintilla-cocoa from bzr.nyamatongwe1-0/+7
2010-07-24Updates from Scintilla-Cocoa project.nyamatongwe1-1/+15
Updated case mapping, modifier key for zoom, redo, mouse wheel, search and highlight.
2010-04-22Updated to launchpad scintilla-cocoa revision 33.nyamatongwe1-0/+4
Context menu implemented. Many warnings avoided. Make files added.
2010-01-20Updated to current version (28) of Scintilla Cocoa.nyamatongwe1-0/+5
2009-09-04Fix in the InfoBar to avoid setting a cell class for the entire application.nyamatongwe1-0/+1
Fixed memory leak re. notification center. Cursor handling did not properly retain the used cursor image.
2009-06-26Updated cocoa to current version from bzr.nyamatongwe1-2/+23