aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt/ScintillaEditBase
AgeCommit message (Collapse)AuthorFilesLines
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-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-12-10Do nothing for IME composition for read-only documents.johnsonj1-0/+5
2015-11-20Remove line end whitespace.Neil3-9/+9
2015-11-02Updates for 3.6.2.Neil1-1/+1
2015-10-27Use settings that may allow translucent painting. Incomplete as EditView doesNeil1-1/+1
not currently support translucent painting.
2015-09-10Updates for 3.6.1.johnsonj1-1/+1
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-29Update version numbers and dates for 3.6.0 release.Neil1-1/+1
2015-07-28Avoid candidate box randomly popping up away from edit pane with (especiallyjohnsonj1-0/+1
Japanese) IME input.
2015-07-27Add Position.h as a place-holder and to allow #include "Position.h" in source.Neil1-0/+1
2015-06-19Updates for release 3.5.7.Neil1-1/+1
2015-05-22Updates for 3.5.6.Neil1-1/+1
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 ofNeil4-5/+5
unintended conversions.
2015-04-22Use fractional positioning calls and avoid rounding to ensure consistency.Neil2-19/+22
From Jason Haslam.
2015-04-14Getting ready for 3.5.5 release.Neil1-1/+1
2015-04-09Improvements to IME supporting multiple carets, handling Korean moreNeil2-71/+178
idiomatically and behaving more consistently with the other platforms. From johnsonj.
2015-04-09Avoid "absolute-value" warning from clang 3.6.Neil2-2/+3
2015-03-05Updates for 3.5.4.rel-3-5-4Neil1-1/+1
2015-01-26Use QElapsedTimer::nsecsElapsed for more accurate measurement of durations.Neil1-6/+14
2015-01-14Preparing for version 3.5.3.Neil1-1/+1
2014-12-03Qt >= 5.3 has reverted to the 4.x handling of double click events. UndoesNeil1-6/+0
change set [6b9cc8].
2014-11-29Updates for 3.5.2 release.Neil1-1/+1
2014-10-10Ensure can see standard exceptions and so build.Neil1-0/+1
2014-09-25Updating for 3.5.1.Neil1-1/+1
2014-09-12Allow choice between windowed and inline IME.Neil1-0/+6
2014-08-09Getting ready to release 3.5.0.Neil1-1/+1
2014-08-06Bug [#1634]. Set qt list icon size to largest icon. Also adds padding on OS X.Neil1-4/+40
2014-07-15Implement separate timers for each type of periodic activity and turn them ↵Neil Hodgson2-26/+50
on and off as required. This saves power as there are fewer wake ups. A tolerance value is provided so that platforms that support coalescing timers, Windows 8+ and OS X 10.9+, can use them. The previous global 100 millisecond timer may still be used by non-core platforms.
2014-07-08Split out EditModel, MarginView, and EditView classes into separate files.Neil2-0/+6
2014-06-30Making ready for 3.4.4.Neil1-1/+1
2014-05-26Updates for 3.4.3 release.rel-3-4-3Neil1-1/+1
2014-01-20Fix typos in comments (qt)Stefan Weil2-3/+3
2014-05-16Updates for 3.4.2 release.Neil1-1/+1
2014-05-02Use exact SciFnDirect function signature for DirectFunction as earlier versionNeil2-3/+3
depended on undefined behaviour.
2014-05-01Use explicit call as implicit conversion operator does not work in context.Neil1-1/+1
2014-05-01Consolidate insertion for paste into Editor class and perform line endNeil1-12/+4
conversion in Editor.
2014-03-28Updating vesion number for next release.Neil1-1/+1
2014-03-18Updating to get ready for 3.4.0.Neil1-1/+1
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.Neil3-11/+11
2014-02-10Bug [#1575]. On Qt 5.x double click treated as triple click.Neil1-0/+6
From Mike M.
2014-01-31Update for 3.3.9.rel-3-3-9Neil1-1/+1
2014-01-24Updates for 3.3.8.Neil1-1/+1
2013-12-05Updates for 3.3.7.Neil1-1/+1
2013-10-31Fix drawing of scrollbars, where previous contents were not drawn over.Neil1-1/+1
From John Ehresman.
2013-10-18Fix Window::GetMonitorRect when top left of screen is not 0,0.Neil1-2/+1
From John Ehresman.