aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2011-06-09Improved version of change set 3704. Bug #3312763.nyamatongwe2-25/+56
Make line selection word wrap aware but leave triple-click as selecting document line. From Marko Njezic.
2011-06-08Initialize visblePolicy and visibleSlop to fix bug #3303406.nyamatongwe1-0/+3
2011-06-07Call HiddenLines() only when needed.Marko Njezic1-1/+1
2011-06-06Fix line selection of wrapped lines. Bug #3312763.Marko Njezic2-25/+25
2011-06-07Add Find method on RunStyles.nyamatongwe2-0/+16
2011-06-07Fix bug with extra partition created when range filled.nyamatongwe1-0/+2
2011-06-07Add accessor to RunStyles for number of runs so Decoration can use public API.nyamatongwe3-4/+9
Make RunStyles internal methods private. RunFromPosition is const so marker as const.
2011-06-07Make SCN_NEEDSHOWN notification work when word wrap is enabled.nyamatongwe5-1/+23
This fixes the last remaining issue from bug #3291579. From Marko Njezic
2011-06-06Fix problem compiling on wxWidgets. Bug #3306156.nyamatongwe1-0/+3
From Morten MacFly.
2011-06-05Stop fonts leaking. Bug #3306156.nyamatongwe1-0/+1
From Marko Njezic.
2011-06-03Fix problem with typing over multiple consecutive selections. Bug #3309906.Marko Njezic1-14/+27
2011-06-02Added new indicators: dashed and dotted underlines.nyamatongwe1-0/+14
2011-06-02Fix warnings from an ignored modifier and character indices.nyamatongwe1-3/+3
2011-06-02Avoid warnings due to incomplete initialization.nyamatongwe1-2/+2
2011-05-25Code for wxWidgets did not compile so removing.nyamatongwe1-3/+0
2011-05-21Type safety.nyamatongwe1-2/+2
2011-05-21Code formatting normalised to standard.nyamatongwe3-6/+6
2011-05-21Move Selected Lines Up / Down. Feature #3304850.nyamatongwe2-0/+66
From Olivier Dagenais.
2011-05-13Break measurement of text into reasonable sized segments similarnyamatongwe5-50/+87
to drawing. Drawing will now always be broken up at a character boundary even when there is a large number of alphabetic characters. Fixes bug #3165743.
2011-05-04INDIC_STRAIGHTBOX added to indicators. Bug #3290435.nyamatongwe1-2/+2
From Marko Njezic.
2011-04-29Use indicators to show matching braces. Feature #3290434.nyamatongwe6-23/+81
From Marko Njezic.
2011-04-29Draw SC_IV_LOOKBOTH indent guides on first line if it is empty. Bug #3291317.nyamatongwe1-1/+2
From Marko Njezic.
2011-04-27Fixes for backwards regex search. Bug #3292659.nyamatongwe1-1/+8
From Marko Njezic.
2011-04-27Optimize fold marker highlight. Feature #3282649.nyamatongwe3-10/+15
From Jérôme LAFORGE.
2011-04-27Fix for fold markers not connecting. Bug #3292474.nyamatongwe1-1/+1
From Jérôme LAFORGE.
2011-04-27Fold marker fixes for wrapped lines. Bug #3291579.nyamatongwe2-5/+20
From Marko Njezic.
2011-04-22INDIC_ROUNDBOX can set alpha of outline. Feature #3290434.nyamatongwe3-2/+13
From Marko Njezic.
2011-04-16Better highlight drawing where fold header has no subordinates. Bug #3279730.nyamatongwe2-10/+13
From Jérôme LAFORGE.
2011-04-07Add highlighting of current folding block. Feature #3147069.nyamatongwe6-42/+290
APIs MarkerEnableHighlight and MarkerSetBackSelected. From Jérôme Laforge.
2011-04-07Update copyright year.nyamatongwe6-6/+6
2011-04-07Bug #3265401 changes to fold markers.nyamatongwe1-23/+28
Hide folding markers and indicator lines when a fold header does not have any subordinate lines to fold away. Do not contract an empty fold header when clicked on.
2011-04-05Avoid last cppcheck warning in Editor.cxx.nyamatongwe1-0/+2
2011-04-04Updates to documentation of notifications.nyamatongwe1-0/+1
Set the position field for SCN_USERLISTSELECTION and SCN_AUTOCSELECTION.
2011-04-02Fixed bug where the height of the default style was used rather than the ↵nyamatongwe1-4/+4
maximum.
2011-03-30Encapsulate the aliasing of Font IDs.nyamatongwe2-1/+6
2011-03-30Avoid clash with field 'ascent' between FontMeasurements and PLAT_WXnyamatongwe2-10/+11
version of Font.
2011-03-30Changed loop indices to be unique and so work with VC 6.nyamatongwe1-8/+8
2011-03-30Optimize font use by only allocating platform font resources for unique fontsnyamatongwe4-112/+217
and using aliases of these in the Style objects. Font measurement is also performed once for each unique font and the results copied into each style. No change is needed in callers. On PLAT_WX, the font ascent is cached in the Font object when Ascent is called but this is not copied into the aliases as ascent is protected. Therefore the code that copies the FontID into the alias also calls Ascent to ensure the ascent value is cached.
2011-03-17Avoid drawing alpha rectangles that extend well before the left of thenyamatongwe1-1/+1
window as that causes allocation of large buffers on some platforms.
2011-02-28Avoid shadowed variables as reported by Xcode.nyamatongwe2-7/+6
2011-02-20Avoid adding extra spaces to descriptions.nyamatongwe1-2/+0
2011-02-20Avoid some cppcheck warnings.nyamatongwe1-1/+1
2011-02-10Fix for backwards case-insensitive search in code page 936. Bug #3176271.nyamatongwe1-1/+5
Was not finding each occurance of a given string due to misaligned character access.
2011-02-07Lexer for Modula 2/3. From Dariusz Knoci?ski. Feature #3173374.nyamatongwe1-0/+1
2011-01-31Comments.nyamatongwe1-0/+5
2011-01-22Make executable on Linux by adding a shbang line and setting 'x' permission.nyamatongwe1-0/+1
2011-01-17Add SCI_SETMARGINCURSORN and SCI_GETMARGINCURSORN.jrxx4-3/+26
2011-01-19Fix typo.nyamatongwe1-1/+1
2011-01-12Ensure empty selection after delete word right.nyamatongwe1-0/+1
2011-01-12Remove virtual space if invalid after modification. Bug #3154986.nyamatongwe1-0/+4