aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk
AgeCommit message (Collapse)AuthorFilesLines
2019-01-07Stop variable shadowing. This makes the code easier to understand and improvesNeil1-1/+1
performance very slightly.
2018-10-11Add SCI_SETCOMMANDEVENTS API to allow turning off command events.Neil1-3/+4
This can reduce the time taken to fold a document by half.
2018-06-02Define IScreenLineLayout as the main interface for implementing bidirectionalNeil1-13/+3
features by platform code. Implement IScreenLineLayout for Win32 / DirectWrite as ScreenLineLayout.
2018-05-23Add definitions for bidirectional support to Platform.h and provide emptyNeil1-0/+20
implementations for each platform.
2018-05-22Add GradientRectangle method to Surface to draw rectangles with vertical orNeil1-0/+27
horizontal gradients.
2018-05-14Fix warnings in debug assertions.Neil Hodgson1-3/+3
2018-05-14Modernize Platform.h (4) - update Surface to use string_view for text arguments.Neil2-48/+48
2018-05-14Modernize Platform.h (3) - update Surface to delete WidthChar, use size_t forNeil1-17/+5
Polygon and delete the standard copy and assignment methods.
2018-05-14Modernize Platform.h (2) - noexcept, const, constexpr.Neil1-3/+3
ColourDesired is an int instead of long for consistency over different platforms. Changes made to Point, PRectangle, and ColourDesired. RoundXYPosition removed.
2018-05-14Modernize Platform.h (1) - noexcept, const, standard methods.Neil2-10/+9
Changes made to FontParameters, Font, Window, ListBoxEvent, ListBox, Menu, DynamicLibrary, and Platform.
2018-05-14Include <string_view> to allow future use in Platform interface and Unicode.Neil3-0/+3
2018-05-02Decrease use of casts and replace reinterpret_cast with static_cast.Neil Hodgson4-26/+28
2018-05-01Updated dependencies.Neil Hodgson1-29/+31
2018-05-01Bug [#2012]. Use '0' instead of '0l'.Neil1-1/+1
2018-04-28Delete standard functions on classes where there could be attempts to copy.Neil1-0/+2
2018-04-26Update dependencies for ElapsedPeriod.Neil Hodgson1-15/+15
2018-04-26Use <chrono> for platform-independent timing and remove ElapsedTime.Neil1-22/+0
Also use #if for painting measurement as there are 7 sections of code to enable.
2018-04-25Use set of coercion functions for transforming WndProc parameters into pointers.Neil1-4/+4
2018-04-25Standardized signature of TargetAsUTF8 and EncodedFromUTF8.Neil2-6/+6
2018-04-05Backed out changeset: 7402342dc7a3 Caching client rectangle on EditView.Neil1-5/+5
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-5/+5
2018-03-24Removed unwanted include.Neil1-1/+1
2018-03-24Feature [feature-requests:#1212]. Move Unicode conversions into UniConversion.Zufu Liu3-35/+32
Move Unicode conversion functions UnicodeFromUTF8 and UTF8FromUTF32Character into UniConversion.
2018-03-22Feature [feature-requests:#1211]. Use pre-computed table for UTF8BytesOfLead.Zufu Liu1-1/+1
Friendlier treatment of invalid UTF-8. Add tests for UniConversion handling invalid UTF-8. Simplify UTF8Classify tests.
2018-03-21Fix some runtime warnings caused by previous change as wSelection created laterNeil Hodgson1-4/+4
and clients (such as SciTE's about box) may use API to set up text before window is realized.
2018-03-21Fix warnings about NULL selection widget by moving creation and destruction ofMitchell Foral1-4/+2
wSelection into the realize and unrealize handlers.
2018-03-16Remove line-end white space.Neil1-1/+1
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-03-08Create static library libscintilla.a or libscintilla.lib on Windows.Neil1-6/+7
Stop creating Lexers.a static library. Harmonize make files.
2018-03-06Feature [feature-requests:#1210]. Maxima lexer added.Gunter Königsmann1-0/+5
2018-01-28Allow C++17 in all build and project files.Neil1-1/+1
2017-11-21Update make dependencies due to splitting off ILoader.h.Neil Hodgson1-89/+107
2017-11-21Update marshalling of signals from Scintilla, changing deprecated NONE to VOID.Neil Hodgson3-42/+39
Has no effect on clients as NONE was an alias for VOID.
2017-09-11The Scintilla namespace is always active for internal symbols and for the lexerNeil6-26/+0
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-02Switch default modifier key for rectangular selections from Ctrl to Alt on ↵Neil Hodgson1-4/+0
Linux.
2017-07-29Bug [#1876]. Fix scrollbar and corner drawing and flickering of text.Neil Hodgson2-6/+36
2017-07-23Lexer style metadata uses arrays of struct literals but don't want noise ofNeil Hodgson1-2/+5
extra braces for each element so turn off warning.
2017-07-07Bug [#1949]. Fix drawing failure in wrap mode for GTK+ 2.x.Neil1-1/+2
2017-06-22Add a DefaultLexer class which lexers can subclass if they want reasonableNeil1-1/+1
default implementations of the ILexerWithSubStyles interface methods.
2017-06-12Remove old timer code in favour of the FineTicker* methods.Neil2-8/+0
2017-06-12Simplify mouse and keyboard handling by only retaining the 'WithModifiers" form.Neil1-5/+10
All events include a set of keyboard modifier flags. Older calls that passed individual parameters for each key were removed.
2017-06-12Back down from gnu++17 to gnu++14 so can build with g++ on current Ubuntu.Neil1-1/+1
2017-06-12Removed unused functions and methods from Platform.h.Neil2-101/+1
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-9/+31
2017-06-10Require GTK+ 2.24 or later. Removes support for earlier versions.Baldur Karlsson2-63/+0
2017-06-09Use min and max from std instead of own version from platform.Neil2-8/+8
2017-05-22Bug [#1946]. Builds are made with a sorted list of lexers to be more ↵Bernhard M. Wiedemann1-1/+1
reproducible.
2017-05-21Update make dependencies for GTK+.Neil1-63/+71
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.