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