aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
AgeCommit message (Collapse)AuthorFilesLines
2020-04-09Backport: Typo.Zufu Liu1-1/+1
Backport of changeset 8132:98c63169ddef.
2020-04-08Backport: Removed superfluous space.Neil1-2/+0
Backport of changeset 8131:e9f3cb39afd1.
2020-04-08Backport: Feature [feature-requests:1344]. Add methods for iterating through ↵Iain Clarke1-0/+8
the marker handles and marker numbers on a line. Backport of changeset 8129:665c31051e3c.
2020-03-29Backport: Use correct wider types.Mitchell Foral1-4/+4
Backport of changeset 8095:55f5243a2594.
2020-02-05Backport: Bug [#2153]. Reorder and add separating new lines to ease downstream.Neil1-21/+39
Backport of changeset 8001:16b32ce4b801.
2020-02-05Backport: Spelling and grammar in comment.Neil1-1/+2
Backport of changeset 7974:1c2ef1972813.
2020-01-18Backport: Fix line end whitespace.Neil1-1/+1
Backport of changeset 7954:b98f1fd11e62.
2020-01-04Backport: Added Raku lexer and style properties and example filesmitchell1-0/+32
Backport of changeset 7900:bcb95162cd06.
2019-11-15Backport: Feature [feature-requests:#1316] Allow target to have virtual space.Neil1-0/+12
Backport of changeset 7768:5d73aa55a6ee.
2019-11-15Backport: Feature [feature-requests:#1316] Add access to virtual space at ↵Neil1-0/+6
start and end of multiple selections. Backport of changeset 7767:80102fe650b2.
2019-12-06Backport: Feature [feature-requests:#1324] Add Hollywood lexer.mitchell1-0/+18
Backport of changeset 7761:abba8b1c6f4a.
2019-07-05Backport: Bug [#2118]. Add TabMinimumWidth property to API so applications ↵Neil1-0/+6
can display overviews or minimaps with reasonable layout. Backport of changeset 7700:e6efe007d2dc.
2019-07-11Backport: Bug [#2038]. Source of input reported in SCN_CHARADDED.mitchell1-1/+10
This may be SC_CHARACTERSOURCE_DIRECT_INPUT, SC_CHARACTERSOURCE_TENTATIVE_INPUT, or SC_CHARACTERSOURCE_IME_RESULT. Backport of changeset 7613:4cfac35c71bd.
2019-06-22Backport: Bug [#1924]. Option to allow block carets to trail selection ranges.Neil1-1/+2
Bit flag value is CARETSTYLE_BLOCK_AFTER=256. Backport of changeset 7609:340a0f51fb3c.
2019-06-22Backport: Feature [feature-requests:#1297] Updates to types of LineScroll,Zufu Liu1-5/+5
[Set]MarginTypeN, and [Set]MarginCursorN. Backport of changeset 7596:a5bcfd494606.
2019-06-22Backport: Feature [feature-requests:#1297] Tweak aliases so that acronyms ↵Neil1-7/+5
longer than 2 characters are treated as words and are also good SNAKE_CASE. This is consistent with coding guidelines such as from Google and Microsoft. https://google.github.io/styleguide/cppguide.html#General_Naming_Rules Backport of changeset 7592:d96faf819aba.
2019-06-18Backport: Feature [feature-requests:#1297] 7: Add value aliases for ↵Neil1-1/+164
PascalCase constants. For example, FolderEnd instead of Folderend. Could also be used for a snake_case option if desired. Backport of changeset 7590:723866698fd8.
2019-06-18Backport: Feature [feature-requests:#1297] 6: Add enumeration types to APIs.Neil1-122/+123
Backport of changeset 7588:3a1f64ccb9a8.
2019-06-18Backport: Feature [feature-requests:#1297] 5: Separate IndicatorNumbers from ↵Neil1-5/+16
IndicatorStyle. Deprecate INDIC?_MASK as they depended on old style-byte indicators so are no longer valid. Backport of changeset 7587:fa37b07baf0e.
2019-06-18Backport: Feature [feature-requests:#1297] 4: Add enu for IndicValue and ↵Neil1-0/+5
UndoFlags to gather their values into a type. Add _NONE values for 3 enumerations to make using them simpler. Backport of changeset 7586:d1d3da2c2d91.
2019-06-18Backport: Feature [feature-requests:#1297] 4: Comment added for SC_MASK_FOLDERS.Neil1-0/+1
Backport of changeset 7585:db2f08dff38e.
2019-06-18Backport: Feature [feature-requests:#1297] 3: Add pointer type.Neil1-11/+12
Backport of changeset 7581:777afc17036d.
2019-06-18Backport: Feature [feature-requests:#1297] 2: Replace int with position or ↵Neil1-118/+119
line where that is more accurate. This helps define where 64-bit values may be passed for huge files. Backport of changeset 7577:e9132d4f7fad.
2019-07-11Backport: Feature [feature-requests:#1295]. Lexer added for DataFlex.mitchell1-0/+18
Backport of changeset 7569:ab69548334b7, but with custom `_strnlen` function since `strnlen` is not part of the C or C++ standard.
2019-06-02Backport: GTK+ was renamed to GTK in February 2019 so update documentation ↵Neil1-2/+2
to new name. Backport of changeset 7545:69f78ccbfc4b.
2019-05-27Backport: Feature [feature-requests:#1280]. Lexer added for X12.mitchell1-0/+12
Backport of changeset 7486:a99fa007805f, but with LexerX12::Terminator struct definition not having default values, which is a C++14 feature.
2019-04-07Backport: Feature [feature-requests:#1276]. Add SC_MARK_VERTICALBOOKMARK.Zufu Liu1-0/+1
Backport of changeset 7407:fc237c9afcdd.
2019-04-05Backport: Feature [feature-requests:#1272]. Add API to set default fold ↵Neil1-0/+6
display text. Backport of changeset 7400:9fcb52fdb307.
2019-03-31Backport: Feature [feature-requests:#1272]. Add FoldDisplayTextGetStyle to matchZufu Liu1-1/+4
FoldDisplayTextSetStyle. Backport of changeset 7394:8fe3c581aeb9.
2019-04-16Backport: Feature [feature-requests:#1259]. Add ↵mitchell1-0/+6
SCI_SETCHARACTERCATEGORYOPTIMIZATION API to optimize speed of character category features. Backport of changeset 7392:2832adedd0f4, but with added includes for Sci::clamp().
2019-03-09Backport: Feature [feature-requests:#1265]. Common Intermediate Language ↵mitchell1-0/+14
(CIL) lexer. Backport of changeset 7283:aaeca7f7cf9d.
2019-02-05Backport: Feature [feature-requests:#1217]. Change API so block just for ↵Zufu Liu1-1/+3
overstrike. Backport of changeset 7249:06b6a93d8e3f.
2019-02-02Backport: Feature [feature-requests:#1217]. Implement CARETSTYLE_BLOCK_ALWAYS.Zufu Liu1-0/+1
Backport of changeset 7248:aba09a1c7c63.
2018-11-21Backport: Feature [feature-requests:#1242]. Add lexer for NimJad Altahan1-0/+20
Backport of changeset 7173:3e6cf75864cc.
2018-10-11Backport: Add SCI_SETCOMMANDEVENTS API to allow turning off command events.Neil1-0/+6
This can reduce the time taken to fold a document by half. Backport of changeset 7110:09c647755bed.
2018-09-30Backport: Synchronize definition and documentation.Neil1-1/+1
Backport of changeset 7102:927e7d62e917.
2018-07-10Backport: Optional indexing of line starts in UTF-8 documents by UTF-32 code ↵Neil1-2/+28
points and UTF-16 code units added. Converted instances of C++17 std::string_view to C++11. Also used const_casts where appropriate to fix compile errors. Backport of changeset 7063:0d5edc93e280.
2018-06-21Backport: Feature [feature-requests:#1185]. Add lexers for SAS and Stata.Luke Rasmussen1-0/+34
Backport of changeset 7056:974bc87e0696.
2018-06-06Backport: SC_WRAPINDENT_DEEPINDENT added to indent two tabs from previous line.Henrik Hank1-0/+1
Backport of changeset 7024:72c92ed3dc10.
2018-05-28Backport: Add styles for diffs containing patches.Andreas Rönnquist1-0/+4
Backport of changeset 7004:a1f932ccdee6.
2018-05-22Backport: Add INDIC_GRADIENT and INDIC_GRADIENTCENTRE indicator types.Neil1-0/+2
Backport of changeset 6966:872900d3ceb0.
2018-04-19Backport: SC_PRINT_SCREENCOLOURS doesn't force the background colour of line ↵Nicholai Benalal1-0/+3
numbers white. Backport of changeset 6700:daa126b86c17.
2018-05-05Backport: Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than ↵mitchell1-3/+7
2 GigaBytes. This option is provisional and experimental. Backport of changesets 6696:9729ff36c5b1 and 6723:cffe824ab55e. Also added '#include <cstddef>' to top of src/RESearch.cxx to fix 32-bit build error.
2018-03-06Backport: Feature [feature-requests:#1210]. Maxima lexer added.Gunter Königsmann1-0/+11
Backport of changeset 6474:7a2aeece58b6.
2018-02-02Backport: Implement SC_DOCUMENTOPTION_STYLES_NONE.Neil1-0/+1
Backport of changeset 6448:431b814a54a6.
2018-01-26Backport: Add documentOption argument to SCI_CREATELOADER.Neil1-2/+5
Backport of changeset 6441:92c8f0f1b3e6.
2017-11-20Backport: Add SCI_GETMOVEEXTENDSSELECTION.Mitchell Foral1-0/+3
Backport of changeset 6418:85205da6ec1b.
2017-10-23Backport: Document style metadata APIs.Neil1-3/+3
Backport of changeset 6405:0849bae316da.
2017-08-25Backport: Moved *StyleBits* APIs into deprecated category.Neil1-11/+11
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.