Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-07-21 | Replacing SString with std::string. | nyamatongwe | 1 | -1/+1 | |
2009-07-14 | Added controls for enabling multiple selection and multiple selection | nyamatongwe | 1 | -0/+2 | |
typing. Renamed multiline options to reflect use on multiple selections. Using std::vector for selections. | |||||
2009-07-12 | Since exception handling now turned on, do not check return value from new. | nyamatongwe | 1 | -20/+10 | |
2009-07-10 | Duplicate works on discontiguous selections by duplicating each selection. | nyamatongwe | 1 | -2/+1 | |
UndoGroup class simplifies grouping actions together in the undo history. | |||||
2009-07-10 | Allow pasting into virtual space. | nyamatongwe | 1 | -2/+5 | |
2009-07-07 | Using the last style on a line to determine the width of a virtual space | nyamatongwe | 1 | -4/+2 | |
rather than use the default style. This adapts better for comments which use a different font. | |||||
2009-07-06 | Allow drag and drop in virtual space. | nyamatongwe | 1 | -12/+14 | |
2009-07-03 | Use screen point for caret that includes virtual spcace so that, for | nyamatongwe | 1 | -4/+4 | |
example, the IME appears near the caret when the caret is in virtual space. Changed LocationFromPosition to work on a SelectionPosition and added convenience method for finding screen point of main caret. | |||||
2009-07-03 | Discontiguoues selection and virtual space initial commit. | nyamatongwe | 1 | -15/+16 | |
2009-05-27 | Branded structs in Scintilla.h with Sci_ prefix and added forwarding macros | nyamatongwe | 1 | -2/+2 | |
from old name to new. | |||||
2009-05-03 | Turned on exceptions. | nyamatongwe | 1 | -511/+575 | |
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. | |||||
2008-07-27 | Property to set interpratation of keys to always use Unicode. | nyamatongwe | 1 | -1/+11 | |
2008-07-06 | Bug #2011297: Do not export Scintilla_DirectFunction if STATIC_BUILD | nyamatongwe | 1 | -1/+5 | |
2008-06-29 | Simon Steele's modification to allow replacing the regular | nyamatongwe | 1 | -2/+6 | |
expression implementation. | |||||
2008-06-15 | Bug #1989278. Right mouse button down moves caret. | nyamatongwe | 1 | -0/+5 | |
2008-01-19 | CopyAllowLine from 280Z28 / Sam Harwell that reproduces Visual Studio's | nyamatongwe | 1 | -11/+38 | |
behaviour when performing copy on an empty selection copies the current line. | |||||
2008-01-08 | Fixes horizontal scroll when document is wide and scroll position does | nyamatongwe | 1 | -4/+9 | |
not fit into 16 bits. | |||||
2007-09-24 | Bug #1794426, return 0 if not in Unicode mode. | nyamatongwe | 1 | -1/+1 | |
2007-07-27 | Changed lineStates to a SplitVector so that it supports insert and delete | nyamatongwe | 1 | -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-26 | Optimised previous change to avoid extra redraws when modification does not | nyamatongwe | 1 | -1/+1 | |
affect visible area. | |||||
2007-07-25 | Changed ContractionState data structure to be more efficient by not only | nyamatongwe | 1 | -1/+1 | |
modifying data near an insertion or deletion when there is good locality of modification. | |||||
2007-06-23 | Fixed indentation. | nyamatongwe | 1 | -21/+21 | |
2007-06-23 | Fixes for bug #1732146, Armenian input on Windows by registering the | nyamatongwe | 1 | -33/+45 | |
Scintilla windows class as wide and using GetMessageW/DispatchMessageW in the SciTE event loop. | |||||
2007-06-02 | Addition of PositionCache module which adds cacing of string | nyamatongwe | 1 | -0/+1 | |
to position information and segments long pieces of text so they can be handled more efficiently. | |||||
2007-05-12 | Drag operation does not start until mouse has been dragged more than | nyamatongwe | 1 | -29/+32 | |
a threshold distance. Using platform threshold when possible. Moved some common dragging code on Windows into EffectFromState. | |||||
2007-04-19 | Patch from Xie Renhui tries Unicode format for dropped text first. | nyamatongwe | 1 | -12/+26 | |
2007-04-19 | Patch from Xie Renhui uses explicit ANSI calls on Windows so can be | nyamatongwe | 1 | -6/+6 | |
compiled in Unicode mode. | |||||
2007-04-19 | All Unicode planes supported, not just the Basic Multilingual Plane. | nyamatongwe | 1 | -12/+12 | |
2007-04-05 | Implemented decorations which are extended indicators. | nyamatongwe | 1 | -1/+3 | |
2007-03-01 | Only call OleUninitialize if OleInitialize succeeded. | nyamatongwe | 1 | -2/+7 | |
2007-01-24 | Set the modifiers field on the SCN_DOUBLECLICK notification so the ↵ | nyamatongwe | 1 | -3/+3 | |
SCI_SHIFT, SCI_CTRL, and SCI_ALT bits may be set. | |||||
2007-01-01 | Major change to CellBuffer class with addition of Partitioning class and ↵ | nyamatongwe | 1 | -0/+2 | |
SplitVector template. Inserting and deleting lines are made more efficient by lessening the amount of per line information copied. Marker data is only allocated for each line if markers are added. | |||||
2006-08-22 | Added key code for the right hand side Windows key. | nyamatongwe | 1 | -0/+1 | |
2006-08-22 | Basic recognition of the Windows and Context Menu keys as SCK_WIN and | nyamatongwe | 1 | -0/+2 | |
SCK_MENU so that these keys don't commands associated with their values ('[' and ']'). SCK_WIN can be mapped on both platforms but if SCK_MENU is mapped on Windows it executes both the mapped command and shows the context menu. Called "Win" and "Menu" in SciTE but only "Win" documented. | |||||
2006-08-12 | Commented out assertion that stopped reporting of other assertions. | nyamatongwe | 1 | -1/+2 | |
2006-06-15 | Only allow setting the code page to valid values. | nyamatongwe | 1 | -0/+7 | |
2006-05-05 | Patch from Michael Durland so that constants have type to be more standard | nyamatongwe | 1 | -5/+8 | |
compliant and to protect IME code from Digital Mars compiler. | |||||
2006-02-26 | Translucency implementation for INDIC_ROUNDBOX and caret line. | nyamatongwe | 1 | -6/+6 | |
2006-02-25 | Patch from Greg Smith with further modifications moved character | nyamatongwe | 1 | -0/+1 | |
classification from Document into a separate CharClassify class and file and uses this from RESearch for regular expression word end \< and \> instead of built-in table. | |||||
2006-01-13 | Assertion makes sure that the direct function is only called from the | nyamatongwe | 1 | -0/+1 | |
window's thread. | |||||
2005-11-29 | A small amount of use of TCHAR avoids simplest issues when | nyamatongwe | 1 | -3/+3 | |
compiling as Unicode. Compiling as Unicode still not supported. Added DebugBreak call when assertion fails during paint processing as otherwise debugger pops up later in abort processing with different context. | |||||
2005-11-15 | Check whether area is being painted against the update region, | nyamatongwe | 1 | -0/+37 | |
not just the bounding box of this region. This ensures that a need to abandon a paint when a restyle affects text outside the area being painted. | |||||
2005-11-09 | Patch, mostly from Simon Steele, that converts new lines in | nyamatongwe | 1 | -19/+26 | |
pasted text to match document. | |||||
2005-11-03 | Stopped dragging of empty ranges. | nyamatongwe | 1 | -3/+3 | |
Correct unlocking of empty data in drag and drop. Allow entry of NUL through Shift+Ctrl+@ in Unicode mode. | |||||
2005-10-31 | Fix for bug 1342035 where two NULs were placed on clipboard | nyamatongwe | 1 | -70/+89 | |
by copy. Also fixed up some other potential clipboard issues and created GlobalMemory class to regularise clipboard memory handling. | |||||
2005-07-22 | Ensure DCs are emptied of non-stock, non-default objects before they are | nyamatongwe | 1 | -0/+2 | |
released to keep BoundsChecker happy. | |||||
2005-07-08 | Patch #1234222 for EM_EXSETSEL. | nyamatongwe | 1 | -1/+1 | |
2005-04-11 | Problem fixed when performing paste over rectangular selection where | nyamatongwe | 1 | -1/+1 | |
selection dragged from top right to bottom left. | |||||
2005-03-25 | Patch from Blair McGlashan for autocompletion on Windows to | nyamatongwe | 1 | -10/+1 | |
* Set maximum width of list * set maximum height of list * better calculate width * use ellipsis when text is truncated to fit window * use popup window so it can extend past parent window * disallow resizing too small * draw to bottom edge when resized so last item not full line high * improve time to display by by 90% Minor tweaks by me to fix warnings, layout etc. | |||||
2005-03-01 | Bug 1149378 fix from Borujoa updates IME handling particularly on | nyamatongwe | 1 | -19/+18 | |
Windows 9x. |