Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-08-27 | Feature [feature-requests:#841] Remove hotspot from LineLayout and rely on | Zufu Liu | 1 | -3/+0 | |
reference to model. | |||||
2021-07-29 | Feature [feature-requests:#1413] Decrease cost of representation for \r\n. | Zufu Liu | 1 | -0/+8 | |
2021-06-10 | Use string_view for PositionCache methods. | Neil | 1 | -11/+6 | |
Replace custom hash code with standard library hash. Drop standard methods that are not needed. Restrict representations to 200 bytes. Improve documentation. | |||||
2021-06-10 | Don't divide input text into segments in PositionCache::MeasureWidths as text | Neil | 1 | -1/+1 | |
should already have been segmented into reasonable lengths. The Document argument is no longer needed. | |||||
2021-06-03 | Add APIs for setting appearance (traditional blob or plain text) and colour of | Neil | 1 | -7/+11 | |
representations and support setting a representation for the "\r\n" line end sequence. | |||||
2021-05-24 | Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h | Neil | 1 | -10/+4 | |
and ScintillaStructures.h using scoped enumerations. Use these headers instead of Scintilla.h internally. External definitions go in the Scintilla namespace and internal definitio0ns in Scintilla::Internal. | |||||
2021-05-07 | Use shared_ptr for LineLayoutCache as it simpifies lifetime management. | Neil | 1 | -5/+2 | |
AutoLineLayout and other code no longer needed so removed. | |||||
2021-05-07 | When resizing for Cache::page, move cached entries to correct positions. | Neil | 1 | -1/+1 | |
Hoist position calculation into EntryForLine method. | |||||
2021-05-07 | Add lineNumber_ argument to LineLayout constructor so always knows which line it | Neil | 1 | -1/+3 | |
is for. Add accessor for line number and method to say whether compatible with a line number and number of characters. Since LineLayout can report its line number, remove line argument from EditView::LayoutLine which simplifies calling it. | |||||
2021-04-05 | Extract unnamed caching enum as LineLayoutCache::Cache and change to enum class. | Neil | 1 | -9/+11 | |
2021-03-22 | Use XYPOSITION for xStart parameter as it is only passed as XYPOSITION. | Neil | 1 | -1/+1 | |
2021-03-19 | Switch enum to enum class. | Neil | 1 | -4/+5 | |
2021-03-17 | Change Font to an interface and stop using FontID. Fonts are shared and | Neil | 1 | -1/+1 | |
reference counted using std::shared_ptr. This optimizes memory and reduces potential for allocation bugs. | |||||
2020-09-18 | Fix building with Xcode 12 by defining move constructors for FontAlias, Style, | Neil | 1 | -1/+1 | |
and PositionCacheEntry. | |||||
2020-07-16 | Rename validLevel to ValidLevel and make an enum class. | Neil | 1 | -3/+3 | |
2020-06-11 | Use noexcept where safe and maintainable. | Neil | 1 | -13/+13 | |
2019-11-01 | Remove noexcept from allocating constructors as may throw on memory exhaustion. | Neil | 1 | -1/+1 | |
2019-03-03 | Use noexcept where reasonable. | Neil | 1 | -14/+14 | |
2019-01-06 | Bug [#2068]. Fix some clang-tidy warnings. | Zufu Liu | 1 | -1/+1 | |
2018-05-30 | Add TabPositionAfter method to IScreenLine as this calculation is needed on each | Neil | 1 | -0/+1 | |
platform and it allows extension to custom tab stops. | |||||
2018-05-24 | Fix warnings. Add const, constexpr, and noexcept. Initialize. Standard methods. | Neil | 1 | -5/+10 | |
Replace 0 and NULL with nullptr for COM, DirectWrite and least ambiguous cases. | |||||
2018-05-23 | Implement bidirectional mode bidiL2R for DirectDraw on Win32. | Neil | 1 | -0/+36 | |
2018-05-13 | When line end characters are displayed, indicators are drawn under/over them. | Neil | 1 | -2/+3 | |
2018-05-03 | Use Range and Position in more cases to avoid casts. | Neil | 1 | -2/+2 | |
2018-05-03 | Ensure all 4 byte characters will work in MapRepresentation by using ↵ | Neil | 1 | -1/+1 | |
unsigned int. Use variable assignments to avoid casts. | |||||
2018-04-28 | Delete standard functions on classes where there could be attempts to copy. | Neil | 1 | -0/+10 | |
2018-04-21 | Code improvements - noexcept and intialization. | Neil | 1 | -4/+4 | |
2017-09-11 | The Scintilla namespace is always active for internal symbols and for the lexer | Neil | 1 | -4/+0 | |
interfaces ILexer4 and IDocument. | |||||
2017-05-10 | Use unique_ptr fpr Partitioning, RunStyles, SparseVector, PositionCache and | Neil | 1 | -6/+6 | |
Document. | |||||
2017-04-21 | More consistent deletion of standard methods. | Neil | 1 | -2/+14 | |
2017-04-19 | Use =delete for unwanted functions. | Neil | 1 | -4/+4 | |
2017-04-07 | Use same parameter names in declarations and definitions. | Neil | 1 | -3/+3 | |
2017-04-06 | Added const where possible. | Neil | 1 | -1/+1 | |
2017-03-31 | Using Sci::Position and Sci::Line to mark variables that are document positions | Neil | 1 | -8/+8 | |
and lines. | |||||
2016-12-09 | Use double coordinates instead of float in some cases as float ran out of | Neil | 1 | -0/+17 | |
precision in long documents. This meant that individual lines could not be selected by mouse when the document exceeded 16.7 million lines. | |||||
2016-11-05 | Add options to choose between the locations of a position when there | Neil Hodgson | 1 | -1/+11 | |
are multiple locations for one position. The main current use is to find the location at the end of a line or display line when the commonly used location is at the start of the next line. | |||||
2015-02-15 | Add SC_INDICFLAG_VALUEFORE and INDIC_TEXTFORE to allow a wide range of indicator | Neil | 1 | -1/+1 | |
colours and to change the colour of text. | |||||
2014-07-23 | Avoid shadowed names mostly in method prototypes. Turn off shadow | Neil | 1 | -1/+1 | |
warnings for lexers since they may be maintained by others. | |||||
2014-07-08 | Split parts of Editor class off into EditModel, MarginView, and EditView ↵ | Neil | 1 | -3/+2 | |
classes. | |||||
2014-06-23 | Use Range type for hotspot to simplify manipulation. | Neil | 1 | -2/+1 | |
2014-06-22 | Stop storing a pointer to the selection on LineLayout objects where it may have | Neil | 1 | -2/+1 | |
a lifetime that is too long. Instead provide it as an argument to BreakFinder where it is only needed during intialisation. | |||||
2014-06-22 | Further use of const in layout and drawing. | Neil | 1 | -10/+10 | |
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 | Removing style byte indicators. | Neil | 1 | -2/+0 | |
2014-05-02 | Use unsigned int for calculating hash and secondary probe as overflow of signed | Neil | 1 | -1/+1 | |
int is undefined in C++. | |||||
2014-02-26 | Refactor methods for converting screen points to and from document index, ↵ | Neil | 1 | -0/+3 | |
moving code from Editor to LineLayout. | |||||
2013-12-15 | Make single argument constructors explicit to avoid unexpected conversions. | Neil | 1 | -2/+2 | |
2013-08-08 | Move functionality from Editor to ViewStyle. | Neil | 1 | -3/+6 | |
controlCharSymbol setting moved along with calculated fields for tab width and control symbols. Use of TextSegment simplified and variables made const where possible. | |||||
2013-08-07 | Optimize performance with many control characters such as when opening | Neil | 1 | -2/+12 | |
a binary file. Simplify use of BreakFinder and use for layout as well as drawing. | |||||
2013-07-23 | Only use map for character representations instead of unordered_map where ↵ | nyamatongwe | 1 | -5/+1 | |
possible. unordered_map caused too many porting problems. |