Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-11-05 | Support for NSAccessibility protocol added sufficient for the VoiceOver | Neil Hodgson | 1 | -6/+89 | |
screen reader. | |||||
2016-10-18 | Ensure members of FindHighlightLayer freed. | Neil Hodgson | 1 | -0/+6 | |
Fixes clang analyzer warning. | |||||
2016-09-30 | Recognize the numeric keypad '+', '-', and '/' keys as SCK_ADD, SCK_SUBTRACT, | Tse Kit Yam | 1 | -3/+20 | |
and SCK_DIVIDE. | |||||
2016-09-14 | Casts for 64 to 32-bit conversions on OS X. | Neil Hodgson | 1 | -7/+7 | |
2016-08-29 | Bug [#1854]. Fix: cannot get original input char on Mac for some input-modifiers | Tse Kit Yam | 1 | -1/+1 | |
combinations e.g. Option + e => empty char, Control + k => a char with ascii code 11 | |||||
2015-11-20 | Remove line end whitespace. | Neil | 1 | -23/+23 | |
2015-11-11 | Implemented idle styling. This allows painting without first styling all visible | Neil | 1 | -4/+6 | |
text then styling in the background using idle-time. | |||||
2015-10-26 | Remove unnecessary timer variables. | Neil Hodgson | 1 | -7/+5 | |
2015-10-26 | Make timers active in modal dialogs by adding them to NSModalPanelRunLoopMode. | Neil Hodgson | 1 | -2/+4 | |
From Mike Lischke. | |||||
2015-10-26 | Avoid possibility of ScintillaCocoa receiving idles after deallocation by ↵ | Neil Hodgson | 1 | -0/+13 | |
severing the connection from TimerTarget back to ScintillaCocoa and releasing the notification queue. | |||||
2015-09-29 | Reindented code which had become a mess. | Neil Hodgson | 1 | -45/+45 | |
2015-09-29 | Removed unreachable code. | Neil Hodgson | 1 | -1/+0 | |
2015-09-29 | Mark unused parameters in Objective-C methods with a pragma. | Neil Hodgson | 1 | -0/+1 | |
2015-09-04 | Change FillVirtualSpace to ClearBeforeTentativeStart and delete selected text. | johnsonj | 1 | -1/+1 | |
2015-09-02 | Schedule the timer after setting its tolerance to avoid scheduling twice. | Neil Hodgson | 1 | -5/+6 | |
2015-08-23 | In C++, new fails with an exception instead of returning NULL so remove handling | Neil Hodgson | 1 | -43/+29 | |
of NULL SurfaceImpl objects and replace heap with stack to simplify code. | |||||
2015-08-23 | Potential fix for bug [#1751]. Remove setting of current graphics context. | Neil Hodgson | 1 | -8/+0 | |
2015-08-22 | Potential fix for bug [#1751]. Save and restore graphics state in case ↵ | Neil Hodgson | 1 | -0/+3 | |
deleted context was causing a crash. | |||||
2015-07-04 | On Cocoa, translate exceptions into error codes. | Neil Hodgson | 1 | -44/+50 | |
2015-06-25 | Bug [#1740]. Cancel autocompletion and calltip when window moved. | Neil Hodgson | 1 | -0/+11 | |
2015-06-19 | Fix crash in drag and drop. | Neil Hodgson | 1 | -0/+2 | |
2015-04-10 | Since OS X 10.5 no longer supported, remove code that only called | Neil Hodgson | 1 | -12/+6 | |
CGContextSetAllowsFontSubpixelPositioning when available. | |||||
2015-04-01 | Bug [#1709]. Check whether pixmap is NULL before using to create bitmap. | Neil Hodgson | 1 | -1/+2 | |
2015-03-14 | Fix calltip display bug on Cocoa. | Neil Hodgson | 1 | -0/+9 | |
2015-03-11 | Update drag and drop to use current APIs instead of deprecated APIs. | Neil Hodgson | 1 | -8/+76 | |
2015-02-22 | Implement additional methods from the NSTextInputClient protocol so that more | Neil Hodgson | 1 | -17/+92 | |
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. | |||||
2015-02-16 | Implement SCI_TARGETASUTF8 and SCI_ENCODEDFROMUTF8 on Cocoa. | Neil Hodgson | 1 | -0/+89 | |
2015-02-14 | Fix unused parameter warnings. Remove code that is never executed. | Neil Hodgson | 1 | -5/+2 | |
2015-02-14 | Fix warnings for suspicious type conversions and not fully bracketed ↵ | Neil Hodgson | 1 | -13/+17 | |
initializers, | |||||
2015-02-14 | Fix 64->32 bit conversion warnings. | Neil Hodgson | 1 | -4/+4 | |
2014-09-12 | Allow choice between windowed and inline IME. | Neil | 1 | -0/+5 | |
2014-07-15 | Implement separate timers for each type of periodic activity and turn them ↵ | Neil Hodgson | 1 | -27/+82 | |
on and off as required. This saves power as there are fewer wake ups. A tolerance value is provided so that platforms that support coalescing timers, Windows 8+ and OS X 10.9+, can use them. The previous global 100 millisecond timer may still be used by non-core platforms. | |||||
2014-07-08 | Made recent refactor work on Cocoa. | Neil Hodgson | 1 | -4/+4 | |
2014-07-08 | Specifying some methods as const as they are used from display and measurement | Neil | 1 | -3/+3 | |
code that will be changed to have read-only access. | |||||
2014-06-17 | Remove unused TopContainer method. Use less specific types when possible. | Neil Hodgson | 1 | -13/+2 | |
2014-06-07 | Avoid using ScintillaView.backend from ScintillaCocoa as this may be hidden ↵ | Neil Hodgson | 1 | -2/+1 | |
in the future. | |||||
2014-05-03 | Fix Point and PRectangle constructors to match changes in Platform.h. | Neil Hodgson | 1 | -6/+5 | |
2014-05-02 | Use exact SciFnDirect function signature for DirectFunction as earlier version | Neil | 1 | -3/+3 | |
depended on undefined behaviour. | |||||
2014-05-01 | Cast to make previous change build on Cocoa. | Neil Hodgson | 1 | -1/+1 | |
2014-05-01 | Consolidate insertion for paste into Editor class and perform line end | Neil | 1 | -12/+3 | |
conversion in Editor. | |||||
2014-03-27 | Surround 10.9-specific calls with version checks to ensure builds on old SDKs. | nyamatongwe | 1 | -0/+4 | |
2014-03-27 | Improve scrolling by performing styling in methods called before drawing ↵ | Neil Hodgson | 1 | -0/+51 | |
instead of inside drawing which then caused the drawing to be abandoned, and black blocks to appear on-screen. Discard responsive scrolling overdraw when that overdrawn content is invalid. Style just the visible area instead of the whole document when styling changes run beyond painting area. | |||||
2014-03-26 | Do not call AddCharUTF for empty insertions as may crash when autocompletion ↵ | Neil Hodgson | 1 | -4/+7 | |
active or cause other unexpected behaviour. | |||||
2014-02-22 | Stop adding an extra line to scrollable height as that led to cursor up/down | Neil Hodgson | 1 | -1/+1 | |
movement bugs because different parts of the code disagreed on top line. | |||||
2013-12-15 | Make single argument constructors explicit to avoid unexpected conversions. | Neil | 1 | -1/+1 | |
2013-12-15 | Format normalization - whitespace and braces made consistent. | Neil | 1 | -115/+115 | |
Parameter names added to method declarations. | |||||
2013-12-06 | Ensure find indicator correctly flipped on OS X 10.9. | Neil Hodgson | 1 | -0/+9 | |
2013-12-03 | Fix problems with appearance of newly scrolled content on OS X 10.9 where ↵ | Neil Hodgson | 1 | -0/+22 | |
previously prepared content was shown. | |||||
2013-11-03 | Bug [#1544]. Mac font quality not applied to margin. | nyamatongwe | 1 | -0/+10 | |
From Mark Yen. | |||||
2013-10-25 | Bug [#1541]. Paste into multiple selections on OSX only inserts at one ↵ | nyamatongwe | 1 | -5/+5 | |
selection point. |