| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2019-04-28 | Backport: Declare reading methods as noexcept where reasonable. | Neil | 1 | -1/+1 | |
| Backport of changeset 7482:340b721ecdf4. | |||||
| 2019-03-31 | Backport: Use generic versions of ceil, floor, round, lround, trunc from ↵ | mitchell | 1 | -4/+4 | |
| <cmath>. Backport of changeset 7329:2662ef098d93, but without std::round and std::lround, since older Mac OSX SDKs may not have them. | |||||
| 2018-10-11 | Backport: Replace NULL and 0 with nullptr in clear cases of pure C++ code. | Neil | 1 | -2/+2 | |
| Backport of changeset 7111:e3cecaf6bd37. | |||||
| 2018-06-21 | Backport: Removed condition which is always true. | Neil | 1 | -2/+1 | |
| Backport of changeset 7057:dca791f48306. | |||||
| 2018-05-22 | Backport: Add INDIC_GRADIENT and INDIC_GRADIENTCENTRE indicator types. | Neil | 1 | -0/+21 | |
| Backport of changeset 6966:872900d3ceb0. | |||||
| 2018-05-25 | Backport: Modernize Platform.h (3) - update Surface to delete WidthChar, use ↵ | mitchell | 1 | -1/+2 | |
| size_t for Polygon and delete the standard copy and assignment methods. Backport of changeset 6940:89fd29243232. | |||||
| 2018-05-01 | Backport: Add IntegerRectangle to simplify drawing lines without casting. | Neil | 1 | -41/+46 | |
| Backport of changeset 6773:9a027c16f8c3. | |||||
| 2018-05-01 | Backport: Use round and floor instead of casts. | Neil | 1 | -2/+2 | |
| Backport of changeset 6771:d0170ad7383b. | |||||
| 2018-04-20 | Backport: Undo part of last change as Xcode Clang doesn't like assigning ↵ | Neil Hodgson | 1 | -5/+5 | |
| long to int without cast. Backport of changeset 6717:2fec6b5183b7. | |||||
| 2018-04-20 | Backport: Use standard lround function and remove some casts. | Neil | 1 | -5/+7 | |
| Backport of changeset 6715:6f2eebd823c8. | |||||
| 2018-04-19 | Backport: Use ColourDesired constructor explicitly to make more obvious. | Neil | 1 | -1/+1 | |
| Constructor not marked explicit as may be used in external platform layers. Backport of changeset 6706:73c8bc321f62. | |||||
| 2018-03-01 | Backport: Mark variables as const where simple. | Neil | 1 | -7/+7 | |
| Backport of changeset 6470:d78a4b522662. | |||||
| 2017-09-11 | Backport: The Scintilla namespace is always active for internal symbols and ↵ | Neil | 1 | -2/+0 | |
| for the lexer and document interfaces. Backport of changeset 6388:d62863ae40a3. | |||||
| 2017-06-09 | Backport: Use min and max from std instead of own version from platform. | Neil | 1 | -3/+4 | |
| Backport of changeset 6297:4bf96081f6e6. | |||||
| 2017-04-22 | Include <memory> for std::unique_ptr. | Neil | 1 | -0/+1 | |
| 2017-04-07 | Prefer C++ static cast over C-style casts. | Neil | 1 | -3/+4 | |
| 2017-04-06 | Added const where possible. | Neil | 1 | -1/+1 | |
| 2016-10-26 | INDIC_POINT and INDIC_POINTCHARACTER indicators added to display small arrows | Neil | 1 | -1/+14 | |
| underneath positions or characters. | |||||
| 2015-11-20 | Remove line end whitespace. | Neil | 1 | -1/+1 | |
| 2015-07-04 | Make std::exception visible to all core code to remove chance that a different | Neil | 1 | -0/+1 | |
| tool set will not indirectly include <stdexcept>. | |||||
| 2015-02-15 | Add SC_INDICFLAG_VALUEFORE and INDIC_TEXTFORE to allow a wide range of indicator | Neil | 1 | -2/+8 | |
| colours and to change the colour of text. | |||||
| 2015-02-10 | Add INDIC_FULLBOX. | Neil | 1 | -2/+5 | |
| 2015-02-04 | Implement hover style and colour for indicators. | Neil | 1 | -27/+32 | |
| 2015-01-22 | Add INDIC_COMPOSITIONTHIN indicator. | Neil | 1 | -0/+3 | |
| 2014-06-22 | Drawing and measuring should not change ViewStyle which is set by the container | Neil | 1 | -1/+1 | |
| so mark ViewStyle parameters as const. Provide a FontAlias copy constructor and use it to work around non-const Font arguments to Surface when sourced from const ViewStyle. | |||||
| 2014-05-24 | Header include statements are now in a standardised order with that order | Neil | 1 | -1/+1 | |
| defined in scripts/HeaderOrder.txt. | |||||
| 2014-05-03 | Replacing the int-based constructors for Point and PRectangle with FromInts | Neil | 1 | -2/+2 | |
| static methods as there were too many failures with mixed types and not-quite matching types. | |||||
| 2014-05-03 | Turn on MSVC 'possible loss of data' warnings and add explicit casts. | Neil | 1 | -34/+34 | |
| 2014-05-03 | Using casts and an alternate PRectangle constructor to make XYPOSITION <-> int | Neil | 1 | -1/+1 | |
| conversions and other conversions more consistent. | |||||
| 2013-04-16 | Add indicator INDIC_COMPOSITIONTHICK, a thick low underline, to mimic an | nyamatongwe | 1 | -0/+3 | |
| appearance used for Asian language input composition. | |||||
| 2012-08-05 | Avoid poor drawing at right of INDIC_SQUIGGLE. | nyamatongwe | 1 | -7/+13 | |
| 2012-08-05 | Align INDIC_DOTBOX to pixel grid for full intensity. | nyamatongwe | 1 | -3/+2 | |
| 2012-08-05 | Add INDIC_SQUIGGLEPIXMAP as a faster version of INDIC_SQUIGGLE. | nyamatongwe | 1 | -0/+24 | |
| Based on work by Matthew Brush and Lex Trottman. | |||||
| 2012-07-21 | Scale factor implemented for RGBAImages to allow for high definition markers ↵ | nyamatongwe | 1 | -1/+1 | |
| on retina displays. | |||||
| 2011-11-14 | Removed warning suppression that had been included for Visual C++ 6.0. | nyamatongwe | 1 | -4/+0 | |
| 2011-09-25 | Palette support removed. | nyamatongwe | 1 | -5/+5 | |
| 2011-07-21 | Added dotted box indicator. | nyamatongwe | 1 | -0/+29 | |
| 2011-06-18 | Added INDIC_SQUIGGLELOW. Bug #3314591. | nyamatongwe | 1 | -0/+11 | |
| From Thomas Linder Puls. | |||||
| 2011-06-02 | Added new indicators: dashed and dotted underlines. | nyamatongwe | 1 | -0/+14 | |
| 2011-05-04 | INDIC_STRAIGHTBOX added to indicators. Bug #3290435. | nyamatongwe | 1 | -2/+2 | |
| From Marko Njezic. | |||||
| 2011-04-22 | INDIC_ROUNDBOX can set alpha of outline. Feature #3290434. | nyamatongwe | 1 | -1/+1 | |
| From Marko Njezic. | |||||
| 2009-02-14 | Feature #2586290 INDIC_ROUNDBOX alpha transparency setting from Todd | nyamatongwe | 1 | -1/+1 | |
| Whiteman of ActiveState. | |||||
| 2007-06-01 | integrate OS X support for scintilla. a big patch with a little commit ↵ | scaraveo | 1 | -0/+4 | |
| message :) - now uses namespaces (optionally for non-os x) to avoid conflicts with OS X libraries - several fixes in the OS X layer since the branch was commited in 2005 - used in Komodo since 2005, so pretty stable | |||||
| 2006-02-26 | Translucency implementation for INDIC_ROUNDBOX and caret line. | nyamatongwe | 1 | -0/+6 | |
| 2003-08-14 | Added BOX indicator. | nyamatongwe | 1 | -1/+7 | |
| 2003-07-26 | Invisible indicator INDIC_HIDDEN. | nyamatongwe | 1 | -0/+2 | |
| 2001-02-24 | Updated documentation comments from Philippe. | nyamatongwe | 1 | -1/+3 | |
| 2001-01-28 | Updating copyright notices for 2001. | nyamatongwe | 1 | -1/+1 | |
| 2000-05-10 | Added underline attribute to styles. | nyamatongwe | 1 | -0/+16 | |
| Added diagonal and strike-through indicators. | |||||
| 2000-03-08 | Initial revision | nyamatongwe | 1 | -0/+45 | |
