aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt
AgeCommit message (Collapse)AuthorFilesLines
2019-12-13Move SCI_LOADLEXERLIBRARY from platform layers to ScintillaBase.cxx.Neil2-15/+0
This allows removal of related #include statements.
2019-12-30gcc 9 has a new warning deprecated-copy which occurs many times in Qt headers.Neil1-1/+1
Turn off this warning as can't change system headers.
2019-12-11Readying 4.2.3 release.rel-4-2-3Neil2-2/+2
2019-12-03Readying 4.2.2 release.rel-4-2-2Neil2-2/+2
2019-11-04Avoid warnings where const reasonable.Neil1-4/+14
2019-10-20Readying 4.2.1 release.rel-4-2-1Neil2-2/+2
2019-09-28Avoid calling virtual methods during destruction to stop warnings.Neil2-8/+23
This code worked correctly before this change.
2019-07-02Readying 4.2.0 release.Neil2-2/+2
2019-06-30Bug [#2038]. Source of input reported in SCN_CHARADDED.Zufu Liu1-6/+3
This may be SC_CHARACTERSOURCE_DIRECT_INPUT, SC_CHARACTERSOURCE_TENTATIVE_INPUT, or SC_CHARACTERSOURCE_IME_RESULT.
2019-06-22Suppress GCC 8 diagnostic Wcast-function-type as this occurs many times forNeil Hodgson1-0/+3
casts in code generated by Shiboken.
2019-06-22Feature [feature-requests:#1297] Update to use INDICATOR_ instead of INDIC_ asNeil1-5/+5
INDIC_ is also used for indicator styles.
2019-06-18Feature [feature-requests:#1297] 6: Support enumerated types in APIs.Neil1-3/+8
2019-06-18Feature [feature-requests:#1297] 3: Add pointer type to WidgetGen.py.Neil1-1/+2
2019-06-18Feature [feature-requests:#1297] 2: Add line type to WidgetGen.pyNeil1-1/+2
2019-06-17Feature [feature-requests:#1293]. InsertCharacter replaces AddCharUTF.Zufu Liu1-5/+4
2019-06-13Make a new release due to a regression in SciTE with 4.1.6.rel-4-1-7Neil2-2/+2
2019-06-05Preparing for 4.1.6 release.Neil2-2/+2
2019-04-13Preparing for 4.1.5 release.Neil2-2/+2
2019-04-12Bug [#2093]. Remove restrictions on IME input length.Zufu Liu1-2/+1
2019-04-05Move UniqueStringCopy into its own source file UniqueString.cxx to hide theNeil2-0/+2
implementation.
2019-03-29Include "CharacterCategory.h" in all files that include "Document.h" as it willNeil2-0/+2
be needed for adding a CharacterCategory feature.
2019-03-04Updated version number for release.Neil2-2/+2
2019-03-03Use noexcept where reasonable.Neil1-2/+2
2019-01-29Bug [#1548]. Avoid call implemented in Qt 5.9 with earlier versions of Qt.Neil1-0/+2
This restores functioning of Scintilla on versions of Qt before 5.9.
2019-01-24Bug [#1548]. Implement calltips on Qt.Andrea Ricchi1-1/+26
2019-01-07Updates for version 4.1.3.rel-4-1-3Neil2-2/+2
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 withNeil3-9/+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.Neil2-2/+2
2018-09-05Updates for 4.1.1.Neil2-2/+2
2018-07-10Delete standard methods to avoid warnings.Neil1-0/+5
2018-06-21Use override for methods in WatcherHelper.Neil1-6/+6
2018-06-15Updates for 4.1.0.Neil2-2/+2
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.Neil4-0/+6
2018-05-06Updates for 4.0.5.rel-4-0-5Neil2-2/+2
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