aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa
AgeCommit message (Collapse)AuthorFilesLines
2021-03-17Make Window argument to Menu::Show const as that avoids warnings and the WindowNeil1-1/+1
is not altered by showing a menu.
2021-03-17Mark Window::Destroy, ListBox::Clear, and Menu::Destroy as noexcept sinceNeil1-4/+4
destroying state should not throw.
2021-03-17Extract geometry and colour definitions from Platform.h into src/Geometry.h.Neil4-0/+4
2021-03-17Remove DynamicLibrary as loading lexers with SCI_LOADLEXERLIBRARY was removedNeil1-51/+0
for Scintilla 5.
2021-03-16Convert Platform from a class to a namespace. Does not change callers.Neil1-6/+6
Make Assert, DebugPrintf, and similar noexcept so they can be used in noexcept methods and they don't throw.
2021-03-16Set deployment target of ScintillaTest to the minimum supported by current ↵Neil1-0/+4
Xcode.
2021-03-10Use Lexilla in ScintillaTest. Switch from ScintillaFramework to Scintilla.Neil Hodgson3-33/+63
2021-03-10Turn off warnings for quoted include in framework headers.Neil Hodgson1-2/+2
These are 'framework headers' from the point of view of client code but are 'user headers' from Scintilla's POV. Using angle brackets so they are 'system headers' could cause problems with other build systems.
2021-03-10Add public headers (ILexer.h, ILoader.h, Scintilla.h, Sci_Position.h) to ↵Neil Hodgson1-3/+19
project. Mark them as well as (ScintillaView.h, InfoBar.h, InfoBarCommunicator.h) as public so they will be copied into the framework's Headers directory for use by clients.
2021-03-10Increase deployment target to 10.9 as it is the minimum supported by Xcode 12.4.Neil Hodgson1-4/+4
2021-03-05Update version number to 5.0.0.Neil2-5/+5
2021-02-07Made comment make sense.Neil Hodgson1-1/+1
2021-02-07On macOS 11, autocompletion list text was being truncated. An extra 22 pixelsNeil Hodgson1-0/+7
was added to the width just on macOS 11. Its likely that there is a better way to discover the additional width needed.
2020-11-09Update Xcode project and remove SciLexer.h from ScintillaView.h.Neil2-129/+16
2021-01-29Remove Lexilla files from ScintillaNeil8-1473/+0
2020-11-28Update version number to 4.4.6 and release date.Neil3-7/+7
2020-11-02Use std::size instead of ELEMENTS so StringCopy.h is only used by Lexilla andNeil1-1/+0
can be removed from Scintilla.
2020-09-18Updated Xcode projects for Xcode 12.Neil Hodgson1-1/+3
2020-09-05Update version number to 4.4.5.Neil3-7/+7
2020-08-12Use groups without folders as groups with folders caused trouble for new clones.Neil Hodgson2-448/+440
2020-07-18Updates for 4.4.4.Neil3-7/+7
2020-06-03Updates for 4.4.3.Neil3-7/+7
2020-06-02Updates for 4.4.2.rel-4-4-2Neil3-7/+7
2020-05-28Updates for 4.4.0.Neil3-7/+7
2020-05-23Regenerate version numbers in cocoa/Scintilla project.Neil1-2/+2
2020-05-23Add new project that builds a Scintilla framework with no lexers.Neil Hodgson5-0/+868
2020-05-23Add file that avoids extra upgrade checks.Neil Hodgson2-0/+16
2020-04-23Updates for 4.3.3.rel-4-3-3Neil1-2/+2
2020-04-17Update Python versions for files that may involve PySide on Linux which requiresNeil1-3/+3
Python 2 still. On Windows, Python3 is used.
2020-03-06Readying 4.3.1 release.rel-4-3-2Neil1-2/+2
2020-03-01Readying 4.3.1 release.rel-4-3-1Neil1-2/+2
2020-02-09Standardise header guard names and use.Neil3-6/+6
2020-01-12Readying 4.3.0 release.rel-4-3-0Neil1-2/+2
2020-01-03Added Raku lexer and style properties and example filesMark Reay1-0/+4
2019-12-31Move collection of modules from Catalogue.cxx to CatalogueModules.h so it canNeil1-1/+0
be reused.
2019-12-13Implement DynamicLibrary on Cocoa.Neil1-7/+45
2019-12-13Move SCI_LOADLEXERLIBRARY from platform layers to ScintillaBase.cxx.Neil1-5/+0
This allows removal of related #include statements.
2019-12-13Add or fix file name comments.Neil7-4/+7
2019-12-11Readying 4.2.3 release.rel-4-2-3Neil1-2/+2
2019-12-03Readying 4.2.2 release.rel-4-2-2Neil1-2/+2
2019-11-15Feature [feature-requests:#1316] Allow target to have virtual space.Neil1-3/+3
2019-11-12Feature [feature-requests:#1324] Add Hollywood lexer.Andreas Falkenhahn1-0/+4
2019-11-02Release build turns off assert by defining NDEBUG.Neil Hodgson1-1/+4
2019-10-20Readying 4.2.1 release.rel-4-2-1Neil1-2/+2
2019-09-30Update project to Xcode 11.Neil Hodgson1-5/+1
2019-07-02Readying 4.2.0 release.Neil1-2/+2
2019-06-30Bug [#2038]. Source of input reported in SCN_CHARADDED.Zufu Liu3-8/+8
This may be SC_CHARACTERSOURCE_DIRECT_INPUT, SC_CHARACTERSOURCE_TENTATIVE_INPUT, or SC_CHARACTERSOURCE_IME_RESULT.
2019-06-24For encodings other than UTF-8, split input up into characters before callingNeil Hodgson1-16/+29
InsertCharacter.
2019-06-24On Cocoa, stop internal failures for missing fonts.Neil Hodgson1-3/+5
Avoid propagating terminating NULs from SCI_STYLEGETFONT and SCI_TARGETASUTF8.
2019-06-23Feature [feature-requests:#1297] Fixed one INDIC_IME forgotten in 7594.Neil Hodgson1-1/+1