aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.h
AgeCommit message (Collapse)AuthorFilesLines
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.
2001-05-01External lexer feature added by Simon allows lexers to be housed in DLLs withnyamatongwe1-1/+1
a .lexer extension which are automatically loaded at startup. Minor fix to IME support in ScintillaWin.cxx to deal with current mingw headers.
2001-04-13Start of new lexer infrastructure.nyamatongwe1-0/+3
Lexers can have a fold function as well as a lexer function. They can be identified by string name as well as an integer ID and may ask to be automatically assigned that ID.
2001-02-24Updated documentation comments from Philippe.nyamatongwe1-4/+9
2001-02-17Defining sptr_t and uptr_t to be integral types large enough to containnyamatongwe1-1/+1
pointers to allow portability to 64 bit platforms.
2001-01-28Updating copyright notices for 2001.nyamatongwe1-1/+1
2000-12-17Added Laurent's User List.nyamatongwe1-0/+3
2000-08-18Added in most of Ferdinand Prantl's changes except for regular expressionnyamatongwe1-1/+1
search. Some bits not quite done as well.
2000-07-21Provide alternative symbols for all features defined in WinDefs.h to allownyamatongwe1-2/+2
for eventual removal of WinDefs.h.
2000-07-15Fixed problem with CancelModes killing drag and drop by setting emptynyamatongwe1-1/+1
selection. On GTK+ double click GTK+ events are ignored as this led to prblems in primary selection code.
2000-07-12Added John's autocompletion changes and fiddled to make autocompletion listnyamatongwe1-0/+1
size better.
2000-07-12John's changes to autocompletion.nyamatongwe1-0/+1
2000-04-08Unicode keyboard input and dragging from Scintilla.nyamatongwe1-1/+1
Fixing warnings on GTK+ and uping warning level.
2000-04-07Changing code to ensure no warnings are produced by compilers.nyamatongwe1-0/+3
2000-04-04Avoid lots of warnings from Borland C++.nyamatongwe1-1/+1
Changed name of interface class defined in Accessor.h to Accessor.
2000-03-08Initial revisionnyamatongwe1-0/+68