| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2014-06-16 | Fix crashes on Ubuntu 12.04 caused by overlay scrolll bar causing the drawing | Neil | 1 | -0/+7 | |
| surface to be finished. | |||||
| 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-24 | Removing style byte indicators. | Neil | 1 | -61/+17 | |
| 2014-01-20 | Fix typos in comments (src) | Stefan Weil | 1 | -4/+4 | |
| 2014-05-12 | Split variable into two as used for different reasons. Use unsigned to avoid | Neil | 1 | -5/+4 | |
| possibility of sign extension problems and to minimize type conversions. | |||||
| 2014-05-03 | Replacing the int-based constructors for Point and PRectangle with FromInts | Neil | 1 | -20/+20 | |
| 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 | -378/+386 | |
| 2014-05-03 | Using casts and an alternate PRectangle constructor to make XYPOSITION <-> int | Neil | 1 | -3/+4 | |
| conversions and other conversions more consistent. | |||||
| 2014-05-03 | Convenience Point constructor from integers as common source of shapes. | Neil | 1 | -3/+3 | |
| 2014-05-03 | Move RoundXYPosition to global header to enable use in more modules. | Neil | 1 | -4/+0 | |
| 2014-05-01 | Consolidate insertion for paste into Editor class and perform line end | Neil | 1 | -3/+36 | |
| conversion in Editor. | |||||
| 2014-04-29 | Fix some warnings instead of relying upon #pragma to hide them | Neil | 1 | -1/+1 | |
| 2014-04-22 | Bug [#1593]. Fix drawing bug on Cocoa where previous caret lines were visible | Neil Hodgson | 1 | -4/+5 | |
| due to using the visible area instead of the whole drawing area. | |||||
| 2014-04-22 | Hoisting some calculations into classes: ContractionState::DisplayLastFromDoc | Neil Hodgson | 1 | -26/+18 | |
| Range::First and Range::Last. Changing Editor::RectangleFromRange arguments to a Range. Simplifying code and specifying some local variables as const. | |||||
| 2014-04-21 | View line state in margin with SC_FOLDFLAG_LINESTATE as an aid to debugging. | Neil | 1 | -8/+13 | |
| 2014-04-16 | Allow filtering of insertions. | Neil | 1 | -84/+110 | |
| 2014-04-15 | Bug [#1592]. Fix bug where caret remained invisible when period set to 0. | Neil | 1 | -1/+9 | |
| 2014-03-28 | Displaying Unicode line ends as [LS], [PS], and [NEL] blobs. | Neil | 1 | -4/+12 | |
| 2014-03-27 | Improve scrolling by performing styling in methods called before drawing ↵ | Neil Hodgson | 1 | -3/+17 | |
| instead of inside drawing which then caused the drawing to be abandoned, and black blocks to appear on-screen. Discard responsive scrolling overdraw when that overdrawn content is invalid. Style just the visible area instead of the whole document when styling changes run beyond painting area. | |||||
| 2014-03-26 | Bug [#1588]. Round caret positions to the pixel grid instead of truncating. | Neil | 1 | -4/+8 | |
| This may move the caret to the right 1 pixel in some situations. While sometimes this appears a little worse, on average it is slightly better than the precious code, with carets appearing inside the previous character less often. | |||||
| 2014-03-25 | Bug [#1586]. Automatic indentation wrong when caret in virtual space. | Neil | 1 | -0/+1 | |
| 2014-03-18 | Minor tweaks to avoid ststic checking warnings. | Neil | 1 | -1/+1 | |
| 2014-02-26 | Refactor methods for converting screen points to and from document index, ↵ | Neil | 1 | -78/+33 | |
| moving code from Editor to LineLayout. | |||||
| 2014-02-02 | Added wrap mode SC_WRAP_WHITESPACE which only wraps on whitespace, not on ↵ | Neil | 1 | -1/+1 | |
| style changes. From Robert Gieseke. | |||||
| 2014-01-21 | Added ELEMENTS macro and use it to clarify determining size of arrays. | Neil Hodgson | 1 | -3/+4 | |
| 2014-01-13 | Send SCN_UPDATEUI with SC_UPDATE_SELECTION for Shift+Tab inside text. | Neil | 1 | -0/+1 | |
| 2013-12-27 | Ensure caret is visible after scroll. | Neil | 1 | -2/+2 | |
| 2013-12-22 | Avoid unsafe strcpy, strncpy, and strcat replacing with safer functions which | Neil | 1 | -41/+26 | |
| guaranty termination where possible. | |||||
| 2013-12-17 | Added DropSelectionN API. | Neil | 1 | -0/+5 | |
| 2013-12-15 | Make single argument constructors explicit to avoid unexpected conversions. | Neil | 1 | -3/+3 | |
| 2013-12-15 | Format normalization - whitespace and braces made consistent. | Neil | 1 | -8/+8 | |
| Parameter names added to method declarations. | |||||
| 2013-12-10 | Bug [#1562]. Clickable area of hotspots was off by half a character width. | Christian Walther | 1 | -9/+13 | |
| 2013-12-03 | Bug [#1560]. Fix missing second one of adjacent indicators. | Christian Walther | 1 | -1/+4 | |
| When there are two adjacent instances of the same indicator (but with different values), only the first of them was drawn. This is because when attempting to skip the gap between the first and second indicator, Editor::DrawIndicators would skip whatever run was there without checking whether it was actually a gap or already the next indicator. | |||||
| 2013-11-03 | Report control key as SCI_META for mouse down events for GTK+ on OS X. | nyamatongwe | 1 | -28/+62 | |
| Also enables more flexibility with modifier keys. | |||||
| 2013-10-23 | Widen scroll width for annotations. | Neil | 1 | -7/+12 | |
| 2013-09-30 | Added FocusIn and FocusOut notification events (SCN_FOCUSIN/SCN_FOCUSOUT) to be | Neil | 1 | -1/+5 | |
| used in preference to the SCEN_SETFOCUS and SCEN_KILLFOCUS command events. | |||||
| 2013-09-25 | Feature [feature-requests:#1021]. Cocoa SCI_POSITIONFROMPOINTCLOSE returning ↵ | nyamatongwe | 1 | -0/+3 | |
| invalid position. | |||||
| 2013-09-22 | Avoid attempt to redraw an empty area. | nyamatongwe | 1 | -0/+2 | |
| 2013-09-10 | Use C++ struct initialization {} so can drop -Wno-missing-braces setting for ↵ | Neil | 1 | -17/+17 | |
| gcc. | |||||
| 2013-08-20 | Added PositionRelative to optimize navigation by character. | Neil | 1 | -0/+3 | |
| 2013-08-20 | Fix bug where coordinates were relative to the text view instead of the ↵ | nyamatongwe | 1 | -5/+9 | |
| whole view. | |||||
| 2013-08-15 | Feature: [feature-requests:#1007]. Option to allow mouse selection to | Neil | 1 | -1/+16 | |
| switch to rectangular by pressing Alt after start of gesture. From Neomi. | |||||
| 2013-08-12 | Feature: [feature-requests:#1007]. Fix bugs with redrawing selection. | Neil | 1 | -0/+2 | |
| From Neomi. | |||||
| 2013-08-09 | Structure colour settings into ColourOptional and ForeBackColours types. | Neil | 1 | -54/+46 | |
| 2013-08-09 | Move wrapping, edge and visual adjustments from Editor to ViewStyle. | Neil | 1 | -87/+73 | |
| Move printing parameters into a separate struct. | |||||
| 2013-08-08 | Bug [#1512]. Fix bug with horizontal caret position when margin changed. | Neil | 1 | -0/+2 | |
| From Neomi. | |||||
| 2013-08-08 | Move functionality from Editor to ViewStyle. | Neil | 1 | -167/+156 | |
| 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 | Bug [#1511]. Ensure representation set up initially. | Neil | 1 | -0/+2 | |
| 2013-08-07 | Optimize performance with many control characters such as when opening | Neil | 1 | -129/+101 | |
| a binary file. Simplify use of BreakFinder and use for layout as well as drawing. | |||||
| 2013-08-07 | Removed dead code. | Neil | 1 | -17/+0 | |
