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