aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2018-06-15Note that Cocoa also supports bidirectional text.rel-4-1-0Neil1-1/+1
2018-06-15Updates for 4.1.0.Neil8-19/+17
2018-06-12Remove definition that has never been used.Neil1-1/+0
2018-06-10Using noexcept for simple functions.Neil3-36/+36
2018-06-10Updated the code and comment for running a regex over multiple lines at onceNeil1-8/+14
instead of breaking up into lines. Using the preprocessor to hide the multiline code instead of comments so that it is easier to experiment with.
2018-06-07Remove compile-time ENABLE_BIDIRECTIONAL option as bidirectional feature is nowNeil2-9/+1
controlled completely at run-time.
2018-06-07Update Cocoa enumerations to current names instead of deprecated names.Neil Hodgson4-17/+17
2018-06-06Added brace for multi-line if and normalized space.Neil1-6/+7
2018-06-06SC_WRAPINDENT_DEEPINDENT added to indent two tabs from previous line.Henrik Hank5-6/+26
2018-06-06Hide Meson and Ninja artifacts.Neil1-0/+5
2018-06-04Reduce scope of captures for lambdas.Neil2-5/+5
Use noexcept.
2018-06-04Use const and noexcept, initialize, avoid casts and improve variable name.Neil1-29/+29
2018-06-04Use lambda in preference to function object.Neil1-10/+2
2018-06-04Use const in lexlib headers.Neil3-9/+9
2018-06-02Extra header needed with g++ on Linux.Neil Hodgson2-0/+2
2018-06-02Updated to mention bidirectional works on Cocoa.Neil1-4/+5
2018-06-02UpdateBidiData is called by EditView but doesn't use any EditView fields so makeNeil1-1/+1
it static.
2018-06-02Make virtual space selections visible in bidirectional mode.Neil1-1/+10
2018-06-02Implement IScreenLineLayout for Cocoa Core Text as ScreenLineLayout.Neil3-4/+219
2018-06-02Define IScreenLineLayout as the main interface for implementing bidirectionalNeil8-265/+194
features by platform code. Implement IScreenLineLayout for Win32 / DirectWrite as ScreenLineLayout.
2018-06-01Mark constant inline Unicode functions as constexpr.Neil1-4/+4
2018-06-01Add function to find a UTF-16 position in a UTF-8 string.Neil2-0/+13
2018-05-31Allow std::unique_ptr to be used more widely.Neil6-0/+6
2018-05-30Add header needed for floor.Neil Hodgson1-0/+1
2018-05-30Add TabPositionAfter method to IScreenLine as this calculation is needed on eachNeil3-0/+6
platform and it allows extension to custom tab stops.
2018-05-30Fix comments.Neil1-4/+4
2018-05-28Add styles for diffs containing patches.Andreas Rönnquist4-0/+20
2018-05-26Add necessary headers and move includes to be in same order.Neil5-4/+9
2018-05-24Fix warnings. Add const, constexpr, and noexcept. Initialize. Standard methods.Neil11-127/+136
Replace 0 and NULL with nullptr for COM, DirectWrite and least ambiguous cases.
2018-05-24Added credits.Neil1-0/+2
2018-05-23Update for bidirectional support.Neil2-8/+17
2018-05-23Implement bidirectional mode bidiL2R for DirectDraw on Win32.Neil10-51/+748
2018-05-23Add definitions for bidirectional support to Platform.h and provide emptyNeil7-0/+131
implementations for each platform.
2018-05-23Replace C-style casts with C++ casts. Use const.Neil1-21/+21
2018-05-23Change from function to object lexer. Use string and set types to simplify code.Neil1-212/+307
2018-05-22Move static functions into anonymous namespace and drop "static".Neil1-225/+225
Move data tables to end of local functions. These changes have no strong effect - this change set just tries to simplify the following change set which makes more significant changes.
2018-05-22Add INDIC_GRADIENT and INDIC_GRADIENTCENTRE indicator types.Neil6-1/+50
2018-05-22Add GradientRectangle method to Surface to draw rectangles with vertical orNeil7-4/+226
horizontal gradients.
2018-05-21If decoding DBCS text fails, use the MacRoman encoding to ensure something isNeil Hodgson3-11/+39
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-21Draw invalid bytes in DBCS when detected as blobs in a similar way to UTF-8.Neil Hodgson5-1/+107
2018-05-19SciTE change log.Neil1-0/+6
2018-05-18Can use const now that Font::GetID is const.Neil2-2/+2
2018-05-18Add <vector> to files that include Platform.h as likely needed in future.Neil11-1/+11
2018-05-18Added credit.Neil Hodgson1-0/+1
2018-05-17Use nullptr instead of 0 in headers as this diminishes the number of warnings.Neil3-5/+5
2018-05-16Use noexcept method to preserve noexcept.Neil1-1/+1
2018-05-16Move implementations into cxx file.Neil6-21/+34
Replace 0 and NULL with nullptr. Update comments.
2018-05-16Use standard library function.Neil1-1/+2
2018-05-16Fix regex crash reported with libstdc++ on macOS that occursNeil Hodgson2-7/+3
when the regex has a locale imbued.