aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
AgeCommit message (Collapse)AuthorFilesLines
2018-03-06Backport: Feature [feature-requests:#1210]. Maxima lexer added.Gunter Königsmann2-0/+20
Backport of changeset 6474:7a2aeece58b6.
2018-02-02Backport: Implement SC_DOCUMENTOPTION_STYLES_NONE.Neil2-0/+2
Backport of changeset 6448:431b814a54a6.
2018-01-26Backport: Add documentOption argument to SCI_CREATELOADER.Neil2-2/+6
Backport of changeset 6441:92c8f0f1b3e6.
2017-11-20Backport: Add SCI_GETMOVEEXTENDSSELECTION.Mitchell Foral2-0/+4
Backport of changeset 6418:85205da6ec1b.
2017-10-23Backport: Document style metadata APIs.Neil1-3/+3
Backport of changeset 6405:0849bae316da.
2017-09-11Backport: The Scintilla namespace is always active for internal symbols and ↵Neil2-12/+0
for the lexer and document interfaces. Backport of changeset 6388:d62863ae40a3.
2017-08-28Backport: New header ILoader.h defines ILoader interface as it does not ↵Neil3-14/+27
belong in ILexer.h. Backport of changeset 6383:9c8257ff60b7.
2017-08-25Backport: Moved *StyleBits* APIs into deprecated category.Neil2-14/+15
Backport of changeset 6379:b44bb3627bbd.
2017-08-11Backport: Stopped treating SC_TECHNOLOGY_DIRECTWRITERETAIN and ↵Neil1-1/+1
SC_TECHNOLOGY_DIRECTWRITEDC as provisional. Backport of changeset 6371:fde8223ca36c.
2017-08-02Backport: Improve description of HideSelection.rhkramer1-1/+1
Backport of changeset 6363:a56da7a004b4.
2017-07-17Backport: Implement style metadata for some languages.Neil1-1/+5
Add some helper methods to SubStyles for finding style metadata of substyles. Backport of changeset 6349:f350a2543488.
2017-06-22Backport: Add style metadata methods with null implementations.Neil3-1/+28
Backport based on changesets 6345:faecbd0078e5 and 6346:72bd27f81477.
2017-07-13Backport: Update typedefs used for lexing.Neil1-2/+4
Backport of changeset 6344:59732c65082d.
2017-07-09Backport: Bug [#1955]. The data parameter to ILoader::AddData made const.Justin Dailey1-1/+1
Backport of changeset 6340:52f12c3eebcd.
2017-06-12Backport: Removed unused functions and methods from Platform.h.Neil1-26/+1
Replaced Platform::Clamp with Sci::clamp. Drop MouseButtonBounce workaround for very early GTK+/Linux. Backported from changeset 6307:7030530a9a0f.
2017-06-11Backport: Implement SCN_AUTOCSELECTIONCHANGE notification.Neil3-1/+16
Backported from changeset 6306:7e28cdba6d61.
2018-03-11Added optional Lua lexer support.mitchell2-0/+2
This support is disabled by default and must be enabled via compile-time option.
2017-04-07Prefer C++ static cast over C-style casts.Neil1-1/+1
2017-04-07Allowing assigning Windows and ensure cursorLast is initialized.Neil1-0/+8
2017-04-06Added const where possible.Neil1-1/+1
2017-04-06Added a caret line frame as an alternative visual for highlighting the caret ↵A-R-C-A2-0/+10
line.
2017-04-02Added "Reverse Selected Lines" as SCI_LINEREVERSE.Vicente2-0/+4
2017-03-07Bug [#1910]. Accessibility support may be queried and, on GTK+, disabled.Neil2-0/+14
2017-03-06New "indent" lexer styled as plain text but folded by indentation level.Vicente2-0/+2
2017-03-04Fix minor issues in interface definitions.Neil Hodgson1-5/+9
2017-02-12Bug [#1848]. Support Python f-strings with new styles.John Ehresman2-0/+8
2017-01-14Removed return type from AddSelection and SetSelection.Neil1-2/+2
2016-11-30Updated API to match conventions.Neil1-1/+1
2016-11-23Implementation of MarginRightClick event.Tse Kit Yam2-2/+12
2016-11-29Textual tags may be displayed on folded lines with SCI_TOGGLEFOLDSHOWTEXT.Tse Kit Yam2-0/+18
2016-11-25Feature [feature-requests:#1166]. EDIFACT lexer and folder added.Iain Clarke2-0/+21
2016-11-18Remove the Scintilla namespace from Scintilla.h.Neil1-9/+1
2016-11-16Change definition of uptr_t and sptr_t to use standardised types and headersNeil1-13/+12
instead of Win32 API types and basetsd.h when on Windows.
2016-11-16Removed elements that have been deprecated for more than 5 years.Neil2-16/+0
2016-11-16Deprecate non-branded struct names in Scintilla.h.Neil1-8/+6
2016-11-14Added alternate appearance for visible tabs which looks like a horizontal line.jedailey2-0/+15
2016-11-07Move warning suppression from global header to Qt platform layer header soNeil1-4/+0
warnings are visible for platform-independent code.
2016-10-26INDIC_POINT and INDIC_POINTCHARACTER indicators added to display small arrowsNeil2-0/+4
underneath positions or characters.
2016-09-29Increased compatibility between interface definition and documentation.Neil1-95/+96
Made parameter names and types more consistent. Document return types. Use more classes in documentation to facilitate scripting and styling.
2016-09-29The number of margins can be changed with SCI_SETMARGINS.Neil2-0/+8
2016-09-29Margin type SC_MARGIN_COLOUR and API SCI_SETMARGINBACKN added.Neil2-0/+10
Allows choosing any colour for a margin.
2016-09-27On Win32, mouse wheel scrolling can be restricted to only occur when the mouseStefan Küng2-0/+7
is within the window.
2016-09-23EDGE_MULTILINE and SCI_MULTIEDGEADDLINE added to allow displaying multipleA-R-C-A2-1/+11
vertical edges simultaneously.
2016-09-22Baan lexer changed significantly with more lexical states, keyword sets, andNeil2-0/+28
support for abridged keywords.
2016-09-21Feature [feature-requests:#1143]. Replace "progress" lexer with "abl".Yuval Papish2-65/+27
ILexer implementation Lexer can now correctly handle: "end triggers" phrase "last-event:function" phrase Indefinite comment level depth
2016-09-17Provide comments for each individual feature instead of group comments asNeil1-8/+41
this helps downstream use.
2016-09-12Fixed some enums in Scintilla.iface which may change bindings.Neil1-2/+2
2016-08-20Bug [#1648]: Option added to prevent left arrow movement and selection wrappingNeil2-0/+2
to previous line.
2016-05-17Enable g-ir-scanner to scan ScintillaObject signalsThomas Martitz2-3/+14
Currently, the ScintillaObject signals can't be used from python code via gobject-introspection. This is because g-ir-scanner does not properly scan the signals. For signals, there is the additional requirement that parameters have are registered GTypes. For the sci-notify signal, this can be accomplished by boxing SCNotification. In addition, g-ir-scanner also runs on Scintilla.h where it picks up additional structs. test/gi/ is updated accordingly. The test python script is enhanced to showcase the signals (some fixes to the makefile are included as well).
2016-05-17Backed out changeset: 89cda794d0dd as fixed changeset will be sent by author.Neil2-14/+3