aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2011-07-12Fix case-insensitive search where folded form shorter. Bug #3362038.nyamatongwe1-4/+8
2011-07-12Fix Shift-JIS lead byte ranges to match Windows.nyamatongwe1-1/+2
2011-07-12Stop exception for deleted property.nyamatongwe1-1/+0
2011-07-12Report control key as SCMOD_META with GTK+ on OS X.nyamatongwe1-0/+1
Mostly from Mitchell Foral.
2011-07-11Fix type warnings.nyamatongwe1-1/+2
2011-07-11Avoid shadowing of fields even for static methods to stop warnings.nyamatongwe4-10/+10
2011-07-02Folding related fixes. Initiated by bug #3323805.Marko Njezic5-208/+201
Make fold highlighting follow closely the actual folding implementation. Introduce a concept of fold headers with a tail to accommodate certain fold highlighting situations. Optimize PaintSelMargin(), so it doesn't waste time with fold markers, unless really necessary. Make EnsureLineVisible() find right parent, when called on whitespace line. Fix wrong fold tail marker when needWhiteClosure is true.
2011-07-02Fix warning from previous change.nyamatongwe1-0/+2
2011-07-02Fix for assertion failure with annotation. Bug #3347268.nyamatongwe1-1/+1
Protect against setting height of line beyond end of document.
2011-06-27Fixed some "unsigned comparison with 0" warnings.nyamatongwe1-3/+3
2011-06-25Add casts to avoid warnings from SDK 64-bit compiler.nyamatongwe5-32/+44
2011-06-25Initial implementation of RGBA images.nyamatongwe9-7/+224
2011-06-20Properly highlight fold markers on sub lines. Bug #3323015.Marko Njezic2-8/+11
This complements fold markers highlighting change from revision 3619, which only fixed part of the problem. Changes from revision 3620 have been reverted, as they cause line to be drawn out of bounds and overlap with previously drawn marker above. They are also no longer needed, with this change.
2011-06-22Bug #3315756. Look at character under pointer to determine whethernyamatongwe1-1/+1
to display arrow (over selection) or I-beam. Previously used inter-character position instead of character.
2011-06-18Added INDIC_SQUIGGLELOW. Bug #3314591.nyamatongwe1-0/+11
From Thomas Linder Puls.
2011-06-15Added SCMOD_META key modifier for the Control key on OS X.nyamatongwe2-3/+8
New version of KeyDown, KeyDownWithModifiers uses a mask of modifiers.
2011-06-14Fix edge line display on wrapped lines. Bug #3314807.Marko Njezic1-0/+2
2011-06-14Add SCI_SETEMPTYSELECTION. Feature #3314877.nyamatongwe1-0/+4
From Marko Njezic.
2011-06-13Added Identifier property.nyamatongwe2-0/+12
2011-06-13Moved marginOptions from ViewStyle to Editor as it is a behavioural option.nyamatongwe4-7/+6
2011-06-10Add an option to control how wrapped lines are selected when clicking on margin.Marko Njezic3-2/+12
2011-06-09Group inserted spaces in virtual space together with deletion. Bug #3159691.Marko Njezic1-1/+7
2011-06-08Fix regex search on the last line of search rangeMarko Njezic1-2/+3
when search pattern ends with escaped $ modifier. Bug #3313746.
2011-06-07Make auto scrolling word wrap aware. Bug #3312763.Marko Njezic1-6/+2
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.