aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaCocoa.mm
AgeCommit message (Expand)AuthorFilesLines
2017-03-07Bug [#1910]. Accessibility support may be queried and, on GTK+, disabled.Neil1-0/+3
2017-03-06Use several C++11 features as examples so problems with these features are seen.Vicente1-1/+1
2017-03-04Fix error with showing find indicator over styles > 127.Neil Hodgson1-1/+3
2017-02-16Avoid potential crash in finalization.Neil1-1/+2
2017-02-16Bug [#1909]. Fix finalization crash on Cocoa.Chinh Nguyen1-1/+2
2017-01-24Use safer static_cast instead of reinterpret_cast. Remove cast to void*.Neil1-4/+4
2017-01-24Remove casts from id to Objective C object as they are not needed. Use saferNeil1-4/+4
2016-11-23Implementation of MarginRightClick event.Tse Kit Yam1-0/+21
2016-11-19Moved @private sections from header into implementation.Neil Hodgson1-4/+8
2016-11-11Make IME indicator visible in single phase drawing mode.Neil1-0/+6
2016-11-05Support for NSAccessibility protocol added sufficient for the VoiceOverNeil Hodgson1-6/+89
2016-10-18Ensure members of FindHighlightLayer freed.Neil Hodgson1-0/+6
2016-09-30Recognize the numeric keypad '+', '-', and '/' keys as SCK_ADD, SCK_SUBTRACT,Tse Kit Yam1-3/+20
2016-09-14Casts for 64 to 32-bit conversions on OS X.Neil Hodgson1-7/+7
2016-08-29Bug [#1854]. Fix: cannot get original input char on Mac for some input-modifiersTse Kit Yam1-1/+1
2015-11-20Remove line end whitespace.Neil1-23/+23
2015-11-11Implemented idle styling. This allows painting without first styling all visibleNeil1-4/+6
2015-10-26Remove unnecessary timer variables.Neil Hodgson1-7/+5
2015-10-26Make timers active in modal dialogs by adding them to NSModalPanelRunLoopMode.Neil Hodgson1-2/+4
2015-10-26Avoid possibility of ScintillaCocoa receiving idles after deallocation by sev...Neil Hodgson1-0/+13
2015-09-29Reindented code which had become a mess.Neil Hodgson1-45/+45
2015-09-29Removed unreachable code.Neil Hodgson1-1/+0
2015-09-29Mark unused parameters in Objective-C methods with a pragma.Neil Hodgson1-0/+1
2015-09-04Change FillVirtualSpace to ClearBeforeTentativeStart and delete selected text.johnsonj1-1/+1
2015-09-02Schedule the timer after setting its tolerance to avoid scheduling twice.Neil Hodgson1-5/+6
2015-08-23In C++, new fails with an exception instead of returning NULL so remove handlingNeil Hodgson1-43/+29
2015-08-23Potential fix for bug [#1751]. Remove setting of current graphics context.Neil Hodgson1-8/+0
2015-08-22Potential fix for bug [#1751]. Save and restore graphics state in case delete...Neil Hodgson1-0/+3
2015-07-04On Cocoa, translate exceptions into error codes.Neil Hodgson1-44/+50
2015-06-25Bug [#1740]. Cancel autocompletion and calltip when window moved.Neil Hodgson1-0/+11
2015-06-19Fix crash in drag and drop.Neil Hodgson1-0/+2
2015-04-10Since OS X 10.5 no longer supported, remove code that only calledNeil Hodgson1-12/+6
2015-04-01Bug [#1709]. Check whether pixmap is NULL before using to create bitmap.Neil Hodgson1-1/+2
2015-03-14Fix calltip display bug on Cocoa.Neil Hodgson1-0/+9
2015-03-11Update drag and drop to use current APIs instead of deprecated APIs.Neil Hodgson1-8/+76
2015-02-22Implement additional methods from the NSTextInputClient protocol so that moreNeil Hodgson1-17/+92
2015-02-16Implement SCI_TARGETASUTF8 and SCI_ENCODEDFROMUTF8 on Cocoa.Neil Hodgson1-0/+89
2015-02-14Fix unused parameter warnings. Remove code that is never executed.Neil Hodgson1-5/+2
2015-02-14Fix warnings for suspicious type conversions and not fully bracketed initiali...Neil Hodgson1-13/+17
2015-02-14Fix 64->32 bit conversion warnings.Neil Hodgson1-4/+4
2014-09-12Allow choice between windowed and inline IME.Neil1-0/+5
2014-07-15Implement separate timers for each type of periodic activity and turn them on...Neil Hodgson1-27/+82
2014-07-08Made recent refactor work on Cocoa.Neil Hodgson1-4/+4
2014-07-08Specifying some methods as const as they are used from display and measurementNeil1-3/+3
2014-06-17Remove unused TopContainer method. Use less specific types when possible.Neil Hodgson1-13/+2
2014-06-07Avoid using ScintillaView.backend from ScintillaCocoa as this may be hidden i...Neil Hodgson1-2/+1
2014-05-03Fix Point and PRectangle constructors to match changes in Platform.h.Neil Hodgson1-6/+5
2014-05-02Use exact SciFnDirect function signature for DirectFunction as earlier versionNeil1-3/+3
2014-05-01Cast to make previous change build on Cocoa.Neil Hodgson1-1/+1
2014-05-01Consolidate insertion for paste into Editor class and perform line endNeil1-12/+3