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