aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt/ScintillaEditBase
AgeCommit message (Collapse)AuthorFilesLines
2013-09-04Turn off idle events on destruction.Neil1-0/+1
From John Ehresman.
2013-08-26Updated version number and description for next release.Neil1-1/+1
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-08-11Avoid QMacPasteboardMime on Qt >= 5.0 since it is not implemented yet.Neil Hodgson1-2/+2
Means rectangular clipboard operations will not work.
2013-08-10Backed out change #4739 for Qt 5 on OS X as the code was LGPL.Neil2-60/+0
2013-08-10Fix building qith Qt 5 on OS X.Neil2-0/+60
From Fan Yang.
2013-08-09Move wrapping, edge and visual adjustments from Editor to ViewStyle.Neil1-1/+1
Move printing parameters into a separate struct.
2013-07-26Avoid warnings for uninitialized fields.Unknown1-1/+1
2013-07-23Only use map for character representations instead of unordered_map where ↵nyamatongwe1-3/+0
possible. unordered_map caused too many porting problems.
2013-07-22Added the character representation feature.Neil1-0/+3
2013-07-15Updates for 3.3.4.Neil1-1/+1
2013-07-11Include case conversion data in Scintilla so that all platforms will performNeil3-35/+17
case conversion of Unicode text in accordance with Unicode.
2013-07-07Allow building with older versions of Visual C++ again.Neil1-3/+3
2013-07-07Include CharacterCategory in Qt projects.Neil1-0/+2
2013-06-25Specify paint device when creating QTextLayout. Fixes mis-layout of text whennyamatongwe1-1/+1
QApplication construction delayed. From John Ehresman.
2013-05-27Updated version numbers, date, and change log for 3.3.3.nyamatongwe1-1/+1
2013-05-26Switch SelectionText to use a std::string to hold the data and to provide ↵nyamatongwe2-7/+8
accessors to this data. Add a length argument to DropAt, although previous signature still available.
2013-05-16Updates for 3.3.2.nyamatongwe1-1/+1
2013-05-06Bug: [#1448]. Detect QT 5.x and add widgets to QT to allow building.Neil Hodgson1-0/+1
2013-05-04Replacing raw pointers and allocations with std::vector and std::string.nyamatongwe2-26/+20
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-02Removed variable which is no longer used due to change 4520.nyamatongwe1-1/+0
2013-05-01Set mouse tracking to false when widget is hiddenJohn Ehresman1-0/+3
2013-05-01Monitor rect's top right is not necessarily 0, 0John Ehresman1-10/+8
2013-05-01Removed SVector.h and all references as it is no longer used.nyamatongwe2-2/+0
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 Hodgson2-0/+4
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
2013-04-09Updating for 3.3.1.nyamatongwe1-1/+1
2013-03-27Updates for version 3.3.0.nyamatongwe1-1/+1
2013-02-22Prepare for 3.2.5.nyamatongwe1-1/+1
2013-01-11Prepare for 3.2.4.nyamatongwe1-1/+1
2012-10-17Incrementing version number for 3.2.3.nyamatongwe1-1/+1
2012-09-24Added autoCompleteCancelled signalJohn Ehresman2-0/+5
2012-08-27Incrementing version number for 3.2.2.nyamatongwe1-1/+1
2012-07-11Updates for next release 3.2.1.nyamatongwe1-1/+1
2012-07-02Ensure full initialised.nyamatongwe1-1/+1
2012-06-29Fix 64-bit compilation errors on Windows.nyamatongwe1-3/+3
From Fan Yang.
2012-05-29Updates for 3.2.0.nyamatongwe1-1/+1
2012-05-17Qt platform layer added. Based on an implementation from Jason Haslamnyamatongwe8-0/+3254
at Scientific Toolworks, Inc. with additions performed for Wingware.