aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.h
AgeCommit message (Collapse)AuthorFilesLines
2010-03-14Using preprocessor that should be set in environment rather than fromnyamatongwe1-1/+1
Platform.h to avoid use of PLatform.h.
2010-03-13Change definition of Sci_RangeToFormat to avoid reliance on Platform.h.nyamatongwe1-7/+12
2010-03-11Implemented multipaste as an option.nyamatongwe1-0/+4
2010-01-31Added SCI_SETFIRSTVISIBLELINE to match SCI_GETFIRSTVISIBLELINE.nyamatongwe1-0/+1
2009-11-02Added setting for font quality to allow application to choose anti-aliased,nyamatongwe1-0/+7
non-anti-aliased or lcd-optimized text.
2009-10-27Added GetLexerLanguage.nyamatongwe1-0/+1
2009-10-18AutoCGetCurrentText added by Nick Treleaven.nyamatongwe1-0/+1
2009-10-16Setting to make additional carets invisible from Florian Balmer.nyamatongwe1-0/+2
2009-09-17Compile Scintilla_RegisterClasses, Scintilla_ReleaseResources, andnyamatongwe1-0/+8
Scintilla_LinkLexers with C linkage so they can be called from C as well as C++.
2009-09-03Added white space mark size setting from Enrico Tröger.nyamatongwe1-0/+2
2009-07-21Added commands for rotating selections and swapping caret and anchor ofnyamatongwe1-0/+2
main selection.
2009-07-14Added controls for enabling multiple selection and multiple selectionnyamatongwe1-4/+6
typing. Renamed multiline options to reflect use on multiple selections. Using std::vector for selections.
2009-07-12Allow setting the modifier key to be used for rectangularnyamatongwe1-0/+3
selection on GTK+. Paste can be performed in virtual space on GTK+
2009-07-09Added setings for colours, alpha, and caret colour for additionalnyamatongwe1-0/+6
selections.
2009-07-03Discontiguoues selection and virtual space initial commit.nyamatongwe1-0/+36
2009-06-09Feature #2796119 Indent wrapped lines to first line. From maXmo.nyamatongwe1-0/+5
2009-05-27Branded structs in Scintilla.h with Sci_ prefix and added forwarding macrosnyamatongwe1-10/+18
from old name to new.
2009-05-27Added SC_MARK_UNDERLINE from Stephan Deibel.nyamatongwe1-0/+1
2009-05-15Removed deprecated symbolsnyamatongwe1-22/+0
SCI_SETCARETPOLICY CARET_CENTER CARET_XEVEN CARET_XJUMPS SC_FOLDFLAG_BOX SC_FOLDLEVELBOXHEADERFLAG SC_FOLDLEVELBOXFOOTERFLAG SC_FOLDLEVELCONTRACTED SC_FOLDLEVELUNINDENT SCN_POSCHANGED SCN_CHECKBRACE SCLEX_ASP SCLEX_PHP
2009-05-08Changed capitalization of header file to suit cross-compilation on Unix fornyamatongwe1-1/+1
Windows.
2009-05-03C style comment fix.nyamatongwe1-1/+1
2009-05-03Added CharPositionFromPoint and CharPositionFromPointClose and merged thenyamatongwe1-0/+2
implementation for these and PositionFromPoint and PositionFromPointClose into a single function with flags for the different modes.
2009-05-03Turned on exceptions.nyamatongwe1-0/+3
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-25Moved box folding constants into deprecated category. They have beennyamatongwe1-6/+7
documented as deprecated for 3 years.
2009-04-19Added UNDO_MAY_COALESCE flag to AddUndoAction.nyamatongwe1-0/+1
2009-04-12Annotations and text margins added.nyamatongwe1-0/+29
2009-04-04Added AddUndoAction call for adding application actions into undo stack.nyamatongwe1-1/+5
2009-04-02Method to find the symbol defined for a marker number.nyamatongwe1-0/+1
SC_MARK_AVAILABLE defined.
2009-04-01Added commands to add extra ascent and descent space.nyamatongwe1-0/+4
2009-02-14Feature #2586290 INDIC_ROUNDBOX alpha transparency setting from Toddnyamatongwe1-0/+2
Whiteman of ActiveState.
2009-01-22Enable 64 bit support on Windows for all compilers.nyamatongwe1-1/+1
2009-01-08Patch from Enrico Tröger to change comments in header files to C Style /*nyamatongwe1-39/+39
rather than C++ style // so that some compilers will work.
2009-01-02Notification for deleting a character while an autocompletion is active.nyamatongwe1-0/+1
By Sergey Kishchenko.
2008-07-27Property to set interpratation of keys to always use Unicode.nyamatongwe1-0/+2
2008-06-07Added AutoCCancelled event implementation from Enrico Tröger.nyamatongwe1-0/+1
2008-04-27Implemented GetCharacterPointer feature.nyamatongwe1-0/+1
2008-01-19CopyAllowLine from 280Z28 / Sam Harwell that reproduces Visual Studio'snyamatongwe1-0/+1
behaviour when performing copy on an empty selection copies the current line.
2008-01-19Added SC_MARK_LEFTRECT margin marker.nyamatongwe1-0/+1
2007-08-18Addition of DelWordRightEnd by Nick Treleaven eases compatibility withnyamatongwe1-0/+1
common GTK+ behaviour.
2007-07-26Added notification for changing line state and use it to redraw if a linenyamatongwe1-1/+2
state change overruns the end of painting.
2007-07-12Modification allows indentation guides to appear on lines that arenyamatongwe1-0/+4
empty.
2007-07-02Scroll width tracking feature.nyamatongwe1-0/+2
2007-06-25Allow use of all 8 bits for lexical styles and LexHTML set to use 8 buts.nyamatongwe1-1/+1
2007-06-02Addition of PositionCache module which adds cacing of stringnyamatongwe1-0/+2
to position information and segments long pieces of text so they can be handled more efficiently.
2007-06-02Changed caret style method IDs to be in sequence.nyamatongwe1-2/+2
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
2007-05-29Block caret feature added by Todd Whiteman.nyamatongwe1-0/+5
2007-04-23Added setting to allow each indicator to be drawn either under ornyamatongwe1-0/+2
over text.
2007-04-23Added INDIC_CONTAINER and a comment.nyamatongwe1-1/+2
2007-04-19Optimized indicator changing with separate SC_MOD_CHANGEINDICATORnyamatongwe1-1/+2
notification flag.