aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt/ScintillaEditBase/ScintillaEditBase.cpp
AgeCommit message (Collapse)AuthorFilesLines
2023-01-17Allow scrolling with mouse wheel when scroll bar hidden.Mitchell Foral1-11/+3
2022-10-29On Qt, implement SCI_SETRECTANGULARSELECTIONMODIFIER for all platforms.dail88591-14/+0
2022-08-13Move ModifierFlags to ScintillaTypes.h as it is globally useful and not tiedNeil1-4/+4
to Editor.
2022-05-11Bug [#2328]. For Qt 6.x, ensure QByteArray created when text is null butJohn Ehresman1-1/+1
length is non-0.
2021-12-12Fix some minor analysis warnings.Neil1-5/+7
2021-12-12Fix ambiguity for Qt on Linux with gcc.Neil Hodgson1-2/+2
2021-12-12Fix potential Qt bug with position truncation for ImSurroundingText on hugeNeil1-14/+2
documents.
2021-12-12Type harmonization between Scintilla and Qt types.Neil1-22/+23
Fixes warnings from signed/unsigned, int/intptr_t, float/int. Qt uses int for sizes instead of size_t.
2021-12-12Use types that adapt to 64-bit mode to avoid potential issues on huge documents.Neil1-14/+14
2021-11-23Fix warnings from Qt Creator 5.Neil Hodgson1-6/+4
2021-10-26Prefer constexpr to #define.Neil1-18/+16
2021-10-26Better and fewer casts.Neil1-4/+4
2021-10-26Ensure variables initialized.Neil1-2/+2
2021-10-24Remove spaces from SIGNALs as that avoids extra allocations and clazy warnings.Neil1-4/+4
https://www.kdab.com/nailing-13-signal-slot-mistakes-clazy-1-3/
2021-05-31Use Scintilla::Position type which widens to 64-bit on 64-bit systems to allowNeil1-1/+1
documents larger than 2GB.
2021-05-31Use stricter types in signals from ScintillaEditBase.Neil1-32/+32
2021-05-24Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.hNeil1-14/+15
and ScintillaStructures.h using scoped enumerations. Use these headers instead of Scintilla.h internally. External definitions go in the Scintilla namespace and internal definitio0ns in Scintilla::Internal.
2021-05-22Rename ColourAlpha to ColourRGBA to avoid clashes when a ColourAlpha typedefNeil1-4/+4
will be published in externally visible header.
2021-05-09Add @file <filename> comments to follow convention.Neil1-1/+1
Fix incorrect filename comments. Normalize Qt code to use #endif /* X */ insetad of #endif // X.
2021-04-25Feature [feature-requests:#1402]. Unify colour type with ColourAlpha.Neil1-4/+4
Change ColourDesired to ColourAlpha in styles. Remove ColourDesired.
2021-04-23Work around some Qt 5.14 and 5.15 deprecations with #if so will contrinue toNeil Hodgson1-3/+36
work on Qt 4.x.
2020-07-13Minor warning fixes. 0 -> nullptr and static_cast -> dynamic_cast.Neil1-1/+1
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-22Feature [feature-requests:#1297] Update to use INDICATOR_ instead of INDIC_ asNeil1-5/+5
INDIC_ is also used for indicator styles.
2019-06-17Feature [feature-requests:#1293]. InsertCharacter replaces AddCharUTF.Zufu Liu1-5/+4
2019-04-12Bug [#2093]. Remove restrictions on IME input length.Zufu Liu1-2/+1
2018-05-26Add necessary headers and move includes to be in same order.Neil1-1/+1
2017-09-11The Scintilla namespace is always active for internal symbols and for the lexerNeil1-2/+0
interfaces ILexer4 and IDocument.
2017-07-12Bug [#1957]. Add focusChanged(bool focused) signal.Justin Dailey1-0/+8
2017-07-04Dropping files fires the SCN_URIDROPPED notification instead of inserting text.Justin Dailey1-4/+11
2017-07-01Include the 'updated' flags in the updateUi signal.Justin Dailey1-2/+1
Don't send updateUi for focus in.
2017-06-12Simplify mouse and keyboard handling by only retaining the 'WithModifiers" form.Neil1-11/+17
All events include a set of keyboard modifier flags. Older calls that passed individual parameters for each key were removed.
2017-06-10Bug [#1947]. Reenable mouse tracking when the window is reshown.Baldur Karlsson1-0/+3
2017-03-31Hide decorations details a little.Neil1-1/+1
2017-03-05For IMEs, do not clear selected text when there is no composition text to show.johnsonj1-1/+4
2016-12-01Bug [#1887]. Define QT_WS_MAC or QT_WS_X11 under qt5 from WS_OS_* macrosJohn Ehresman1-0/+11
2016-11-23Implementation of MarginRightClick event.Tse Kit Yam1-5/+14
2016-04-14Simplified IME caret positioning.johnsonj1-11/+8
2016-03-10Fix caret position bug on Qt and Gtk for win32 for Korean.rel-3-6-4johnsonj1-0/+2
2016-01-25Make IME indicators work similarly on all 3 platforms.johnsonj1-25/+17
2016-01-07Factored out mapping IME state to indicators and finding caret position.johnsonj1-55/+66
2015-12-14Block IME when some selected text is protected.johnsonj1-1/+1
2015-12-13Korean input by word fixed.johnsonj1-3/+3
2015-12-10Do nothing for IME composition for read-only documents.johnsonj1-0/+5
2015-11-20Remove line end whitespace.Neil1-6/+6
2015-10-27Use settings that may allow translucent painting. Incomplete as EditView doesNeil1-1/+1
not currently support translucent painting.
2015-09-10Fix IME caret movements for emoji.johnsonj1-1/+1
2015-09-04Change FillVirtualSpace to ClearBeforeTentativeStart and delete selected text.johnsonj1-1/+1
2015-07-28Avoid candidate box randomly popping up away from edit pane with (especiallyjohnsonj1-0/+1
Japanese) IME input.
2015-04-09Improvements to IME supporting multiple carets, handling Korean moreNeil1-71/+174
idiomatically and behaving more consistently with the other platforms. From johnsonj.