aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
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.
2018-05-15Fix crashes for invalid DBCS characters when dragging text, changing case ofNeil Hodgson2-0/+18
text, case-insensitive searching, and retrieving text as UTF-8.
2018-05-15Replace ELEMENTS with std::size and drop inclusion of StringCopy.h.Neil8-11/+3
2018-05-15Encapsulate WideCharToMultiByte and MultiByteToWideChar to simplify calling ↵Neil1-58/+64
sites and standardize use of options.
2018-05-14Fix warnings in debug assertions.Neil Hodgson1-3/+3
2018-05-14Avoid using 0 as NULL pointer.Neil1-1/+1
2018-05-14Remove dependency on StringCopy and simplify constructor.Neil1-5/+9
2018-05-14Fix warning.Neil1-1/+1
2018-05-14Replace 0 with nullptr.Neil3-6/+6
2018-05-14Use override for LexerNoExceptions.Neil1-4/+4
2018-05-14Use string_view for UniConversion functions.Neil7-92/+97
2018-05-14Modernize Platform.h (5) - remove ElapsedTime.Neil1-8/+0
Replaced by ElapsedPeriod.
2018-05-14Modernize Platform.h (4) - update Surface to use string_view for text arguments.Neil17-216/+214
2018-05-14Modernize Platform.h (3) - update Surface to delete WidthChar, use size_t forNeil11-96/+37
Polygon and delete the standard copy and assignment methods.
2018-05-14Modernize Platform.h (2) - noexcept, const, constexpr.Neil9-111/+101
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.Neil9-81/+74
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.Neil37-0/+41
2018-05-13Include <string_view> in tests in case needed.Neil12-0/+14
2018-05-13Fix header order.Neil1-1/+1