aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt/ScintillaEditBase/ScintillaEditBase.cpp
AgeCommit message (Expand)AuthorFilesLines
2025-01-04Use const, unnamed namespace, and named constant.Neil1-34/+40
2025-01-04Fix bug where double-click stopped working after running for weeks.Neil1-4/+16
2024-08-09Simplify code that sets an empty selection at a position.Neil1-2/+1
2023-10-10Share definition of colour used for IME indicators on most platforms.Neil1-2/+0
2023-08-24Fix potential crash when using IME with large amount of text selected.Neil1-1/+1
2023-08-02Bug [#2395]. Allow parent window to handle context menu events by setting asGary James1-0/+3
2023-07-14Feature [feature-requests:#1488] Stop aligning IME candidate window to target onjohnsonj1-8/+0
2023-06-18Implement replacement for IMEs which may help with actions like reconversion.johnsonj1-0/+11
2023-06-15For IMEs, update micro focus when selection changes.johnsonj1-0/+3
2023-05-26Return correct position within paragraph for IME in characters instead of bytes.johnsonj1-1/+1
2023-05-09Stop movement of IME candidate box.johnsonj1-5/+11
2023-05-08On Qt for Cocoa, fix crash in entry of multi-character strings with IME.chengzhi1-2/+9
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
2022-05-11Bug [#2328]. For Qt 6.x, ensure QByteArray created when text is null butJohn Ehresman1-1/+1
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
2021-12-12Type harmonization between Scintilla and Qt types.Neil1-22/+23
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
2021-05-31Use Scintilla::Position type which widens to 64-bit on 64-bit systems to allowNeil1-1/+1
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
2021-05-22Rename ColourAlpha to ColourRGBA to avoid clashes when a ColourAlpha typedefNeil1-4/+4
2021-05-09Add @file <filename> comments to follow convention.Neil1-1/+1
2021-04-25Feature [feature-requests:#1402]. Unify colour type with ColourAlpha.Neil1-4/+4
2021-04-23Work around some Qt 5.14 and 5.15 deprecations with #if so will contrinue toNeil Hodgson1-3/+36
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
2019-06-22Feature [feature-requests:#1297] Update to use INDICATOR_ instead of INDIC_ asNeil1-5/+5
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
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
2017-06-12Simplify mouse and keyboard handling by only retaining the 'WithModifiers" form.Neil1-11/+17
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