aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
AgeCommit message (Collapse)AuthorFilesLines
2009-07-03Included Selection and made VC6 version more similar to later versions.nyamatongwe2-14/+27
2009-07-03Discontiguoues selection and virtual space initial commit.nyamatongwe3-24/+29
2009-06-28Updates for release 1.79.nyamatongwe1-4/+4
2009-05-27Branded structs in Scintilla.h with Sci_ prefix and added forwarding macrosnyamatongwe1-2/+2
from old name to new.
2009-05-06First stage of Cocoa platform addition.nyamatongwe1-38/+38
Changed identifier id since this is a reserved word in Objective C. SCI_LEXER and SCI_NAMESPACE turned on automatically for OS X native compilation.
2009-05-03Turned on exceptions.nyamatongwe5-556/+624
Translate exceptions into status codes before leaving Scintilla. Pick up status codes in SciTE and throw a ScintillaFailure exception. SciTE on Windows catches ScintillaFailure, shows message and exits.
2009-04-12Annotations and text margins added.nyamatongwe3-7/+14
2009-03-29Lexer for SML. Feature Request #2710950.nyamatongwe3-1/+7
2009-03-04Nimrod lexer from Andreas Rumpf added.nyamatongwe3-5/+11
2009-01-23Reinstated EScript after license returned to standard Scintilla license.nyamatongwe4-6/+16
2009-01-22Updates for version 1.78.nyamatongwe1-5/+5
2009-01-22Removal of EScript lexer cause changes to build files, etc.nyamatongwe4-16/+6
2009-01-01Lexer for PowerPro from Christopher Bean.nyamatongwe3-4/+10
2008-12-13Lexer added for SORCUS Installation files.nyamatongwe3-3/+9
2008-10-22Addition of lexers for TAL, TACL, and COBOL from ozlooper. FR #2127406nyamatongwe3-8/+27
2008-10-16Updates for 1.77nyamatongwe1-4/+4
2008-09-14Avoid warning.nyamatongwe1-3/+3
2008-09-14Added LexMySQL by Anders Karlsson.nyamatongwe3-4/+10
2008-09-07Encapsulation of conversion to Unicode to simplify text measuring andnyamatongwe1-37/+32
drawing code.
2008-09-06Comment fix.nyamatongwe1-1/+1
2008-09-06Changes to improve handling of long lines.nyamatongwe1-53/+82
2008-07-27Property to set interpratation of keys to always use Unicode.nyamatongwe1-1/+11
2008-07-06Bug #2011297: Do not export Scintilla_DirectFunction if STATIC_BUILDnyamatongwe1-1/+5
2008-06-29Simon Steele's modification to allow replacing the regularnyamatongwe2-4/+20
expression implementation.
2008-06-15Bug #1989278. Right mouse button down moves caret.nyamatongwe1-0/+5
2008-03-13Updated version numbers.nyamatongwe1-5/+5
2008-01-19CopyAllowLine from 280Z28 / Sam Harwell that reproduces Visual Studio'snyamatongwe1-11/+38
behaviour when performing copy on an empty selection copies the current line.
2008-01-18PowerShell lexer implemented by Tim Gerundt.nyamatongwe3-3/+9
2008-01-08Fixes horizontal scroll when document is wide and scroll position doesnyamatongwe1-4/+9
not fit into 16 bits.
2007-12-31Added Magik lexer.nyamatongwe3-5/+11
2007-11-23Ensure palette is not selected into any surfaces when it may need to benyamatongwe1-1/+1
released. Stops resource leaks in palette mode.
2007-11-13Updating version number to 1.75.nyamatongwe1-4/+4
2007-11-04Added support for 'R' language by Stephen Stagg.nyamatongwe3-1/+7
2007-09-24Bug #1794426, return 0 if not in Unicode mode.nyamatongwe1-1/+1
2007-09-08Lexer for Asymptote.nyamatongwe3-10/+16
2007-07-27Changed lineStates to a SplitVector so that it supports insert and deletenyamatongwe1-1/+0
so inserting and deleting lines does not cause a really large number of changed values under most circumstances leading to fewer notifications. SVector is no longer used.
2007-07-26Optimised previous change to avoid extra redraws when modification does notnyamatongwe1-1/+1
affect visible area.
2007-07-25Changed ContractionState data structure to be more efficient by not onlynyamatongwe1-1/+1
modifying data near an insertion or deletion when there is good locality of modification.
2007-07-07Typo.nyamatongwe1-6/+6
2007-07-07Allows the popup to be displayed below as long as it can fit on the monitornyamatongwe1-0/+28
the cursor is on rather than flipping up above the current point when near bottom of window. Implemented for GTK+ by John Ehresman. Partial Windows implementation #ifdefed out because it uses calls unavailable on Windows 95.
2007-06-30Support for Abaqus language added by Sergio Lucato.nyamatongwe3-10/+16
2007-06-23Fixed indentation.nyamatongwe1-21/+21
2007-06-23Fixes for bug #1732146, Armenian input on Windows by registering thenyamatongwe1-33/+45
Scintilla windows class as wide and using GetMessageW/DispatchMessageW in the SciTE event loop.
2007-06-12Updating for 1.74 and credit.nyamatongwe1-4/+4
2007-06-12PL/M and Progress lexers added.nyamatongwe3-3/+16
2007-06-02Addition of PositionCache module which adds cacing of stringnyamatongwe4-3/+14
to position information and segments long pieces of text so they can be handled more efficiently.
2007-05-18Protection against bad UTF-8 sequences.nyamatongwe1-1/+1
2007-05-12Drag operation does not start until mouse has been dragged more thannyamatongwe1-29/+32
a threshold distance. Using platform threshold when possible. Moved some common dragging code on Windows into EffectFromState.
2007-05-11Only perform alpha blending on rectangles with positive widths tonyamatongwe1-1/+1
avoid warnings. Tracing on GTK+ goes to standard error so is not buffered.
2007-04-19Patch from Xie Renhui tries Unicode format for dropped text first.nyamatongwe1-12/+26