aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa
AgeCommit message (Collapse)AuthorFilesLines
2019-06-13Make a new release due to a regression in SciTE with 4.1.6.rel-4-1-7Neil1-2/+2
2019-06-05Preparing for 4.1.6 release.Neil1-2/+2
2019-05-11Feature [feature-requests:#1283]. Standardise spelling - "color" -> "colour".Neil2-3/+3
2019-04-29Feature [feature-requests:#1280]. Lexer added for X12.Iain Clarke1-0/+4
2019-04-13Preparing for 4.1.5 release.Neil1-2/+2
2019-04-05Move UniqueStringCopy into its own source file UniqueString.cxx to hide theNeil1-0/+4
implementation.
2019-03-29Include "CharacterCategory.h" in all files that include "Document.h" as it willNeil1-0/+1
be needed for adding a CharacterCategory feature.
2019-03-28Updated ScintillaTest internationalization to fix warnings from Xcode 10.2.Neil Hodgson3-9/+6
2019-03-28Updated ScintillaFramework internationalization to fix warnings from Xcode 10.2.Neil Hodgson2-14/+11
2019-03-25Use generic std::abs instead of abs and fabs.Neil3-3/+3
2019-03-25Use generic versions of ceil, floor, round, lround, trunc from <cmath>.Neil4-13/+20
2019-03-11Make idle processing more efficient on Cocoa by only notifying the relevantNeil Hodgson1-1/+1
Scintilla instance.
2019-03-11Enable Base internationalization to avoid warning from Xcode.Neil Hodgson2-0/+2
2019-03-04Updated version number for release.Neil1-2/+2
2019-02-28Feature [feature-requests:#1265]. Common Intermediate Language (CIL) lexer.Jed Altahan1-0/+4
2019-01-13Replace the only use of a function from <cctype> with a Scintilla function.Neil1-1/+0
Remove inclusion of <cctype> except in lexers as cctype functions often behave poorly and may crash for out of bounds arguments.
2019-01-07Updates for version 4.1.3.rel-4-1-3Neil1-2/+2
2019-01-06Bug [#2022]. Fix incorrect horizontal offset on macOS 10.14 Mojave.Chinh Nguyen2-1/+31
2018-11-21Feature [feature-requests:#1242]. Add lexer for NimJad Altahan1-0/+4
2018-11-20Bug [#2061]. Fix a crash that occurred when entering a dead key diacritic then aNeil Hodgson1-1/+12
character that can not take that diacritic, such as option+e (acute accent) followed by g.
2018-10-21Bug [#2055]. Use dark info bar background when system is set to Dark Appearance.John Horigan3-1/+4
2018-10-11Add SCI_SETCOMMANDEVENTS API to allow turning off command events.Neil1-1/+1
This can reduce the time taken to fold a document by half.
2018-10-04Fix crash when particular patterns of invalid UTF-8 led to failure to create aNeil Hodgson1-1/+4
CFStringRef. Performs more stringent validation on input text.
2018-09-30Updates for 4.1.2 release.Neil1-2/+2
2018-09-05Updates for 4.1.1.Neil1-2/+2
2018-08-16For reverse arrow margin cursor, move hotspot to the tip of the arrow.Neil Hodgson1-1/+1
This fixes a bug where clicking seemed to affect the wrong margin.
2018-06-21Feature [feature-requests:#1185]. Add lexers for SAS and Stata.Luke Rasmussen1-0/+8
2018-06-15Updates for 4.1.0.Neil1-2/+2
2018-06-07Update Cocoa enumerations to current names instead of deprecated names.Neil Hodgson4-17/+17
2018-06-02Implement IScreenLineLayout for Cocoa Core Text as ScreenLineLayout.Neil2-4/+218
2018-06-02Define IScreenLineLayout as the main interface for implementing bidirectionalNeil2-13/+3
features by platform code. Implement IScreenLineLayout for Win32 / DirectWrite as ScreenLineLayout.
2018-05-23Add definitions for bidirectional support to Platform.h and provide emptyNeil2-0/+23
implementations for each platform.
2018-05-22Add GradientRectangle method to Surface to draw rectangles with vertical orNeil2-0/+45
horizontal gradients.
2018-05-21If decoding DBCS text fails, use the MacRoman encoding to ensure something isNeil Hodgson2-11/+35
visible.
2018-05-21Remove CGContextRef field in QuartzTextLayout as it is only used in draw methodNeil Hodgson2-19/+8
where it can easily be provided. Retaining a CGContextRef in QuartzTextLayout could lead to it being used after being invalidated.
2018-05-18Add <vector> to files that include Platform.h as likely needed in future.Neil2-0/+2
2018-05-15Fix crashes for invalid DBCS characters when dragging text, changing case ofNeil Hodgson1-0/+14
text, case-insensitive searching, and retrieving text as UTF-8.
2018-05-14Modernize Platform.h (4) - update Surface to use string_view for text arguments.Neil3-29/+28
2018-05-14Modernize Platform.h (3) - update Surface to delete WidthChar, use size_t forNeil2-15/+3
Polygon and delete the standard copy and assignment methods.
2018-05-14Modernize Platform.h (2) - noexcept, const, constexpr.Neil1-3/+3
ColourDesired is an int instead of long for consistency over different platforms. Changes made to Point, PRectangle, and ColourDesired. RoundXYPosition removed.
2018-05-14Modernize Platform.h (1) - noexcept, const, standard methods.Neil1-7/+7
Changes made to FontParameters, Font, Window, ListBoxEvent, ListBox, Menu, DynamicLibrary, and Platform.
2018-05-14Include <string_view> to allow future use in Platform interface and Unicode.Neil3-0/+5
2018-05-06Updates for 4.0.5.rel-4-0-5Neil1-2/+2
2018-05-01Remove dead function and unnecessary casts. Convert C casts to C++ casts.Neil Hodgson2-28/+14
Use nullptr where unambiguous and is C++ as distinct from Objective C.
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-26Use <chrono> for platform-independent timing and remove ElapsedTime.Neil1-28/+0
Also use #if for painting measurement as there are 7 sections of code to enable.
2018-04-25Remove variables and casts that are not needed.Neil1-2/+2
2018-04-25Use set of coercion functions for transforming WndProc parameters into pointers.Neil1-3/+3
2018-04-25Standardized signature of TargetAsUTF8 and EncodedFromUTF8.Neil2-4/+4