aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt/ScintillaEditBase/ScintillaEditBase.cpp
AgeCommit message (Collapse)AuthorFilesLines
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.
2014-12-03Qt >= 5.3 has reverted to the 4.x handling of double click events. UndoesNeil1-6/+0
change set [6b9cc8].
2014-02-10Fix 'possible loss of data' warnings on 64-bit Windows.Neil1-2/+2
2014-02-10Bug [#1575]. On Qt 5.x double click treated as triple click.Neil1-0/+6
From Mike M.
2013-10-31Fix drawing of scrollbars, where previous contents were not drawn over.Neil1-1/+1
From John Ehresman.
2013-08-15Feature: [feature-requests:#1007]. Option to allow mouse selection toNeil1-1/+14
switch to rectangular by pressing Alt after start of gesture. From Neomi.
2013-05-02For modifier keys, QApplication::keyboardModifiers() instead of ↵nyamatongwe1-11/+11
event->modifiers() due to limitation mentioned in Qt documentation. http://qt-project.org/doc/qt-4.8/qkeyevent.html#modifiers
2013-05-01Set mouse tracking to false when widget is hiddenJohn Ehresman1-0/+3
2013-04-26modifierTranslated only used on X11 so only define it there.Neil Hodgson1-0/+2
Avoids a compiler warning.
2013-04-26QInputContext is no longer available in Qt 5.Neil Hodgson1-0/+2
2012-09-24Added autoCompleteCancelled signalJohn Ehresman1-0/+4
2012-06-29Fix 64-bit compilation errors on Windows.nyamatongwe1-3/+3
From Fan Yang.
2012-05-17Qt platform layer added. Based on an implementation from Jason Haslamnyamatongwe1-0/+635
at Scientific Toolworks, Inc. with additions performed for Wingware.