Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-12-31 | Implement SCI_SETILEXER. | Neil | 1 | -5/+0 | |
2019-06-30 | Bug [#2038]. Source of input reported in SCN_CHARADDED. | Zufu Liu | 1 | -1/+1 | |
This may be SC_CHARACTERSOURCE_DIRECT_INPUT, SC_CHARACTERSOURCE_TENTATIVE_INPUT, or SC_CHARACTERSOURCE_IME_RESULT. | |||||
2019-06-17 | Feature [feature-requests:#1293]. InsertCharacter replaces AddCharUTF. | Zufu Liu | 1 | -1/+5 | |
2019-04-12 | Bug [#2093]. Remove restrictions on IME input length. | Zufu Liu | 1 | -2/+0 | |
2019-03-19 | Make destructors public to avoid warnings. | Neil | 1 | -1/+3 | |
2018-04-28 | Delete standard functions on classes where there could be attempts to copy. | Neil | 1 | -1/+3 | |
2018-04-14 | Make some changes recommended by clang-tidy. | Neil Hodgson | 1 | -1/+1 | |
2018-03-09 | Use Position/Line/int more accurately in preparation for large documents. | Neil | 1 | -2/+2 | |
2017-09-11 | The Scintilla namespace is always active for internal symbols and for the lexer | Neil | 1 | -4/+0 | |
interfaces ILexer4 and IDocument. | |||||
2017-06-12 | Simplify mouse and keyboard handling by only retaining the 'WithModifiers" form. | Neil | 1 | -1/+0 | |
All events include a set of keyboard modifier flags. Older calls that passed individual parameters for each key were removed. | |||||
2017-06-11 | Implement SCN_AUTOCSELECTIONCHANGE notification. | Neil | 1 | -2/+3 | |
2017-04-21 | More consistent deletion of standard methods. | Neil | 1 | -1/+1 | |
2017-04-19 | Use =delete for unwanted functions. | Neil | 1 | -4/+3 | |
2017-04-15 | Avoid calling virtual functions in destructor. Mark overridden methods. | Neil Hodgson | 1 | -10/+10 | |
2017-04-15 | Avoid calling virtual functions in constructors and destructors. | Neil | 1 | -1/+1 | |
2017-03-31 | Using Sci::Position and Sci::Line to mark variables that are document positions | Neil | 1 | -2/+2 | |
and lines. | |||||
2016-11-23 | Implementation of MarginRightClick event. | Tse Kit Yam | 1 | -1/+3 | |
2015-07-03 | Feature [feature-requests:#1109]. SCN_AUTOCCOMPLETED sent after text insertion. | Jonathan Hunt | 1 | -1/+1 | |
From Jonathan Hunt. | |||||
2015-05-16 | Make unused single argument constructors explicit. | Neil | 1 | -1/+1 | |
2014-08-08 | Stop using last argument to AddCharUTF from Korean IME code as previus release | Neil | 1 | -0/+2 | |
always used false for last argument so changing mynot be cmpatible. Move maxLenInputIME to superclass where it can be used for all platforms. | |||||
2014-07-19 | Using const for string argument to allow use with literals. | Neil | 1 | -1/+1 | |
2014-05-24 | SCI_AUTOCSETMULTI allows setting whether autocompletion text is inserted at each | Neil | 1 | -0/+1 | |
selection when multiple selections are active. From Mitchell Foral. | |||||
2013-11-03 | Report control key as SCI_META for mouse down events for GTK+ on OS X. | nyamatongwe | 1 | -0/+1 | |
Also enables more flexibility with modifier keys. | |||||
2013-09-07 | Since ScintillaBase::Finalise is implemented, don't mark it as virtual. | Neil | 1 | -1/+1 | |
2013-05-24 | Made methods const where they can be and are logically const as well. | nyamatongwe | 1 | -2/+2 | |
2013-04-01 | Extract effect of choosing an autocompletion entry so it can be reused for both | nyamatongwe | 1 | -0/+1 | |
user choice and single element list automatic insertion. | |||||
2011-09-25 | Palette support removed. | nyamatongwe | 1 | -2/+0 | |
2010-07-13 | Files changed for new lexer design. | nyamatongwe | 1 | -7/+8 | |
2010-02-17 | Formatting whitespace. | nyamatongwe | 1 | -1/+1 | |
2010-01-28 | Avoiding warnings from cppcheck. Mostly removing bodies of private copy | nyamatongwe | 1 | -4/+3 | |
constructors and operator=. Also ensuring initialisation for some fields, reducing scope where possible, and passing by const reference. | |||||
2009-10-18 | AutoCGetCurrentText added by Nick Treleaven. | nyamatongwe | 1 | -0/+1 | |
2009-07-21 | Using a much simpler property set implementation. | nyamatongwe | 1 | -1/+1 | |
Accessor objects use the PropertyGet interface to access just the property set methods they need. Removed SString. | |||||
2009-07-21 | Replacing SString with std::string. | nyamatongwe | 1 | -1/+0 | |
2007-06-01 | integrate OS X support for scintilla. a big patch with a little commit ↵ | scaraveo | 1 | -0/+8 | |
message :) - now uses namespaces (optionally for non-os x) to avoid conflicts with OS X libraries - several fixes in the OS X layer since the branch was commited in 2005 - used in Komodo since 2005, so pretty stable | |||||
2005-06-29 | Prevent reentance of styling which could occur when a styler added a fold | nyamatongwe | 1 | -0/+2 | |
point and this caused a search for subordinate lines which then tried to style further. | |||||
2005-03-25 | Patch from Blair McGlashan for autocompletion on Windows to | nyamatongwe | 1 | -0/+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-09 | Patch from Blair McGlashan to send a notification before accepting an ↵ | nyamatongwe | 1 | -1/+1 | |
autocompletion. | |||||
2003-12-14 | Added SCI_AUTOCGETCURRENT. | nyamatongwe | 1 | -0/+1 | |
2003-08-08 | Using interface definition for number of keyword lists. | nyamatongwe | 1 | -1/+1 | |
2003-04-05 | Moved calltip showing into method. | nyamatongwe | 1 | -0/+1 | |
2003-04-03 | CallTip can display up and down arrows and clicks are reported to | nyamatongwe | 1 | -0/+1 | |
container. Calltip can be replaced while visible rather than needing a cancel and recreation to minimize flashing. | |||||
2002-12-06 | Upped number of keyword lists to 9. | nyamatongwe | 1 | -1/+1 | |
2002-08-24 | Changed autocomplete to only cancel at start when deleting characters. | nyamatongwe | 1 | -1/+2 | |
2002-06-08 | Changed autocompletion fill up character handling to ensure the fill up ↵ | nyamatongwe | 1 | -1/+1 | |
character is added separately and is seen as a char added notification so that calltips can be shown. | |||||
2002-02-12 | Made lexer objects const so they do not show up in map as static / globals. | nyamatongwe | 1 | -1/+1 | |
File specific inline functions marker as static to ensure no bad linking. | |||||
2002-01-18 | Updated copyrights for 2002. | nyamatongwe | 1 | -1/+1 | |
2002-01-10 | Patch from Kengo Jinno to make Japanese entry work on Windows 9x. | nyamatongwe | 1 | -1/+1 | |
More changes from Neil to avoid problem introduced by above with overstrike mode replacing one character with two. Comments about Digital Mars ifdefs. | |||||
2001-10-12 | Patch from John to allow double-clicking in autocompletion lists on GTK+. | nyamatongwe | 1 | -6/+7 | |
2001-09-14 | Addition of more SGML styles from Steve. | nyamatongwe | 1 | -1/+1 | |
2001-09-01 | Using new SelectionText type to handle text that is the subject of copy, | nyamatongwe | 1 | -0/+1 | |
cut, paste and drag operations. Mouse wheel scrolling moved into platform subclasses. Macro support always included so MACRO_SUPPORT definition and use removed. Allowing menu popup moved from Editor to ScintillaBase. |