Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-07-10 | Backport: Delete standard methods to avoid warnings. | Neil | 1 | -0/+5 | |
Backport of changeset 7064:6418332a6880. | |||||
2018-05-26 | Backport: Add necessary headers and move includes to be in same order. | Neil | 1 | -1/+2 | |
Backport of changeset 7002:010fd50b48a7. | |||||
2018-05-25 | Backport: Add GradientRectangle method to Surface to draw rectangles with ↵ | mitchell | 1 | -0/+20 | |
vertical or horizontal gradients. Backport of changeset 6965:90c71d69e3b6. | |||||
2018-05-25 | Backport: Modernize Platform.h (3) - update Surface to delete WidthChar, use ↵ | mitchell | 1 | -9/+3 | |
size_t for Polygon and delete the standard copy and assignment methods. Backport of changeset 6940:89fd29243232. | |||||
2018-05-14 | Backport: Modernize Platform.h (1) - noexcept, const, standard methods. | Neil | 1 | -8/+8 | |
Changes made to FontParameters, Font, Window, ListBoxEvent, ListBox, Menu, DynamicLibrary, and Platform. Backport of changeset 6938:a42c7cc3254b. | |||||
2018-05-02 | Backport: Replace NULL and 0 with nullptr. | Neil Hodgson | 1 | -41/+20 | |
Backport of changeset 6784:0638e9fb5942. | |||||
2018-05-02 | Backport: Define ListBoxImpl::GetWidget method to avoid casts. | Neil Hodgson | 1 | -55/+37 | |
Backport of changeset 6783:ebfb3ad01111. | |||||
2018-05-06 | Backport: Use <chrono> for platform-independent timing and remove ↵ | mitchell | 1 | -27/+0 | |
ElapsedTime. Also use #if for painting measurement as there are 7 sections of code to enable. Backport of changeset 6741:af5d9064c25c. | |||||
2018-04-25 | Backport: Remove variables and casts that are not needed. | Neil | 1 | -2/+2 | |
Backport of changeset 6739:e204054d5d07. | |||||
2018-04-15 | Backport: Feature [feature-requests:#1215]. Stop warning about virtual call ↵ | Neil | 1 | -13/+18 | |
in destructor. Backport of changeset 6690:2107e0144806. | |||||
2018-05-05 | Backport: Feature [feature-requests:#1211]. Use pre-computed table for ↵ | mitchell | 1 | -16/+4 | |
UTF8BytesOfLead. Friendlier treatment of invalid UTF-8. Add tests for UniConversion handling invalid UTF-8. Simplify UTF8Classify tests. Backport of changeset 6643:ebbb4e5aaf93. | |||||
2017-09-11 | Backport: The Scintilla namespace is always active for internal symbols and ↵ | Neil | 1 | -4/+0 | |
for the lexer and document interfaces. Backport of changeset 6388:d62863ae40a3. | |||||
2017-06-12 | Backport: Removed unused functions and methods from Platform.h. | Neil | 1 | -104/+2 | |
Replaced Platform::Clamp with Sci::clamp. Drop MouseButtonBounce workaround for very early GTK+/Linux. Backported from changeset 6307:7030530a9a0f. | |||||
2017-06-11 | Backport: Implement SCN_AUTOCSELECTIONCHANGE notification. | Neil | 1 | -12/+26 | |
Backported from changeset 6306:7e28cdba6d61. | |||||
2017-05-19 | Avoid explicit memory management. | Neil | 1 | -3/+2 | |
2017-04-19 | Use "override" for GTK+ and Qt platform layers. | Neil | 1 | -25/+25 | |
2017-04-07 | Use same parameter names in declarations and definitions. | Neil | 1 | -1/+1 | |
2016-01-26 | Fix flags to be compatible with Qt 4.x. | Neil | 1 | -2/+5 | |
2015-12-11 | Bug [#1669]. Prevent crash when clicking on autocompletion list. | Neil | 1 | -1/+2 | |
This appears to be a focus problem. Clicking on the list sets it as the focus which removes focus from the Scintilla text window. Scintilla responds to loss of focus by destroying any popups including the autocompletion list which is not in a state where it is safe to be destroyed. Adding the WindowDoesNotAcceptFocus flag to the list prevents it from getting focus and thus prevents the crash. | |||||
2015-11-20 | Remove line end whitespace. | Neil | 1 | -2/+2 | |
2015-05-13 | Bug [#1703]. Fix bug when drawing text margins in buffered mode which would use | Neil | 1 | -1/+4 | |
default encoding instead of chosen encoding. | |||||
2015-05-13 | Make single argument constructors explicit where simple to avoid possibility of | Neil | 1 | -2/+2 | |
unintended conversions. | |||||
2015-04-22 | Use fractional positioning calls and avoid rounding to ensure consistency. | Neil | 1 | -19/+17 | |
From Jason Haslam. | |||||
2015-01-26 | Use QElapsedTimer::nsecsElapsed for more accurate measurement of durations. | Neil | 1 | -6/+14 | |
2014-08-06 | Bug [#1634]. Set qt list icon size to largest icon. Also adds padding on OS X. | Neil | 1 | -4/+40 | |
2014-01-20 | Fix typos in comments (qt) | Stefan Weil | 1 | -2/+2 | |
2014-03-13 | Put selected item at top of autocompletion list. | Neil | 1 | -0/+7 | |
2014-02-10 | Fix 'possible loss of data' warnings on 64-bit Windows. | Neil | 1 | -2/+2 | |
2013-10-18 | Fix Window::GetMonitorRect when top left of screen is not 0,0. | Neil | 1 | -2/+1 | |
From John Ehresman. | |||||
2013-07-26 | Avoid warnings for uninitialized fields. | Unknown | 1 | -1/+1 | |
2013-07-07 | Allow building with older versions of Visual C++ again. | Neil | 1 | -3/+3 | |
2013-06-25 | Specify paint device when creating QTextLayout. Fixes mis-layout of text when | nyamatongwe | 1 | -1/+1 | |
QApplication construction delayed. From John Ehresman. | |||||
2013-05-04 | Replacing raw pointers and allocations with std::vector and std::string. | nyamatongwe | 1 | -20/+16 | |
2013-05-02 | Removed variable which is no longer used due to change 4520. | nyamatongwe | 1 | -1/+0 | |
2013-05-01 | Monitor rect's top right is not necessarily 0, 0 | John Ehresman | 1 | -10/+8 | |
2013-04-26 | Switch away from deprecated method. | Neil Hodgson | 1 | -1/+1 | |
2013-04-26 | Use union to allow access to dynamic library functions. | Neil Hodgson | 1 | -2/+11 | |
2012-07-02 | Ensure full initialised. | nyamatongwe | 1 | -1/+1 | |
2012-05-17 | Qt platform layer added. Based on an implementation from Jason Haslam | nyamatongwe | 1 | -0/+1282 | |
at Scientific Toolworks, Inc. with additions performed for Wingware. |