aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaCocoa.mm
AgeCommit message (Expand)AuthorFilesLines
2021-05-10Implement UpdateBaseElements on Cocoa to update colours to match current systemNeil Hodgson1-0/+56
2021-05-09Change first responder / active handling so only treating as focussed whenNeil Hodgson1-9/+27
2021-04-05Change CaseConversion to an enum class.Neil1-1/+1
2021-03-22Replace InitPixMap on Cocoa for drag & drop and XPM images in lists.Neil1-11/+10
2021-03-22Replace multiple mode setting calls on Surface with SetMode as this isNeil1-4/+2
2021-03-20Use Surface::AllocatePixMap instead of changing an existing surface withNeil1-1/+1
2021-03-19Switch enum to enum class.Neil1-34/+32
2020-06-24Converting between UTF-8 and current encoding.Neil1-0/+32
2021-03-18Use unique_ptr for CaseFolderForEncoding to show transfer of ownership.Neil1-4/+4
2021-03-18std::optional is a basic vocabulary type that may be used widely so includeNeil1-0/+1
2021-03-18Move assert and debug trace functions into their own header Debugging.h.Neil1-0/+1
2021-03-17Extract geometry and colour definitions from Platform.h into src/Geometry.h.Neil1-0/+1
2019-12-31Move collection of modules from Catalogue.cxx to CatalogueModules.h so it canNeil1-1/+0
2019-12-13Add or fix file name comments.Neil1-1/+1
2019-11-15Feature [feature-requests:#1316] Allow target to have virtual space.Neil1-3/+3
2019-06-30Bug [#2038]. Source of input reported in SCN_CHARADDED.Zufu Liu1-3/+3
2019-06-24For encodings other than UTF-8, split input up into characters before callingNeil Hodgson1-16/+29
2019-06-22Feature [feature-requests:#1297] Update to use INDICATOR_ instead of INDIC_ asNeil1-1/+1
2019-06-17Feature [feature-requests:#1293]. InsertCharacter replaces AddCharUTF.Zufu Liu1-2/+2
2019-06-16Fix Xcode static analysis warning by renmaing GetImage to CreateImage.Neil Hodgson1-1/+1
2019-03-25Use generic versions of ceil, floor, round, lround, trunc from <cmath>.Neil1-2/+4
2019-03-11Make idle processing more efficient on Cocoa by only notifying the relevantNeil Hodgson1-1/+1
2018-11-20Bug [#2061]. Fix a crash that occurred when entering a dead key diacritic then aNeil Hodgson1-1/+12
2018-10-11Add SCI_SETCOMMANDEVENTS API to allow turning off command events.Neil1-1/+1
2018-06-07Update Cocoa enumerations to current names instead of deprecated names.Neil Hodgson1-10/+10
2018-06-02Implement IScreenLineLayout for Cocoa Core Text as ScreenLineLayout.Neil1-0/+7
2018-05-18Add <vector> to files that include Platform.h as likely needed in future.Neil1-0/+1
2018-05-15Fix crashes for invalid DBCS characters when dragging text, changing case ofNeil Hodgson1-0/+14
2018-05-14Include <string_view> to allow future use in Platform interface and Unicode.Neil1-0/+2
2018-05-01Remove dead function and unnecessary casts. Convert C casts to C++ casts.Neil Hodgson1-2/+2
2018-05-01Hoist conversion between NSEvent time and Editor method time into function.Neil Hodgson1-5/+19
2018-05-01Bug [#2012]. Use '0' instead of '0l'.Neil1-1/+1
2018-04-25Use set of coercion functions for transforming WndProc parameters into pointers.Neil1-3/+3
2018-04-25Standardized signature of TargetAsUTF8 and EncodedFromUTF8.Neil1-2/+2
2018-04-22Fix problems with 64-bit positions by using types that expand to 64-bits andNeil Hodgson1-27/+29
2018-03-27Use an interface for ContractionState so that there can be differentNeil1-3/+3
2018-03-03Promote methods from int to ptrdiff_t to allow extension to 64-bits.Neil1-6/+6
2018-03-03Use Position and Line types in ScintillaCocoa to allow for later changes.Neil1-7/+7
2018-01-30Disable animated find indicator on macOS 10.12 as it causes drawing failures.Neil Hodgson1-2/+3
2017-10-26Disable the animated find indicator on macOS 10.13 where it fails.Neil Hodgson1-2/+20
2017-07-17Casts required for Unix LP64 after changes to Sci_Position/Sci_PositionU.Neil Hodgson1-4/+5
2017-06-12Remove old timer code in favour of the FineTicker* methods.Neil1-9/+0
2017-06-12Simplify mouse and keyboard handling by only retaining the 'WithModifiers" form.Neil1-19/+16
2017-06-12Fix bug where retrieving encoded bytes failed.Neil1-1/+1
2017-06-09Use min and max from std instead of own version from platform.Neil1-1/+1
2017-06-08Indented consistently by using astyle.Neil1-1439/+1273
2017-06-07Use property dot syntax.Neil Hodgson1-65/+65
2017-06-07Using modern Objective C literals and indexing.Neil Hodgson1-15/+14
2017-06-05Converted to Automatic Reference Counting.Neil Hodgson1-50/+37
2017-05-07Use unique_ptr on Cocoa.Neil Hodgson1-3/+2