aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2012-03-01Bug #3494492. Change aveCharWidth in FontMeasurements to actually storenyamatongwe4-6/+6
fractional width. This change complements change set 3994. Make WidthText() and AverageCharWidth() actually return fractional widths under Direct2D. From Marko Njezic.
2012-03-01Remove duplicated code. Bug #3494492. From Marko Njezic.nyamatongwe1-1/+0
2012-03-01Enable basic pinch zoom. From Matthew Brush.nyamatongwe1-0/+16
2012-02-29Bug #3494202. Fix blurry RGBA markers on Direct2D when centring causednyamatongwe1-4/+4
fractional coordinates.
2012-02-29Centre RGBA markers in all cases including when larger than allocation. Bug ↵nyamatongwe1-1/+7
#3494184.
2012-02-29Bug #3493503. Clip drawing operations to the painting area when using unbufferednyamatongwe1-5/+10
mode. This prevents parts of margin being drawn out of bounds. Don't set clipping region when buffered mode is used, as it is not necessary. From Marko Njezic.
2012-02-28Bug #3495445. Properly mask restored state after processing keywords in documentMarko Njezic1-1/+1
comment that's inside disabled preprocessor macro.
2012-02-27Feature #3493530. Reduce amount of redrawing triggered by ↵nyamatongwe1-2/+3
SCI_MARKERSETBACKSELECTED and SCI_MARKERENABLEHIGHLIGHT. From Marko Njezic.
2012-02-25Remove unused variable.Marko Njezic2-6/+0
2012-02-25Bug #3493503. Properly redraw image markers with height larger than line height.Marko Njezic3-1/+39
Regression from change set 3949.
2012-02-25Fix dead code warnings from Xcode Analyze.nyamatongwe2-4/+1
2012-02-17Draw markers horizontally off center only on textual margins. Bug #3488696.Marko Njezic3-5/+5
2012-02-23Fix warning from PVS-Studio that could have trated non-operators as ↵nyamatongwe1-1/+1
operators for folding.
2012-02-19Enable differentiation of --! bang comments as this was disabled by poorlynyamatongwe1-3/+0
written code. Noticed by PVS-Studio.
2012-02-17Make fold tail markers vertically centered.Marko Njezic1-13/+12
2012-02-18Bug #3487397. Reduce time spent in idling before allowing paint from 200nyamatongwe1-1/+2
to 50 milliseconds to make interaction less laggy.
2012-02-18Wrap lines if needed when moving to a position. Bug #3487397.nyamatongwe1-3/+7
From Marko Njezic.
2012-02-18Add ECL lexer.nyamatongwe1-0/+4
2012-02-18Lexer added for ECL language. Feature #3488209.nyamatongwe7-0/+580
2012-02-18Avoid scrolling window before it is realized. Bug #3488481.nyamatongwe1-2/+4
2012-02-17Ensure start of string always initialized to avoid warning from Xcode analyze.nyamatongwe1-0/+1
2012-02-17Xcode analyze could not understand treating a 2D array as a 1D arraynyamatongwe1-4/+6
so treat as a 2D array.
2012-02-17New Xcode notes it has performed an upgrade check.nyamatongwe1-1/+1
2012-02-17Update to modifier key bindings for GTK+ on OS X. From Mitchell Foral.nyamatongwe1-2/+1
2012-02-16Avoid switching to PHP in XML unless explicit. Bug #3488060.nyamatongwe1-1/+1
2012-02-15Bug #3487440. Fix bug where setting an indicator on for whole documentnyamatongwe1-2/+2
had no effect since that was regarded as an empty indicator.
2012-02-14Removed dead code as it was producing warnings.nyamatongwe1-8/+0
2012-02-14Simplify key handling code that has not needed to process different cases fornyamatongwe1-15/+3
5 years.
2012-02-07Respect virtual space in ButtonDown/ButtonUp and prevent random behavior ofMarko Njezic1-23/+29
ctrl+click in margin in certain cases. Bug #3484370.
2012-02-09LexPascal folding improvements:Marko Njezic1-0/+20
- Ignore forward interface declarations as fold points - Fold dispinterface code blocks
2012-02-09Fix rounding issue in SPositionFromLocation() that started with introduction ofMarko Njezic1-1/+1
fractional positioning. Bug #3485669.
2012-02-10Bug #3484416. Modify how scroll bars are hidden in order not tonyamatongwe1-5/+3
interfere with dwelling. From Marko Njezic.
2012-02-08Fix spurious extra indentation guide at end of indentation caused by changenyamatongwe1-9/+17
to fractional positioning.
2012-02-04Make priority wrap actually process all displayed document lines. Bug #3484179.Marko Njezic1-0/+6
2012-02-04Properly highlight EOL blobs. Bug #3484330.Marko Njezic1-16/+20
2012-01-30Fix cursor up/down movement on wrapped lines and lines with annotations.Marko Njezic1-13/+33
Bug #1776560.
2012-02-03Fix crash in wrap mode with DirectWrite when wrapping added text beforenyamatongwe1-0/+1
fonts realised.
2012-01-28Added tag rel-3-0-3 for changeset d147d5b89470nyamatongwe1-0/+1
2012-01-28Updates for 3.0.3.nyamatongwe1-5/+5
2012-01-28Changed release date.nyamatongwe2-3/+3
2012-01-25Mergenyamatongwe7-12/+136
2012-01-24Updates for 3.0.3.nyamatongwe4-9/+126
2012-01-24Mentioned difference between buffered and unbuffered Direct2D.nyamatongwe1-1/+3
2012-01-24Redraw all of fold margin for fold margin highlight. Bug #3469936.nyamatongwe1-1/+1
From Marko Njezic.
2012-01-24Fix a bug where the selection margin was black when starting in wrap mode.nyamatongwe1-0/+3
2012-01-24Credit.nyamatongwe1-0/+2
2012-01-23Avoid laying out beyond end of document. Bug #3476637.nyamatongwe1-1/+1
2012-01-23Added LexAVS to build for Cocoa.nyamatongwe1-0/+4
2012-01-23Lexer for AviSynth from Bruno Barbieri. Feature #3475611.nyamatongwe6-0/+334
2012-01-23Better handling of data URLs by maintaining state until a ')' marks their end.nyamatongwe1-8/+19
From Ross McKay.