aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt
AgeCommit message (Collapse)AuthorFilesLines
2018-04-26Remove cast that is not needed.Neil1-1/+1
2018-04-26Use <chrono> for platform-independent timing and remove ElapsedTime.Neil1-27/+0
Also use #if for painting measurement as there are 7 sections of code to enable.
2018-04-25Remove variables and casts that are not needed.Neil1-2/+2
2018-04-15Feature [feature-requests:#1215]. Stop warning about virtual call in destructor.Neil2-13/+20
2018-04-07Updates for 4.0.4.rel-4-0-4Neil2-2/+2
2018-04-05Backed out changeset: 7402342dc7a3 Caching client rectangle on EditView.Neil1-1/+1
This change was not compatible with Cocoa as it uses document-based coordinates rather than view-based.
2018-04-04Cache client rectangle on EditView so it can be used easily inside EditView.Neil1-1/+1
2018-03-28Change '.' to '->' as Document::decorations was changed to a pointer by last ↵Neil Hodgson1-4/+4
set.
2018-03-24Feature [feature-requests:#1212]. Move Unicode conversions into UniConversion.Zufu Liu1-1/+0
Move Unicode conversion functions UnicodeFromUTF8 and UTF8FromUTF32Character into UniConversion.
2018-03-22Feature [feature-requests:#1211]. Use pre-computed table for UTF8BytesOfLead.Zufu Liu1-16/+4
Friendlier treatment of invalid UTF-8. Add tests for UniConversion handling invalid UTF-8. Simplify UTF8Classify tests.
2018-03-16Remove line-end white space.Neil6-28/+28
2018-03-15Use forward class definitions of XPM and RGBAImage so only code that uses themNeil2-2/+0
needs to #include "XPM.h". Move definition of standard methods on LineMarker from header to implementation to reduce included text and further isolate use of XPM and RGBAImage.
2018-02-08Updating for 4.0.3.Neil2-2/+2
2018-02-02Implement SC_DOCUMENTOPTION_STYLES_NONE.Neil1-1/+1
2018-01-28Match declaration signature to definition signature.Neil1-1/+1
2018-01-28Allow C++17 in all build and project files.Neil3-4/+4
2017-10-26Updates for 4.0.2.rel-4-0-2Neil2-2/+2
2017-10-18Updates for 4.0.1 release.rel-4-0-1Neil2-2/+2
2017-09-11The Scintilla namespace is always active for internal symbols and for the lexerNeil10-45/+6
interfaces ILexer4 and IDocument.
2017-08-28New header ILoader.h defines ILoader interface as it does not belong in ↵Neil2-0/+2
ILexer.h.
2017-08-11Preparing for the 4.0.0 release.Neil2-2/+2
2017-08-02Switch default modifier key for rectangular selections from Ctrl to Alt on ↵Neil Hodgson1-4/+0
Linux.
2017-07-23Bug [#1959]. Avoid problems with changes with different versions of Qt.Neil Hodgson3-2/+7
2017-07-18Bug [#1959]. Eliminate extra layer in signal emission for document.Justin Dailey2-62/+21
2017-07-12Add include needed to build with Qt 5.7.1 on Fedora 26 Linux.Neil Hodgson1-0/+1
2017-07-12Bug [#1957]. Add focusChanged(bool focused) signal.Justin Dailey2-0/+9
2017-07-04Dropping files fires the SCN_URIDROPPED notification instead of inserting text.Justin Dailey4-5/+30
2017-07-01Include the 'updated' flags in the updateUi signal.Justin Dailey2-3/+2
Don't send updateUi for focus in.
2017-06-22Update IDocument for version 4. Drop IDocumentWithLineEnd interface to just haveNeil2-3/+3
IDocument but with all the methods from IDocumentWithLineEnd. This removes version checking (for now). Use dvRelease4 ID. Drop mask argument to StartStyling.
2017-06-22Add a DefaultLexer class which lexers can subclass if they want reasonableNeil2-0/+2
default implementations of the ILexerWithSubStyles interface methods.
2017-06-15Avoid warnings from G++ 7 for ScintillaEditPy in code generated by Shiboken.Neil1-1/+3
2017-06-14Use $$files instead of bare wildcard to support including in a parent project.Neil3-5/+6
2017-06-14Use same #if guard as other files.Neil1-0/+2
2017-06-12Remove old timer code in favour of the FineTicker* methods.Neil2-9/+0
2017-06-12Simplify mouse and keyboard handling by only retaining the 'WithModifiers" form.Neil2-11/+18
All events include a set of keyboard modifier flags. Older calls that passed individual parameters for each key were removed.
2017-06-12Removed unused functions and methods from Platform.h.Neil5-132/+16
Replaced Platform::Clamp with Sci::clamp but will later change this to std::clamp once on full C++17 compilers. Drop MouseButtonBounce workaround for very early GTK+/Linux.
2017-06-11Implement SCN_AUTOCSELECTIONCHANGE notification.Neil1-12/+26
2017-06-10Bug [#1947]. Reenable mouse tracking when the window is reshown.Baldur Karlsson1-0/+3
2017-05-23Updated for 3.7.5 release.Neil2-2/+2
2017-05-21Make SparseVector work with move-only types.Neil2-0/+2
Define UniqueString as a move-only string and use in a SparseVector for ContractionState. Remove SparseVector method specializations that are no longer needed.
2017-05-19Avoid explicit memory management.Neil1-3/+2
2017-04-19Use "override" for GTK+ and Qt platform layers.Neil5-125/+125
2017-04-15Avoid calling virtual functions in constructors and destructors.Neil2-3/+3
2017-04-07Use same parameter names in declarations and definitions.Neil3-9/+9
2017-04-01Standardize on C++ headers, remove headers that aren't needed and add <cstddef>Neil1-6/+7
where it may be needed in the future.
2017-03-31Hide decorations details a little.Neil1-1/+1
2017-03-31Using Sci::Position and Sci::Line to mark variables that are document positionsNeil3-7/+7
and lines.
2017-03-19Update for 3.7.4 release.Neil2-2/+2
2017-03-06Use several C++11 features as examples so problems with these features are seen.Vicente2-0/+2
Features used are move constructor, unique_ptr, deleted functions, enum class, lambda expression, and range for loop.
2017-03-05For IMEs, do not clear selected text when there is no composition text to show.johnsonj1-1/+4