aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt/ScintillaEditBase
AgeCommit message (Collapse)AuthorFilesLines
2019-01-07Updates for version 4.1.3.rel-4-1-3Neil1-1/+1
2019-01-03Avoid shadowing of AutoSurface.Neil1-3/+3
2018-12-14Stop specifying -std:c++latest as that is no longer needed to enable C++17 withNeil1-4/+0
MSVC 2017 and Qt 5.12 and it caused duplicate flag warnings.
2018-10-11Add SCI_SETCOMMANDEVENTS API to allow turning off command events.Neil1-4/+6
This can reduce the time taken to fold a document by half.
2018-09-30Updates for 4.1.2 release.Neil1-1/+1
2018-09-05Updates for 4.1.1.Neil1-1/+1
2018-07-10Delete standard methods to avoid warnings.Neil1-0/+5
2018-06-15Updates for 4.1.0.Neil1-1/+1
2018-06-02Extra header needed with g++ on Linux.Neil Hodgson2-0/+2
2018-06-02Define IScreenLineLayout as the main interface for implementing bidirectionalNeil2-15/+3
features by platform code. Implement IScreenLineLayout for Win32 / DirectWrite as ScreenLineLayout.
2018-05-26Add necessary headers and move includes to be in same order.Neil5-4/+9
2018-05-23Add definitions for bidirectional support to Platform.h and provide emptyNeil2-0/+24
implementations for each platform.
2018-05-22Add GradientRectangle method to Surface to draw rectangles with vertical orNeil2-0/+26
horizontal gradients.
2018-05-18Add <vector> to files that include Platform.h as likely needed in future.Neil2-0/+2
2018-05-14Modernize Platform.h (4) - update Surface to use string_view for text arguments.Neil2-28/+28
2018-05-14Modernize Platform.h (3) - update Surface to delete WidthChar, use size_t forNeil2-11/+4
Polygon and delete the standard copy and assignment methods.
2018-05-14Modernize Platform.h (2) - noexcept, const, constexpr.Neil1-1/+1
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-8/+8
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-1/+1
2018-05-02Replace NULL and 0 with nullptr.Neil Hodgson1-41/+20
2018-05-02Define ListBoxImpl::GetWidget method to avoid casts.Neil Hodgson1-55/+37
2018-05-01Remove cast that is not needed.Neil1-1/+1
2018-05-01Bug [#2012]. Use '0' instead of '0l'.Neil1-1/+1
2018-04-26Use <chrono> for platform-independent timing and remove ElapsedTime.Neil1-27/+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-15Feature [feature-requests:#1215]. Stop warning about virtual call in destructor.Neil2-13/+20
2018-04-07Updates for 4.0.4.rel-4-0-4Neil1-1/+1
2018-04-05Backed out changeset: 7402342dc7a3 Caching client rectangle on EditView.Neil1-1/+1
This change was not compatible with Cocoa as it uses document-based coordinates rather than view-based.
2018-04-04Cache client rectangle on EditView so it can be used easily inside EditView.Neil1-1/+1
2018-03-24Feature [feature-requests:#1212]. Move Unicode conversions into UniConversion.Zufu Liu1-1/+0
Move Unicode conversion functions UnicodeFromUTF8 and UTF8FromUTF32Character into UniConversion.
2018-03-22Feature [feature-requests:#1211]. Use pre-computed table for UTF8BytesOfLead.Zufu Liu1-16/+4
Friendlier treatment of invalid UTF-8. Add tests for UniConversion handling invalid UTF-8. Simplify UTF8Classify tests.
2018-03-15Use forward class definitions of XPM and RGBAImage so only code that uses themNeil1-1/+0
needs to #include "XPM.h". Move definition of standard methods on LineMarker from header to implementation to reduce included text and further isolate use of XPM and RGBAImage.
2018-02-08Updating for 4.0.3.Neil1-1/+1
2018-01-28Match declaration signature to definition signature.Neil1-1/+1
2018-01-28Allow C++17 in all build and project files.Neil1-1/+1
2017-10-26Updates for 4.0.2.rel-4-0-2Neil1-1/+1
2017-10-18Updates for 4.0.1 release.rel-4-0-1Neil1-1/+1
2017-09-11The Scintilla namespace is always active for internal symbols and for the lexerNeil6-25/+6
interfaces ILexer4 and IDocument.
2017-08-28New header ILoader.h defines ILoader interface as it does not belong in ↵Neil1-0/+1
ILexer.h.
2017-08-11Preparing for the 4.0.0 release.Neil1-1/+1
2017-08-02Switch default modifier key for rectangular selections from Ctrl to Alt on ↵Neil Hodgson1-4/+0
Linux.
2017-07-12Add include needed to build with Qt 5.7.1 on Fedora 26 Linux.Neil Hodgson1-0/+1
2017-07-12Bug [#1957]. Add focusChanged(bool focused) signal.Justin Dailey2-0/+9
2017-07-04Dropping files fires the SCN_URIDROPPED notification instead of inserting text.Justin Dailey4-5/+30
2017-07-01Include the 'updated' flags in the updateUi signal.Justin Dailey2-3/+2
Don't send updateUi for focus in.
2017-06-22Add a DefaultLexer class which lexers can subclass if they want reasonableNeil1-0/+1
default implementations of the ILexerWithSubStyles interface methods.
2017-06-14Use $$files instead of bare wildcard to support including in a parent project.Neil1-1/+1
2017-06-14Use same #if guard as other files.Neil1-0/+2
2017-06-12Remove old timer code in favour of the FineTicker* methods.Neil2-9/+0