diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-30 11:36:13 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-30 11:36:13 -0600 |
commit | 664e37abfe5c796c1279b8295fb030f126b0a7d8 (patch) | |
tree | 85f4e661e5c615f01ee1cdf51ca1250b96efe315 /doc | |
download | tqscintilla-664e37abfe5c796c1279b8295fb030f126b0a7d8.tar.gz tqscintilla-664e37abfe5c796c1279b8295fb030f126b0a7d8.zip |
Initial import of qscintilla from 2007
Diffstat (limited to 'doc')
158 files changed, 43994 insertions, 0 deletions
diff --git a/doc/Scintilla/Design.html b/doc/Scintilla/Design.html new file mode 100755 index 0000000..0ca231e --- /dev/null +++ b/doc/Scintilla/Design.html @@ -0,0 +1,249 @@ +<?xml version="1.0"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="generator" content="HTML Tidy, see www.w3.org" /> + <meta name="generator" content="SciTE" /> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + <title> + Scintilla and SciTE + </title> + </head> + <body bgcolor="#FFFFFF" text="#000000"> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="0" border="0"> + <tr> + <td> + <img src="SciTEIco.png" border="3" height="64" width="64" alt="Scintilla icon" /> + </td> + <td> + <a href="index.html" style="color:white;text-decoration:none"><font size="5">Scintilla + Component Design</font></a> + </td> + </tr> + </table> + <h2> + Top level structure + </h2> + <p> + Scintilla consists of three major layers of C++ code + </p> + <ul> + <li> + Portability Library + </li> + <li> + Core Code + </li> + <li> + Platform Events and API + </li> + </ul> + <p> + The primary purpose of this structure is to separate the platform dependent code from the + platform independent core code. This makes it easier to port Scintilla to a new platform and + ensures that most readers of the code do not have to deal with platform details. To minimise + portability problems and avoid code bloat, a conservative subset of C++ is used in Scintilla + with no exception handling, run time type information or use of the standard C++ + library and with limited use of templates. + </p> + <p> + The currently supported platforms, Windows, GTK+/Linux and wxWindows are fairly similar in + many ways. + Each has windows, menus and bitmaps. These features generally work in similar ways so each + has a way to move a window or draw a red line. Sometimes one platform requires a sequence of + calls rather than a single call. At other times, the differences are more profound. Reading + the Windows clipboard occurs synchronously but reading the GTK+ clipboard requires a request + call that will be asynchronously answered with a message containing the clipboard data. + The wxWindows platform is available from the <a href="http://wxwindows.org/">wxWindows site</a> + </p> + <br /> + <h3> + Portability Library + </h3> + <p> + This is a fairly small and thin layer over the platform's native capabilities. + </p> + <p> + The portability library is defined in Platform.h and is implemented once for each platform. + PlatWin.cxx defines the Windows variants of the methods and PlatGTK.cxx the GTK+ variants. + </p> + <p> + Several of the classes here hold platform specific object identifiers and act as proxies to + these platform objects. Most client code can thus manipulate the platform objects without + caring which is the current platform. Sometimes client code needs access to the underlying + object identifiers and this is provided by the GetID method. The underlying types of the + platform specific identifiers are typedefed to common names to allow them to be transferred + around in client code where needed. + </p> + <h4> + Point, PRectangle + </h4> + <p> + These are simple classes provided to hold the commonly used geometric primitives. A + PRectangle follows the Mac / Windows convention of not including its bottom and right sides + instead of including all its sides as is normal in GTK+. It is not called Rectangle as this may be + the name of a macro on Windows. + </p> + <h4> + Colour, ColourPair, Palette + </h4> + <p> + Colour holds a platform specific colour identifier - COLORREF for Windows and GdkColor for + GTK+. The red, green and blue components that make up the colour are limited to the 8 bits of + precision available on Windows. ColourPairs are used because not all possible colours are + always available. Using an 8 bit colour mode, which is a common setting for both Windows and + GTK+, only 256 colours are possible on the display. Thus when an application asks for a dull + red, say #400000, it may only be allocated an already available colour such as #800000 or + #330000. With 16 or 2 colour modes even less choice is available and the application will + have to use the limited set of already available colours. + </p> + A Palette object holds a set of colour pairs and can make the appropriate calls to ask to + allocate these colours and to see what the platform has decided will be allowed. + <h4> + Font + </h4> + <p> + Font holds a platform specific font identifier - HFONT for Windows, GdkFont* for GTK+. It + does not own the identifier and so will not delete the platform font object in its + destructor. Client code should call Destroy at appropriate times. + </p> + <h4> + Surface + </h4> + <p> + Surface is an abstraction over each platform's concept of somewhere that graphical drawing + operations can be done. It may wrap an already created drawing place such as a window or be + used to create a bitmap that can be drawn into and later copied onto another surface. On + Windows it wraps a HDC and possibly a HBITMAP. On GTK+ it wraps a GdkDrawable* and possibly a + GdkPixmap*. Other platform specific objects are created (and correctly destroyed) whenever + required to perform drawing actions. + </p> + <p> + Drawing operations provided include drawing filled and unfilled polygons, lines, rectangles, + ellipses and text. The height and width of text as well as other details can be measured. + Operations can be clipped to a rectangle. Most of the calls are stateless with all parameters + being passed at each call. The exception to this is line drawing which is performed by + calling MoveTo and then LineTo. + </p> + <h4> + Window + </h4> + <p> + Window acts as a proxy to a platform window allowing operations such as showing, moving, + redrawing, and destroying to be performed. It contains a platform specific window identifier + - HWND for Windows, GtkWidget* for GTK+. + </p> + <h4> + ListBox + </h4> + <p> + ListBox is a subclass of Window and acts as a proxy to a platform listbox adding methods for + operations such as adding, retrieving, and selecting items. + </p> + <h4> + Menu + </h4> + <p> + Menu is a small helper class for constructing popup menus. It contains the platform specific + menu identifier - HMENU for Windows, GtkItemFactory* for GTK+. Most of the work in + constructing menus requires access to platform events and so is done in the Platform Events + and API layer. + </p> + <h4> + Platform + </h4> + <p> + The Platform class is used to access the facilities of the platform. System wide parameters + such as double click speed and chrome colour are available from Platform. Utility functions + such as DebugPrintf are also available from Platform. + </p> + <h3> + Core Code + </h3> + <p> + The bulk of Scintilla's code is platform independent. This is made up of the CellBuffer, + ContractionState, Document, Editor, Indicator, LineMarker, Style, ViewStyle, KeyMap, + ScintillaBase, CallTip, + and AutoComplete primary classes. + </p> + <h4> + CellBuffer + </h4> + <p> + A CellBuffer holds text and styling information, the undo stack, the assignment of line + markers to lines, and the fold structure. + </p> + <p> + A cell contains a character byte and its associated style byte. The current state of the + cell buffer is the sequence of cells that make up the text and a sequence of line information + containing the starting position of each line and any markers assigned to each line. + </p> + <p> + The undo stack holds a sequence of actions on the cell buffer. Each action is one of a text + insertion, a text deletion or an undo start action. The start actions are used to group + sequences of text insertions and deletions together so they can be undone together. To + perform an undo operation, each insertion or deletion is undone in reverse sequence. + Similarly, redo reapplies each action to the buffer in sequence. Whenever a character is + inserted in the buffer either directly through a call such as InsertString or through undo or + redo, its styling byte is initially set to zero. Client code is responsible for styling each + character whenever convenient. Styling information is not stored in undo actions. + </p> + <h4> + Document + </h4> + <p> + A document contains a CellBuffer and deals with some higher level abstractions such as + words, DBCS character sequences and line end character sequences. It is responsible for + managing the styling process and for notifying other objects when changes occur to the + document. + </p> + <h4> + Editor + </h4> + <p> + The Editor object is central to Scintilla. It is responsible for displaying a document and + responding to user actions and requests from the container. It uses ContractionState, Indicator, + LineMarker, Style, and ViewStyle objects to display the document and a KeyMap class to + map key presses to functions. + The visibility of each line is kept in the ContractionState which is also responsible for mapping + from display lines to documents lines and vice versa. + </p> + <p> + There may be multiple Editor objects attached to one Document object. Changes to a + document are broadcast to the editors through the DocWatcher mechanism. + </p> + <h4> + ScintillaBase + </h4> + <p> + ScintillaBase is a subclass of Editor and adds extra windowing features including display of + calltips, autocompletion lists and context menus. These features use CallTip and AutoComplete + objects. This class is optional so a lightweight implementation of Scintilla may bypass it if + the added functionality is not required. + </p> + <h3> + Platform Events and API + </h3> + <p> + Each platform uses different mechanisms for receiving events. On Windows, events are + received through messages and COM. On GTK+, callback functions are used. + </p> + <p> + For each platform, a class is derived from ScintillaBase (and thus from Editor). This is + ScintillaWin on Windows and ScintillaGTK on GTK+. These classes are responsible for + connecting to the platforms event mechanism and also to implement some virtual methods in + Editor and ScintillaBase which are different on the platforms. For example, this layer has to + support this difference between the synchronous Windows clipboard and the asynchronous GTK+ + clipboard. + </p> + <p> + The external API is defined in this layer as each platform has different preferred styles of + API - messages on Windows and function calls on GTK+. This also allows multiple APIs to be + defined on a platform. The currently available API on GTK+ is similar to the Windows API and + does not follow platform conventions well. A second API could be implemented here that did + follow platform conventions. + </p> + </body> +</html> + diff --git a/doc/Scintilla/Icons.html b/doc/Scintilla/Icons.html new file mode 100644 index 0000000..0bf302d --- /dev/null +++ b/doc/Scintilla/Icons.html @@ -0,0 +1,56 @@ +<?xml version="1.0"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="generator" content="HTML Tidy, see www.w3.org" /> + <meta name="generator" content="SciTE" /> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + <title> + Scintilla icons + </title> + </head> + <body bgcolor="#FFFFFF" text="#000000"> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="0" border="0"> + <tr> + <td> + <img src="SciTEIco.png" border="3" height="64" width="64" alt="Scintilla icon" /> + </td> + <td> + <a href="index.html" style="color:white;text-decoration:none"><font size="5">Scintilla + and SciTE</font></a> + </td> + </tr> + </table> + <h2> + Icons + </h2> + <p> + These images may be used under the same license as Scintilla. + </p> + <p> + Drawn by Iago Rubio, Philippe Lhoste, and Neil Hodgson. + </p> + <p> + <a href="http://prdownloads.sourceforge.net/scintilla/icons1.zip?download">zip format</a> (70K) + </p> + <table> + <tr> + <td>For autocompletion lists</td> + <td colspan="3">For margin markers</td> + </tr> + <tr> + <td>12x12</td> + <td>16x16</td> + <td>24x24</td> + <td>32x32</td> + </tr> + <tr> + <td valign="top"><img src="12.png" /></td> + <td valign="top"><img src="16.png" /></td> + <td valign="top"><img src="24.png" /></td> + <td valign="top"><img src="32.png" /></td> + </tr> + </table> + </body> +</html> diff --git a/doc/Scintilla/Lexer.txt b/doc/Scintilla/Lexer.txt new file mode 100755 index 0000000..9d4ab50 --- /dev/null +++ b/doc/Scintilla/Lexer.txt @@ -0,0 +1,226 @@ +How to write a scintilla lexer + +A lexer for a particular language determines how a specified range of +text shall be colored. Writing a lexer is relatively straightforward +because the lexer need only color given text. The harder job of +determining how much text actually needs to be colored is handled by +Scintilla itself, that is, the lexer's caller. + + +Parameters + +The lexer for language LLL has the following prototype: + + static void ColouriseLLLDoc ( + unsigned int startPos, int length, + int initStyle, + WordList *keywordlists[], + Accessor &styler); + +The styler parameter is an Accessor object. The lexer must use this +object to access the text to be colored. The lexer gets the character +at position i using styler.SafeGetCharAt(i); + +The startPos and length parameters indicate the range of text to be +recolored; the lexer must determine the proper color for all characters +in positions startPos through startPos+length. + +The initStyle parameter indicates the initial state, that is, the state +at the character before startPos. States also indicate the coloring to +be used for a particular range of text. + +Note: the character at StartPos is assumed to start a line, so if a +newline terminates the initStyle state the lexer should enter its +default state (or whatever state should follow initStyle). + +The keywordlists parameter specifies the keywords that the lexer must +recognize. A WordList class object contains methods that make simplify +the recognition of keywords. Present lexers use a helper function +called classifyWordLLL to recognize keywords. These functions show how +to use the keywordlists parameter to recognize keywords. This +documentation will not discuss keywords further. + + +The lexer code + +The task of a lexer can be summarized briefly: for each range r of +characters that are to be colored the same, the lexer should call + + styler.ColourTo(i, state) + +where i is the position of the last character of the range r. The lexer +should set the state variable to the coloring state of the character at +position i and continue until the entire text has been colored. + +Note 1: the styler (Accessor) object remembers the i parameter in the +previous calls to styler.ColourTo, so the single i parameter suffices to +indicate a range of characters. + +Note 2: As a side effect of calling styler.ColourTo(i,state), the +coloring states of all characters in the range are remembered so that +Scintilla may set the initStyle parameter correctly on future calls to +the +lexer. + + +Lexer organization + +There are at least two ways to organize the code of each lexer. Present +lexers use what might be called a "character-based" approach: the outer +loop iterates over characters, like this: + + lengthDoc = startPos + length ; + for (unsigned int i = startPos; i < lengthDoc; i++) { + chNext = styler.SafeGetCharAt(i + 1); + << handle special cases >> + switch(state) { + // Handlers examine only ch and chNext. + // Handlers call styler.ColorTo(i,state) if the state changes. + case state_1: << handle ch in state 1 >> + case state_2: << handle ch in state 2 >> + ... + case state_n: << handle ch in state n >> + } + chPrev = ch; + } + styler.ColourTo(lengthDoc - 1, state); + + +An alternative would be to use a "state-based" approach. The outer loop +would iterate over states, like this: + + lengthDoc = startPos+lenth ; + for ( unsigned int i = startPos ;; ) { + char ch = styler.SafeGetCharAt(i); + int new_state = 0 ; + switch ( state ) { + // scanners set new_state if they set the next state. + case state_1: << scan to the end of state 1 >> break ; + case state_2: << scan to the end of state 2 >> break ; + case default_state: + << scan to the next non-default state and set new_state >> + } + styler.ColourTo(i, state); + if ( i >= lengthDoc ) break ; + if ( ! new_state ) { + ch = styler.SafeGetCharAt(i); + << set state based on ch in the default state >> + } + } + styler.ColourTo(lengthDoc - 1, state); + +This approach might seem to be more natural. State scanners are simpler +than character scanners because less needs to be done. For example, +there is no need to test for the start of a C string inside the scanner +for a C comment. Also this way makes it natural to define routines that +could be used by more than one scanner; for example, a scanToEndOfLine +routine. + +However, the special cases handled in the main loop in the +character-based approach would have to be handled by each state scanner, +so both approaches have advantages. These special cases are discussed +below. + +Special case: Lead characters + +Lead bytes are part of DBCS processing for languages such as Japanese +using an encoding such as Shift-JIS. In these encodings, extended +(16-bit) characters are encoded as a lead byte followed by a trail byte. + +Lead bytes are rarely of any lexical significance, normally only being +allowed within strings and comments. In such contexts, lexers should +ignore ch if styler.IsLeadByte(ch) returns TRUE. + +Note: UTF-8 is simpler than Shift-JIS, so no special handling is +applied for it. All UTF-8 extended characters are >= 128 and none are +lexically significant in programming languages which, so far, use only +characters in ASCII for operators, comment markers, etc. + + +Special case: Folding + +Folding may be performed in the lexer function. It is better to use a +separate folder function as that avoids some troublesome interaction +between styling and folding. The folder function will be run after the +lexer function if folding is enabled. The rest of this section explains +how to perform folding within the lexer function. + +During initialization, lexers that support folding set + + bool fold = styler.GetPropertyInt("fold"); + +If folding is enabled in the editor, fold will be TRUE and the lexer +should call: + + styler.SetLevel(line, level); + +at the end of each line and just before exiting. + +The line parameter is simply the count of the number of newlines seen. +It's initial value is styler.GetLine(startPos) and it is incremented +(after calling styler.SetLevel) whenever a newline is seen. + +The level parameter is the desired indentation level in the low 12 bits, +along with flag bits in the upper four bits. The indentation level +depends on the language. For C++, it is incremented when the lexer sees +a '{' and decremented when the lexer sees a '}' (outside of strings and +comments, of course). + +The following flag bits, defined in Scintilla.h, may be set or cleared +in the flags parameter. The SC_FOLDLEVELWHITEFLAG flag is set if the +lexer considers that the line contains nothing but whitespace. The +SC_FOLDLEVELHEADERFLAG flag indicates that the line is a fold point. +This normally means that the next line has a greater level than present +line. However, the lexer may have some other basis for determining a +fold point. For example, a lexer might create a header line for the +first line of a function definition rather than the last. + +The SC_FOLDLEVELNUMBERMASK mask denotes the level number in the low 12 +bits of the level param. This mask may be used to isolate either flags +or level numbers. + +For example, the C++ lexer contains the following code when a newline is +seen: + + if (fold) { + int lev = levelPrev; + + // Set the "all whitespace" bit if the line is blank. + if (visChars == 0) + lev |= SC_FOLDLEVELWHITEFLAG; + + // Set the "header" bit if needed. + if ((levelCurrent > levelPrev) && (visChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + styler.SetLevel(lineCurrent, lev); + + // reinitialize the folding vars describing the present line. + lineCurrent++; + visChars = 0; // Number of non-whitespace characters on the line. + levelPrev = levelCurrent; + } + +The following code appears in the C++ lexer just before exit: + + // Fill in the real level of the next line, keeping the current flags + // as they will be filled in later. + if (fold) { + // Mask off the level number, leaving only the previous flags. + int flagsNext = styler.LevelAt(lineCurrent); + flagsNext &= ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); + } + + +Don't worry about performance + +The writer of a lexer may safely ignore performance considerations: the +cost of redrawing the screen is several orders of magnitude greater than +the cost of function calls, etc. Moreover, Scintilla performs all the +important optimizations; Scintilla ensures that a lexer will be called +only to recolor text that actually needs to be recolored. Finally, it +is not necessary to avoid extra calls to styler.ColourTo: the sytler +object buffers calls to ColourTo to avoid multiple updates of the +screen. + +Page contributed by Edward K. Ream
\ No newline at end of file diff --git a/doc/Scintilla/License.txt b/doc/Scintilla/License.txt new file mode 100755 index 0000000..cbe25b2 --- /dev/null +++ b/doc/Scintilla/License.txt @@ -0,0 +1,20 @@ +License for Scintilla and SciTE + +Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org> + +All Rights Reserved + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation. + +NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS +SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY +SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE +OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file diff --git a/doc/Scintilla/SciBreak.jpg b/doc/Scintilla/SciBreak.jpg Binary files differnew file mode 100755 index 0000000..65c9fc7 --- /dev/null +++ b/doc/Scintilla/SciBreak.jpg diff --git a/doc/Scintilla/SciCoding.html b/doc/Scintilla/SciCoding.html new file mode 100755 index 0000000..df0eb90 --- /dev/null +++ b/doc/Scintilla/SciCoding.html @@ -0,0 +1,251 @@ +<?xml version="1.0"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="generator" content="SciTE" /> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + <title> + Scintilla and SciTE Code Style Preferences + </title> + <style> + .S0 { + color: #808080; + } + .S1 { + font-family: Comic Sans MS; + color: #007F00; + font-size: 9pt; + } + .S2 { + font-family: Comic Sans MS; + color: #007F00; + font-size: 9pt; + } + .S3 { + font-family: Comic Sans MS; + color: #3F703F; + font-size: 9pt; + } + .S4 { + color: #007F7F; + } + .S5 { + font-weight: bold; + color: #00007F; + } + .S6 { + color: #7F007F; + } + .S7 { + color: #7F007F; + } + .S8 { + color: #804080; + } + .S9 { + color: #7F7F00; + } + .S10 { + font-weight: bold; + color: #000000; + } + .S12 { + font-family: Courier New; + color: #000000; + background: #E0C0E0; + font-size: 10pt; + } + .S13 { + font-family: Courier New; + color: #007F00; + background: #E0FFE0; + font-size: 10pt; + } + .S14 { + font-family: Courier New; + color: #3F7F3F; + background: #E0F0FF; + font-size: 10pt; + } + .S15 { + font-family: Comic Sans MS; + color: #3F703F; + font-size: 9pt; + } + SPAN { + font-family: Verdana; + font-size: 10pt; + } + </style> + </head> + <body bgcolor="#FFFFFF" text="#000000"> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="0" border="0"> + <tr> + <td> + <img src="SciTEIco.png" border="3" height="64" width="64" alt="Scintilla icon" /> + </td> + <td> + <a href="index.html" style="color:white;text-decoration:none"><font size="5">Scintilla + and SciTE</font></a> + </td> + </tr> + </table> + <h2> + Code Style + </h2> + <h3> + Introduction + </h3> + <p> + The source code of Scintilla and SciTE follow my preferences. + Some of these decisions are arbitrary and based on my sense of aesthetics + but its good to have all the code look the same even if its not exactly how + everyone would prefer. + </p> + <p> + Code that does not follow these conventions will be accepted, but will be modified + as time goes by to fit the conventions. Scintilla code follows the conventions more + closely than SciTE except for lexers which are relatively independent modules. + Lexers that are maintained by others are left as they are submitted except that + warnings will be fixed so the whole project can compile cleanly. + </p> + <p> + The <a href="http://astyle.sourceforge.net/">AStyle</a> formatting + program with a '-tapO' argument formats code in much the right way although + there are a few bugs in AStyle. The scite/scripts/Fixer.py script will run AStyle + over a C++ source file and fix up some of those bugs. + </p> + <h3> + Language features + </h3> + <p> + Design goals for Scintilla and SciTE include portability to currently available C++ + compilers on diverse platforms with high performance and low resource usage. + Scintilla has stricter portability requirements to SciTE as it may be ported to + low capability platforms such as Windows CE or PalmOS but it is less likely + SciTE will be. + </p> + <p> + To achieve portability, only a subset of C++ features are used. Exceptions are + not available on some platforms such as Windows CE so exceptions are not used + and thus the standard C++ library can not be used. + Template support differs between compilers so is not used in Scintilla but there + are some simple uses in SciTE. + Run-time type information adds to memory use so is turned off. + Name spaces are not used. + </p> + <p> + The goto statement is not used because of bad memories from my first job + maintaining FORTRAN programs. The union feature is not used as it can lead to + non-type-safe value access. + </p> + <h3> + Casting + </h3> + <p> + Do not use old C style casts like (char *)s. Instead use the most strict form of C++ + cast possible like const_cast<char *>(s). Use static_cast and const_cast + where possible rather than reinterpret_cast. Because the code is compiled with + run-time type information turned off, dynamic_cast will not work. + </p> + <p> + The benefit to using the new style casts is that they explicitly detail what evil is + occurring and act as signals that something potentially unsafe is being done. + </p> + <p> + Code that treats const seriously is easier to reason about both for humans + and compilers, so use const parameters and avoid const_cast. + </p> + <h3> + Warnings + </h3> + <p> + To help ensure code is well written and portable, it is compiled with almost all + warnings turned on. This sometimes results in warnings about code that is + completely good (false positives) but changing the code to avoid the warnings + is generally fast and has little impact on readability. + </p> + <p> + Initialise all variables and minimise the scope of variables. If a variable is defined + just before its use then it can't be misused by code before that point. + Use loop declarations that are compatible with both the C++ standard and currently + available compilers. + </p> + <h3> + Allocation + </h3> + <p> + As exceptions are not used, memory exhaustion can occur. + This should be checked for and handled but there is quite a lot of Scintilla and + SciTE code that doesn't yet. + Fixed length buffers are often used as these are simple and avoid the need to + worry about memory exhaustion but then require that buffer lengths are + respected. + </p> + <p> + The C++ new and delete operators are preferred over C's malloc and free + as new and delete are type safe. + </p> + <h3> + Bracketing + </h3> + <p> + Start brackets, '{', should be located on the line of the control structure they + start and end brackets, '}', should be at the indented start of a line. When there is + an else clause, this occurs on the same line as the '}'. + This format uses less lines than alternatives, allowing more code to be seen on screen. + Fully bracketed control + structures are preferred because this makes it more likely that modifications will + be correct and it allows Scintilla's folder to work. No braces on returned + expressions as return is a keyword, not a function call. + </p> +<SPAN class=S0></SPAN><SPAN class=S5>bool</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>fn</SPAN><SPAN class=S10>(</SPAN><SPAN class=S5>int</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>a</SPAN><SPAN class=S10>)</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>{</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S5>if</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>(</SPAN><SPAN class=S11>a</SPAN><SPAN class=S10>)</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>{</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S11>s</SPAN><SPAN class=S10>();</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S11>t</SPAN><SPAN class=S10>();</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S10>}</SPAN><SPAN class=S0> </SPAN><SPAN class=S5>else</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>{</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S11>u</SPAN><SPAN class=S10>();</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S10>}</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S5>return</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>!</SPAN><SPAN class=S11>a</SPAN><SPAN class=S10>;</SPAN><SPAN class=S0><BR> +</SPAN><SPAN class=S10>}</SPAN><SPAN class=S0><BR> +</SPAN> <h3> + Spacing + </h3> + <p> + Spaces on both sides of '=' and comparison operators and no attempt to line up '='. + No space before or after '(', when used in calls, but a space after every ','. + No spaces between tokens in short expressions but may be present in + longer expressions. Space before '{'. No space before ';'. + No space after '*' when used to mean pointer and no space after '[' or ']'. + One space between keywords and '('. + </p> +<SPAN class=S0></SPAN><SPAN class=S5>void</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>StoreConditionally</SPAN><SPAN class=S10>(</SPAN><SPAN class=S5>int</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>c</SPAN><SPAN class=S10>,</SPAN><SPAN class=S0> </SPAN><SPAN class=S5>const</SPAN><SPAN class=S0> </SPAN><SPAN class=S5>char</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>*</SPAN><SPAN class=S11>s</SPAN><SPAN class=S10>)</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>{</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S5>if</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>(</SPAN><SPAN class=S11>c</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>&&</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>(</SPAN><SPAN class=S11>baseSegment</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>==</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>trustSegment</SPAN><SPAN class=S10>[</SPAN><SPAN class=S6>"html"</SPAN><SPAN class=S10>]))</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>{</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S11>baseSegment</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>=</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>s</SPAN><SPAN class=S10>+</SPAN><SPAN class=S4>1</SPAN><SPAN class=S10>;</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S11>Store</SPAN><SPAN class=S10>(</SPAN><SPAN class=S11>s</SPAN><SPAN class=S10>,</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>baseSegment</SPAN><SPAN class=S10>,</SPAN><SPAN class=S0> </SPAN><SPAN class=S6>"html"</SPAN><SPAN class=S10>);</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S10>}</SPAN><SPAN class=S0><BR> +</SPAN><SPAN class=S10>}</SPAN> + <h3> + Names + </h3> + <p> + Identifiers use mixed case and no underscores. + Class, function and method names start with an uppercase letter and use + further upper case letters to distinguish words. Variables start with a lower + case letter and use upper case letters to distinguish words. + Loop counters and similar variables can have simple names like 'i'. + Function calls should be differentiated from method calls with an initial '::' + global scope modifier. + </p> +<SPAN class=S0></SPAN><SPAN class=S5>class</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>StorageZone</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>{</SPAN><SPAN class=S0><BR> +</SPAN><SPAN class=S5>public</SPAN><SPAN class=S10>:</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S5>void</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>Store</SPAN><SPAN class=S10>(</SPAN><SPAN class=S5>const</SPAN><SPAN class=S0> </SPAN><SPAN class=S5>char</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>*</SPAN><SPAN class=S11>s</SPAN><SPAN class=S10>)</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>{</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S11>Media</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>*</SPAN><SPAN class=S11>mediaStore</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>=</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>::</SPAN><SPAN class=S11>GetBaseMedia</SPAN><SPAN class=S10>(</SPAN><SPAN class=S11>zoneDefault</SPAN><SPAN class=S10>);</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S5>for</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>(</SPAN><SPAN class=S5>int</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>i</SPAN><SPAN class=S10>=</SPAN><SPAN class=S11>mediaStore</SPAN><SPAN class=S10>-></SPAN><SPAN class=S11>cursor</SPAN><SPAN class=S10>;</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>mediaStore</SPAN><SPAN class=S10>[</SPAN><SPAN class=S11>i</SPAN><SPAN class=S10>],</SPAN><SPAN class=S0> </SPAN><SPAN class=S11>i</SPAN><SPAN class=S10>++)</SPAN><SPAN class=S0> </SPAN><SPAN class=S10>{</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S11>mediaStore</SPAN><SPAN class=S10>-></SPAN><SPAN class=S11>Persist</SPAN><SPAN class=S10>(</SPAN><SPAN class=S11>s</SPAN><SPAN class=S10>[</SPAN><SPAN class=S11>i</SPAN><SPAN class=S10>]);</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S10>}</SPAN><SPAN class=S0><BR> + </SPAN><SPAN class=S10>}</SPAN><SPAN class=S0><BR> +</SPAN><SPAN class=S10>};</SPAN> + </body> +</html> diff --git a/doc/Scintilla/SciRest.jpg b/doc/Scintilla/SciRest.jpg Binary files differnew file mode 100755 index 0000000..4b05223 --- /dev/null +++ b/doc/Scintilla/SciRest.jpg diff --git a/doc/Scintilla/SciTEIco.png b/doc/Scintilla/SciTEIco.png Binary files differnew file mode 100755 index 0000000..d0cc869 --- /dev/null +++ b/doc/Scintilla/SciTEIco.png diff --git a/doc/Scintilla/SciWord.jpg b/doc/Scintilla/SciWord.jpg Binary files differnew file mode 100755 index 0000000..60e70e8 --- /dev/null +++ b/doc/Scintilla/SciWord.jpg diff --git a/doc/Scintilla/ScintillaDoc.html b/doc/Scintilla/ScintillaDoc.html new file mode 100755 index 0000000..3767b3b --- /dev/null +++ b/doc/Scintilla/ScintillaDoc.html @@ -0,0 +1,5350 @@ +<?xml version="1.0"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="generator" + content="HTML Tidy for Windows (vers 1st August 2002), see www.w3.org" /> + <meta name="generator" content="SciTE" /> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + + <title>Scintilla and SciTE</title> + + <style type="text/css"> +<!-- +/*<![CDATA[*/ + CODE { font-family: "Courier New", monospace; } + A:visited { color: blue; } + A:hover { text-decoration: underline ! important; } + A.message { text-decoration: none; font-family: "Courier New", monospace; } + A.toc { text-decoration: none; } + A.jump { text-decoration: none; } +/*]]>*/ +--> + </style> + </head> + + <body bgcolor="#FFFFFF" text="#000000"> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="0" border="0" + summary="Banner"> + <tr> + <td><img src="SciTEIco.png" border="3" height="64" width="64" alt="Scintilla icon" /></td> + + <td><a href="index.html" + style="color:white;text-decoration:none;font-size:200%">Scintilla</a></td> + </tr> + </table> + + <h1>Scintilla Documentation</h1> + + <p>Last edited 4/February/2006 NH</p> + + <p>There is <a class="jump" href="Design.html">an overview of the internal design of + Scintilla</a>.<br /> + <a class="jump" href="ScintillaUsage.html">Some notes on using Scintilla</a>.<br /> + <a class="jump" href="Steps.html">How to use the Scintilla Edit Control on Windows</a>.<br /> + <a class="jump" href="http://www.scintilla.org/dmapp.zip">A simple sample using Scintilla from + C++ on Windows</a>.<br /> + <a class="jump" href="http://www.scintilla.org/SciTry.vb">A simple sample using Scintilla from + Visual Basic</a>.<br /> + <a class="jump" href="http://www.scintilla.org/bait.zip">Bait is a tiny sample using Scintilla + on GTK+</a>.<br /> + <a class="jump" href="Lexer.txt">A detailed description of how to write a lexer, including a + discussion of folding</a>.<br /> + <a class="jump" href="http://sphere.sourceforge.net/flik/docs/scintilla-container_lexer.html"> + How to implement a lexer in the container</a>.<br /> + <a class="jump" href="http://sphere.sourceforge.net/flik/docs/scintilla-folding.html"> + How to implement folding</a>.<br /> + The <a class="jump" href="SciCoding.html">coding style</a> used in Scintilla and SciTE is + worth following if you want to contribute code to Scintilla but is not compulsory.</p> + + <h2>Introduction</h2> + + <p>The Windows version of Scintilla is a Windows Control. As such, its primary programming + interface is through Windows messages. Early versions of Scintilla emulated much of the API + defined by the standard Windows Edit and RichEdit controls but those APIs are now deprecated in + favour of Scintilla's own, more consistent API. In addition to messages performing the actions + of a normal Edit control, Scintilla allows control of syntax styling, folding, markers, autocompletion + and call tips.</p> + + <p>The GTK+ version also uses messages in a similar way to the Windows version. This is + different to normal GTK+ practice but made it easier to implement rapidly.</p> + + <p>This documentation describes the individual messages and notifications used by Scintilla. It + does not describe how to link them together to form a useful editor. For now, the best way to + work out how to develop using Scintilla is to see how SciTE uses it. SciTE exercises most of + Scintilla's facilities.</p> + + <p>In the descriptions that follow, the messages are described as function calls with zero, one + or two arguments. These two arguments are the standard <code>wParam</code> and + <code>lParam</code> familiar to Windows programmers. These parameters are integers that + are large enough to hold pointers, and the return value is also an integer large enough to contain a + pointer. + Although the commands only use the + arguments described, because all messages have two arguments whether Scintilla uses them or + not, it is strongly recommended that any unused arguments are set to 0. This allows future + enhancement of messages without the risk of breaking existing code. Common argument types + are:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Common argument types"> + <tbody valign="top"> + <tr> + <th align="left">bool</th> + + <td>Arguments expect the values 0 for <code>false</code> and 1 for + <code>true</code>.</td> + </tr> + + <tr> + <th align="left">int</th> + + <td>Arguments are 32-bit signed integers.</td> + </tr> + + <tr> + <th align="left">const char *</th> + + <td>Arguments point at text that is being passed to Scintilla but not modified. The text + may be zero terminated or another argument may specify the character count, the + description will make this clear.</td> + </tr> + + <tr> + <th align="left">char *</th> + + <td>Arguments point at text buffers that Scintilla will fill with text. In some cases, + another argument will tell Scintilla the buffer size. In others, you must make sure that + the buffer is big enough to hold the requested text. If a NULL pointer (0) is passed + then, for SCI_* calls, the length that should be allocated is returned.</td> + </tr> + + <tr> + <th align="left" id="colour">colour</th> + + <td>Colours are set using the RGB format (Red, Green, Blue). The intensity of each colour + is set in the range 0 to 255. If you have three such intensities, they are combined as: + red | (green << 8) | (blue << 16). If you set all intensities to 255, the + colour is white. If you set all intensities to 0, the colour is black. When you set a + colour, you are making a request. What you will get depends on the capabilities of the + system and the current screen mode.</td> + </tr> + + <tr> + <th align="left" id="alpha">alpha</th> + + <td>Translucency is set using an alpha value. + Alpha ranges from 0 (SC_ALPHA_TRANSPARENT) which is completely transparent to + 255 (SC_ALPHA_OPAQUE) which is opaque. The value 256 (SC_ALPHA_NOALPHA) + is opaque and uses code that is not alpha-aware and may be faster. Not all platforms support + translucency and only some Scintilla features implement translucency. + The default alpha value for most features is SC_ALPHA_NOALPHA.</td> + </tr> + + <tr> + <th align="left"><unused></th> + + <td>This is an unused argument. Setting it to 0 will ensure compatibility with future + enhancements.</td> + </tr> + </tbody> + </table> + + <h2 id="MessageCategories">Contents</h2> + + <table cellpadding="4" cellspacing="2" border="0" summary="Message categories"> + <tbody> + <tr> + <td>o <a class="toc" href="#TextRetrievalAndModification">Text retrieval and + modification</a></td> + + <td>o <a class="toc" href="#Searching">Searching and replacing</a></td> + + <td>o <a class="toc" href="#Overtype">Overtype</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#CutCopyAndPaste">Cut, copy and paste</a></td> + + <td>o <a class="toc" href="#ErrorHandling">Error handling</a></td> + + <td>o <a class="toc" href="#UndoAndRedo">Undo and Redo</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#SelectionAndInformation">Selection and information</a></td> + + <td>o <a class="toc" href="#ScrollingAndAutomaticScrolling">Scrolling and automatic + scrolling</a></td> + + <td>o <a class="toc" href="#WhiteSpace">White space</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#Cursor">Cursor</a></td> + + <td>o <a class="toc" href="#MouseCapture">Mouse capture</a></td> + + <td>o <a class="toc" href="#LineEndings">Line endings</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#Styling">Styling</a></td> + + <td>o <a class="toc" href="#StyleDefinition">Style definition</a></td> + + <td>o <a class="toc" href="#CaretAndSelectionStyles">Caret, selection, and hotspot styles</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#Margins">Margins</a></td> + + <td>o <a class="toc" href="#OtherSettings">Other settings</a></td> + + <td>o <a class="toc" href="#BraceHighlighting">Brace highlighting</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#TabsAndIndentationGuides">Tabs and Indentation + Guides</a></td> + + <td>o <a class="toc" href="#Markers">Markers</a></td> + + <td>o <a class="toc" href="#Indicators">Indicators</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#Autocompletion">Autocompletion</a></td> + + <td>o <a class="toc" href="#UserLists">User lists</a></td> + + <td>o <a class="toc" href="#CallTips">Call tips</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#KeyboardCommands">Keyboard commands</a></td> + + <td>o <a class="toc" href="#KeyBindings">Key bindings</a></td> + + <td>o <a class="toc" href="#PopupEditMenu">Popup edit menu</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#MacroRecording">Macro recording</a></td> + + <td>o <a class="toc" href="#Printing">Printing</a></td> + + <td>o <a class="toc" href="#DirectAccess">Direct access</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#MultipleViews">Multiple views</a></td> + + <td>o <a class="toc" href="#Folding">Folding</a></td> + + <td>o <a class="toc" href="#LineWrapping">Line wrapping</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#Zooming">Zooming</a></td> + + <td>o <a class="toc" href="#LongLines">Long lines</a></td> + + <td>o <a class="toc" href="#Lexer">Lexer</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#Notifications">Notifications</a></td> + + <td>o <a class="toc" href="#GTK">GTK+</a></td> + + <td>o <a class="toc" href="#DeprecatedMessages">Deprecated messages</a></td> + </tr> + + <tr> + <td>o <a class="toc" href="#EditMessagesNeverSupportedByScintilla">Edit messages never + supported by Scintilla</a></td> + + <td>o <a class="toc" href="#BuildingScintilla">Building Scintilla</a></td> + </tr> + </tbody> + </table> + + <p>Messages with names of the form <code>SCI_SETxxxxx</code> often have a companion + <code>SCI_GETxxxxx</code>. To save tedious repetition, if the <code>SCI_GETxxxxx</code> message + returns the value set by the <code>SCI_SETxxxxx</code> message, the <code>SET</code> routine is + described and the <code>GET</code> routine is left to your imagination.</p> + + <h2 id="TextRetrievalAndModification">Text retrieval and modification</h2> + + <p>Each character in a Scintilla document is followed by an associated byte of styling + information. The combination of a character byte and a style byte is called a cell. Style bytes + are interpreted as a style index in the low 5 bits and as 3 individual bits of <a class="jump" + href="#Indicators">indicators</a>. This allows 32 fundamental styles, which is enough for most + languages, and three independent indicators so that, for example, syntax errors, deprecated + names and bad indentation could all be displayed at once. The number of bits used for styles + can be altered with <a class="message" + href="#SCI_SETSTYLEBITS"><code>SCI_SETSTYLEBITS</code></a> up to a maximum of 7 bits. + The remaining bits can be used for indicators.</p> + + <p>Positions within the Scintilla document refer to a character or the gap before that + character. The first character in a document is 0, the second 1 and so on. If a document + contains <code>nLen</code> characters, the last character is numbered <code>nLen</code>-1. + The caret exists between character positions and can be located from before the first character (0) + to after the last character (<code>nLen</code>).</p> + + <p>There are places where the caret can not go where two character bytes make up one character. + This occurs when a DBCS character from a language like Japanese is included in the document or + when line ends are marked with the CP/M standard of a carriage return followed by a line feed. + The <code>INVALID_POSITION</code> constant (-1) represents an invalid position within the + document.</p> + + <p>All lines of text in Scintilla are the same height, and this height is calculated from the + largest font in any current style. This restriction is for performance; if lines differed in + height then calculations involving positioning of text would require the text to be styled + first.</p> + <code><a class="message" href="#SCI_GETTEXT">SCI_GETTEXT(int length, char *text)</a><br /> + <a class="message" href="#SCI_SETTEXT">SCI_SETTEXT(<unused>, const char *text)</a><br /> + <a class="message" href="#SCI_SETSAVEPOINT">SCI_SETSAVEPOINT</a><br /> + <a class="message" href="#SCI_GETLINE">SCI_GETLINE(int line, char *text)</a><br /> + <a class="message" href="#SCI_REPLACESEL">SCI_REPLACESEL(<unused>, const char + *text)</a><br /> + <a class="message" href="#SCI_SETREADONLY">SCI_SETREADONLY(bool readOnly)</a><br /> + <a class="message" href="#SCI_GETREADONLY">SCI_GETREADONLY</a><br /> + <a class="message" href="#SCI_GETTEXTRANGE">SCI_GETTEXTRANGE(<unused>, TextRange + *tr)</a><br /> + <a class="message" href="#SCI_ALLOCATE">SCI_ALLOCATE(int bytes, <unused>)</a><br /> + <a class="message" href="#SCI_ADDTEXT">SCI_ADDTEXT(int length, const char *s)</a><br /> + <a class="message" href="#SCI_ADDSTYLEDTEXT">SCI_ADDSTYLEDTEXT(int length, cell *s)</a><br /> + <a class="message" href="#SCI_APPENDTEXT">SCI_APPENDTEXT(int length, const char *s)</a><br /> + <a class="message" href="#SCI_INSERTTEXT">SCI_INSERTTEXT(int pos, const char *text)</a><br /> + <a class="message" href="#SCI_CLEARALL">SCI_CLEARALL</a><br /> + <a class="message" href="#SCI_CLEARDOCUMENTSTYLE">SCI_CLEARDOCUMENTSTYLE</a><br /> + <a class="message" href="#SCI_GETCHARAT">SCI_GETCHARAT(int position)</a><br /> + <a class="message" href="#SCI_GETSTYLEAT">SCI_GETSTYLEAT(int position)</a><br /> + <a class="message" href="#SCI_GETSTYLEDTEXT">SCI_GETSTYLEDTEXT(<unused>, TextRange + *tr)</a><br /> + <a class="message" href="#SCI_SETSTYLEBITS">SCI_SETSTYLEBITS(int bits)</a><br /> + <a class="message" href="#SCI_GETSTYLEBITS">SCI_GETSTYLEBITS</a><br /> + <a class="message" href="#SCI_TARGETASUTF8">SCI_TARGETASUTF8(<unused>, char *s)</a><br /> + <a class="message" href="#SCI_ENCODEDFROMUTF8">SCI_ENCODEDFROMUTF8(const char *utf8, char *encoded)</a><br /> + <a class="message" href="#SCI_SETLENGTHFORENCODE">SCI_SETLENGTHFORENCODE(int bytes)</a><br /> + </code> + + <p><b id="SCI_GETTEXT">SCI_GETTEXT(int length, char *text)</b><br /> + This returns <code>length</code>-1 characters of text from the start of the document plus one + terminating 0 character. To collect all the text in a document, use <code>SCI_GETLENGTH</code> + to get the number of characters in the document (<code>nLen</code>), allocate a character + buffer of length <code>nLen+1</code> bytes, then call <code>SCI_GETTEXT(nLen+1, char + *text)</code>. If the text argument is 0 then the length that should be allocated to store the + entire document is returned. + If you then save the text, you should use <code>SCI_SETSAVEPOINT</code> to mark + the text as unmodified.</p> + + <p>See also: <code><a class="message" href="#SCI_GETSELTEXT">SCI_GETSELTEXT</a>, <a + class="message" href="#SCI_GETCURLINE">SCI_GETCURLINE</a>, <a class="message" + href="#SCI_GETLINE">SCI_GETLINE</a>, <a class="message" + href="#SCI_GETSTYLEDTEXT">SCI_GETSTYLEDTEXT</a>, <a class="message" + href="#SCI_GETTEXTRANGE">SCI_GETTEXTRANGE</a></code></p> + + <p><b id="SCI_SETTEXT">SCI_SETTEXT(<unused>, const char *text)</b><br /> + This replaces all the text in the document with the zero terminated text string you pass + in.</p> + + <p><b id="SCI_SETSAVEPOINT">SCI_SETSAVEPOINT</b><br /> + This message tells Scintilla that the current state of the document is unmodified. This is + usually done when the file is saved or loaded, hence the name "save point". As Scintilla + performs undo and redo operations, it notifies the container that it has entered or left the + save point with <code><a class="message" + href="#SCN_SAVEPOINTREACHED">SCN_SAVEPOINTREACHED</a></code> and <code><a class="message" + href="#SCN_SAVEPOINTLEFT">SCN_SAVEPOINTLEFT</a></code> <a class="jump" + href="#Notifications">notification messages</a>, allowing the container to know if the file + should be considered dirty or not.</p> + + <p>See also: <code><a class="message" href="#SCI_EMPTYUNDOBUFFER">SCI_EMPTYUNDOBUFFER</a>, <a + class="message" href="#SCI_GETMODIFY">SCI_GETMODIFY</a></code></p> + + <p><b id="SCI_GETLINE">SCI_GETLINE(int line, char *text)</b><br /> + This fills the buffer defined by text with the contents of the nominated line (lines start at + 0). The buffer is not terminated by a 0 character. It is up to you to make sure that the buffer + is long enough for the text, use <a class="message" + href="#SCI_LINELENGTH"><code>SCI_LINELENGTH(int line)</code></a>. The returned value is the + number of characters copied to the buffer. The returned text includes any end of line + characters. If you ask for a line number outside the range of lines in the document, 0 + characters are copied. If the text argument is 0 then the length that should be allocated + to store the entire line is returned.</p> + + <p>See also: <code><a class="message" href="#SCI_GETCURLINE">SCI_GETCURLINE</a>, <a + class="message" href="#SCI_GETSELTEXT">SCI_GETSELTEXT</a>, <a class="message" + href="#SCI_GETTEXTRANGE">SCI_GETTEXTRANGE</a>, <a class="message" + href="#SCI_GETSTYLEDTEXT">SCI_GETSTYLEDTEXT</a>, <a class="message" + href="#SCI_GETTEXT">SCI_GETTEXT</a></code></p> + + <p><b id="SCI_REPLACESEL">SCI_REPLACESEL(<unused>, const char *text)</b><br /> + The currently selected text between the <a class="jump" href="#SelectionAndInformation">anchor + and the current position</a> is replaced by the 0 terminated text string. If the anchor and + current position are the same, the text is inserted at the caret position. The caret is + positioned after the inserted text and the caret is scrolled into view.</p> + + <p><b id="SCI_SETREADONLY">SCI_SETREADONLY(bool readOnly)</b><br /> + <b id="SCI_GETREADONLY">SCI_GETREADONLY</b><br /> + These messages set and get the read-only flag for the document. If you mark a document as read + only, attempts to modify the text cause the <a class="message" + href="#SCN_MODIFYATTEMPTRO"><code>SCN_MODIFYATTEMPTRO</code></a> notification.</p> + + <p><b id="SCI_GETTEXTRANGE">SCI_GETTEXTRANGE(<unused>, <a class="jump" + href="#TextRange">TextRange</a> *tr)</b><br /> + This collects the text between the positions <code>cpMin</code> and <code>cpMax</code> and + copies it to <code>lpstrText</code> (see <code>struct TextRange</code> in + <code>Scintilla.h</code>). If <code>cpMax</code> is -1, text is returned to the end of the + document. The text is 0 terminated, so you must supply a buffer that is at least 1 character + longer than the number of characters you wish to read. The return value is the length of the + returned text not including the terminating 0.</p> + + <p>See also: <code><a class="message" href="#SCI_GETSELTEXT">SCI_GETSELTEXT</a>, <a + class="message" href="#SCI_GETLINE">SCI_GETLINE</a>, <a class="message" + href="#SCI_GETCURLINE">SCI_GETCURLINE</a>, <a class="message" + href="#SCI_GETSTYLEDTEXT">SCI_GETSTYLEDTEXT</a>, <a class="message" + href="#SCI_GETTEXT">SCI_GETTEXT</a></code></p> + + <p><b id="SCI_GETSTYLEDTEXT">SCI_GETSTYLEDTEXT(<unused>, <a class="jump" + href="#TextRange">TextRange</a> *tr)</b><br /> + This collects styled text into a buffer using two bytes for each cell, with the character at + the lower address of each pair and the style byte at the upper address. Characters between the + positions <code>cpMin</code> and <code>cpMax</code> are copied to <code>lpstrText</code> (see + <code>struct TextRange</code> in <code>Scintilla.h</code>). Two 0 bytes are added to the end of + the text, so the buffer that <code>lpstrText</code> points at must be at least + <code>2*(cpMax-cpMin)+2</code> bytes long. No check is made for sensible values of + <code>cpMin</code> or <code>cpMax</code>. Positions outside the document return character codes + and style bytes of 0.</p> + + <p>See also: <code><a class="message" href="#SCI_GETSELTEXT">SCI_GETSELTEXT</a>, <a + class="message" href="#SCI_GETLINE">SCI_GETLINE</a>, <a class="message" + href="#SCI_GETCURLINE">SCI_GETCURLINE</a>, <a class="message" + href="#SCI_GETTEXTRANGE">SCI_GETTEXTRANGE</a>, <a class="message" + href="#SCI_GETTEXT">SCI_GETTEXT</a></code></p> + + <p><b id="SCI_ALLOCATE">SCI_ALLOCATE(int bytes, <unused>)</b><br /> + Allocate a document buffer large enough to store a given number of bytes. + The document will not be made smaller than its current contents.</p> + + <p><b id="SCI_ADDTEXT">SCI_ADDTEXT(int length, const char *s)</b><br /> + This inserts the first <code>length</code> characters from the string <code>s</code> + at the current position. This will include any 0's in the string that you might have expected + to stop the insert operation. The current position is set at the end of the inserted text, + but it is not scrolled into view.</p> + + <p><b id="SCI_ADDSTYLEDTEXT">SCI_ADDSTYLEDTEXT(int length, cell *s)</b><br /> + This behaves just like <code>SCI_ADDTEXT</code>, but inserts styled text.</p> + + <p><b id="SCI_APPENDTEXT">SCI_APPENDTEXT(int length, const char *s)</b><br /> + This adds the first <code>length</code> characters from the string <code>s</code> to the end + of the document. This will include any 0's in the string that you might have expected to stop + the operation. The current selection is not changed and the new text is not scrolled into + view.</p> + + <p><b id="SCI_INSERTTEXT">SCI_INSERTTEXT(int pos, const char *text)</b><br /> + This inserts the zero terminated <code>text</code> string at position <code>pos</code> or at + the current position if <code>pos</code> is -1. If the current position is after the insertion point + then it is moved along with its surrounding text but no scrolling is performed.</p> + + <p><b id="SCI_CLEARALL">SCI_CLEARALL</b><br /> + Unless the document is read-only, this deletes all the text.</p> + + <p><b id="SCI_CLEARDOCUMENTSTYLE">SCI_CLEARDOCUMENTSTYLE</b><br /> + When wanting to completely restyle the document, for example after choosing a lexer, the + <code>SCI_CLEARDOCUMENTSTYLE</code> can be used to clear all styling information and reset the + folding state.</p> + + <p><b id="SCI_GETCHARAT">SCI_GETCHARAT(int pos)</b><br /> + This returns the character at <code>pos</code> in the document or 0 if <code>pos</code> is + negative or past the end of the document.</p> + + <p><b id="SCI_GETSTYLEAT">SCI_GETSTYLEAT(int pos)</b><br /> + This returns the style at <code>pos</code> in the document, or 0 if <code>pos</code> is + negative or past the end of the document.</p> + + <p><b id="SCI_SETSTYLEBITS">SCI_SETSTYLEBITS(int bits)</b><br /> + <b id="SCI_GETSTYLEBITS">SCI_GETSTYLEBITS</b><br /> + This pair of routines sets and reads back the number of bits in each cell to use for styling, + to a maximum of 7 style bits. The remaining bits can be used as indicators. The standard + setting is <code>SCI_SETSTYLEBITS(5)</code>. + The number of styling bits needed by the current lexer can be found with + <a class="message" href="#SCI_GETSTYLEBITSNEEDED">SCI_GETSTYLEBITSNEEDED</a>.</p> + + <p><b id="TextRange">TextRange</b> and <b id="CharacterRange">CharacterRange</b><br /> + These structures are defined to be exactly the same shape as the Win32 <code>TEXTRANGE</code> + and <code>CHARRANGE</code>, so that older code that treats Scintilla as a RichEdit will + work.</p> +<pre> +struct CharacterRange { + long cpMin; + long cpMax; +}; + +struct TextRange { + struct CharacterRange chrg; + char *lpstrText; +}; +</pre> + + <h3 id="EncodedAccess">GTK+-specific: Access to encoded text</h3> + + <p><b id="SCI_TARGETASUTF8">SCI_TARGETASUTF8(<unused>, char *s)</b><br /> + This method retrieves the value of the target encoded as UTF-8 which is the default + encoding of GTK+ so is useful for retrieving text for use in other parts of the user interface, + such as find and replace dialogs. The length of the encoded text in bytes is returned. + </p> + + <p><b id="SCI_ENCODEDFROMUTF8">SCI_ENCODEDFROMUTF8(const char *utf8, char *encoded)</b><br /> + <b id="SCI_SETLENGTHFORENCODE">SCI_SETLENGTHFORENCODE(int bytes)</b><br /> + <code>SCI_ENCODEDFROMUTF8</code> converts a UTF-8 string into the document's + encoding which is useful for taking the results of a find dialog, for example, and receiving + a string of bytes that can be searched for in the document. Since the text can contain nul bytes, + the <code>SCI_SETLENGTHFORENCODE</code> method can be used to set the + length that will be converted. If set to -1, the length is determined by finding a nul byte. + The length of the converted string is returned. + </p> + + + <h2 id="Searching">Searching</h2> + <code><a class="message" href="#SCI_FINDTEXT">SCI_FINDTEXT(int flags, TextToFind + *ttf)</a><br /> + <a class="message" href="#SCI_SEARCHANCHOR">SCI_SEARCHANCHOR</a><br /> + <a class="message" href="#SCI_SEARCHNEXT">SCI_SEARCHNEXT(int searchFlags, const char + *text)</a><br /> + <a class="message" href="#SCI_SEARCHPREV">SCI_SEARCHPREV(int searchFlags, const char + *text)</a><br /> + <a class="jump" href="#SearchAndReplaceUsingTheTarget">Search and replace using the + target</a><br /> + </code> + + <p><b id="searchFlags"><code>searchFlags</code></b><br /> + Several of the search routines use flag options, which include a simple regular expression + search. Combine the flag options by adding them:</p> + + <table border="0" summary="Search flags"> + <tbody> + <tr> + <td><code>SCFIND_MATCHCASE</code></td> + + <td>A match only occurs with text that matches the case of the search string.</td> + </tr> + + <tr> + <td><code>SCFIND_WHOLEWORD</code></td> + + <td>A match only occurs if the characters before and after are not word characters.</td> + </tr> + + <tr> + <td><code>SCFIND_WORDSTART</code></td> + + <td>A match only occurs if the character before is not a word character.</td> + </tr> + + <tr> + <td><code>SCFIND_REGEXP</code></td> + + <td>The search string should be interpreted as a regular expression.</td> + </tr> + <tr> + <td><code>SCFIND_POSIX</code></td> + + <td>Treat regular expression in a more POSIX compatible manner + by interpreting bare ( and ) for tagged sections rather than \( and \).</td> + </tr> + </tbody> + </table> + + <p>If <code>SCFIND_REGEXP</code> is not included in the <code>searchFlags</code>, you can + search backwards to find the previous occurrence of a search string by setting the end of the + search range before the start. If <code>SCFIND_REGEXP</code> is included, searches are always + from a lower position to a higher position, even if the search range is backwards.</p> + + <p>In a regular expression, special characters interpreted are:</p> + + <table border="0" summary="Regular expression synopsis"> + <tbody> + <tr> + <td><code>.</code></td> + + <td>Matches any character</td> + </tr> + + <tr> + <td><code>\(</code></td> + + <td>This marks the start of a region for tagging a match.</td> + </tr> + + <tr> + <td><code>\)</code></td> + + <td>This marks the end of a tagged region.</td> + </tr> + + <tr> + <td><code>\n</code></td> + + <td>Where <code>n</code> is 1 through 9 refers to the first through ninth tagged region + when replacing. For example, if the search string was <code>Fred\([1-9]\)XXX</code> and + the replace string was <code>Sam\1YYY</code>, when applied to <code>Fred2XXX</code> this + would generate <code>Sam2YYY</code>.</td> + </tr> + + <tr> + <td><code>\<</code></td> + + <td>This matches the start of a word using Scintilla's definitions of words.</td> + </tr> + + <tr> + <td>\></td> + + <td>This matches the end of a word using Scintilla's definition of words.</td> + </tr> + + <tr> + <td><code>\x</code></td> + + <td>This allows you to use a character x that would otherwise have a special meaning. For + example, \[ would be interpreted as [ and not as the start of a character set.</td> + </tr> + + <tr> + <td><code>[...]</code></td> + + <td>This indicates a set of characters, for example, [abc] means any of the characters a, + b or c. You can also use ranges, for example [a-z] for any lower case character.</td> + </tr> + + <tr> + <td><code>[^...]</code></td> + + <td>The complement of the characters in the set. For example, [^A-Za-z] means any + character except an alphabetic character.</td> + </tr> + + <tr> + <td><code>^</code></td> + + <td>This matches the start of a line (unless used inside a set, see above).</td> + </tr> + + <tr> + <td><code>$</code></td> + + <td>This matches the end of a line.</td> + </tr> + + <tr> + <td><code>*</code></td> + + <td>This matches 0 or more times. For example, <code>Sa*m</code> matches <code>Sm</code>, + <code>Sam</code>, <code>Saam</code>, <code>Saaam</code> and so on.</td> + </tr> + + <tr> + <td><code>+</code></td> + + <td>This matches 1 or more times. For example, <code>Sa+m</code> matches + <code>Sam</code>, <code>Saam</code>, <code>Saaam</code> and so on.</td> + </tr> + </tbody> + </table> + + <p><b id="SCI_FINDTEXT">SCI_FINDTEXT(int searchFlags, <a class="jump" + href="#TextToFind">TextToFind</a> *ttf)</b><br /> + This message searches for text in the document. It does not use or move the current selection. + The <a class="jump" href="#searchFlags"><code>searchFlags</code></a> argument controls the + search type, which includes regular expression searches.</p> + + <p>The <code>TextToFind</code> structure is defined in <code>Scintilla.h</code>; set + <code>chrg.cpMin</code> and <code>chrg.cpMax</code> with the range of positions in the document + to search. If <code>SCFIND_REGEXP</code> is not included in the flags, you can search backwards by + setting <code>chrg.cpMax</code> less than <code>chrg.cpMin</code>. If <code>SCFIND_REGEXP</code> + is included, the search is always forwards (even if <code>chrg.cpMax</code> is less than <code>chrg.cpMin</code>). + Set the <code>lpstrText</code> member of <code>TextToFind</code> to point at a zero terminated + text string holding the search pattern. If your language makes the use of <code>TextToFind</code> + difficult, you should consider using <code>SCI_SEARCHINTARGET</code> instead.</p> + + <p>The return value is -1 if the search fails or the position of the start of the found text if + it succeeds. The <code>chrgText.cpMin</code> and <code>chrgText.cpMax</code> members of + <code>TextToFind</code> are filled in with the start and end positions of the found text.</p> + + <p>See also: <code><a class="message" + href="#SCI_SEARCHINTARGET">SCI_SEARCHINTARGET</a></code></p> + + <p><b id="TextToFind">TextToFind</b><br /> + This structure is defined to have exactly the same shape as the Win32 structure + <code>FINDTEXTEX</code> for old code that treated Scintilla as a RichEdit control.</p> +<pre> +struct TextToFind { + struct <a class="jump" href="#CharacterRange">CharacterRange</a> chrg; // range to search + char *lpstrText; // the search pattern (zero terminated) + struct CharacterRange chrgText; // returned as position of matching text +}; +</pre> + + <p><b id="SCI_SEARCHANCHOR">SCI_SEARCHANCHOR</b><br /> + <b id="SCI_SEARCHNEXT">SCI_SEARCHNEXT(int searchFlags, const char *text)</b><br /> + <b id="SCI_SEARCHPREV">SCI_SEARCHPREV(int searchFlags, const char *text)</b><br /> + These messages provide relocatable search support. This allows multiple incremental + interactive searches to be macro recorded while still setting the selection to found text so + the find/select operation is self-contained. These three messages send <a class="message" + href="#SCN_MACRORECORD"><code>SCN_MACRORECORD</code></a> <a class="jump" + href="#Notifications">notifications</a> if macro recording is enabled.</p> + + <p><code>SCI_SEARCHANCHOR</code> sets the search start point used by + <code>SCI_SEARCHNEXT</code> and <code>SCI_SEARCHPREV</code> to the start of the current + selection, that is, the end of the selection that is nearer to the start of the document. You + should always call this before calling either of <code>SCI_SEARCHNEXT</code> or + <code>SCI_SEARCHPREV</code>.</p> + + <p><code>SCI_SEARCHNEXT</code> and <code>SCI_SEARCHPREV</code> search for the next and previous + occurrence of the zero terminated search string pointed at by text. The search is modified by + the <a class="jump" href="#searchFlags"><code>searchFlags</code></a>. If you request a regular + expression, <code>SCI_SEARCHPREV</code> finds the first occurrence of the search string in the + document, not the previous one before the anchor point.</p> + + <p>The return value is -1 if nothing is found, otherwise the return value is the start position + of the matching text. The selection is updated to show the matched text, but is not scrolled + into view.</p> + + <p>See also: <a class="message" href="#SCI_SEARCHINTARGET"><code>SCI_SEARCHINTARGET</code></a>, + <a class="message" href="#SCI_FINDTEXT"><code>SCI_FINDTEXT</code></a></p> + + <h3 id="SearchAndReplaceUsingTheTarget">Search and replace using the target</h3> + + <p>Using <a class="message" href="#SCI_REPLACESEL"><code>SCI_REPLACESEL</code></a>, + modifications cause scrolling and other visible changes, which may take some time and cause + unwanted display updates. If performing many changes, such as a replace all command, the target + can be used instead. First, set the target, ie. the range to be replaced. Then call + <code>SCI_REPLACETARGET</code> or <code>SCI_REPLACETARGETRE</code>.</p> + + <p>Searching can be performed within the target range with <code>SCI_SEARCHINTARGET</code>, + which uses a counted string to allow searching for null characters. It returns the length of + range or -1 for failure, in which case the target is not moved. The flags used by + <code>SCI_SEARCHINTARGET</code> such as <code>SCFIND_MATCHCASE</code>, + <code>SCFIND_WHOLEWORD</code>, <code>SCFIND_WORDSTART</code>, and <code>SCFIND_REGEXP</code> + can be set with <code>SCI_SETSEARCHFLAGS</code>. <code>SCI_SEARCHINTARGET</code> may be simpler + for some clients to use than <a class="message" + href="#SCI_FINDTEXT"><code>SCI_FINDTEXT</code></a>, as that requires using a pointer to a + structure.</p> + <code><a class="message" href="#SCI_SETTARGETSTART">SCI_SETTARGETSTART(int pos)</a><br /> + <a class="message" href="#SCI_GETTARGETSTART">SCI_GETTARGETSTART</a><br /> + <a class="message" href="#SCI_SETTARGETEND">SCI_SETTARGETEND(int pos)</a><br /> + <a class="message" href="#SCI_GETTARGETEND">SCI_GETTARGETEND</a><br /> + <a class="message" href="#SCI_TARGETFROMSELECTION">SCI_TARGETFROMSELECTION</a><br /> + <a class="message" href="#SCI_SETSEARCHFLAGS">SCI_SETSEARCHFLAGS(int searchFlags)</a><br /> + <a class="message" href="#SCI_GETSEARCHFLAGS">SCI_GETSEARCHFLAGS</a><br /> + <a class="message" href="#SCI_SEARCHINTARGET">SCI_SEARCHINTARGET(int length, const char + *text)</a><br /> + <a class="message" href="#SCI_REPLACETARGET">SCI_REPLACETARGET(int length, const char + *text)</a><br /> + <a class="message" href="#SCI_REPLACETARGETRE">SCI_REPLACETARGETRE(int length, const char + *text)</a><br /> + </code> + + <p><b id="SCI_SETTARGETSTART">SCI_SETTARGETSTART(int pos)</b><br /> + <b id="SCI_GETTARGETSTART">SCI_GETTARGETSTART</b><br /> + <b id="SCI_SETTARGETEND">SCI_SETTARGETEND(int pos)</b><br /> + <b id="SCI_GETTARGETEND">SCI_GETTARGETEND</b><br /> + These functions set and return the start and end of the target. When searching in non-regular + expression mode, you can set start greater than end to find the last matching text in the + target rather than the first matching text. The target is also set by a successful + <code>SCI_SEARCHINTARGET</code>.</p> + + <p><b id="SCI_TARGETFROMSELECTION">SCI_TARGETFROMSELECTION</b><br /> + Set the target start and end to the start and end positions of the selection.</p> + + <p><b id="SCI_SETSEARCHFLAGS">SCI_SETSEARCHFLAGS(int searchFlags)</b><br /> + <b id="SCI_GETSEARCHFLAGS">SCI_GETSEARCHFLAGS</b><br /> + These get and set the <a class="jump" href="#searchFlags"><code>searchFlags</code></a> used by + <code>SCI_SEARCHINTARGET</code>. There are several option flags including a simple regular + expression search.</p> + + <p><b id="SCI_SEARCHINTARGET">SCI_SEARCHINTARGET(int length, const char *text)</b><br /> + This searches for the first occurrence of a text string in the target defined by + <code>SCI_SETTARGETSTART</code> and <code>SCI_SETTARGETEND</code>. The text string is not zero + terminated; the size is set by <code>length</code>. The search is modified by the search flags + set by <code>SCI_SETSEARCHFLAGS</code>. If the search succeeds, the target is set to the found + text and the return value is the position of the start of the matching text. If the search + fails, the result is -1.</p> + + <p><b id="SCI_REPLACETARGET">SCI_REPLACETARGET(int length, const char *text)</b><br /> + If <code>length</code> is -1, <code>text</code> is a zero terminated string, otherwise + <code>length</code> sets the number of character to replace the target with. + After replacement, the target range refers to the replacement text. + The return value + is the length of the replacement string.<br /> + Note that the recommended way to delete text in the document is to set the target to the text to be removed, + and to perform a replace target with an empty string.</p> + + <p><b id="SCI_REPLACETARGETRE">SCI_REPLACETARGETRE(int length, const char *text)</b><br /> + This replaces the target using regular expressions. If <code>length</code> is -1, + <code>text</code> is a zero terminated string, otherwise <code>length</code> is the number of + characters to use. The replacement string is formed from the text string with any sequences of + <code>\1</code> through <code>\9</code> replaced by tagged matches from the most recent regular + expression search. + After replacement, the target range refers to the replacement text. + The return value is the length of the replacement string.</p> + + <p>See also: <a class="message" href="#SCI_FINDTEXT"><code>SCI_FINDTEXT</code></a></p> + + <h2 id="Overtype">Overtype</h2> + + <p><b id="SCI_SETOVERTYPE">SCI_SETOVERTYPE(bool overType)</b><br /> + <b id="SCI_GETOVERTYPE">SCI_GETOVERTYPE</b><br /> + When overtype is enabled, each typed character replaces the character to the right of the text + caret. When overtype is disabled, characters are inserted at the caret. + <code>SCI_GETOVERTYPE</code> returns <code>TRUE</code> (1) if overtyping is active, otherwise + <code>FALSE</code> (0) will be returned. Use <code>SCI_SETOVERTYPE</code> to set the overtype + mode.</p> + + <h2 id="CutCopyAndPaste">Cut, copy and paste</h2> + + <code><a class="message" href="#SCI_CUT">SCI_CUT</a><br /> + <a class="message" href="#SCI_COPY">SCI_COPY</a><br /> + <a class="message" href="#SCI_PASTE">SCI_PASTE</a><br /> + <a class="message" href="#SCI_CLEAR">SCI_CLEAR</a><br /> + <a class="message" href="#SCI_CANPASTE">SCI_CANPASTE</a><br /> + <a class="message" href="#SCI_COPYRANGE">SCI_COPYRANGE(int start, int end)</a><br /> + <a class="message" href="#SCI_COPYTEXT">SCI_COPYTEXT(int length, + const char *text)</a><br /> + <a class="message" href="#SCI_SETPASTECONVERTENDINGS">SCI_SETPASTECONVERTENDINGS(bool convert)</a><br /> + <a class="message" href="#SCI_GETPASTECONVERTENDINGS">SCI_GETPASTECONVERTENDINGS</a><br /> + </code> + + <p><b id="SCI_CUT">SCI_CUT</b><br /> + <b id="SCI_COPY">SCI_COPY</b><br /> + <b id="SCI_PASTE">SCI_PASTE</b><br /> + <b id="SCI_CLEAR">SCI_CLEAR</b><br /> + <b id="SCI_CANPASTE">SCI_CANPASTE</b><br /> + These commands perform the standard tasks of cutting and copying data to the clipboard, + pasting from the clipboard into the document, and clearing the document. + <code>SCI_CANPASTE</code> returns non-zero if the document isn't read-only and if the selection + doesn't contain protected text. If you need a "can copy" or "can cut", use + <code>SCI_GETSELECTIONSTART()-SCI_GETSELECTIONEND()</code>, which will be non-zero if you can + copy or cut to the clipboard.</p> + + <p>GTK+ does not really support <code>SCI_CANPASTE</code> and always returns <code>TRUE</code> + unless the document is read-only.</p> + + <p>On X, the clipboard is asynchronous and may require several messages between + the destination and source applications. Data from SCI_PASTE will not arrive in the + document immediately.</p> + + <b id="SCI_COPYRANGE">SCI_COPYRANGE(int start, int end)</b><br /> + <b id="SCI_COPYTEXT">SCI_COPYTEXT(int length, const char *text)</b><br /> + <p><code>SCI_COPYRANGE</code> copies a range of text from the document to + the system clipboard and <code>SCI_COPYTEXT</code> copies a supplied piece of + text to the system clipboard.</p> + + <p><b id="SCI_SETPASTECONVERTENDINGS">SCI_SETPASTECONVERTENDINGS(bool convert)</b><br /> + <b id="SCI_GETPASTECONVERTENDINGS">SCI_GETPASTECONVERTENDINGS</b><br /> + If this property is set then when text is pasted any line ends are converted to match the document's + end of line mode as set with + <a class="message" href="#SCI_SETEOLMODE">SCI_SETEOLMODE</a>. + Currently only changeable on Windows. On GTK+ pasted text is always converted.</p> + + <h2 id="ErrorHandling">Error handling</h2> + + <p><b id="SCI_SETSTATUS">SCI_SETSTATUS(int status)</b><br /> + <b id="SCI_GETSTATUS">SCI_GETSTATUS</b><br /> + If an error occurs, Scintilla may set an internal error number that can be retrieved with + <code>SCI_GETSTATUS</code>. Not currently used but will be in the future. To clear the error + status call <code>SCI_SETSTATUS(0)</code>.</p> + + <h2 id="UndoAndRedo">Undo and Redo</h2> + + <p>Scintilla has multiple level undo and redo. It will continue to collect undoable actions + until memory runs out. Scintilla saves actions that change the document. Scintilla does not + save caret and selection movements, view scrolling and the like. Sequences of typing or + deleting are compressed into single actions to make it easier to undo and redo at a sensible + level of detail. Sequences of actions can be combined into actions that are undone as a unit. + These sequences occur between <code>SCI_BEGINUNDOACTION</code> and + <code>SCI_ENDUNDOACTION</code> messages. These sequences can be nested and only the top-level + sequences are undone as units.</p> + <code><a class="message" href="#SCI_UNDO">SCI_UNDO</a><br /> + <a class="message" href="#SCI_CANUNDO">SCI_CANUNDO</a><br /> + <a class="message" href="#SCI_EMPTYUNDOBUFFER">SCI_EMPTYUNDOBUFFER</a><br /> + <a class="message" href="#SCI_REDO">SCI_REDO</a><br /> + <a class="message" href="#SCI_CANREDO">SCI_CANREDO</a><br /> + <a class="message" href="#SCI_SETUNDOCOLLECTION">SCI_SETUNDOCOLLECTION(bool + collectUndo)</a><br /> + <a class="message" href="#SCI_GETUNDOCOLLECTION">SCI_GETUNDOCOLLECTION</a><br /> + <a class="message" href="#SCI_BEGINUNDOACTION">SCI_BEGINUNDOACTION</a><br /> + <a class="message" href="#SCI_ENDUNDOACTION">SCI_ENDUNDOACTION</a><br /> + </code> + + <p><b id="SCI_UNDO">SCI_UNDO</b><br /> + <b id="SCI_CANUNDO">SCI_CANUNDO</b><br /> + <code>SCI_UNDO</code> undoes one action, or if the undo buffer has reached a + <code>SCI_ENDUNDOACTION</code> point, all the actions back to the corresponding + <code>SCI_BEGINUNDOACTION</code>.</p> + + <p><code>SCI_CANUNDO</code> returns 0 if there is nothing to undo, and 1 if there is. You would + typically use the result of this message to enable/disable the Edit menu Undo command.</p> + + <p><b id="SCI_REDO">SCI_REDO</b><br /> + <b id="SCI_CANREDO">SCI_CANREDO</b><br /> + <code>SCI_REDO</code> undoes the effect of the last <code>SCI_UNDO</code> operation.</p> + + <p><code>SCI_CANREDO</code> returns 0 if there is no action to redo and 1 if there are undo + actions to redo. You could typically use the result of this message to enable/disable the Edit + menu Redo command.</p> + + <p><b id="SCI_EMPTYUNDOBUFFER">SCI_EMPTYUNDOBUFFER</b><br /> + This command tells Scintilla to forget any saved undo or redo history. It also sets the save + point to the start of the undo buffer, so the document will appear to be unmodified. This does + not cause the <code><a class="message" + href="#SCN_SAVEPOINTREACHED">SCN_SAVEPOINTREACHED</a></code> notification to be sent to the + container.</p> + + <p>See also: <a class="message" href="#SCI_SETSAVEPOINT"><code>SCI_SETSAVEPOINT</code></a></p> + + <p><b id="SCI_SETUNDOCOLLECTION">SCI_SETUNDOCOLLECTION(bool collectUndo)</b><br /> + <b id="SCI_GETUNDOCOLLECTION">SCI_GETUNDOCOLLECTION</b><br /> + You can control whether Scintilla collects undo information with + <code>SCI_SETUNDOCOLLECTION</code>. Pass in <code>true</code> (1) to collect information and + <code>false</code> (0) to stop collecting. If you stop collection, you should also use + <code>SCI_EMPTYUNDOBUFFER</code> to avoid the undo buffer being unsynchronized with the data in + the buffer.</p> + + <p>You might wish to turn off saving undo information if you use the Scintilla to store text + generated by a program (a Log view) or in a display window where text is often deleted and + regenerated.</p> + + <p><b id="SCI_BEGINUNDOACTION">SCI_BEGINUNDOACTION</b><br /> + <b id="SCI_ENDUNDOACTION">SCI_ENDUNDOACTION</b><br /> + Send these two messages to Scintilla to mark the beginning and end of a set of operations that + you want to undo all as one operation but that you have to generate as several operations. + Alternatively, you can use these to mark a set of operations that you do not want to have + combined with the preceding or following operations if they are undone.</p> + + <h2 id="SelectionAndInformation">Selection and information</h2> + + <p>Scintilla maintains a selection that stretches between two points, the anchor and the + current position. If the anchor and the current position are the same, there is no selected + text. Positions in the document range from 0 (before the first character), to the document size + (after the last character). If you use messages, there is nothing to stop you setting a + position that is in the middle of a CRLF pair, or in the middle of a 2 byte character. However, + keyboard commands will not move the caret into such positions.</p> + <code><a class="message" href="#SCI_GETTEXTLENGTH">SCI_GETTEXTLENGTH</a><br /> + <a class="message" href="#SCI_GETLENGTH">SCI_GETLENGTH</a><br /> + <a class="message" href="#SCI_GETLINECOUNT">SCI_GETLINECOUNT</a><br /> + <a class="message" href="#SCI_GETFIRSTVISIBLELINE">SCI_GETFIRSTVISIBLELINE</a><br /> + <a class="message" href="#SCI_LINESONSCREEN">SCI_LINESONSCREEN</a><br /> + <a class="message" href="#SCI_GETMODIFY">SCI_GETMODIFY</a><br /> + <a class="message" href="#SCI_SETSEL">SCI_SETSEL(int anchorPos, int currentPos)</a><br /> + <a class="message" href="#SCI_GOTOPOS">SCI_GOTOPOS(int position)</a><br /> + <a class="message" href="#SCI_GOTOLINE">SCI_GOTOLINE(int line)</a><br /> + <a class="message" href="#SCI_SETCURRENTPOS">SCI_SETCURRENTPOS(int position)</a><br /> + <a class="message" href="#SCI_GETCURRENTPOS">SCI_GETCURRENTPOS</a><br /> + <a class="message" href="#SCI_SETANCHOR">SCI_SETANCHOR(int position)</a><br /> + <a class="message" href="#SCI_GETANCHOR">SCI_GETANCHOR</a><br /> + <a class="message" href="#SCI_SETSELECTIONSTART">SCI_SETSELECTIONSTART(int position)</a><br /> + <a class="message" href="#SCI_GETSELECTIONSTART">SCI_GETSELECTIONSTART</a><br /> + <a class="message" href="#SCI_SETSELECTIONEND">SCI_SETSELECTIONEND(int position)</a><br /> + <a class="message" href="#SCI_GETSELECTIONEND">SCI_GETSELECTIONEND</a><br /> + <a class="message" href="#SCI_SELECTALL">SCI_SELECTALL</a><br /> + <a class="message" href="#SCI_LINEFROMPOSITION">SCI_LINEFROMPOSITION(int position)</a><br /> + <a class="message" href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE(int line)</a><br /> + <a class="message" href="#SCI_GETLINEENDPOSITION">SCI_GETLINEENDPOSITION(int line)</a><br /> + <a class="message" href="#SCI_LINELENGTH">SCI_LINELENGTH(int line)</a><br /> + <a class="message" href="#SCI_GETCOLUMN">SCI_GETCOLUMN(int position)</a><br /> + <a class="message" href="#SCI_FINDCOLUMN">SCI_FINDCOLUMN(int line, int column)</a><br /> + <a class="message" href="#SCI_POSITIONFROMPOINT">SCI_POSITIONFROMPOINT(int x, int y)</a><br /> + <a class="message" href="#SCI_POSITIONFROMPOINTCLOSE">SCI_POSITIONFROMPOINTCLOSE(int x, int + y)</a><br /> + <a class="message" href="#SCI_POINTXFROMPOSITION">SCI_POINTXFROMPOSITION(<unused>, int + position)</a><br /> + <a class="message" href="#SCI_POINTYFROMPOSITION">SCI_POINTYFROMPOSITION(<unused>, int + position)</a><br /> + <a class="message" href="#SCI_HIDESELECTION">SCI_HIDESELECTION(bool hide)</a><br /> + <a class="message" href="#SCI_GETSELTEXT">SCI_GETSELTEXT(<unused>, char *text)</a><br /> + <a class="message" href="#SCI_GETCURLINE">SCI_GETCURLINE(int textLen, char *text)</a><br /> + <a class="message" href="#SCI_SELECTIONISRECTANGLE">SCI_SELECTIONISRECTANGLE</a><br /> + <a class="message" href="#SCI_SETSELECTIONMODE">SCI_SETSELECTIONMODE(int mode)</a><br /> + <a class="message" href="#SCI_GETSELECTIONMODE">SCI_GETSELECTIONMODE</a><br /> + <a class="message" href="#SCI_GETLINESELSTARTPOSITION">SCI_GETLINESELSTARTPOSITION(int line)</a><br /> + <a class="message" href="#SCI_GETLINESELENDPOSITION">SCI_GETLINESELENDPOSITION(int line)</a><br /> + <a class="message" href="#SCI_MOVECARETINSIDEVIEW">SCI_MOVECARETINSIDEVIEW</a><br /> + <a class="message" href="#SCI_WORDENDPOSITION">SCI_WORDENDPOSITION(int position, bool + onlyWordCharacters)</a><br /> + <a class="message" href="#SCI_WORDSTARTPOSITION">SCI_WORDSTARTPOSITION(int position, bool + onlyWordCharacters)</a><br /> + <a class="message" href="#SCI_POSITIONBEFORE">SCI_POSITIONBEFORE(int position)</a><br /> + <a class="message" href="#SCI_POSITIONAFTER">SCI_POSITIONAFTER(int position)</a><br /> + <a class="message" href="#SCI_TEXTWIDTH">SCI_TEXTWIDTH(int styleNumber, const char *text)</a><br /> + <a class="message" href="#SCI_TEXTHEIGHT">SCI_TEXTHEIGHT(int line)</a><br /> + <a class="message" href="#SCI_CHOOSECARETX">SCI_CHOOSECARETX</a><br /> + </code> + + <p><b id="SCI_GETTEXTLENGTH">SCI_GETTEXTLENGTH</b><br /> + <b id="SCI_GETLENGTH">SCI_GETLENGTH</b><br /> + Both these messages return the length of the document in characters.</p> + + <p><b id="SCI_GETLINECOUNT">SCI_GETLINECOUNT</b><br /> + This returns the number of lines in the document. An empty document contains 1 line. A + document holding only an end of line sequence has 2 lines.</p> + + <p><b id="SCI_GETFIRSTVISIBLELINE">SCI_GETFIRSTVISIBLELINE</b><br /> + This returns the line number of the first visible line in the Scintilla view. The first line + in the document is numbered 0. The value is a visible line rather than a document line.</p> + + <p><b id="SCI_LINESONSCREEN">SCI_LINESONSCREEN</b><br /> + This returns the number of complete lines visible on the screen. With a constant line height, + this is the vertical space available divided by the line separation. Unless you arrange to size + your window to an integral number of lines, there may be a partial line visible at the bottom + of the view.</p> + + <p><b id="SCI_GETMODIFY">SCI_GETMODIFY</b><br /> + This returns non-zero if the document is modified and 0 if it is unmodified. The modified + status of a document is determined by the undo position relative to the save point. The save + point is set by <a class="message" href="#SCI_SETSAVEPOINT"><code>SCI_SETSAVEPOINT</code></a>, + usually when you have saved data to a file.</p> + + <p>If you need to be notified when the document becomes modified, Scintilla notifies the + container that it has entered or left the save point with the <a class="message" + href="#SCN_SAVEPOINTREACHED"><code>SCN_SAVEPOINTREACHED</code></a> and <a class="message" + href="#SCN_SAVEPOINTLEFT"><code>SCN_SAVEPOINTLEFT</code></a> <a class="jump" + href="#Notifications">notification messages</a>.</p> + + <p><b id="SCI_SETSEL">SCI_SETSEL(int anchorPos, int currentPos)</b><br /> + This message sets both the anchor and the current position. If <code>currentPos</code> is + negative, it means the end of the document. If <code>anchorPos</code> is negative, it means + remove any selection (i.e. set the anchor to the same position as <code>currentPos</code>). The + caret is scrolled into view after this operation.</p> + + <p><b id="SCI_GOTOPOS">SCI_GOTOPOS(int pos)</b><br /> + This removes any selection, sets the caret at <code>pos</code> and scrolls the view to make + the caret visible, if necessary. It is equivalent to + <code>SCI_SETSEL(pos, pos)</code>. The anchor position is set the same as the current + position.</p> + + <p><b id="SCI_GOTOLINE">SCI_GOTOLINE(int line)</b><br /> + This removes any selection and sets the caret at the start of line number <code>line</code> + and scrolls the view (if needed) to make it visible. The anchor position is set the same as the + current position. If <code>line</code> is outside the lines in the document (first line is 0), + the line set is the first or last.</p> + + <p><b id="SCI_SETCURRENTPOS">SCI_SETCURRENTPOS(int pos)</b><br /> + This sets the current position and creates a selection between the anchor and the current + position. The caret is not scrolled into view.</p> + + <p>See also: <a class="message" href="#SCI_SCROLLCARET"><code>SCI_SCROLLCARET</code></a></p> + + <p><b id="SCI_GETCURRENTPOS">SCI_GETCURRENTPOS</b><br /> + This returns the current position.</p> + + <p><b id="SCI_SETANCHOR">SCI_SETANCHOR(int pos)</b><br /> + This sets the anchor position and creates a selection between the anchor position and the + current position. The caret is not scrolled into view.</p> + + <p>See also: <a class="message" href="#SCI_SCROLLCARET"><code>SCI_SCROLLCARET</code></a></p> + + <p><b id="SCI_GETANCHOR">SCI_GETANCHOR</b><br /> + This returns the current anchor position.</p> + + <p><b id="SCI_SETSELECTIONSTART">SCI_SETSELECTIONSTART(int pos)</b><br /> + <b id="SCI_SETSELECTIONEND">SCI_SETSELECTIONEND(int pos)</b><br /> + These set the selection based on the assumption that the anchor position is less than the + current position. They do not make the caret visible. The table shows the positions of the + anchor and the current position after using these messages.</p> + + <table cellpadding="3" cellspacing="0" border="1" summary="SetSelection caret positioning"> + <thead align="center"> + <tr> + <th> + </th> + + <th>anchor</th> + + <th>current</th> + </tr> + </thead> + + <tbody align="center"> + <tr> + <th><code>SCI_SETSELECTIONSTART</code></th> + + <td><code>pos</code></td> + + <td><code>Max(pos, current)</code></td> + </tr> + + <tr> + <th><code>SCI_SETSELECTIONEND</code></th> + + <td><code>Min(anchor, pos)</code></td> + + <td><code>pos</code></td> + </tr> + </tbody> + </table> + + <p>See also: <a class="message" href="#SCI_SCROLLCARET"><code>SCI_SCROLLCARET</code></a></p> + + <p><b id="SCI_GETSELECTIONSTART">SCI_GETSELECTIONSTART</b><br /> + <b id="SCI_GETSELECTIONEND">SCI_GETSELECTIONEND</b><br /> + These return the start and end of the selection without regard to which end is the current + position and which is the anchor. <code>SCI_GETSELECTIONSTART</code> returns the smaller of the + current position or the anchor position. <code>SCI_GETSELECTIONEND</code> returns the larger of + the two values.</p> + + <p><b id="SCI_SELECTALL">SCI_SELECTALL</b><br /> + This selects all the text in the document. The current position is not scrolled into view.</p> + + <p><b id="SCI_LINEFROMPOSITION">SCI_LINEFROMPOSITION(int pos)</b><br /> + This message returns the line that contains the position <code>pos</code> in the document. The + return value is 0 if <code>pos</code> <= 0. The return value is the last line if + <code>pos</code> is beyond the end of the document.</p> + + <p><b id="SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE(int line)</b><br /> + This returns the document position that corresponds with the start of the line. If + <code>line</code> is negative, the position of the line holding the start of the selection is + returned. If <code>line</code> is greater than the lines in the document, the return value is + -1. If <code>line</code> is equal to the number of lines in the document (i.e. 1 line past the + last line), the return value is the end of the document.</p> + + <p><b id="SCI_GETLINEENDPOSITION">SCI_GETLINEENDPOSITION(int line)</b><br /> + This returns the position at the end of the line, before any line end characters. If <code>line</code> + is the last line in the document (which does not have any end of line characters), the result is the size of the + document. If <code>line</code> is negative or <code>line</code> >= <a class="message" + href="#SCI_GETLINECOUNT"><code>SCI_GETLINECOUNT()</code></a>, the result is undefined.</p> + + <p><b id="SCI_LINELENGTH">SCI_LINELENGTH(int line)</b><br /> + This returns the length of the line, including any line end characters. If <code>line</code> + is negative or beyond the last line in the document, the result is 0. If you want the length of + the line not including any end of line characters, use <a class="message" + href="#SCI_GETLINEENDPOSITION"><code>SCI_GETLINEENDPOSITION(line)</code></a> - <a class="message" + href="#SCI_POSITIONFROMLINE"><code>SCI_POSITIONFROMLINE(line)</code></a>.</p> + <b id="SCI_GETSELTEXT">SCI_GETSELTEXT(<unused>, char *text)</b><br /> + This copies the currently selected text and a terminating 0 byte to the <code>text</code> + buffer. The buffer must be at least + <code>SCI_GETSELECTIONEND()-SCI_GETSELECTIONSTART()+1</code> bytes long. <br /> + If the text argument is 0 then the length that should be allocated + to store the entire selection is returned.<br /> + + <p>See also: <code><a class="message" href="#SCI_GETCURLINE">SCI_GETCURLINE</a>, <a + class="message" href="#SCI_GETLINE">SCI_GETLINE</a>, <a class="message" + href="#SCI_GETTEXT">SCI_GETTEXT</a>, <a class="message" + href="#SCI_GETSTYLEDTEXT">SCI_GETSTYLEDTEXT</a>, <a class="message" + href="#SCI_GETTEXTRANGE">SCI_GETTEXTRANGE</a></code></p> + + <p><b id="SCI_GETCURLINE">SCI_GETCURLINE(int textLen, char *text)</b><br /> + This retrieves the text of the line containing the caret and returns the position within the + line of the caret. Pass in <code>char* text</code> pointing at a buffer large enough to hold + the text you wish to retrieve and a terminating 0 character. + Set <code>textLen</code> to the + length of the buffer which must be at least 1 to hold the terminating 0 character. + If the text argument is 0 then the length that should be allocated + to store the entire current line is returned.</p> + + <p>See also: <code><a class="message" href="#SCI_GETSELTEXT">SCI_GETSELTEXT</a>, <a + class="message" href="#SCI_GETLINE">SCI_GETLINE</a>, <a class="message" + href="#SCI_GETTEXT">SCI_GETTEXT</a>, <a class="message" + href="#SCI_GETSTYLEDTEXT">SCI_GETSTYLEDTEXT</a>, <a class="message" + href="#SCI_GETTEXTRANGE">SCI_GETTEXTRANGE</a></code></p> + + <p><b id="SCI_SELECTIONISRECTANGLE">SCI_SELECTIONISRECTANGLE</b><br /> + This returns 1 if the current selection is in rectangle mode, 0 if not.</p> + + <p><b id="SCI_SETSELECTIONMODE">SCI_SETSELECTIONMODE(int mode)</b><br /> + <b id="SCI_GETSELECTIONMODE">SCI_GETSELECTIONMODE</b><br /> + The two functions set and get the selection mode, which can be + stream (<code>SC_SEL_STREAM</code>=0) or + rectangular (<code>SC_SEL_RECTANGLE</code>=1) + or by lines (<code>SC_SEL_LINES</code>=2). + When set in these modes, regular caret moves will extend or reduce the selection, + until the mode is cancelled by a call with same value or with <code>SCI_CANCEL</code>. + The get function returns the current mode even if the selection was made by mouse + or with regular extended moves.</p> + + <p><b id="SCI_GETLINESELSTARTPOSITION">SCI_GETLINESELSTARTPOSITION(int line)</b><br /> + <b id="SCI_GETLINESELENDPOSITION">SCI_GETLINESELENDPOSITION(int line)</b><br /> + Retrieve the position of the start and end of the selection at the given line with + INVALID_POSITION returned if no selection on this line.</p> + + <p><b id="SCI_MOVECARETINSIDEVIEW">SCI_MOVECARETINSIDEVIEW</b><br /> + If the caret is off the top or bottom of the view, it is moved to the nearest line that is + visible to its current position. Any selection is lost.</p> + + <p><b id="SCI_WORDENDPOSITION">SCI_WORDENDPOSITION(int position, bool + onlyWordCharacters)</b><br /> + <b id="SCI_WORDSTARTPOSITION">SCI_WORDSTARTPOSITION(int position, bool + onlyWordCharacters)</b><br /> + These messages return the start and end of words using the same definition of words as used + internally within Scintilla. You can set your own list of characters that count as words with + <a class="message" href="#SCI_SETWORDCHARS"><code>SCI_SETWORDCHARS</code></a>. The position + sets the start or the search, which is forwards when searching for the end and backwards when + searching for the start.</p> + + <p>Set <code>onlyWordCharacters</code> to <code>true</code> (1) to stop searching at the first + non-word character in the search direction. If <code>onlyWordCharacters</code> is + <code>false</code> (0), the first character in the search direction sets the type of the search + as word or non-word and the search stops at the first non-matching character. Searches are also + terminated by the start or end of the document.</p> + + <p>If "w" represents word characters and "." represents non-word characters and "|" represents + the position and <code>true</code> or <code>false</code> is the state of + <code>onlyWordCharacters</code>:</p> + + <table cellpadding="3" cellspacing="0" border="1" summary="Word start and end positions"> + <thead align="center"> + <tr> + <th>Initial state</th> + + <th>end, true</th> + + <th>end, false</th> + + <th>start, true</th> + + <th>start, false</th> + </tr> + </thead> + + <tbody align="center"> + <tr> + <td>..ww..|..ww..</td> + + <td>..ww..|..ww..</td> + + <td>..ww....|ww..</td> + + <td>..ww..|..ww..</td> + + <td>..ww|....ww..</td> + </tr> + + <tr> + <td>....ww|ww....</td> + + <td>....wwww|....</td> + + <td>....wwww|....</td> + + <td>....|wwww....</td> + + <td>....|wwww....</td> + </tr> + + <tr> + <td>..ww|....ww..</td> + + <td>..ww|....ww..</td> + + <td>..ww....|ww..</td> + + <td>..|ww....ww..</td> + + <td>..|ww....ww..</td> + </tr> + + <tr> + <td>..ww....|ww..</td> + + <td>..ww....ww|..</td> + + <td>..ww....ww|..</td> + + <td>..ww....|ww..</td> + + <td>..ww|....ww..</td> + </tr> + </tbody> + </table> + + <p><b id="SCI_POSITIONBEFORE">SCI_POSITIONBEFORE(int position)</b><br /> + <b id="SCI_POSITIONAFTER">SCI_POSITIONAFTER(int position)</b><br /> + These messages return the position before and after another position + in the document taking into account the current code page. The minimum + position returned is 0 and the maximum is the last position in the document. + If called with a position within a multi byte character will return the position + of the start/end of that character.</p> + + <p><b id="SCI_TEXTWIDTH">SCI_TEXTWIDTH(int styleNumber, const char *text)</b><br /> + This returns the pixel width of a string drawn in the given <code>styleNumber</code> which can + be used, for example, to decide how wide to make the line number margin in order to display a + given number of numerals.</p> + + <p><b id="SCI_TEXTHEIGHT">SCI_TEXTHEIGHT(int line)</b><br /> + This returns the height in pixels of a particular line. Currently all lines are the same + height.</p> + + <p><b id="SCI_GETCOLUMN">SCI_GETCOLUMN(int pos)</b><br /> + This message returns the column number of a position <code>pos</code> within the document + taking the width of tabs into account. This returns the column number of the last tab on the + line before <code>pos</code>, plus the number of characters between the last tab and + <code>pos</code>. If there are no tab characters on the line, the return value is the number of + characters up to the position on the line. In both cases, double byte characters count as a + single character. This is probably only useful with monospaced fonts.</p> + + <p><b id="SCI_FINDCOLUMN">SCI_FINDCOLUMN(int line, int column)</b><br /> + This message returns the position of a <code>column</code> on a <code>line</code> + taking the width of tabs into account. It treats a multi-byte character as a single column. + Column numbers, like lines start at 0.</p> + + <p><b id="SCI_POSITIONFROMPOINT">SCI_POSITIONFROMPOINT(int x, int y)</b><br /> + <b id="SCI_POSITIONFROMPOINTCLOSE">SCI_POSITIONFROMPOINTCLOSE(int x, int y)</b><br /> + <code>SCI_POSITIONFROMPOINT</code> finds the closest character position to a point and + <code>SCI_POSITIONFROMPOINTCLOSE</code> is similar but returns -1 if the point is outside the + window or not close to any characters.</p> + + <p><b id="SCI_POINTXFROMPOSITION">SCI_POINTXFROMPOSITION(<unused>, int pos)</b><br /> + <b id="SCI_POINTYFROMPOSITION">SCI_POINTYFROMPOSITION(<unused>, int pos)</b><br /> + These messages return the x and y display pixel location of text at position <code>pos</code> + in the document.</p> + + <p><b id="SCI_HIDESELECTION">SCI_HIDESELECTION(bool hide)</b><br /> + The normal state is to make the selection visible by drawing it as set by <a class="message" + href="#SCI_SETSELFORE"><code>SCI_SETSELFORE</code></a> and <a class="message" + href="#SCI_SETSELBACK"><code>SCI_SETSELBACK</code></a>. However, if you hide the selection, it + is drawn as normal text.</p> + + <p><b id="SCI_CHOOSECARETX">SCI_CHOOSECARETX</b><br /> + Scintilla remembers the x value of the last position horizontally moved to explicitly by the + user and this value is then used when moving vertically such as by using the up and down keys. + This message sets the current x position of the caret as the remembered value.</p> + + <h2 id="ScrollingAndAutomaticScrolling">Scrolling and automatic scrolling</h2> + <code><a class="message" href="#SCI_LINESCROLL">SCI_LINESCROLL(int column, int line)</a><br /> + <a class="message" href="#SCI_SCROLLCARET">SCI_SCROLLCARET</a><br /> + <a class="message" href="#SCI_SETXCARETPOLICY">SCI_SETXCARETPOLICY(int caretPolicy, int + caretSlop)</a><br /> + <a class="message" href="#SCI_SETYCARETPOLICY">SCI_SETYCARETPOLICY(int caretPolicy, int + caretSlop)</a><br /> + <a class="message" href="#SCI_SETVISIBLEPOLICY">SCI_SETVISIBLEPOLICY(int caretPolicy, int + caretSlop)</a><br /> + <a class="message" href="#SCI_SETHSCROLLBAR">SCI_SETHSCROLLBAR(bool visible)</a><br /> + <a class="message" href="#SCI_GETHSCROLLBAR">SCI_GETHSCROLLBAR</a><br /> + <a class="message" href="#SCI_SETVSCROLLBAR">SCI_SETVSCROLLBAR(bool visible)</a><br /> + <a class="message" href="#SCI_GETVSCROLLBAR">SCI_GETVSCROLLBAR</a><br /> + <a class="message" href="#SCI_GETXOFFSET">SCI_GETXOFFSET</a><br /> + <a class="message" href="#SCI_SETXOFFSET">SCI_SETXOFFSET(int xOffset)</a><br /> + <a class="message" href="#SCI_SETSCROLLWIDTH">SCI_SETSCROLLWIDTH(int pixelWidth)</a><br /> + <a class="message" href="#SCI_GETSCROLLWIDTH">SCI_GETSCROLLWIDTH</a><br /> + <a class="message" href="#SCI_SETENDATLASTLINE">SCI_SETENDATLASTLINE(bool + endAtLastLine)</a><br /> + <a class="message" href="#SCI_GETENDATLASTLINE">SCI_GETENDATLASTLINE</a><br /> + </code> + + <p><b id="SCI_LINESCROLL">SCI_LINESCROLL(int column, int line)</b><br /> + This will attempt to scroll the display by the number of columns and lines that you specify. + Positive line values increase the line number at the top of the screen (i.e. they move the text + upwards as far as the user is concerned), Negative line values do the reverse.</p> + + <p>The column measure is the width of a space in the default style. Positive values increase + the column at the left edge of the view (i.e. they move the text leftwards as far as the user + is concerned). Negative values do the reverse.</p> + + <p>See also: <a class="message" href="#SCI_SETXOFFSET"><code>SCI_SETXOFFSET</code></a></p> + + <p><b id="SCI_SCROLLCARET">SCI_SCROLLCARET</b><br /> + If the current position (this is the caret if there is no selection) is not visible, the view + is scrolled to make it visible according to the current caret policy.</p> + + <p><b id="SCI_SETXCARETPOLICY">SCI_SETXCARETPOLICY(int caretPolicy, int caretSlop)</b><br /> + <b id="SCI_SETYCARETPOLICY">SCI_SETYCARETPOLICY(int caretPolicy, int caretSlop)</b><br /> + These set the caret policy. The value of <code>caretPolicy</code> is a combination of + <code>CARET_SLOP</code>, <code>CARET_STRICT</code>, <code>CARET_JUMPS</code> and + <code>CARET_EVEN</code>.</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Caret policy"> + <tbody valign="top"> + <tr> + <th align="left"><code>CARET_SLOP</code></th> + + <td>If set, we can define a slop value: <code>caretSlop</code>. This value defines an + unwanted zone (UZ) where the caret is... unwanted. This zone is defined as a number of + pixels near the vertical margins, and as a number of lines near the horizontal margins. + By keeping the caret away from the edges, it is seen within its context. This makes it + likely that the identifier that the caret is on can be completely seen, and that the + current line is seen with some of the lines following it, which are often dependent on + that line.</td> + </tr> + + <tr> + <th align="left"><code>CARET_STRICT</code></th> + + <td>If set, the policy set by <code>CARET_SLOP</code> is enforced... strictly. The caret + is centred on the display if <code>caretSlop</code> is not set, and cannot go in the UZ + if <code>caretSlop</code> is set.</td> + </tr> + + <tr> + <th align="left"><code>CARET_JUMPS</code></th> + + <td>If set, the display is moved more energetically so the caret can move in the same + direction longer before the policy is applied again. '3UZ' notation is used to indicate + three time the size of the UZ as a distance to the margin.</td> + </tr> + + <tr> + <th align="left"><code>CARET_EVEN</code></th> + + <td>If not set, instead of having symmetrical UZs, the left and bottom UZs are extended + up to right and top UZs respectively. This way, we favour the displaying of useful + information: the beginning of lines, where most code reside, and the lines after the + caret, for example, the body of a function.</td> + </tr> + </tbody> + </table> + + <table cellpadding="3" cellspacing="0" border="1" summary="Caret positioning"> + <thead align="center"> + <tr> + <th>slop</th> + + <th>strict</th> + + <th>jumps</th> + + <th>even</th> + + <th>Caret can go to the margin</th> + + <th>On reaching limit (going out of visibility<br /> + or going into the UZ) display is...</th> + </tr> + </thead> + + <tbody align="center"> + <tr> + <td>0</td> + + <td>0</td> + + <td>0</td> + + <td>0</td> + + <td>Yes</td> + + <td>moved to put caret on top/on right</td> + </tr> + + <tr> + <td>0</td> + + <td>0</td> + + <td>0</td> + + <td>1</td> + + <td>Yes</td> + + <td>moved by one position</td> + </tr> + + <tr> + <td>0</td> + + <td>0</td> + + <td>1</td> + + <td>0</td> + + <td>Yes</td> + + <td>moved to put caret on top/on right</td> + </tr> + + <tr> + <td>0</td> + + <td>0</td> + + <td>1</td> + + <td>1</td> + + <td>Yes</td> + + <td>centred on the caret</td> + </tr> + + <tr> + <td>0</td> + + <td>1</td> + + <td>-</td> + + <td>0</td> + + <td>Caret is always on top/on right of display</td> + + <td>-</td> + </tr> + + <tr> + <td>0</td> + + <td>1</td> + + <td>-</td> + + <td>1</td> + + <td>No, caret is always centred</td> + + <td>-</td> + </tr> + + <tr> + <td>1</td> + + <td>0</td> + + <td>0</td> + + <td>0</td> + + <td>Yes</td> + + <td>moved to put caret out of the asymmetrical UZ</td> + </tr> + + <tr> + <td>1</td> + + <td>0</td> + + <td>0</td> + + <td>1</td> + + <td>Yes</td> + + <td>moved to put caret out of the UZ</td> + </tr> + + <tr> + <td>1</td> + + <td>0</td> + + <td>1</td> + + <td>0</td> + + <td>Yes</td> + + <td>moved to put caret at 3UZ of the top or right margin</td> + </tr> + + <tr> + <td>1</td> + + <td>0</td> + + <td>1</td> + + <td>1</td> + + <td>Yes</td> + + <td>moved to put caret at 3UZ of the margin</td> + </tr> + + <tr> + <td>1</td> + + <td>1</td> + + <td>-</td> + + <td>0</td> + + <td>Caret is always at UZ of top/right margin</td> + + <td>-</td> + </tr> + + <tr> + <td>1</td> + + <td>1</td> + + <td>0</td> + + <td>1</td> + + <td>No, kept out of UZ</td> + + <td>moved by one position</td> + </tr> + + <tr> + <td>1</td> + + <td>1</td> + + <td>1</td> + + <td>0</td> + + <td>No, kept out of UZ</td> + + <td>moved to put caret at 3UZ of the margin</td> + </tr> + </tbody> + </table> + + <p><b id="SCI_SETVISIBLEPOLICY">SCI_SETVISIBLEPOLICY(int caretPolicy, int caretSlop)</b><br /> + This determines how the vertical positioning is determined when <a class="message" + href="#SCI_ENSUREVISIBLEENFORCEPOLICY"><code>SCI_ENSUREVISIBLEENFORCEPOLICY</code></a> is + called. It takes <code>VISIBLE_SLOP</code> and <code>VISIBLE_STRICT</code> flags for the policy + parameter. It is similar in operation to <a class="message" + href="#SCI_SETYCARETPOLICY"><code>SCI_SETYCARETPOLICY(int caretPolicy, int + caretSlop)</code></a>.</p> + + <p><b id="SCI_SETHSCROLLBAR">SCI_SETHSCROLLBAR(bool visible)</b><br /> + <b id="SCI_GETHSCROLLBAR">SCI_GETHSCROLLBAR</b><br /> + The horizontal scroll bar is only displayed if it is needed for the assumed width. + If you never wish to see it, call + <code>SCI_SETHSCROLLBAR(0)</code>. Use <code>SCI_SETHSCROLLBAR(1)</code> to enable it again. + <code>SCI_GETHSCROLLBAR</code> returns the current state. The default state is to display it + when needed. + See also: <a class="message" href="#SCI_SETSCROLLWIDTH">SCI_SETSCROLLWIDTH</a>.</p> + + <p><b id="SCI_SETVSCROLLBAR">SCI_SETVSCROLLBAR(bool visible)</b><br /> + <b id="SCI_GETVSCROLLBAR">SCI_GETVSCROLLBAR</b><br /> + By default, the vertical scroll bar is always displayed when required. You can choose to hide + or show it with <code>SCI_SETVSCROLLBAR</code> and get the current state with + <code>SCI_GETVSCROLLBAR</code>.</p> + + <p><b id="SCI_SETXOFFSET">SCI_SETXOFFSET(int xOffset)</b><br /> + <b id="SCI_GETXOFFSET">SCI_GETXOFFSET</b><br /> + The <code>xOffset</code> is the horizontal scroll position in pixels of the start of the text + view. A value of 0 is the normal position with the first text column visible at the left of the + view.</p> + + <p>See also: <a class="message" href="#SCI_LINESCROLL"><code>SCI_LINESCROLL</code></a></p> + + <p><b id="SCI_SETSCROLLWIDTH">SCI_SETSCROLLWIDTH(int pixelWidth)</b><br /> + <b id="SCI_GETSCROLLWIDTH">SCI_GETSCROLLWIDTH</b><br /> + For performance, Scintilla does not measure the display width of the document to determine + the properties of the horizontal scroll bar. Instead, an assumed width is used. + These messages set and get the document width in pixels assumed by Scintilla. + The default value is 2000.</p> + + <p><b id="SCI_SETENDATLASTLINE">SCI_SETENDATLASTLINE(bool endAtLastLine)</b><br /> + <b id="SCI_GETENDATLASTLINE">SCI_GETENDATLASTLINE</b><br /> + <code>SCI_SETENDATLASTLINE</code> sets the scroll range so that maximum scroll position has + the last line at the bottom of the view (default). Setting this to <code>false</code> allows + scrolling one page below the last line.</p> + + <h2 id="WhiteSpace">White space</h2> + <code><a class="message" href="#SCI_SETVIEWWS">SCI_SETVIEWWS(int wsMode)</a><br /> + <a class="message" href="#SCI_GETVIEWWS">SCI_GETVIEWWS</a><br /> + <a class="message" href="#SCI_SETWHITESPACEFORE">SCI_SETWHITESPACEFORE(bool + useWhitespaceForeColour, int colour)</a><br /> + <a class="message" href="#SCI_SETWHITESPACEBACK">SCI_SETWHITESPACEBACK(bool + useWhitespaceBackColour, int colour)</a><br /> + </code> + + <p><b id="SCI_SETVIEWWS">SCI_SETVIEWWS(int wsMode)</b><br /> + <b id="SCI_GETVIEWWS">SCI_GETVIEWWS</b><br /> + White space can be made visible which may useful for languages in which white space is + significant, such as Python. Space characters appear as small centred dots and tab characters + as light arrows pointing to the right. There are also ways to control the display of <a + class="jump" href="#LineEndings">end of line characters</a>. The two messages set and get the + white space display mode. The <code>wsMode</code> argument can be one of:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="White space policy"> + <tbody valign="top"> + <tr> + <th align="left"><code>SCWS_INVISIBLE</code></th> + + <td>0</td> + + <td>The normal display mode with white space displayed as an empty background + colour.</td> + </tr> + + <tr> + <th align="left"><code>SCWS_VISIBLEALWAYS</code></th> + + <td>1</td> + + <td>White space characters are drawn as dots and arrows,</td> + </tr> + + <tr> + <th align="left"><code>SCWS_VISIBLEAFTERINDENT</code></th> + + <td>2</td> + + <td>White space used for indentation is displayed normally but after the first visible + character, it is shown as dots and arrows.</td> + </tr> + </tbody> + </table> + + <p>The effect of using any other <code>wsMode</code> value is undefined.</p> + + <p><b id="SCI_SETWHITESPACEFORE">SCI_SETWHITESPACEFORE<(bool useWhitespaceForeColour, int <a + class="jump" href="#colour">colour</a>)</b><br /> + <b id="SCI_SETWHITESPACEBACK">SCI_SETWHITESPACEBACK(bool useWhitespaceBackColour, int <a + class="jump" href="#colour">colour</a>)</b><br /> + By default, the colour of visible white space is determined by the lexer in use. The + foreground and/or background colour of all visible white space can be set globally, overriding + the lexer's colours with <code>SCI_SETWHITESPACEFORE</code> and + <code>SCI_SETWHITESPACEBACK</code>.</p> + + <h2 id="Cursor">Cursor</h2> + + <p><b id="SCI_SETCURSOR">SCI_SETCURSOR(int curType)</b><br /> + <b id="SCI_GETCURSOR">SCI_GETCURSOR</b><br /> + The cursor is normally chosen in a context sensitive way, so it will be different over the + margin than when over the text. When performing a slow action, you may wish to change to a wait + cursor. You set the cursor type with <code>SCI_SETCURSOR</code>. The <code>curType</code> + argument can be:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Mouse cursors"> + <tbody valign="top"> + <tr> + <th align="left"><code>SC_CURSORNORMAL</code></th> + + <td>-1</td> + + <td>The normal cursor is displayed.</td> + </tr> + + <tr> + <th align="left"><code>SC_CURSORWAIT</code></th> + + <td> 4</td> + + <td>The wait cursor is displayed when the mouse is over or owned by the Scintilla + window.</td> + </tr> + </tbody> + </table> + + <p>Cursor values 1 through 7 have defined cursors, but only <code>SC_CURSORWAIT</code> is + usefully controllable. Other values of <code>curType</code> cause a pointer to be displayed. + The <code>SCI_GETCURSOR</code> message returns the last cursor type you set, or + <code>SC_CURSORNORMAL</code> (-1) if you have not set a cursor type.</p> + + <h2 id="MouseCapture">Mouse capture</h2> + + <p><b id="SCI_SETMOUSEDOWNCAPTURES">SCI_SETMOUSEDOWNCAPTURES(bool captures)</b><br /> + <b id="SCI_GETMOUSEDOWNCAPTURES">SCI_GETMOUSEDOWNCAPTURES</b><br /> + When the mouse is pressed inside Scintilla, it is captured so future mouse movement events are + sent to Scintilla. This behavior may be turned off with + <code>SCI_SETMOUSEDOWNCAPTURES(0)</code>.</p> + + <h2 id="LineEndings">Line endings</h2> + + <p>Scintilla can interpret any of the three major line end conventions, Macintosh (\r), Unix + (\n) and CP/M / DOS / Windows (\r\n). When the user presses the Enter key, one of these line + end strings is inserted into the buffer. The default is \r\n in Windows and \n in Unix, but + this can be changed with the <code>SCI_SETEOLMODE</code> message. You can also convert the + entire document to one of these line endings with <code>SCI_CONVERTEOLS</code>. Finally, you + can choose to display the line endings with <code>SCI_SETVIEWEOL</code>.</p> + <code><a class="message" href="#SCI_SETEOLMODE">SCI_SETEOLMODE(int eolMode)</a><br /> + <a class="message" href="#SCI_GETEOLMODE">SCI_GETEOLMODE</a><br /> + <a class="message" href="#SCI_CONVERTEOLS">SCI_CONVERTEOLS(int eolMode)</a><br /> + <a class="message" href="#SCI_SETVIEWEOL">SCI_SETVIEWEOL(bool visible)</a><br /> + <a class="message" href="#SCI_GETVIEWEOL">SCI_GETVIEWEOL</a><br /> + </code> + + <p><b id="SCI_SETEOLMODE">SCI_SETEOLMODE(int eolMode)</b><br /> + <b id="SCI_GETEOLMODE">SCI_GETEOLMODE</b><br /> + <code>SCI_SETEOLMODE</code> sets the characters that are added into the document when the user + presses the Enter key. You can set <code>eolMode</code> to one of <code>SC_EOL_CRLF</code> (0), + <code>SC_EOL_CR</code> (1), or <code>SC_EOL_LF</code> (2). The <code>SCI_GETEOLMODE</code> + message retrieves the current state.</p> + + <p><b id="SCI_CONVERTEOLS">SCI_CONVERTEOLS(int eolMode)</b><br /> + This message changes all the end of line characters in the document to match + <code>eolMode</code>. Valid values are: <code>SC_EOL_CRLF</code> (0), <code>SC_EOL_CR</code> + (1), or <code>SC_EOL_LF</code> (2).</p> + + <p><b id="SCI_SETVIEWEOL">SCI_SETVIEWEOL(bool visible)</b><br /> + <b id="SCI_GETVIEWEOL">SCI_GETVIEWEOL</b><br /> + Normally, the end of line characters are hidden, but <code>SCI_SETVIEWEOL</code> allows you to + display (or hide) them by setting <code>visible</code> <code>true</code> (or + <code>false</code>). The visible rendering of the end of line characters is similar to + <code>(CR)</code>, <code>(LF)</code>, or <code>(CR)(LF)</code>. <code>SCI_GETVIEWEOL</code> + returns the current state.</p> + + <h2 id="Styling">Styling</h2> + + <p>The styling messages allow you to assign styles to text. The standard Scintilla settings + divide the 8 style bits available for each character into 5 bits (0 to 4 = <a class="jump" + href="#StyleDefinition">styles 0 to 31</a>) that set a style and three bits (5 to 7) that + define <a class="jump" href="#Indicators">indicators</a>. You can change the balance between + styles and indicators with <a class="message" + href="#SCI_SETSTYLEBITS"><code>SCI_SETSTYLEBITS</code></a>. If your styling needs can be met by + one of the standard lexers, or if you can write your own, then a lexer is probably the easiest + way to style your document. If you choose to use the container to do the styling you can use + the <a class="message" href="#SCI_SETLEXER"><code>SCI_SETLEXER</code></a> command to select + <code>SCLEX_CONTAINER</code>, in which case the container is sent a <a class="message" + href="#SCN_STYLENEEDED"><code>SCN_STYLENEEDED</code></a> <a class="jump" + href="#Notifications">notification</a> each time text needs styling for display. As another + alternative, you might use idle time to style the document. Even if you use a lexer, you might + use the styling commands to mark errors detected by a compiler. The following commands can be + used.</p> + <code><a class="message" href="#SCI_GETENDSTYLED">SCI_GETENDSTYLED</a><br /> + <a class="message" href="#SCI_STARTSTYLING">SCI_STARTSTYLING(int position, int mask)</a><br /> + <a class="message" href="#SCI_SETSTYLING">SCI_SETSTYLING(int length, int style)</a><br /> + <a class="message" href="#SCI_SETSTYLINGEX">SCI_SETSTYLINGEX(int length, const char + *styles)</a><br /> + <a class="message" href="#SCI_SETLINESTATE">SCI_SETLINESTATE(int line, int value)</a><br /> + <a class="message" href="#SCI_GETLINESTATE">SCI_GETLINESTATE(int line)</a><br /> + <a class="message" href="#SCI_GETMAXLINESTATE">SCI_GETMAXLINESTATE</a><br /> + </code> + + <p><b id="SCI_GETENDSTYLED">SCI_GETENDSTYLED</b><br /> + Scintilla keeps a record of the last character that is likely to be styled correctly. This is + moved forwards when characters after it are styled and moved backwards if changes are made to + the text of the document before it. Before drawing text, this position is checked to see if any + styling is needed and, if so, a <code><a class="message" + href="#SCN_STYLENEEDED">SCN_STYLENEEDED</a></code> notification message is sent to the + container. The container can send <code>SCI_GETENDSTYLED</code> to work out where it needs to + start styling. Scintilla will always ask to style whole lines.</p> + + <p><b id="SCI_STARTSTYLING">SCI_STARTSTYLING(int pos, int mask)</b><br /> + This prepares for styling by setting the styling position <code>pos</code> to start at and a + <code>mask</code> indicating which bits of the style bytes can be set. The mask allows styling + to occur over several passes, with, for example, basic styling done on an initial pass to + ensure that the text of the code is seen quickly and correctly, and then a second slower pass, + detecting syntax errors and using indicators to show where these are. For example, with the + standard settings of 5 style bits and 3 indicator bits, you would use a <code>mask</code> value + of 31 (0x1f) if you were setting text styles and did not want to change the indicators. After + <code>SCI_STARTSTYLING</code>, send multiple <code>SCI_SETSTYLING</code> messages for each + lexical entity to style.</p> + + <p><b id="SCI_SETSTYLING">SCI_SETSTYLING(int length, int style)</b><br /> + This message sets the style of <code>length</code> characters starting at the styling position + and then increases the styling position by <code>length</code>, ready for the next call. If + <code>sCell</code> is the style byte, the operation is:<br /> + <code>if ((sCell & mask) != style) sCell = (sCell & ~mask) | (style & + mask);</code><br /> + </p> + + <p><b id="SCI_SETSTYLINGEX">SCI_SETSTYLINGEX(int length, const char *styles)</b><br /> + As an alternative to <code>SCI_SETSTYLING</code>, which applies the same style to each byte, + you can use this message which specifies the styles for each of <code>length</code> bytes from + the styling position and then increases the styling position by <code>length</code>, ready for + the next call. The <code>length</code> styling bytes pointed at by <code>styles</code> should + not contain any bits not set in mask.</p> + + <p><b id="SCI_SETLINESTATE">SCI_SETLINESTATE(int line, int value)</b><br /> + <b id="SCI_GETLINESTATE">SCI_GETLINESTATE(int line)</b><br /> + As well as the 8 bits of lexical state stored for each character there is also an integer + stored for each line. This can be used for longer lived parse states such as what the current + scripting language is in an ASP page. Use <code>SCI_SETLINESTATE</code> to set the integer + value and <code>SCI_GETLINESTATE</code> to get the value.</p> + + <p><b id="SCI_GETMAXLINESTATE">SCI_GETMAXLINESTATE</b><br /> + This returns the last line that has any line state.</p> + + <h2 id="StyleDefinition">Style definition</h2> + + <p>While the style setting messages mentioned above change the style numbers associated with + text, these messages define how those style numbers are interpreted visually. There are 128 + lexer styles that can be set, numbered 0 to <code>STYLEMAX</code> (127). Unless you use <a + class="message" href="#SCI_SETSTYLEBITS"><code>SCI_SETSTYLEBITS</code></a> to change the number + of style bits, styles 0 to 31 are used to set the text attributes. There are also some + predefined numbered styles starting at 32, The following <code>STYLE_</code>* constants are + defined.</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Preset styles"> + <tbody valign="top"> + <tr> + <th align="left"><code>STYLE_DEFAULT</code></th> + + <td>32</td> + + <td>This style defines the attributes that all styles receive when the + <code>SCI_STYLECLEARALL</code> message is used.</td> + </tr> + + <tr> + <th align="left"><code>STYLE_LINENUMBER</code></th> + + <td>33</td> + + <td>This style sets the attributes of the text used to display line numbers in a line + number margin. The background colour set for this style also sets the background colour + for all margins that do not have any folding mask bits set. That is, any margin for which + <code>mask & SC_MASK_FOLDERS</code> is 0. See <a class="message" + href="#SCI_SETMARGINMASKN"><code>SCI_SETMARGINMASKN</code></a> for more about masks.</td> + </tr> + + <tr> + <th align="left"><code>STYLE_BRACELIGHT</code></th> + + <td>34</td> + + <td>This style sets the attributes used when highlighting braces with the <a + class="message" href="#BraceHighlighting"><code>SCI_BRACEHIGHLIGHT</code></a> message and + when highlighting the corresponding indentation with <a class="message" + href="#SCI_SETHIGHLIGHTGUIDE"><code>SCI_SETHIGHLIGHTGUIDE</code></a>.</td> + </tr> + + <tr> + <th align="left"><code>STYLE_BRACEBAD</code></th> + + <td>35</td> + + <td>This style sets the display attributes used when marking an unmatched brace with the + <a class="message" href="#BraceHighlighting"><code>SCI_BRACEBADLIGHT</code></a> + message.</td> + </tr> + + <tr> + <th align="left"><code>STYLE_CONTROLCHAR</code></th> + + <td>36</td> + + <td>This style sets the font used when drawing control characters. + Only the font, size, bold, italics, and character set attributes are used and not + the colour attributes. See + also: <a class="message" + href="#SCI_SETCONTROLCHARSYMBOL"><code>SCI_SETCONTROLCHARSYMBOL</code></a>.</td> + </tr> + + <tr> + <th align="left"><code>STYLE_INDENTGUIDE</code></th> + + <td>37</td> + + <td>This style sets the foreground and background colours used when drawing the + indentation guides.</td> + </tr> + + <tr> + <th align="left"><code>STYLE_CALLTIP</code></th> + + <td>38</td> + + <td> Call tips normally use the font attributes defined by <code>STYLE_DEFAULT</code>. + Use of <a class="message" href="#SCI_CALLTIPUSESTYLE"><code>SCI_CALLTIPUSESTYLE</code></a> + causes call tips to use this style instead. Only the font face name, font size, + foreground and background colours and character set attributes are used.</td> + </tr> + + <tr> + <th align="left"><code>STYLE_LASTPREDEFINED</code></th> + + <td>39</td> + + <td>To make it easier for client code to discover the range of styles that are + predefined, this is set to the style number of the last predefined style. This is + currently set to 39 and the last style with an identifier is 38, which reserves space + for one future predefined style.</td> + </tr> + + <tr> + <th align="left"><code>STYLE_MAX</code></th> + + <td>127</td> + + <td>This is not a style but is the number of the maximum style that can be set. Styles + between <code>STYLE_LASTPREDEFINED</code> and <code>STYLE_MAX</code> would be appropriate + if you used <a class="message" href="#SCI_SETSTYLEBITS"><code>SCI_SETSTYLEBITS</code></a> + to set more than 5 style bits.</td> + </tr> + </tbody> + </table> + + <p>For each style you can set the font name, size and use of bold, italic and underline, + foreground and background colour and the character set. You can also choose to hide text with a + given style, display all characters as upper or lower case and fill from the last character on + a line to the end of the line (for embedded languages). There is also an experimental attribute + to make text read-only.</p> + + <p>It is entirely up to you how you use styles. If you want to use syntax colouring you might + use style 0 for white space, style 1 for numbers, style 2 for keywords, style 3 for strings, + style 4 for preprocessor, style 5 for operators, and so on.</p> + <code><a class="message" href="#SCI_STYLERESETDEFAULT">SCI_STYLERESETDEFAULT</a><br /> + <a class="message" href="#SCI_STYLECLEARALL">SCI_STYLECLEARALL</a><br /> + <a class="message" href="#SCI_STYLESETFONT">SCI_STYLESETFONT(int styleNumber, char + *fontName)</a><br /> + <a class="message" href="#SCI_STYLESETSIZE">SCI_STYLESETSIZE(int styleNumber, int + sizeInPoints)</a><br /> + <a class="message" href="#SCI_STYLESETBOLD">SCI_STYLESETBOLD(int styleNumber, bool + bold)</a><br /> + <a class="message" href="#SCI_STYLESETITALIC">SCI_STYLESETITALIC(int styleNumber, bool + italic)</a><br /> + <a class="message" href="#SCI_STYLESETUNDERLINE">SCI_STYLESETUNDERLINE(int styleNumber, bool + underline)</a><br /> + <a class="message" href="#SCI_STYLESETFORE">SCI_STYLESETFORE(int styleNumber, int + colour)</a><br /> + <a class="message" href="#SCI_STYLESETBACK">SCI_STYLESETBACK(int styleNumber, int + colour)</a><br /> + <a class="message" href="#SCI_STYLESETEOLFILLED">SCI_STYLESETEOLFILLED(int styleNumber, bool + eolFilled)</a><br /> + <a class="message" href="#SCI_STYLESETCHARACTERSET">SCI_STYLESETCHARACTERSET(int styleNumber, + int charSet)</a><br /> + <a class="message" href="#SCI_STYLESETCASE">SCI_STYLESETCASE(int styleNumber, int + caseMode)</a><br /> + <a class="message" href="#SCI_STYLESETVISIBLE">SCI_STYLESETVISIBLE(int styleNumber, bool + visible)</a><br /> + <a class="message" href="#SCI_STYLESETCHANGEABLE">SCI_STYLESETCHANGEABLE(int styleNumber, bool + changeable)</a><br /> + <a class="message" href="#SCI_STYLESETHOTSPOT">SCI_STYLESETHOTSPOT(int styleNumber, bool + hotspot)</a><br /> + </code> + + <p><b id="SCI_STYLERESETDEFAULT">SCI_STYLERESETDEFAULT</b><br /> + This message resets <code>STYLE_DEFAULT</code> to its state when Scintilla was + initialised.</p> + + <p><b id="SCI_STYLECLEARALL">SCI_STYLECLEARALL</b><br /> + This message sets all styles to have the same attributes as <code>STYLE_DEFAULT</code>. If you + are setting up Scintilla for syntax colouring, it is likely that the lexical styles you set + will be very similar. One way to set the styles is to:<br /> + 1. Set <code>STYLE_DEFAULT</code> to the common features of all styles.<br /> + 2. Use <code>SCI_STYLECLEARALL</code> to copy this to all styles.<br /> + 3. Set the style attributes that make your lexical styles different.</p> + + <p><b id="SCI_STYLESETFONT">SCI_STYLESETFONT(int styleNumber, const char *fontName)</b><br /> + <b id="SCI_STYLESETSIZE">SCI_STYLESETSIZE(int styleNumber, int sizeInPoints)</b><br /> + <b id="SCI_STYLESETBOLD">SCI_STYLESETBOLD(int styleNumber, bool bold)</b><br /> + <b id="SCI_STYLESETITALIC">SCI_STYLESETITALIC(int styleNumber, bool italic)</b><br /> + These messages (plus <a class="message" + href="#SCI_STYLESETCHARACTERSET"><code>SCI_STYLESETCHARACTERSET</code></a>) set the font + attributes that are used to match the fonts you request to those available. The + <code>fontName</code> is a zero terminated string holding the name of a font. Under Windows, + only the first 32 characters of the name are used and the name is not case sensitive. For + internal caching, Scintilla tracks fonts by name and does care about the casing of font names, + so please be consistent. On GTK+ 2.x, either GDK or Pango can be used to display text. + Pango antialiases text, works well with Unicode and is better supported in recent versions of GTK+ + but GDK is faster. + Prepend a '!' character to the font name to use Pango.</p> + + <p><b id="SCI_STYLESETUNDERLINE">SCI_STYLESETUNDERLINE(int styleNumber, bool + underline)</b><br /> + You can set a style to be underlined. The underline is drawn in the foreground colour. All + characters with a style that includes the underline attribute are underlined, even if they are + white space.</p> + + <p><b id="SCI_STYLESETFORE">SCI_STYLESETFORE(int styleNumber, int <a class="jump" + href="#colour">colour</a>)</b><br /> + <b id="SCI_STYLESETBACK">SCI_STYLESETBACK(int styleNumber, int <a class="jump" + href="#colour">colour</a>)</b><br /> + Text is drawn in the foreground colour. The space in each character cell that is not occupied + by the character is drawn in the background colour.</p> + + <p><b id="SCI_STYLESETEOLFILLED">SCI_STYLESETEOLFILLED(int styleNumber, bool + eolFilled)</b><br /> + If the last character in the line has a style with this attribute set, the remainder of the + line up to the right edge of the window is filled with the background colour set for the last + character. This is useful when a document contains embedded sections in another language such + as HTML pages with embedded JavaScript. By setting <code>eolFilled</code> to <code>true</code> + and a consistent background colour (different from the background colour set for the HTML + styles) to all JavaScript styles then JavaScript sections will be easily distinguished from + HTML.</p> + + <p><b id="SCI_STYLESETCHARACTERSET">SCI_STYLESETCHARACTERSET(int styleNumber, int + charSet)</b><br /> + You can set a style to use a different character set than the default. The places where such + characters sets are likely to be useful are comments and literal strings. For example, + <code>SCI_STYLESETCHARACTERSET(SCE_C_STRING, SC_CHARSET_RUSSIAN)</code> would ensure that + strings in Russian would display correctly in C and C++ (<code>SCE_C_STRING</code> is the style + number used by the C and C++ lexer to display literal strings; it has the value 6). This + feature works differently on Windows and GTK+.</p> + + <p>The character sets supported on Windows are:<br /> + <code>SC_CHARSET_ANSI</code>, <code>SC_CHARSET_ARABIC</code>, <code>SC_CHARSET_BALTIC</code>, + <code>SC_CHARSET_CHINESEBIG5</code>, <code>SC_CHARSET_DEFAULT</code>, + <code>SC_CHARSET_EASTEUROPE</code>, <code>SC_CHARSET_GB2312</code>, + <code>SC_CHARSET_GREEK</code>, <code>SC_CHARSET_HANGUL</code>, <code>SC_CHARSET_HEBREW</code>, + <code>SC_CHARSET_JOHAB</code>, <code>SC_CHARSET_MAC</code>, <code>SC_CHARSET_OEM</code>, + <code>SC_CHARSET_RUSSIAN</code> (code page 1251), + <code>SC_CHARSET_SHIFTJIS</code>, <code>SC_CHARSET_SYMBOL</code>, <code>SC_CHARSET_THAI</code>, + <code>SC_CHARSET_TURKISH</code>, and <code>SC_CHARSET_VIETNAMESE</code>.</p> + + <p>The character sets supported on GTK+ are:<br /> + <code>SC_CHARSET_ANSI</code>, <code>SC_CHARSET_CYRILLIC</code> (code page 1251), + <code>SC_CHARSET_EASTEUROPE</code>, + <code>SC_CHARSET_GB2312</code>, <code>SC_CHARSET_HANGUL</code>, + <code>SC_CHARSET_RUSSIAN</code> (KOI8-R), <code>SC_CHARSET_SHIFTJIS</code>, and + <code>SC_CHARSET_8859_15</code>.</p> + + <p><b id="SCI_STYLESETCASE">SCI_STYLESETCASE(int styleNumber, int caseMode)</b><br /> + The value of caseMode determines how text is displayed. You can set upper case + (<code>SC_CASE_UPPER</code>, 1) or lower case (<code>SC_CASE_LOWER</code>, 2) or display + normally (<code>SC_CASE_MIXED</code>, 0). This does not change the stored text, only how it is + displayed.</p> + + <p><b id="SCI_STYLESETVISIBLE">SCI_STYLESETVISIBLE(int styleNumber, bool visible)</b><br /> + Text is normally visible. However, you can completely hide it by giving it a style with the + <code>visible</code> set to 0. This could be used to hide embedded formatting instructions or + hypertext keywords in HTML or XML.</p> + + <p><b id="SCI_STYLESETCHANGEABLE">SCI_STYLESETCHANGEABLE(int styleNumber, bool + changeable)</b><br /> + This is an experimental and incompletely implemented style attribute. The default setting is + <code>changeable</code> set <code>true</code> but when set <code>false</code> it makes text + read-only. Currently it only stops the caret from being within not-changeable text and does not + yet stop deleting a range that contains not-changeable text.</p> + + <p><b id="SCI_STYLESETHOTSPOT">SCI_STYLESETHOTSPOT(int styleNumber, bool + hotspot)</b><br /> + This style is used to mark ranges of text that can detect mouse clicks. + The cursor changes to a hand over hotspots, and the foreground, and background colours + may change and an underline appear to indicate that these areas are sensitive to clicking. + This may be used to allow hyperlinks to other documents.</p> + + <a class="message" href="#SCI_STYLESETHOTSPOT">SCI_STYLESETHOTSPOT(int styleNumber, bool + hotspot)</a><br /> + + <h2 id="CaretAndSelectionStyles">Caret, selection, and hotspot styles</h2> + + <p>The selection is shown by changing the foreground and/or background colours. If one of these + is not set then that attribute is not changed for the selection. The default is to show the + selection by changing the background to light gray and leaving the foreground the same as when + it was not selected. When there is no selection, the current insertion point is marked by the + text caret. This is a vertical line that is normally blinking on and off to attract the users + attention.</p> + <code><a class="message" href="#SCI_SETSELFORE">SCI_SETSELFORE(bool useSelectionForeColour, int + colour)</a><br /> + <a class="message" href="#SCI_SETSELBACK">SCI_SETSELBACK(bool useSelectionBackColour, int + colour)</a><br /> + <a class="message" href="#SCI_SETSELALPHA">SCI_SETSELALPHA(int alpha)</a><br /> + <a class="message" href="#SCI_GETSELALPHA">SCI_GETSELALPHA</a><br /> + <a class="message" href="#SCI_SETCARETFORE">SCI_SETCARETFORE(int colour)</a><br /> + <a class="message" href="#SCI_GETCARETFORE">SCI_GETCARETFORE</a><br /> + <a class="message" href="#SCI_SETCARETLINEVISIBLE">SCI_SETCARETLINEVISIBLE(bool + show)</a><br /> + <a class="message" href="#SCI_GETCARETLINEVISIBLE">SCI_GETCARETLINEVISIBLE</a><br /> + <a class="message" href="#SCI_SETCARETLINEBACK">SCI_SETCARETLINEBACK(int colour)</a><br /> + <a class="message" href="#SCI_GETCARETLINEBACK">SCI_GETCARETLINEBACK</a><br /> + <a class="message" href="#SCI_SETCARETLINEBACKALPHA">SCI_SETCARETLINEBACKALPHA(int alpha)</a><br /> + <a class="message" href="#SCI_GETCARETLINEBACKALPHA">SCI_GETCARETLINEBACKALPHA</a><br /> + <a class="message" href="#SCI_SETCARETPERIOD">SCI_SETCARETPERIOD(int milliseconds)</a><br /> + <a class="message" href="#SCI_GETCARETPERIOD">SCI_GETCARETPERIOD</a><br /> + <a class="message" href="#SCI_SETCARETWIDTH">SCI_SETCARETWIDTH(int pixels)</a><br /> + <a class="message" href="#SCI_GETCARETWIDTH">SCI_GETCARETWIDTH</a><br /> + <a class="message" href="#SCI_SETHOTSPOTACTIVEFORE">SCI_SETHOTSPOTACTIVEFORE</a><br /> + <a class="message" href="#SCI_SETHOTSPOTACTIVEBACK">SCI_SETHOTSPOTACTIVEBACK</a><br /> + <a class="message" href="#SCI_SETHOTSPOTACTIVEUNDERLINE">SCI_SETHOTSPOTACTIVEUNDERLINE</a><br /> + <a class="message" href="#SCI_SETHOTSPOTSINGLELINE">SCI_SETHOTSPOTSINGLELINE</a><br /> + <a class="message" href="#SCI_SETCONTROLCHARSYMBOL">SCI_SETCONTROLCHARSYMBOL(int + symbol)</a><br /> + <a class="message" href="#SCI_GETCONTROLCHARSYMBOL">SCI_GETCONTROLCHARSYMBOL</a><br /> + <a class="message" href="#SCI_SETCARETSTICKY">SCI_SETCARETSTICKY</a><br /> + <a class="message" href="#SCI_GETCARETSTICKY">SCI_GETCARETSTICKY</a><br /> + <a class="message" href="#SCI_TOGGLECARETSTICKY">SCI_TOGGLECARETSTICKY</a><br /> + </code> + + <p><b id="SCI_SETSELFORE">SCI_SETSELFORE(bool useSelectionForeColour, int <a class="jump" + href="#colour">colour</a>)</b><br /> + <b id="SCI_SETSELBACK">SCI_SETSELBACK(bool useSelectionBackColour, int <a class="jump" + href="#colour">colour</a>)</b><br /> + You can choose to override the default selection colouring with these two messages. The colour + you provide is used if you set <code>useSelection*Colour</code> to <code>true</code>. If it is + set to <code>false</code>, the default colour colouring is used and the <code>colour</code> + argument has no effect.</p> + <p><b id="SCI_SETSELALPHA">SCI_SETSELALPHA(int <a class="jump" href="#alpha">alpha</a>)</b><br /> + <b id="SCI_GETSELALPHA">SCI_GETSELALPHA</b><br /> + The selection can be drawn translucently in the selection background colour by + setting an alpha value.</p> + + <p><b id="SCI_SETCARETFORE">SCI_SETCARETFORE(int <a class="jump" + href="#colour">colour</a>)</b><br /> + <b id="SCI_GETCARETFORE">SCI_GETCARETFORE</b><br /> + The colour of the caret can be set with <code>SCI_SETCARETFORE</code> and retrieved with + <code>SCI_CETCARETFORE</code>.</p> + + <p><b id="SCI_SETCARETLINEVISIBLE">SCI_SETCARETLINEVISIBLE(bool show)</b><br /> + <b id="SCI_GETCARETLINEVISIBLE">SCI_GETCARETLINEVISIBLE</b><br /> + <b id="SCI_SETCARETLINEBACK">SCI_SETCARETLINEBACK(int <a class="jump" + href="#colour">colour</a>)</b><br /> + <b id="SCI_GETCARETLINEBACK">SCI_GETCARETLINEBACK</b><br /> + <b id="SCI_SETCARETLINEBACKALPHA">SCI_SETCARETLINEBACKALPHA(int <a class="jump" href="#alpha">alpha</a>)</b><br /> + <b id="SCI_GETCARETLINEBACKALPHA">SCI_GETCARETLINEBACKALPHA</b><br /> + You can choose to make the background colour of the line containing the caret different with + these messages. To do this, set the desired background colour with + <code>SCI_SETCARETLINEBACK</code>, then use <code>SCI_SETCARETLINEVISIBLE(true)</code> to + enable the effect. You can cancel the effect with <code>SCI_SETCARETLINEVISIBLE(false)</code>. + The two <code>SCI_GETCARET*</code> functions return the state and the colour. This form of + background colouring has highest priority when a line has markers that would otherwise change + the background colour. + The caret line may also be drawn translucently which allows other background colours to show + through. This is done by setting the alpha (translucency) value by calling + SCI_SETCARETLINEBACKALPHA. When the alpha is not SC_ALPHA_NOALPHA, + the caret line is drawn after all other features so will affect the colour of all other features. + </p> + + <p><b id="SCI_SETCARETPERIOD">SCI_SETCARETPERIOD(int milliseconds)</b><br /> + <b id="SCI_GETCARETPERIOD">SCI_GETCARETPERIOD</b><br /> + The rate at which the caret blinks can be set with <code>SCI_SETCARETPERIOD</code> which + determines the time in milliseconds that the caret is visible or invisible before changing + state. Setting the period to 0 stops the caret blinking. The default value is 500 milliseconds. + <code>SCI_GETCARETPERIOD</code> returns the current setting.</p> + + <p><b id="SCI_SETCARETWIDTH">SCI_SETCARETWIDTH(int pixels)</b><br /> + <b id="SCI_GETCARETWIDTH">SCI_GETCARETWIDTH</b><br /> + The width of the caret can be set with <code>SCI_SETCARETWIDTH</code> to a value of 0, 1, 2 or + 3 pixels. The default width is 1 pixel. You can read back the current width with + <code>SCI_GETCARETWIDTH</code>. A width of 0 makes the caret invisible (added at version + 1.50).</p> + + <p><b id="SCI_SETHOTSPOTACTIVEFORE">SCI_SETHOTSPOTACTIVEFORE(bool useHotSpotForeColour, int <a class="jump" + href="#colour">colour</a>)</b><br /> + <b id="SCI_SETHOTSPOTACTIVEBACK">SCI_SETHOTSPOTACTIVEBACK(bool useHotSpotBackColour, int <a class="jump" + href="#colour">colour</a>)</b><br /> + <b id="SCI_SETHOTSPOTACTIVEUNDERLINE">SCI_SETHOTSPOTACTIVEUNDERLINE(bool underline,)</b><br /> + <b id="SCI_SETHOTSPOTSINGLELINE">SCI_SETHOTSPOTSINGLELINE(bool singleLine,)</b><br /> + While the cursor hovers over text in a style with the hotspot attribute set, + the default colouring can be modified and an underline drawn with these settings. + Single line mode stops a hotspot from wrapping onto next line.</p> + + <p><b id="SCI_SETCONTROLCHARSYMBOL">SCI_SETCONTROLCHARSYMBOL(int symbol)</b><br /> + <b id="SCI_GETCONTROLCHARSYMBOL">SCI_GETCONTROLCHARSYMBOL</b><br /> + By default, Scintilla displays control characters (characters with codes less than 32) in a + rounded rectangle as ASCII mnemonics: "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL", + "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI", "DLE", "DC1", "DC2", "DC3", "DC4", "NAK", + "SYN", "ETB", "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US". These mnemonics come from the + early days of signaling, though some are still used (LF = Line Feed, BS = Back Space, CR = + Carriage Return, for example).</p> + + <p>You can choose to replace these mnemonics by a nominated symbol with an ASCII code in the + range 32 to 255. If you set a symbol value less than 32, all control characters are displayed + as mnemonics. The symbol you set is rendered in the font of the style set for the character. + You can read back the current symbol with the <code>SCI_GETCONTROLCHARSYMBOL</code> message. + The default symbol value is 0.</p> + + <p><b id="SCI_SETCARETSTICKY">SCI_SETCARETSTICKY(bool useCaretStickyBehaviour)</b><br /> + <b id="SCI_GETCARETSTICKY">SCI_GETCARETSTICKY</b><br /> + <b id="SCI_TOGGLECARETSTICKY">SCI_TOGGLECARETSTICKY</b><br /> + These messages set, get or toggle the caretSticky flag which controls when the last position + of the caret on the line is saved. When set to true, the position is not saved when you type + a character, a tab, paste the clipboard content or press backspace.</p> + + <h2 id="Margins">Margins</h2> + + <p>There may be up to five margins to the left of the text display, plus a gap either side of + the text. Each margin can be set to display either symbols or line numbers with <a + class="message" href="#SCI_SETMARGINTYPEN"><code>SCI_SETMARGINTYPEN</code></a>. The markers + that can be displayed in each margin are set with <a class="message" + href="#SCI_SETMARGINMASKN"><code>SCI_SETMARGINMASKN</code></a>. Any markers not associated with + a visible margin will be displayed as changes in background colour in the text. A width in + pixels can be set for each margin. Margins with a zero width are ignored completely. You can + choose if a mouse click in a margin sends a <a class="message" + href="#SCN_MARGINCLICK"><code>SCN_MARGINCLICK</code></a> notification to the container or + selects a line of text.</p> + + <p>The margins are numbered 0 to 4. Using a margin number outside the valid range has no + effect. By default, margin 0 is set to display line numbers, but is given a width of 0, so it + is hidden. Margin 1 is set to display non-folding symbols and is given a width of 16 pixels, so + it is visible. Margin 2 is set to display the folding symbols, but is given a width of 0, so it + is hidden. Of course, you can set the margins to be whatever you wish.</p> + <code><a class="message" href="#SCI_SETMARGINTYPEN">SCI_SETMARGINTYPEN(int margin, int + type)</a><br /> + <a class="message" href="#SCI_GETMARGINTYPEN">SCI_GETMARGINTYPEN(int margin)</a><br /> + <a class="message" href="#SCI_SETMARGINWIDTHN">SCI_SETMARGINWIDTHN(int margin, int + pixelWidth)</a><br /> + <a class="message" href="#SCI_GETMARGINWIDTHN">SCI_GETMARGINWIDTHN(int margin)</a><br /> + <a class="message" href="#SCI_SETMARGINMASKN">SCI_SETMARGINMASKN(int margin, int + mask)</a><br /> + <a class="message" href="#SCI_GETMARGINMASKN">SCI_GETMARGINMASKN(int margin)</a><br /> + <a class="message" href="#SCI_SETMARGINSENSITIVEN">SCI_SETMARGINSENSITIVEN(int margin, bool + sensitive)</a><br /> + <a class="message" href="#SCI_GETMARGINSENSITIVEN">SCI_GETMARGINSENSITIVEN(int + margin)</a><br /> + <a class="message" href="#SCI_SETMARGINLEFT">SCI_SETMARGINLEFT(<unused>, int + pixels)</a><br /> + <a class="message" href="#SCI_GETMARGINLEFT">SCI_GETMARGINLEFT</a><br /> + <a class="message" href="#SCI_SETMARGINRIGHT">SCI_SETMARGINRIGHT(<unused>, int + pixels)</a><br /> + <a class="message" href="#SCI_GETMARGINRIGHT">SCI_GETMARGINRIGHT</a><br /> + <a class="message" href="#SCI_SETFOLDMARGINCOLOUR">SCI_SETFOLDMARGINCOLOUR(bool useSetting, int colour)</a><br /> + <a class="message" href="#SCI_SETFOLDMARGINHICOLOUR">SCI_SETFOLDMARGINHICOLOUR(bool useSetting, int colour)</a><br /> + </code> + + <p><b id="SCI_SETMARGINTYPEN">SCI_SETMARGINTYPEN(int margin, int iType)</b><br /> + <b id="SCI_GETMARGINTYPEN">SCI_GETMARGINTYPEN(int margin)</b><br /> + These two routines set and get the type of a margin. The margin argument should be 0, 1, 2, 3 or 4. + You can use the predefined constants <code>SC_MARGIN_SYMBOL</code> (0) and + <code>SC_MARGIN_NUMBER</code> (1) to set a margin as either a line number or a symbol margin. + By convention, margin 0 is used for line numbers and the next two are used for symbols. You can + also use the constants <code>SC_MARGIN_BACK</code> (2) and <code>SC_MARGIN_FORE</code> (3) for + symbol margins that set their background colour to match the STYLE_DEFAULT background and + foreground colours.</p> + + <p><b id="SCI_SETMARGINWIDTHN">SCI_SETMARGINWIDTHN(int margin, int pixelWidth)</b><br /> + <b id="SCI_GETMARGINWIDTHN">SCI_GETMARGINWIDTHN(int margin)</b><br /> + These routines set and get the width of a margin in pixels. A margin with zero width is + invisible. By default, Scintilla sets margin 1 for symbols with a width of 16 pixels, so this + is a reasonable guess if you are not sure what would be appropriate. Line number margins widths + should take into account the number of lines in the document and the line number style. You + could use something like <a class="message" + href="#SCI_TEXTWIDTH"><code>SCI_TEXTWIDTH(STYLE_LINENUMBER, "_99999")</code></a> to get a + suitable width.</p> + + <p><b id="SCI_SETMARGINMASKN">SCI_SETMARGINMASKN(int margin, int mask)</b><br /> + <b id="SCI_GETMARGINMASKN">SCI_GETMARGINMASKN(int margin)</b><br /> + The mask is a 32-bit value. Each bit corresponds to one of 32 logical symbols that can be + displayed in a margin that is enabled for symbols. There is a useful constant, + <code>SC_MASK_FOLDERS</code> (0xFE000000 or -33554432), that is a mask for the 7 logical + symbols used to denote folding. You can assign a wide range of symbols and colours to each of + the 32 logical symbols, see <a href="#Markers">Markers</a> for more information. If <code>(mask + & SC_MASK_FOLDERS)==0</code>, the margin background colour is controlled by style 33 (<a + class="message" href="#StyleDefinition"><code>STYLE_LINENUMBER</code></a>).</p> + + <p>You add logical markers to a line with <a class="message" + href="#SCI_MARKERADD"><code>SCI_MARKERADD</code></a>. If a line has an associated marker that + does not appear in the mask of any margin with a non-zero width, the marker changes the + background colour of the line. For example, suppose you decide to use logical marker 10 to mark + lines with a syntax error and you want to show such lines by changing the background colour. + The mask for this marker is 1 shifted left 10 times (1<<10) which is 0x400. If you make + sure that no symbol margin includes 0x400 in its mask, any line with the marker gets the + background colour changed.</p> + + <p>To set a non-folding margin 1 use <code>SCI_SETMARGINMASKN(1, ~SC_MASK_FOLDERS)</code>; to + set a folding margin 2 use <code>SCI_SETMARGINMASKN(2, SC_MASK_FOLDERS)</code>. This is the + default set by Scintilla. <code>~SC_MASK_FOLDERS</code> is 0x1FFFFFF in hexadecimal or 33554431 + decimal. Of course, you may need to display all 32 symbols in a margin, in which case use + <code>SCI_SETMARGINMASKN(margin, -1)</code>.</p> + + <p><b id="SCI_SETMARGINSENSITIVEN">SCI_SETMARGINSENSITIVEN(int margin, bool + sensitive)</b><br /> + <b id="SCI_GETMARGINSENSITIVEN">SCI_GETMARGINSENSITIVEN(int margin)</b><br /> + Each of the five margins can be set sensitive or insensitive to mouse clicks. A click in a + sensitive margin sends a <a class="message" + href="#SCN_MARGINCLICK"><code>SCN_MARGINCLICK</code></a> <a class="jump" + href="#Notifications">notification</a> to the container. Margins that are not sensitive act as + selection margins which make it easy to select ranges of lines. By default, all margins are + insensitive.</p> + + <p><b id="SCI_SETMARGINLEFT">SCI_SETMARGINLEFT(<unused>, int pixels)</b><br /> + <b id="SCI_GETMARGINLEFT">SCI_GETMARGINLEFT</b><br /> + <b id="SCI_SETMARGINRIGHT">SCI_SETMARGINRIGHT(<unused>, int pixels)</b><br /> + <b id="SCI_GETMARGINRIGHT">SCI_GETMARGINRIGHT</b><br /> + These messages set and get the width of the blank margin on both sides of the text in pixels. + The default is to one pixel on each side.</p> + + <p><b id="SCI_SETFOLDMARGINCOLOUR">SCI_SETFOLDMARGINCOLOUR(bool useSetting, int colour)</b><br /> + <b id="SCI_SETFOLDMARGINHICOLOUR">SCI_SETFOLDMARGINHICOLOUR(bool useSetting, int colour)</b><br /> + These messages allow changing the colour of the fold margin and fold margin highlight. + On Windows the fold margin colour defaults to ::GetSysColor(COLOR_3DFACE) and the fold margin highlight + colour to ::GetSysColor(COLOR_3DHIGHLIGHT).</p> + + <h2 id="OtherSettings">Other settings</h2> + <code><a class="message" href="#SCI_SETUSEPALETTE">SCI_SETUSEPALETTE(bool + allowPaletteUse)</a><br /> + <a class="message" href="#SCI_GETUSEPALETTE">SCI_GETUSEPALETTE</a><br /> + <a class="message" href="#SCI_SETBUFFEREDDRAW">SCI_SETBUFFEREDDRAW(bool isBuffered)</a><br /> + <a class="message" href="#SCI_GETBUFFEREDDRAW">SCI_GETBUFFEREDDRAW</a><br /> + <a class="message" href="#SCI_SETTWOPHASEDRAW">SCI_SETTWOPHASEDRAW(bool twoPhase)</a><br /> + <a class="message" href="#SCI_GETTWOPHASEDRAW">SCI_GETTWOPHASEDRAW</a><br /> + <a class="message" href="#SCI_SETCODEPAGE">SCI_SETCODEPAGE(int codePage)</a><br /> + <a class="message" href="#SCI_GETCODEPAGE">SCI_GETCODEPAGE</a><br /> + <a class="message" href="#SCI_SETWORDCHARS">SCI_SETWORDCHARS(<unused>, const char + *chars)</a><br /> + <a class="message" href="#SCI_SETWHITESPACECHARS">SCI_SETWHITESPACECHARS(<unused>, const char + *chars)</a><br /> + <a class="message" href="#SCI_SETCHARSDEFAULT">SCI_SETCHARSDEFAULT</a><br /> + <a class="message" href="#SCI_GRABFOCUS">SCI_GRABFOCUS</a><br /> + <a class="message" href="#SCI_SETFOCUS">SCI_SETFOCUS(bool focus)</a><br /> + <a class="message" href="#SCI_GETFOCUS">SCI_GETFOCUS</a><br /> + </code> + + <p><b id="SCI_SETUSEPALETTE">SCI_SETUSEPALETTE(bool allowPaletteUse)</b><br /> + <b id="SCI_GETUSEPALETTE">SCI_GETUSEPALETTE</b><br /> + On 8 bit displays, which can only display a maximum of 256 colours, the graphics environment + mediates between the colour needs of applications through the use of palettes. On GTK+, + Scintilla always uses a palette.</p> + + <p>On Windows, there are some problems with visual flashing when switching between applications + with palettes and it is also necessary for the application containing the Scintilla control to + forward some messages to Scintilla for its palette code to work. Because of this, by default, + the palette is not used and the application must tell Scintilla to use one. If Scintilla is not + using a palette, it will only display in those colours already available, which are often the + 20 Windows system colours.</p> + + <p>To see an example of how to enable palette support in Scintilla, search the text of SciTE + for <code>WM_PALETTECHANGED</code>, <code>WM_QUERYNEWPALETTE</code> and + <code>SCI_SETUSEPALETTE</code>. The Windows messages to forward are:<br /> + <code>WM_SYSCOLORCHANGE</code>, <code>WM_PALETTECHANGED</code>, + <code>WM_QUERYNEWPALETTE</code> (should return <code>TRUE</code>).</p> + + <p>To forward a message <code>(WM_XXXX, WPARAM, LPARAM)</code> to Scintilla, you can use + <code>SendMessage(hScintilla, WM_XXXX, WPARAM, LPARAM)</code> where <code>hScintilla</code> is + the handle to the Scintilla window you created as your editor.</p> + + <p>While we are on the subject of forwarding messages in Windows, the top level window should + forward any <code>WM_SETTINGCHANGE</code> messages to Scintilla (this is currently used to + collect changes to mouse settings, but could be used for other user interface items in the + future).</p> + + <p><b id="SCI_SETBUFFEREDDRAW">SCI_SETBUFFEREDDRAW(bool isBuffered)</b><br /> + <b id="SCI_GETBUFFEREDDRAW">SCI_GETBUFFEREDDRAW</b><br /> + These messages turn buffered drawing on or off and report the buffered drawing state. Buffered + drawing draws each line into a bitmap rather than directly to the screen and then copies the + bitmap to the screen. This avoids flickering although it does take longer. The default is for + drawing to be buffered.</p> + + <p><b id="SCI_SETTWOPHASEDRAW">SCI_SETTWOPHASEDRAW(bool twoPhase)</b><br /> + <b id="SCI_GETTWOPHASEDRAW">SCI_GETTWOPHASEDRAW</b><br /> + Two phase drawing is a better but slower way of drawing text. + In single phase drawing each run of characters in one style is drawn along with its background. + If a character overhangs the end of a run, such as in "<i>V</i>_" where the + "<i>V</i>" is in a different style from the "_", then this can cause the right hand + side of the "<i>V</i>" to be overdrawn by the background of the "_" which + cuts it off. Two phase drawing + fixes this by drawing all the backgrounds first and then drawing the text in + transparent mode. Two phase drawing may flicker more than single phase + unless buffered drawing is on. The default is for drawing to be two phase.</p> + + <p><b id="SCI_SETCODEPAGE">SCI_SETCODEPAGE(int codePage)</b><br /> + <b id="SCI_GETCODEPAGE">SCI_GETCODEPAGE</b><br /> + Scintilla has some support for Japanese, Chinese and Korean DBCS. Use this message with + <code>codePage</code> set to the code page number to set Scintilla to use code page information + to ensure double byte characters are treated as one character rather than two. This also stops + the caret from moving between the two bytes in a double byte character. + Do not use this message to choose between different single byte character sets: it doesn't do that. + Call with + <code>codePage</code> set to zero to disable DBCS support. The default is + <code>SCI_SETCODEPAGE(0)</code>.</p> + + <p>Code page <code>SC_CP_UTF8</code> (65001) sets Scintilla into Unicode mode with the document + treated as a sequence of characters expressed in UTF-8. The text is converted to the platform's + normal Unicode encoding before being drawn by the OS and thus can display Hebrew, Arabic, + Cyrillic, and Han characters. Languages which can use two characters stacked vertically in one + horizontal space, such as Thai, will mostly work but there are some issues where the characters + are drawn separately leading to visual glitches. Bi-directional text is not supported. Characters outside the + Basic Multilingual Plane are unlikely to work.</p> + + <p>On Windows, code page can be set to 932 (Japanese Shift-JIS), 936 (Simplified Chinese GBK), + 949 (Korean Unified Hangul Code), 950 (Traditional Chinese Big5), or 1361 (Korean Johab) + although these may require installation of language specific support.</p> + + <p>On GTK+, code page <code>SC_CP_DBCS</code> (1) sets Scintilla into + multi byte character mode as is required for Japanese language processing with + the EUC encoding.</p> + + <p>For GTK+ 1.x, the locale should be set to a Unicode locale with a call similar to + <code>setlocale(LC_CTYPE, "en_US.UTF-8")</code>. Fonts with an <code>"iso10646"</code> registry + should be used in a font set. Font sets are a comma separated list of partial font + specifications where each partial font specification can be in the form: + <code>foundry-fontface-charsetregistry-encoding</code> or + <code>fontface-charsetregistry-encoding</code> or <code>foundry-fontface</code> or + <code>fontface</code>. An example is <code>"misc-fixed-iso10646-1,*"</code>. + On GTK+ 2.x, Pango fonts should be used rather than font sets.</p> + + <p>Setting <code>codePage</code> to a non-zero value that is not <code>SC_CP_UTF8</code> is + operating system dependent.</p> + + <p><b id="SCI_SETWORDCHARS">SCI_SETWORDCHARS(<unused>, const char *chars)</b><br /> + Scintilla has several functions that operate on words, which are defined to be contiguous + sequences of characters from a particular set of characters. This message defines which + characters are members of that set. The character sets are set to default values before processing this + function. + For example, if you don't allow '_' in your set of characters + use:<br /> + <code>SCI_SETWORDCHARS(0, "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")</code>;</p> + + <p><b id="SCI_SETWHITESPACECHARS">SCI_SETWHITESPACECHARS(<unused>, const char *chars)</b><br /> + Similar to <code>SCI_SETWORDCHARS</code>, this message allows the user to define which chars Scintilla considers + as whitespace. Setting the whitespace chars allows the user to fine-tune Scintilla's behaviour doing + such things as moving the cursor to the start or end of a word; for example, by defining punctuation chars + as whitespace, they will be skipped over when the user presses ctrl+left or ctrl+right. + This function should be called after <code>SCI_SETWORDCHARS</code> as it will + reset the whitespace characters to the default set.</p> + <p><b id="SCI_SETCHARSDEFAULT">SCI_SETCHARSDEFAULT</b><br /> + Use the default sets of word and whitespace characters. This sets whitespace to space, tab and other + characters with codes less than 0x20, with word characters set to alphanumeric and '_'. + </p> + + + <p><b id="SCI_GRABFOCUS">SCI_GRABFOCUS</b><br /> + <b id="SCI_SETFOCUS">SCI_SETFOCUS(bool focus)</b><br /> + <b id="SCI_GETFOCUS">SCI_GETFOCUS</b><br /> + Scintilla can be told to grab the focus with this message. This is needed more on GTK+ where + focus handling is more complicated than on Windows.</p> + + <p>The internal focus flag can be set with <code>SCI_SETFOCUS</code>. This is used by clients + that have complex focus requirements such as having their own window that gets the real focus + but with the need to indicate that Scintilla has the logical focus.</p> + + <h2 id="BraceHighlighting">Brace highlighting</h2> + <code><a class="message" href="#SCI_BRACEHIGHLIGHT">SCI_BRACEHIGHLIGHT(int pos1, int + pos2)</a><br /> + <a class="message" href="#SCI_BRACEBADLIGHT">SCI_BRACEBADLIGHT(int pos1)</a><br /> + <a class="message" href="#SCI_BRACEMATCH">SCI_BRACEMATCH(int position, int + maxReStyle)</a><br /> + </code> + + <p><b id="SCI_BRACEHIGHLIGHT">SCI_BRACEHIGHLIGHT(int pos1, int pos2)</b><br /> + Up to two characters can be highlighted in a 'brace highlighting style', which is defined as + style number <a class="message" href="#StyleDefinition"><code>STYLE_BRACELIGHT</code></a> (34). + If you have enabled indent guides, you may also wish to highlight the indent that corresponds + with the brace. You can locate the column with <a class="message" + href="#SCI_GETCOLUMN"><code>SCI_GETCOLUMN</code></a> and highlight the indent with <a + class="message" href="#SCI_SETHIGHLIGHTGUIDE"><code>SCI_SETHIGHLIGHTGUIDE</code></a>.</p> + + <p><b id="SCI_BRACEBADLIGHT">SCI_BRACEBADLIGHT(int pos1)</b><br /> + If there is no matching brace then the <a class="jump" href="#StyleDefinition">brace + badlighting style</a>, style <code>BRACE_BADLIGHT</code> (35), can be used to show the brace + that is unmatched. Using a position of <code>INVALID_POSITION</code> (-1) removes the + highlight.</p> + + <p><b id="SCI_BRACEMATCH">SCI_BRACEMATCH(int pos, int maxReStyle)</b><br /> + The <code>SCI_BRACEMATCH</code> message finds a corresponding matching brace given + <code>pos</code>, the position of one brace. The brace characters handled are '(', ')', '[', + ']', '{', '}', '<', and '>'. The search is forwards from an opening brace and backwards + from a closing brace. If the character at position is not a brace character, or a matching + brace cannot be found, the return value is -1. Otherwise, the return value is the position of + the matching brace.</p> + + <p>A match only occurs if the style of the matching brace is the same as the starting brace or + the matching brace is beyond the end of styling. Nested braces are handled correctly. The + <code>maxReStyle</code> parameter must currently be 0 - it may be used in the future to limit + the length of brace searches.</p> + + <h2 id="TabsAndIndentationGuides">Tabs and Indentation Guides</h2> + + <p>Indentation (the white space at the start of a line) is often used by programmers to clarify + program structure and in some languages, for example Python, it may be part of the language + syntax. Tabs are normally used in editors to insert a tab character or to pad text with spaces + up to the next tab.</p> + + <p>Scintilla can be set to treat tab and backspace in the white space at the start of a line in + a special way: inserting a tab indents the line to the next indent position rather than just + inserting a tab at the current character position and backspace unindents the line rather than + deleting a character. Scintilla can also display indentation guides (vertical lines) to help + you to generate code.</p> + <code><a class="message" href="#SCI_SETTABWIDTH">SCI_SETTABWIDTH(int widthInChars)</a><br /> + <a class="message" href="#SCI_GETTABWIDTH">SCI_GETTABWIDTH</a><br /> + <a class="message" href="#SCI_SETUSETABS">SCI_SETUSETABS(bool useTabs)</a><br /> + <a class="message" href="#SCI_GETUSETABS">SCI_GETUSETABS</a><br /> + <a class="message" href="#SCI_SETINDENT">SCI_SETINDENT(int widthInChars)</a><br /> + <a class="message" href="#SCI_GETINDENT">SCI_GETINDENT</a><br /> + <a class="message" href="#SCI_SETTABINDENTS">SCI_SETTABINDENTS(bool tabIndents)</a><br /> + <a class="message" href="#SCI_GETTABINDENTS">SCI_GETTABINDENTS</a><br /> + <a class="message" href="#SCI_SETBACKSPACEUNINDENTS">SCI_SETBACKSPACEUNINDENTS(bool + bsUnIndents)</a><br /> + <a class="message" href="#SCI_GETBACKSPACEUNINDENTS">SCI_GETBACKSPACEUNINDENTS</a><br /> + <a class="message" href="#SCI_SETLINEINDENTATION">SCI_SETLINEINDENTATION(int line, int + indentation)</a><br /> + <a class="message" href="#SCI_GETLINEINDENTATION">SCI_GETLINEINDENTATION(int line)</a><br /> + <a class="message" href="#SCI_GETLINEINDENTPOSITION">SCI_GETLINEINDENTPOSITION(int + line)</a><br /> + <a class="message" href="#SCI_SETINDENTATIONGUIDES">SCI_SETINDENTATIONGUIDES(bool + view)</a><br /> + <a class="message" href="#SCI_GETINDENTATIONGUIDES">SCI_GETINDENTATIONGUIDES</a><br /> + <a class="message" href="#SCI_SETHIGHLIGHTGUIDE">SCI_SETHIGHLIGHTGUIDE(int column)</a><br /> + <a class="message" href="#SCI_GETHIGHLIGHTGUIDE">SCI_GETHIGHLIGHTGUIDE</a><br /> + </code> + + <p><b id="SCI_SETTABWIDTH">SCI_SETTABWIDTH(int widthInChars)</b><br /> + <b id="SCI_GETTABWIDTH">SCI_GETTABWIDTH</b><br /> + <code>SCI_SETTABWIDTH</code> sets the size of a tab as a multiple of the size of a space + character in <code>STYLE_DEFAULT</code>. The default tab width is 8 characters. There are no + limits on tab sizes, but values less than 1 or large values may have undesirable effects.</p> + + <p><b id="SCI_SETUSETABS">SCI_SETUSETABS(bool useTabs)</b><br /> + <b id="SCI_GETUSETABS">SCI_GETUSETABS</b><br /> + <code>SCI_SETUSETABS</code> determines whether indentation should be created out of a mixture + of tabs and spaces or be based purely on spaces. Set <code>useTabs</code> to <code>false</code> + (0) to create all tabs and indents out of spaces. The default is <code>true</code>. You can use + <a class="message" href="#SCI_GETCOLUMN"><code>SCI_GETCOLUMN</code></a> to get the column of a + position taking the width of a tab into account.</p> + <b id="SCI_SETINDENT">SCI_SETINDENT(int widthInChars)</b><br /> + <b id="SCI_GETINDENT">SCI_GETINDENT</b><br /> + <code>SCI_SETINDENT</code> sets the size of indentation in terms of the width of a space in <a + class="message" href="#StyleDefinition"><code>STYLE_DEFAULT</code></a>. If you set a width of + 0, the indent size is the same as the tab size. There are no limits on indent sizes, but values + less than 0 or large values may have undesirable effects. <br /> + <br /> + + + <p><b id="SCI_SETTABINDENTS">SCI_SETTABINDENTS(bool tabIndents)</b><br /> + <b id="SCI_GETTABINDENTS">SCI_GETTABINDENTS</b><br /> + <b id="SCI_SETBACKSPACEUNINDENTS">SCI_SETBACKSPACEUNINDENTS(bool bsUnIndents)</b><br /> + <b id="SCI_GETBACKSPACEUNINDENTS">SCI_GETBACKSPACEUNINDENTS</b><br /> + </p> + + <p>Inside indentation white space, the tab and backspace keys can be made to indent and + unindent rather than insert a tab character or delete a character with the + <code>SCI_SETTABINDENTS</code> and <code>SCI_SETBACKSPACEUNINDENTS</code> functions.</p> + + <p><b id="SCI_SETLINEINDENTATION">SCI_SETLINEINDENTATION(int line, int indentation)</b><br /> + <b id="SCI_GETLINEINDENTATION">SCI_GETLINEINDENTATION(int line)</b><br /> + The amount of indentation on a line can be discovered and set with + <code>SCI_GETLINEINDENTATION</code> and <code>SCI_SETLINEINDENTATION</code>. The indentation is + measured in character columns, which correspond to the width of space characters.</p> + + <p><b id="SCI_GETLINEINDENTPOSITION">SCI_GETLINEINDENTPOSITION(int line)</b><br /> + This returns the position at the end of indentation of a line.</p> + + <p><b id="SCI_SETINDENTATIONGUIDES">SCI_SETINDENTATIONGUIDES(bool view)</b><br /> + <b id="SCI_GETINDENTATIONGUIDES">SCI_GETINDENTATIONGUIDES</b><br /> + Indentation guides are dotted vertical lines that appear within indentation white space every + indent size columns. They make it easy to see which constructs line up especially when they + extend over multiple pages. Style <a class="message" + href="#StyleDefinition"><code>STYLE_INDENTGUIDE</code></a> (37) is used to specify the + foreground and background colour of the indentation guides.</p> + + <p><b id="SCI_SETHIGHLIGHTGUIDE">SCI_SETHIGHLIGHTGUIDE(int column)</b><br /> + <b id="SCI_GETHIGHLIGHTGUIDE">SCI_GETHIGHLIGHTGUIDE</b><br /> + When brace highlighting occurs, the indentation guide corresponding to the braces may be + highlighted with the brace highlighting style, <a class="message" + href="#StyleDefinition"><code>STYLE_BRACELIGHT</code></a> (34). Set <code>column</code> to 0 to + cancel this highlight.</p> + + <h2 id="Markers">Markers</h2> + + <p>There are 32 markers, numbered 0 to 31, and you can assign any combination of them to each + line in the document. Markers appear in the <a class="jump" href="#Margins">selection + margin</a> to the left of the text. If the selection margin is set to zero width, the + background colour of the whole line is changed instead. Marker numbers 25 to 31 are used by + Scintilla in folding margins, and have symbolic names of the form <code>SC_MARKNUM_</code>*, + for example <code>SC_MARKNUM_FOLDEROPEN</code>.</p> + + <p>Marker numbers 0 to 24 have no pre-defined function; you can use them to mark syntax errors + or the current point of execution, break points, or whatever you need marking. If you do not + need folding, you can use all 32 for any purpose you wish.</p> + + <p>Each marker number has a symbol associated with it. You can also set the foreground and + background colour for each marker number, so you can use the same symbol more than once with + different colouring for different uses. Scintilla has a set of symbols you can assign + (<code>SC_MARK_</code>*) or you can use characters. By default, all 32 markers are set to + <code>SC_MARK_CIRCLE</code> with a black foreground and a white background.</p> + + <p>The markers are drawn in the order of their numbers, so higher numbered markers appear on + top of lower numbered ones. Markers try to move with their text by tracking where the start of + their line moves. When a line is deleted, its markers are combined, by an <code>OR</code> + operation, with the markers of the previous line.</p> + <code><a class="message" href="#SCI_MARKERDEFINE">SCI_MARKERDEFINE(int markerNumber, int + markerSymbols)</a><br /> + <a class="message" href="#SCI_MARKERDEFINEPIXMAP">SCI_MARKERDEFINEPIXMAP(int markerNumber, + const char *xpm)</a><br /> + <a class="message" href="#SCI_MARKERSETFORE">SCI_MARKERSETFORE(int markerNumber, int + colour)</a><br /> + <a class="message" href="#SCI_MARKERSETBACK">SCI_MARKERSETBACK(int markerNumber, int + colour)</a><br /> + <a class="message" href="#SCI_MARKERSETALPHA">SCI_MARKERSETALPHA(int markerNumber, int + alpha)</a><br /> + <a class="message" href="#SCI_MARKERADD">SCI_MARKERADD(int line, int markerNumber)</a><br /> + <a class="message" href="#SCI_MARKERADDSET">SCI_MARKERADDSET(int line, int markerMask)</a><br /> + <a class="message" href="#SCI_MARKERDELETE">SCI_MARKERDELETE(int line, int + markerNumber)</a><br /> + <a class="message" href="#SCI_MARKERDELETEALL">SCI_MARKERDELETEALL(int markerNumber)</a><br /> + <a class="message" href="#SCI_MARKERGET">SCI_MARKERGET(int line)</a><br /> + <a class="message" href="#SCI_MARKERNEXT">SCI_MARKERNEXT(int lineStart, int + markerMask)</a><br /> + <a class="message" href="#SCI_MARKERPREVIOUS">SCI_MARKERPREVIOUS(int lineStart, int + markerMask)</a><br /> + <a class="message" href="#SCI_MARKERLINEFROMHANDLE">SCI_MARKERLINEFROMHANDLE(int + handle)</a><br /> + <a class="message" href="#SCI_MARKERDELETEHANDLE">SCI_MARKERDELETEHANDLE(int handle)</a><br /> + </code> + + <p><b id="SCI_MARKERDEFINE">SCI_MARKERDEFINE(int markerNumber, int markerSymbols)</b><br /> + This message associates a marker number in the range 0 to 31 with one of the marker symbols or + an ASCII character. The general-purpose marker symbols currently available are:<br /> + <code>SC_MARK_CIRCLE</code>, <code>SC_MARK_ROUNDRECT</code>, <code>SC_MARK_ARROW</code>, + <code>SC_MARK_SMALLRECT</code>, <code>SC_MARK_SHORTARROW</code>, <code>SC_MARK_EMPTY</code>, + <code>SC_MARK_ARROWDOWN</code>, <code>SC_MARK_MINUS</code>, <code>SC_MARK_PLUS</code>, + <code>SC_MARK_ARROWS</code>, <code>SC_MARK_DOTDOTDOT</code>, <code>SC_MARK_EMPTY</code>, + <code>SC_MARK_BACKGROUND</code> and <code>SC_MARK_FULLRECT</code>.</p> + + <p>The <code>SC_MARK_BACKGROUND</code> marker changes the background colour of the line only. + The <code>SC_MARK_FULLRECT</code> symbol mirrors this, changing only the margin background colour. + The <code>SC_MARK_EMPTY</code> symbol is invisible, allowing client code to track the movement + of lines. You would also use it if you changed the folding style and wanted one or more of the + <code>SC_FOLDERNUM_</code>* markers to have no associated symbol.</p> + + <p>There are also marker symbols designed for use in the folding margin in a flattened tree + style.<br /> + <code>SC_MARK_BOXMINUS</code>, <code>SC_MARK_BOXMINUSCONNECTED</code>, + <code>SC_MARK_BOXPLUS</code>, <code>SC_MARK_BOXPLUSCONNECTED</code>, + <code>SC_MARK_CIRCLEMINUS</code>, <code>SC_MARK_CIRCLEMINUSCONNECTED</code>, + <code>SC_MARK_CIRCLEPLUS</code>, <code>SC_MARK_CIRCLEPLUSCONNECTED</code>, + <code>SC_MARK_LCORNER</code>, <code>SC_MARK_LCORNERCURVE</code>, <code>SC_MARK_TCORNER</code>, + <code>SC_MARK_TCORNERCURVE</code>, and <code>SC_MARK_VLINE</code>.</p> + Characters can be used as markers by adding the ASCII value of the character to + <code>SC_MARK_CHARACTER</code> (10000). For example, to use 'A' (ASCII code 65) as marker + number 1 use:<br /> + <code>SCI_MARKERDEFINE(1, SC_MARK_CHARACTER+65)</code>. <br /> + + <p>The marker numbers <code>SC_MARKNUM_FOLDER</code> and <code>SC_MARKNUM_FOLDEROPEN</code> are + used for showing that a fold is present and open or closed. Any symbols may be assigned for + this purpose although the (<code>SC_MARK_PLUS</code>, <code>SC_MARK_MINUS</code>) pair or the + (<code>SC_MARK_ARROW</code>, <code>SC_MARK_ARROWDOWN</code>) pair are good choices. As well as + these two, more assignments are needed for the flattened tree style: + <code>SC_MARKNUM_FOLDEREND</code>, <code>SC_MARKNUM_FOLDERMIDTAIL</code>, + <code>SC_MARKNUM_FOLDEROPENMID</code>, <code>SC_MARKNUM_FOLDERSUB</code>, and + <code>SC_MARKNUM_FOLDERTAIL</code>. The bits used for folding are specified by + <code>SC_MASK_FOLDERS</code>, which is commonly used as an argument to + <code>SCI_SETMARGINMASKN</code> when defining a margin to be used for folding.</p> + + <p>This table shows which <code>SC_MARK_</code>* symbols should be assigned to which + <code>SC_MARKNUM_</code>* marker numbers to obtain four folding styles: Arrow (mimics + Macintosh), plus/minus shows folded lines as '+' and opened folds as '-', Circle tree, Box + tree.</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Markers used for folding"> + <thead align="left"> + <tr> + <th><code>SC_MARKNUM_</code>*</th> + + <th>Arrow</th> + + <th>Plus/minus</th> + + <th>Circle tree</th> + + <th>Box tree</th> + </tr> + </thead> + + <tbody valign="top"> + <tr> + <th align="left"><code>FOLDEROPEN</code></th> + + <td><code>ARROWDOWN</code></td> + + <td><code>MINUS</code></td> + + <td><code>CIRCLEMINUS</code></td> + + <td><code>BOXMINUS</code></td> + </tr> + + <tr> + <th align="left"><code>FOLDER</code></th> + + <td><code>ARROW</code></td> + + <td><code>PLUS</code></td> + + <td><code>CIRCLEPLUS</code></td> + + <td><code>BOXPLUS</code></td> + </tr> + + <tr> + <th align="left"><code>FOLDERSUB</code></th> + + <td><code>EMPTY</code></td> + + <td><code>EMPTY</code></td> + + <td><code>VLINE</code></td> + + <td><code>VLINE</code></td> + </tr> + + <tr> + <th align="left"><code>FOLDERTAIL</code></th> + + <td><code>EMPTY</code></td> + + <td><code>EMPTY</code></td> + + <td><code>LCORNERCURVE</code></td> + + <td><code>LCORNER</code></td> + </tr> + + <tr> + <th align="left"><code>FOLDEREND</code></th> + + <td><code>EMPTY</code></td> + + <td><code>EMPTY</code></td> + + <td><code>CIRCLEPLUSCONNECTED</code></td> + + <td><code>BOXPLUSCONNECTED</code></td> + </tr> + + <tr> + <th align="left"><code>FOLDEROPENMID</code></th> + + <td><code>EMPTY</code></td> + + <td><code>EMPTY</code></td> + + <td><code>CIRCLEMINUSCONNECTED</code></td> + + <td><code>BOXMINUSCONNECTED</code></td> + </tr> + + <tr> + <th align="left"><code>FOLDERMIDTAIL</code></th> + + <td><code>EMPTY</code></td> + + <td><code>EMPTY</code></td> + + <td><code>TCORNERCURVE</code></td> + + <td><code>TCORNER</code></td> + </tr> + </tbody> + </table> + + <p><b id="SCI_MARKERDEFINEPIXMAP">SCI_MARKERDEFINEPIXMAP(int markerNumber, const char + *xpm)</b><br /> + Markers can be set to pixmaps with this message. The XPM format is used for the pixmap and it + is limited to pixmaps that use one character per pixel. The data should be null terminated. + Pixmaps use the <code>SC_MARK_PIXMAP</code> marker symbol. You can find the full description of + the XPM format <a class="jump" href="http://koala.ilog.fr/lehors/xpm.html">here</a>.</p> + + <p><b id="SCI_MARKERSETFORE">SCI_MARKERSETFORE(int markerNumber, int <a class="jump" + href="#colour">colour</a>)</b><br /> + <b id="SCI_MARKERSETBACK">SCI_MARKERSETBACK(int markerNumber, int <a class="jump" + href="#colour">colour</a>)</b><br /> + These two messages set the foreground and background colour of a marker number.</p> + <p><b id="SCI_MARKERSETALPHA">SCI_MARKERSETALPHA(int markerNumber, int <a class="jump" + href="#alpha">alpha</a>)</b><br /> + When markers are drawn in the content area, either because there is no margin for them or + they are of SC_MARK_BACKGROUND type, they may be drawn translucently by + setting an alpha value.</p> + + <p><b id="SCI_MARKERADD">SCI_MARKERADD(int line, int markerNumber)</b><br /> + This message adds marker number <code>markerNumber</code> to a line. The message returns -1 if + this fails (illegal line number, out of memory) or it returns a marker handle number that + identifies the added marker. You can use this returned handle with <a class="message" + href="#SCI_MARKERLINEFROMHANDLE"><code>SCI_MARKERLINEFROMHANDLE</code></a> to find where a + marker is after moving or combining lines and with <a class="message" + href="#SCI_MARKERDELETEHANDLE"><code>SCI_MARKERDELETEHANDLE</code></a> to delete the marker + based on its handle. The message does not check the value of markerNumber, nor does it + check if the line already contains the marker.</p> + + <p><b id="SCI_MARKERADDSET">SCI_MARKERADDSET(int line, int markerMask)</b><br /> + This message can add one or more markers to a line with a single call, specified in the same "one-bit-per-marker" 32-bit integer format returned by + <a class="message" href="#SCI_MARKERGET"><code>SCI_MARKERGET</code></a> + (and used by the mask-based marker search functions + <a class="message" href="#SCI_MARKERNEXT"><code>SCI_MARKERNEXT</code></a> and + <a class="message" href="#SCI_MARKERPREVIOUS"><code>SCI_MARKERPREVIOUS</code></a>). + As with + <a class="message" href="#SCI_MARKERADD"><code>SCI_MARKERADD</code></a>, no check is made + to see if any of the markers are already present on the targeted line.</p> + + <p><b id="SCI_MARKERDELETE">SCI_MARKERDELETE(int line, int markerNumber)</b><br /> + This searches the given line number for the given marker number and deletes it if it is + present. If you added the same marker more than once to the line, this will delete one copy + each time it is used. If you pass in a marker number of -1, all markers are deleted from the + line.</p> + + <p><b id="SCI_MARKERDELETEALL">SCI_MARKERDELETEALL(int markerNumber)</b><br /> + This removes markers of the given number from all lines. If markerNumber is -1, it deletes all + markers from all lines.</p> + + <p><b id="SCI_MARKERGET">SCI_MARKERGET(int line)</b><br /> + This returns a 32-bit integer that indicates which markers were present on the line. Bit 0 is + set if marker 0 is present, bit 1 for marker 1 and so on.</p> + + <p><b id="SCI_MARKERNEXT">SCI_MARKERNEXT(int lineStart, int markerMask)</b><br /> + <b id="SCI_MARKERPREVIOUS">SCI_MARKERPREVIOUS(int lineStart, int markerMask)</b><br /> + These messages search efficiently for lines that include a given set of markers. The search + starts at line number <code>lineStart</code> and continues forwards to the end of the file + (<code>SCI_MARKERNEXT</code>) or backwards to the start of the file + (<code>SCI_MARKERPREVIOUS</code>). The <code>markerMask</code> argument should have one bit set + for each marker you wish to find. Set bit 0 to find marker 0, bit 1 for marker 1 and so on. The + message returns the line number of the first line that contains one of the markers in + <code>markerMask</code> or -1 if no marker is found.</p> + + <p><b id="SCI_MARKERLINEFROMHANDLE">SCI_MARKERLINEFROMHANDLE(int markerHandle)</b><br /> + The <code>markerHandle</code> argument is an identifier for a marker returned by <a + class="message" href="#SCI_MARKERADD"><code>SCI_MARKERADD</code></a>. This function searches + the document for the marker with this handle and returns the line number that contains it or -1 + if it is not found.</p> + + <p><b id="SCI_MARKERDELETEHANDLE">SCI_MARKERDELETEHANDLE(int markerHandle)</b><br /> + The <code>markerHandle</code> argument is an identifier for a marker returned by <a + class="message" href="#SCI_MARKERADD"><code>SCI_MARKERADD</code></a>. This function searches + the document for the marker with this handle and deletes the marker if it is found.</p> + + <h2 id="Indicators">Indicators</h2> + + <p>By default, Scintilla organizes the style byte associated with each text byte as 5 bits of + style information (for 32 styles) and 3 bits of indicator information for 3 independent + indicators so that, for example, syntax errors, deprecated names and bad indentation could all + be displayed at once. Indicators may be displayed as simple underlines, squiggly underlines, a + line of small 'T' shapes, a line of diagonal hatching, a strike-out or a rectangle around the text.</p> + + <p>The indicators are set using <a class="message" + href="#SCI_STARTSTYLING"><code>SCI_STARTSTYLING</code></a> with a <code>INDICS_MASK</code> mask + and <a class="message" href="#SCI_SETSTYLING"><code>SCI_SETSTYLING</code></a> with the values + <code>INDIC0_MASK</code>, <code>INDIC1_MASK</code> and <code>INDIC2_MASK</code>.</p> + + <p>If you are using indicators in a buffer that has a lexer active + (see <a class="message" href="#SCI_SETLEXER"><code>SCI_SETLEXER</code></a>), + you must save lexing state information before setting any indicators and restore it afterwards. + Use <a class="message" href="#SCI_GETENDSTYLED"><code>SCI_GETENDSTYLED</code></a> + to retrieve the current "styled to" position and + <a class="message" href="#SCI_STARTSTYLING"><code>SCI_STARTSTYLING</code></a> + to reset the styling position and mask (<code>0x1f </code> in the default layout of 5 style bits and 3 indicator bits) + when you are done.</p> + + <p>The number of bits used for styles can be altered with <a class="message" + href="#SCI_SETSTYLEBITS"><code>SCI_SETSTYLEBITS</code></a> from 0 to 7 bits. The remaining bits + can be used for indicators, so there can be from 1 to 8 indicators. However, the + <code>INDIC*_MASK</code> constants defined in <code>Scintilla.h</code> all assume 5 bits of + styling information and 3 indicators. If you use a different arrangement, you must define your + own constants.</p> + + <p>The <code>SCI_INDIC*</code> messages allow you to get and set the visual appearance of the + indicators. They all use an <code>indicatorNumber</code> argument in the range 0 to 7 to set + the indicator to style. With the default settings, only indicators 0, 1 and 2 will have any + visible effect.</p> + <code><a class="message" href="#SCI_INDICSETSTYLE">SCI_INDICSETSTYLE(int indicatorNumber, int + indicatorStyle)</a><br /> + <a class="message" href="#SCI_INDICGETSTYLE">SCI_INDICGETSTYLE(int indicatorNumber)</a><br /> + <a class="message" href="#SCI_INDICSETFORE">SCI_INDICSETFORE(int indicatorNumber, int + colour)</a><br /> + <a class="message" href="#SCI_INDICGETFORE">SCI_INDICGETFORE(int indicatorNumber)</a><br /> + </code> + + <p><b id="SCI_INDICSETSTYLE">SCI_INDICSETSTYLE(int indicatorNumber, int + indicatorStyle)</b><br /> + <b id="SCI_INDICGETSTYLE">SCI_INDICGETSTYLE(int indicatorNumber)</b><br /> + These two messages set and get the style for a particular indicator. The indicator styles + currently available are:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Indicators"> + <tbody> + <tr> + <th align="left">Symbol</th> + + <th>Value</th> + + <th align="left">Visual effect</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>INDIC_PLAIN</code></td> + + <td align="center">0</td> + + <td>Underlined with a single, straight line.</td> + </tr> + + <tr> + <td align="left"><code>INDIC_SQUIGGLE</code></td> + + <td align="center">1</td> + + <td>A squiggly underline.</td> + </tr> + + <tr> + <td align="left"><code>INDIC_TT</code></td> + + <td align="center">2</td> + + <td>A line of small T shapes.</td> + </tr> + + <tr> + <td align="left"><code>INDIC_DIAGONAL</code></td> + + <td align="center">3</td> + + <td>Diagonal hatching.</td> + </tr> + + <tr> + <td align="left"><code>INDIC_STRIKE</code></td> + + <td align="center">4</td> + + <td>Strike out.</td> + </tr> + + <tr> + <td align="left"><code>INDIC_HIDDEN</code></td> + + <td align="center">5</td> + + <td>An indicator with no visual effect.</td> + </tr> + + <tr> + <td align="left"><code>INDIC_BOX</code></td> + + <td align="center">6</td> + + <td>A rectangle around the text.</td> + </tr> + + <tr> + <td align="left"><code>INDIC_ROUNDBOX</code></td> + + <td align="center">7</td> + + <td>A rectangle with rounded corners around the text using translucent drawing with the + interior more transparent than the border.</td> + </tr> + </tbody> + </table> + + <p>The default indicator styles are equivalent to:<br /> + <code>SCI_INDICSETSTYLE(0, INDIC_SQUIGGLE);</code><br /> + <code>SCI_INDICSETSTYLE(1, INDIC_TT);</code><br /> + <code>SCI_INDICSETSTYLE(2, INDIC_PLAIN);</code></p> + + <p><b id="SCI_INDICSETFORE">SCI_INDICSETFORE(int indicatorNumber, int <a class="jump" + href="#colour">colour</a>)</b><br /> + <b id="SCI_INDICGETFORE">SCI_INDICGETFORE(int indicatorNumber)</b><br /> + These two messages set and get the colour used to draw an indicator. The default indicator + colours are equivalent to:<br /> + <code>SCI_INDICSETFORE(0, 0x007f00);</code> (dark green)<br /> + <code>SCI_INDICSETFORE(1, 0xff0000);</code> (light blue)<br /> + <code>SCI_INDICSETFORE(2, 0x0000ff);</code> (light red)</p> + + <h2 id="Autocompletion">Autocompletion</h2> + + <p>Autocompletion displays a list box showing likely identifiers based upon the user's typing. + The user chooses the currently selected item by pressing the tab character or another character + that is a member of the fillup character set defined with <code>SCI_AUTOCSETFILLUPS</code>. + Autocompletion is triggered by your application. For example, in C if you detect that the user + has just typed <code>fred.</code> you could look up <code>fred</code>, and if it has a known + list of members, you could offer them in an autocompletion list. Alternatively, you could + monitor the user's typing and offer a list of likely items once their typing has narrowed down + the choice to a reasonable list. As yet another alternative, you could define a key code to + activate the list.</p> + + <p>When the user makes a selection from the list the container is sent a <code><a class="message" + href="#SCN_AUTOCSELECTION">SCN_AUTOCSELECTION</a></code> <a class="jump" + href="#Notifications">notification message</a>. On return from the notification Scintilla will insert + the selected text unless the autocompletion list has been cancelled, for example by the container sending + <code><a class="message" href="#SCI_AUTOCCANCEL">SCI_AUTOCCANCEL</a></code>.</p> + + <p>To make use of autocompletion you must monitor each character added to the document. See + <code>SciTEBase::CharAdded()</code> in SciTEBase.cxx for an example of autocompletion.</p> + <code><a class="message" href="#SCI_AUTOCSHOW">SCI_AUTOCSHOW(int lenEntered, const char + *list)</a><br /> + <a class="message" href="#SCI_AUTOCCANCEL">SCI_AUTOCCANCEL</a><br /> + <a class="message" href="#SCI_AUTOCACTIVE">SCI_AUTOCACTIVE</a><br /> + <a class="message" href="#SCI_AUTOCPOSSTART">SCI_AUTOCPOSSTART</a><br /> + <a class="message" href="#SCI_AUTOCCOMPLETE">SCI_AUTOCCOMPLETE</a><br /> + <a class="message" href="#SCI_AUTOCSTOPS">SCI_AUTOCSTOPS(<unused>, const char + *chars)</a><br /> + <a class="message" href="#SCI_AUTOCSETSEPARATOR">SCI_AUTOCSETSEPARATOR(char + separator)</a><br /> + <a class="message" href="#SCI_AUTOCGETSEPARATOR">SCI_AUTOCGETSEPARATOR</a><br /> + <a class="message" href="#SCI_AUTOCSELECT">SCI_AUTOCSELECT(<unused>, const char + *select)</a><br /> + <a class="message" href="#SCI_AUTOCGETCURRENT">SCI_AUTOCGETCURRENT</a><br /> + <a class="message" href="#SCI_AUTOCSETCANCELATSTART">SCI_AUTOCSETCANCELATSTART(bool + cancel)</a><br /> + <a class="message" href="#SCI_AUTOCGETCANCELATSTART">SCI_AUTOCGETCANCELATSTART</a><br /> + <a class="message" href="#SCI_AUTOCSETFILLUPS">SCI_AUTOCSETFILLUPS(<unused>, const char + *chars)</a><br /> + <a class="message" href="#SCI_AUTOCSETCHOOSESINGLE">SCI_AUTOCSETCHOOSESINGLE(bool + chooseSingle)</a><br /> + <a class="message" href="#SCI_AUTOCGETCHOOSESINGLE">SCI_AUTOCGETCHOOSESINGLE</a><br /> + <a class="message" href="#SCI_AUTOCSETIGNORECASE">SCI_AUTOCSETIGNORECASE(bool + ignoreCase)</a><br /> + <a class="message" href="#SCI_AUTOCGETIGNORECASE">SCI_AUTOCGETIGNORECASE</a><br /> + <a class="message" href="#SCI_AUTOCSETAUTOHIDE">SCI_AUTOCSETAUTOHIDE(bool autoHide)</a><br /> + <a class="message" href="#SCI_AUTOCGETAUTOHIDE">SCI_AUTOCGETAUTOHIDE</a><br /> + <a class="message" href="#SCI_AUTOCSETDROPRESTOFWORD">SCI_AUTOCSETDROPRESTOFWORD(bool + dropRestOfWord)</a><br /> + <a class="message" href="#SCI_AUTOCGETDROPRESTOFWORD">SCI_AUTOCGETDROPRESTOFWORD</a><br /> + <a class="message" href="#SCI_REGISTERIMAGE">SCI_REGISTERIMAGE</a><br /> + <a class="message" href="#SCI_CLEARREGISTEREDIMAGES">SCI_CLEARREGISTEREDIMAGES</a><br /> + <a class="message" href="#SCI_AUTOCSETTYPESEPARATOR">SCI_AUTOCSETTYPESEPARATOR(char separatorCharacter)</a><br /> + <a class="message" href="#SCI_AUTOCGETTYPESEPARATOR">SCI_AUTOCGETTYPESEPARATOR</a><br /> + <a class="message" href="#SCI_AUTOCSETMAXHEIGHT">SCI_AUTOCSETMAXHEIGHT(int rowCount)</a><br /> + <a class="message" href="#SCI_AUTOCGETMAXHEIGHT">SCI_AUTOCGETMAXHEIGHT</a><br /> + <a class="message" href="#SCI_AUTOCSETMAXWIDTH">SCI_AUTOCSETMAXWIDTH(int characterCount)</a><br /> + <a class="message" href="#SCI_AUTOCGETMAXWIDTH">SCI_AUTOCGETMAXWIDTH</a><br /> + </code> + + <p><b id="SCI_AUTOCSHOW">SCI_AUTOCSHOW(int lenEntered, const char *list)</b><br /> + This message causes a list to be displayed. <code>lenEntered</code> is the number of + characters of the word already entered and <code>list</code> is the list of words separated by + separator characters. The initial separator character is a space but this can be set or got + with <a class="message" href="#SCI_AUTOCSETSEPARATOR"><code>SCI_AUTOCSETSEPARATOR</code></a> + and <a class="message" + href="#SCI_AUTOCGETSEPARATOR"><code>SCI_AUTOCGETSEPARATOR</code></a>.</p> + + <p>The list of words should be in sorted order. If set to ignore case mode with <a + class="message" href="#SCI_AUTOCSETIGNORECASE"><code>SCI_AUTOCSETIGNORECASE</code></a>, then + strings are matched after being converted to upper case. One result of this is that the list + should be sorted with the punctuation characters '[', '\', ']', '^', '_', and '`' sorted after + letters.</p> + + <p><b id="SCI_AUTOCCANCEL">SCI_AUTOCCANCEL</b><br /> + This message cancels any displayed autocompletion list. When in autocompletion mode, the list + should disappear when the user types a character that can not be part of the autocompletion, + such as '.', '(' or '[' when typing an identifier. A set of characters that will cancel + autocompletion can be specified with <a class="message" + href="#SCI_AUTOCSTOPS"><code>SCI_AUTOCSTOPS</code></a>.</p> + + <p><b id="SCI_AUTOCACTIVE">SCI_AUTOCACTIVE</b><br /> + This message returns non-zero if there is an active autocompletion list and zero if there is + not.</p> + + <p><b id="SCI_AUTOCPOSSTART">SCI_AUTOCPOSSTART</b><br /> + This returns the value of the current position when <code>SCI_AUTOCSHOW</code> started display + of the list.</p> + + <p><b id="SCI_AUTOCCOMPLETE">SCI_AUTOCCOMPLETE</b><br /> + This message triggers autocompletion. This has the same effect as the tab key.</p> + + <p><b id="SCI_AUTOCSTOPS">SCI_AUTOCSTOPS(<unused>, const char *chars)</b><br /> + The <code>chars</code> argument is a string containing a list of characters that will + automatically cancel the autocompletion list. When you start the editor, this list is + empty.</p> + + <p><b id="SCI_AUTOCSETSEPARATOR">SCI_AUTOCSETSEPARATOR(char separator)</b><br /> + <b id="SCI_AUTOCGETSEPARATOR">SCI_AUTOCGETSEPARATOR</b><br /> + These two messages set and get the separator character used to separate words in the + <code>SCI_AUTOCSHOW</code> list. The default is the space character.</p> + + <p><b id="SCI_AUTOCSELECT">SCI_AUTOCSELECT(<unused>, const char *select)</b><br /> + <b id="SCI_AUTOCGETCURRENT">SCI_AUTOCGETCURRENT</b><br /> + This message selects an item in the autocompletion list. It searches the list of words for the + first that matches <code>select</code>. By default, comparisons are case sensitive, but you can + change this with <a class="message" + href="#SCI_AUTOCSETIGNORECASE"><code>SCI_AUTOCSETIGNORECASE</code></a>. The match is character + by character for the length of the <code>select</code> string. That is, if select is "Fred" it + will match "Frederick" if this is the first item in the list that begins with "Fred". If an + item is found, it is selected. If the item is not found, the autocompletion list closes if + auto-hide is true (see <a class="message" + href="#SCI_AUTOCSETAUTOHIDE"><code>SCI_AUTOCSETAUTOHIDE</code></a>).<br /> + The current selection can be retrieved with <code>SCI_AUTOCGETCURRENT</code> + </p> + + <p><b id="SCI_AUTOCSETCANCELATSTART">SCI_AUTOCSETCANCELATSTART(bool cancel)</b><br /> + <b id="SCI_AUTOCGETCANCELATSTART">SCI_AUTOCGETCANCELATSTART</b><br /> + The default behavior is for the list to be cancelled if the caret moves before the location it + was at when the list was displayed. By calling this message with a <code>false</code> argument, + the list is not cancelled until the caret moves before the first character of the word being + completed.</p> + + <p><b id="SCI_AUTOCSETFILLUPS">SCI_AUTOCSETFILLUPS(<unused>, const char *chars)</b><br /> + If a fillup character is typed with an autocompletion list active, the currently selected item + in the list is added into the document, then the fillup character is added. Common fillup + characters are '(', '[' and '.' but others are possible depending on the language. By default, + no fillup characters are set.</p> + + <p><b id="SCI_AUTOCSETCHOOSESINGLE">SCI_AUTOCSETCHOOSESINGLE(bool chooseSingle)</b><br /> + <b id="SCI_AUTOCGETCHOOSESINGLE">SCI_AUTOCGETCHOOSESINGLE</b><br /> + If you use <code>SCI_AUTOCSETCHOOSESINGLE(1)</code> and a list has only one item, it is + automatically added and no list is displayed. The default is to display the list even if there + is only a single item.</p> + + <p><b id="SCI_AUTOCSETIGNORECASE">SCI_AUTOCSETIGNORECASE(bool ignoreCase)</b><br /> + <b id="SCI_AUTOCGETIGNORECASE">SCI_AUTOCGETIGNORECASE</b><br /> + By default, matching of characters to list members is case sensitive. These messages let you + set and get case sensitivity.</p> + + <p><b id="SCI_AUTOCSETAUTOHIDE">SCI_AUTOCSETAUTOHIDE(bool autoHide)</b><br /> + <b id="SCI_AUTOCGETAUTOHIDE">SCI_AUTOCGETAUTOHIDE</b><br /> + By default, the list is cancelled if there are no viable matches (the user has typed + characters that no longer match a list entry). If you want to keep displaying the original + list, set <code>autoHide</code> to <code>false</code>. This also effects <a class="message" + href="#SCI_AUTOCSELECT"><code>SCI_AUTOCSELECT</code></a>.</p> + + <p><b id="SCI_AUTOCSETDROPRESTOFWORD">SCI_AUTOCSETDROPRESTOFWORD(bool dropRestOfWord)</b><br /> + <b id="SCI_AUTOCGETDROPRESTOFWORD">SCI_AUTOCGETDROPRESTOFWORD</b><br /> + When an item is selected, any word characters following the caret are first erased if + <code>dropRestOfWord</code> is set <code>true</code>. The default is <code>false</code>.</p> + + <p> + <b id="SCI_REGISTERIMAGE">SCI_REGISTERIMAGE(int type, const char *xpmData)</b><br /> + <b id="SCI_CLEARREGISTEREDIMAGES">SCI_CLEARREGISTEREDIMAGES</b><br /> + <b id="SCI_AUTOCSETTYPESEPARATOR">SCI_AUTOCSETTYPESEPARATOR(char separatorCharacter)</b><br /> + <b id="SCI_AUTOCGETTYPESEPARATOR">SCI_AUTOCGETTYPESEPARATOR</b><br /> + + Autocompletion list items may display an image as well as text. Each image is first registered with an integer + type. Then this integer is included in the text of the list separated by a '?' from the text. For example, + "fclose?2 fopen" displays image 2 before the string "fclose" and no image before "fopen". + The images are in XPM format as is described for + <a class="message" href="#SCI_MARKERDEFINEPIXMAP"><code>SCI_MARKERDEFINEPIXMAP</code></a> + The set of registered images can be cleared with <code>SCI_CLEARREGISTEREDIMAGES</code> and the '?' separator changed + with <code>SCI_AUTOCSETTYPESEPARATOR</code>. + </p> + + <p> + <b id="SCI_AUTOCSETMAXHEIGHT">SCI_AUTOCSETMAXHEIGHT(int rowCount)</b><br /> + <b id="SCI_AUTOCGETMAXHEIGHT">SCI_AUTOCGETMAXHEIGHT</b><br /> + + Get or set the maximum number of rows that will be visible in an autocompletion list. If there are more rows in the list, then a vertical + scrollbar is shown. The default is 5. + </p> + + <p> + <b id="SCI_AUTOCSETMAXWIDTH">SCI_AUTOCSETMAXWIDTH(int characterCount)</b><br /> + <b id="SCI_AUTOCGETMAXWIDTH">SCI_AUTOCGETMAXWIDTH</b><br /> + + Get or set the maximum width of an autocompletion list expressed as the number of characters in the longest item that will be totally visible. + If zero (the default) then the list's width is calculated to fit the item with the most characters. Any items that cannot be fully displayed within + the available width are indicated by the presence of ellipsis. + </p> + + <h2 id="UserLists">User lists</h2> + + <p>User lists use the same internal mechanisms as autocompletion lists, and all the calls + listed for autocompletion work on them; you cannot display a user list at the same time as an + autocompletion list is active. They differ in the following respects:</p> + + <p>o The <code><a class="message" + href="#SCI_AUTOCSETCHOOSESINGLE">SCI_AUTOCSETCHOOSESINGLE</a></code> message has no + effect.<br /> + o When the user makes a selection you are sent a <code><a class="message" + href="#SCN_USERLISTSELECTION">SCN_USERLISTSELECTION</a></code> <a class="jump" + href="#Notifications">notification message</a> rather than <code><a class="message" + href="#SCN_AUTOCSELECTION">SCN_AUTOCSELECTION</a></code>.</p> + + <p>BEWARE: if you have set fillup characters or stop characters, these will still be active + with the user list, and may result in items being selected or the user list cancelled due to + the user typing into the editor.</p> + + <p><b id="SCI_USERLISTSHOW">SCI_USERLISTSHOW(int listType, const char *list)</b><br /> + The <code>listType</code> parameter is returned to the container as the <code>wParam</code> + field of the <a class="message" href="#SCNotification"><code>SCNotification</code></a> + structure. It must be greater than 0 as this is how Scintilla tells the difference between an + autocompletion list and a user list. If you have different types of list, for example a list of + buffers and a list of macros, you can use <code>listType</code> to tell which one has returned + a selection. </p> + + <h2 id="CallTips">Call tips</h2> + + <p>Call tips are small windows displaying the arguments to a function and are displayed after + the user has typed the name of the function. They normally display characters using the font + facename, size and character set defined by + <code><a class="message" href="#StyleDefinition">STYLE_DEFAULT</a></code>. You can choose to + use <code><a class="message" href="#StyleDefinition">STYLE_CALLTIP</a></code> to define the + facename, size, foreground and background colours and character set with + <code><a class="message" href="#SCI_CALLTIPUSESTYLE">SCI_CALLTIPUSESTYLE</a></code>. + This also enables support for Tab characters. + + There is some interaction between call tips and autocompletion lists in that showing a + call tip cancels any active autocompletion list, and vice versa.</p> + + <p>Call tips can highlight part of the text within them. You could use this to highlight the + current argument to a function by counting the number of commas (or whatever separator your + language uses). See <code>SciTEBase::CharAdded()</code> in <code>SciTEBase.cxx</code> for an + example of call tip use.</p> + + <p>The mouse may be clicked on call tips and this causes a + <code><a class="message" href="#SCN_CALLTIPCLICK">SCN_CALLTIPCLICK</a></code> + notification to be sent to the container. Small up an down arrows may be displayed within + a call tip by, respectively, including the characters '\001', or '\002'. This is useful + for showing that there are overloaded variants of one function name and that the user can + click on the arrows to cycle through the overloads.</p> + + <p>Alternatively, call tips can be displayed when you leave the mouse pointer for a while over + a word in response to the <code><a class="message" + href="#SCN_DWELLSTART">SCN_DWELLSTART</a></code> <a class="jump" + href="#Notifications">notification</a> and cancelled in response to <code><a class="message" + href="#SCN_DWELLEND">SCN_DWELLEND</a></code>. This method could be used in a debugger to give + the value of a variable, or during editing to give information about the word under the + pointer.</p> + <code><a class="message" href="#SCI_CALLTIPSHOW">SCI_CALLTIPSHOW(int posStart, const char + *definition)</a><br /> + <a class="message" href="#SCI_CALLTIPCANCEL">SCI_CALLTIPCANCEL</a><br /> + <a class="message" href="#SCI_CALLTIPACTIVE">SCI_CALLTIPACTIVE</a><br /> + <a class="message" href="#SCI_CALLTIPPOSSTART">SCI_CALLTIPPOSSTART</a><br /> + <a class="message" href="#SCI_CALLTIPSETHLT">SCI_CALLTIPSETHLT(int highlightStart, int + highlightEnd)</a><br /> + <a class="message" href="#SCI_CALLTIPSETBACK">SCI_CALLTIPSETBACK(int colour)</a><br /> + <a class="message" href="#SCI_CALLTIPSETFORE">SCI_CALLTIPSETFORE(int colour)</a><br /> + <a class="message" href="#SCI_CALLTIPSETFOREHLT">SCI_CALLTIPSETFOREHLT(int colour)</a><br /> + <a class="message" href="#SCI_CALLTIPUSESTYLE">SCI_CALLTIPUSESTYLE(int tabsize)</a><br /> + </code> + + <p><b id="SCI_CALLTIPSHOW">SCI_CALLTIPSHOW(int posStart, const char *definition)</b><br /> + This message starts the process by displaying the call tip window. If a call tip is already + active, this has no effect.<br /> + <code>posStart</code> is the position in the document at which to align the call tip. The call + tip text is aligned to start 1 line below this character unless you have included up and/or + down arrows in the call tip text in which case the tip is aligned to the right-hand edge of + the rightmost arrow. The assumption is that you will start the text with something like + "\001 1 of 3 \002".<br /> + <code>definition</code> is the call tip text. This can contain multiple lines separated by + '\n' (Line Feed, ASCII code 10) characters. Do not include '\r' (Carriage Return, ASCII + code 13), as this will most likely print as an empty box. '\t' (Tab, ASCII code 9) is + supported if you set a tabsize with + <code><a class="message" href="#SCI_CALLTIPUSESTYLE">SCI_CALLTIPUSESTYLE</a></code>.<br /></p> + + <p><b id="SCI_CALLTIPCANCEL">SCI_CALLTIPCANCEL</b><br /> + This message cancels any displayed call tip. Scintilla will also cancel call tips for you if + you use any keyboard commands that are not compatible with editing the argument list of a + function.</p> + + <p><b id="SCI_CALLTIPACTIVE">SCI_CALLTIPACTIVE</b><br /> + This returns 1 if a call tip is active and 0 if it is not active.</p> + + <p><b id="SCI_CALLTIPPOSSTART">SCI_CALLTIPPOSSTART</b><br /> + This message returns the value of the current position when <code>SCI_CALLTIPSHOW</code> + started to display the tip.</p> + + <p><b id="SCI_CALLTIPSETHLT">SCI_CALLTIPSETHLT(int hlStart, int hlEnd)</b><br /> + This sets the region of the call tips text to display in a highlighted style. + <code>hlStart</code> is the zero-based index into the string of the first character to + highlight and <code>hlEnd</code> is the index of the first character after the highlight. + <code>hlEnd</code> must be greater than <code>hlStart</code>; <code>hlEnd-hlStart</code> is the + number of characters to highlight. Highlights can extend over line ends if this is + required.</p> + + <p>Unhighlighted text is drawn in a mid gray. Selected text is drawn in a dark blue. The + background is white. These can be changed with + <code>SCI_CALLTIPSETBACK</code>, + <code>SCI_CALLTIPSETFORE</code>, and + <code>SCI_CALLTIPSETFOREHLT</code>. + </p> + + <p><b id="SCI_CALLTIPSETBACK">SCI_CALLTIPSETBACK(int colour)</b><br /> + The background colour of call tips can be set with this message; the default colour is white. + It is not a good idea to set a dark colour as the background as the default colour for normal + calltip text is mid gray and the defaultcolour for highlighted text is dark blue. This also + sets the background colour of <code>STYLE_CALLTIP</code>.</p> + + <p><b id="SCI_CALLTIPSETFORE">SCI_CALLTIPSETFORE(int colour)</b><br /> + The colour of call tip text can be set with this message; the default colour is mid gray. + This also sets the foreground colour of <code>STYLE_CALLTIP</code>.</p> + + <p><b id="SCI_CALLTIPSETFOREHLT">SCI_CALLTIPSETFOREHLT(int colour)</b><br /> + The colour of highlighted call tip text can be set with this message; the default colour + is dark blue.</p> + + <p><b id="SCI_CALLTIPUSESTYLE">SCI_CALLTIPUSESTYLE(int tabsize)</b><br /> + This message changes the style used for call tips from <code>STYLE_DEFAULT</code> to + <code>STYLE_CALLTIP</code> and sets a tab size in screen pixels. If <code>tabsize</code> is + less than 1, Tab characters are not treated specially. Once this call has been used, the + call tip foreground and background colours are also taken from the style.</p> + + + <h2 id="KeyboardCommands">Keyboard commands</h2> + + <p>To allow the container application to perform any of the actions available to the user with + keyboard, all the keyboard actions are messages. They do not take any parameters. These + commands are also used when redefining the key bindings with the <a class="message" + href="#SCI_ASSIGNCMDKEY"><code>SCI_ASSIGNCMDKEY</code></a> message.</p> + + <table border="0" summary="Keyboard commands"> + <tbody> + <tr> + <td><code>SCI_LINEDOWN</code></td> + + <td><code>SCI_LINEDOWNEXTEND</code></td> + + <td><code>SCI_LINEDOWNRECTEXTEND</code></td> + + <td><code>SCI_LINESCROLLDOWN</code></td> + </tr> + + <tr> + <td><code>SCI_LINEUP</code></td> + + <td><code>SCI_LINEUPEXTEND</code></td> + + <td><code>SCI_LINEUPRECTEXTEND</code></td> + + <td><code>SCI_LINESCROLLUP</code></td> + </tr> + + <tr> + <td><code>SCI_PARADOWN</code></td> + + <td><code>SCI_PARADOWNEXTEND</code></td> + + <td><code>SCI_PARAUP</code></td> + + <td><code>SCI_PARAUPEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_CHARLEFT</code></td> + + <td><code>SCI_CHARLEFTEXTEND</code></td> + + <td><code>SCI_CHARLEFTRECTEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_CHARRIGHT</code></td> + + <td><code>SCI_CHARRIGHTEXTEND</code></td> + + <td><code>SCI_CHARRIGHTRECTEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_WORDLEFT</code></td> + + <td><code>SCI_WORDLEFTEXTEND</code></td> + + <td><code>SCI_WORDRIGHT</code></td> + + <td><code>SCI_WORDRIGHTEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_WORDLEFTEND</code></td> + + <td><code>SCI_WORDLEFTENDEXTEND</code></td> + + <td><code>SCI_WORDRIGHTEND</code></td> + + <td><code>SCI_WORDRIGHTENDEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_WORDPARTLEFT</code></td> + + <td><code>SCI_WORDPARTLEFTEXTEND</code></td> + + <td><code>SCI_WORDPARTRIGHT</code></td> + + <td><code>SCI_WORDPARTRIGHTEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_HOME</code></td> + + <td><code>SCI_HOMEEXTEND</code></td> + + <td><code>[SCI_HOMERECTEXTEND]</code></td> + </tr> + + <tr> + <td><code>SCI_HOMEDISPLAY</code></td> + + <td><code>SCI_HOMEDISPLAYEXTEND</code></td> + + <td><code>SCI_HOMEWRAP</code></td> + + <td><code>SCI_HOMEWRAPEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_VCHOME</code></td> + + <td><code>SCI_VCHOMEEXTEND</code></td> + + <td><code>SCI_VCHOMERECTEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_VCHOMEWRAP</code></td> + + <td><code>SCI_VCHOMEWRAPEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_LINEEND</code></td> + + <td><code>SCI_LINEENDEXTEND</code></td> + + <td><code>SCI_LINEENDRECTEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_LINEENDDISPLAY</code></td> + + <td><code>SCI_LINEENDDISPLAYEXTEND</code></td> + + <td><code>SCI_LINEENDWRAP</code></td> + + <td><code>SCI_LINEENDWRAPEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_DOCUMENTSTART</code></td> + + <td><code>SCI_DOCUMENTSTARTEXTEND</code></td> + + <td><code>SCI_DOCUMENTEND</code></td> + + <td><code>SCI_DOCUMENTENDEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_PAGEUP</code></td> + + <td><code>SCI_PAGEUPEXTEND</code></td> + + <td><code>SCI_PAGEUPRECTEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_PAGEDOWN</code></td> + + <td><code>SCI_PAGEDOWNEXTEND</code></td> + + <td><code>SCI_PAGEDOWNRECTEXTEND</code></td> + </tr> + + + <tr> + <td><code>SCI_STUTTEREDPAGEUP</code></td> + + <td><code>SCI_STUTTEREDPAGEUPEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_STUTTEREDPAGEDOWN</code></td> + + <td><code>SCI_STUTTEREDPAGEDOWNEXTEND</code></td> + </tr> + + <tr> + <td><code>SCI_DELETEBACK</code></td> + + <td><code>SCI_DELETEBACKNOTLINE</code></td> + + <td><code>SCI_DELWORDLEFT</code></td> + + <td><code>SCI_DELWORDRIGHT</code></td> + </tr> + + <tr> + <td><code>SCI_DELLINELEFT</code></td> + + <td><code>SCI_DELLINERIGHT</code></td> + + <td><code>SCI_LINEDELETE</code></td> + </tr> + + <tr> + <td><code>SCI_LINECUT</code></td> + + <td><code>SCI_LINECOPY</code></td> + + <td><code>SCI_LINETRANSPOSE</code></td> + + <td><code>SCI_LINEDUPLICATE</code></td> + </tr> + + <tr> + <td><code>SCI_LOWERCASE</code></td> + + <td><code>SCI_UPPERCASE</code></td> + + <td><code>SCI_CANCEL</code></td> + + <td><code>SCI_EDITTOGGLEOVERTYPE</code></td> + </tr> + + <tr> + <td><code>SCI_NEWLINE</code></td> + + <td><code>SCI_FORMFEED</code></td> + + <td><code>SCI_TAB</code></td> + + <td><code>SCI_BACKTAB</code></td> + </tr> + + <tr> + <td><code>SCI_SELECTIONDUPLICATE</code></td> + + </tr> + </tbody> + </table> + + <p>The <code>SCI_*EXTEND</code> messages extend the selection.</p> + + <p>The <code>SCI_*RECTEXTEND</code> messages extend the rectangular selection + (and convert regular selection to rectangular one, if any).</p> + + <p>The <code>SCI_WORDPART*</code> commands are used to move between word segments marked by + capitalisation (aCamelCaseIdentifier) or underscores (an_under_bar_ident).</p> + + <p>The <code>SCI_HOME*</code> commands move the caret to the start of the line, while the + <code>SCI_VCHOME*</code>commands move the caret to the first non-blank character of the line + (ie. just after the indentation) unless it is already there; in this case, it acts as SCI_HOME*.</p> + + <p>The <code>SCI_[HOME|LINEEND]DISPLAY*</code> commands are used when in line wrap mode to + allow movement to the start or end of display lines as opposed to the normal + <code>SCI_[HOME|LINEEND]</code> commands which move to the start or end of document lines.</p> + + <p>The <code>SCI_[[VC]HOME|LINEEND]WRAP*</code> commands are like their namesakes + <code>SCI_[[VC]HOME|LINEEND]*</code> except they behave differently when word-wrap is enabled: + They go first to the start / end of the display line, like <code>SCI_[HOME|LINEEND]DISPLAY*</code>, + but if the cursor is already at the point, it goes on to the start or end of the document line, + as appropriate for <code>SCI_[[VC]HOME|LINEEND]*</code>. + </p> + + <h2 id="KeyBindings">Key bindings</h2> + + <p>There is a default binding of keys to commands that is defined in the Scintilla source in + the file <code>KeyMap.cxx</code> by the constant <code>KeyMap::MapDefault[]</code>. This table + maps key definitions to <code>SCI_*</code> messages with no parameters (mostly the <a + class="jump" href="#KeyboardCommands">keyboard commands</a> discussed above, but any Scintilla + command that has no arguments can be mapped). You can change the mapping to suit your own + requirements.</p> + <code><a class="message" href="#SCI_ASSIGNCMDKEY">SCI_ASSIGNCMDKEY(int keyDefinition, int + sciCommand)</a><br /> + <a class="message" href="#SCI_CLEARCMDKEY">SCI_CLEARCMDKEY(int keyDefinition)</a><br /> + <a class="message" href="#SCI_CLEARALLCMDKEYS">SCI_CLEARALLCMDKEYS</a><br /> + <a class="message" href="#SCI_NULL">SCI_NULL</a><br /> + </code> + + <p><b id="keyDefinition">keyDefinition</b><br /> + A key definition contains the key code in the low 16-bits and the key modifiers in the high + 16-bits. To combine <code>keyCode</code> and <code>keyMod</code> set:<br /> + <br /> + <code>keyDefinition = keyCode + (keyMod << 16)</code></p> + + <p>The key code is a visible or control character or a key from the <code>SCK_*</code> + enumeration, which contains:<br /> + <code>SCK_ADD</code>, <code>SCK_BACK</code>, <code>SCK_DELETE</code>, <code>SCK_DIVIDE</code>, + <code>SCK_DOWN</code>, <code>SCK_END</code>, <code>SCK_ESCAPE</code>, <code>SCK_HOME</code>, + <code>SCK_INSERT</code>, <code>SCK_LEFT</code>, <code>SCK_NEXT</code> (Page Down), + <code>SCK_PRIOR</code> (Page Up), <code>SCK_RETURN</code>, <code>SCK_RIGHT</code>, + <code>SCK_SUBTRACT</code>, <code>SCK_TAB</code>, and <code>SCK_UP</code>.</p> + + <p>The modifiers are a combination of zero or more of <code>SCMOD_ALT</code>, + <code>SCMOD_CTRL</code>, and <code>SCMOD_SHIFT</code>. If you are building a table, you might + want to use <code>SCMOD_NORM</code>, which has the value 0, to mean no modifiers.</p> + + <p><b id="SCI_ASSIGNCMDKEY">SCI_ASSIGNCMDKEY(int <a class="jump" + href="#keyDefinition">keyDefinition</a>, int sciCommand)</b><br /> + This assigns the given key definition to a Scintilla command identified by + <code>sciCommand</code>. <code>sciCommand</code> can be any <code>SCI_*</code> command that has + no arguments.</p> + + <p><b id="SCI_CLEARCMDKEY">SCI_CLEARCMDKEY(int <a class="jump" + href="#keyDefinition">keyDefinition</a>)</b><br /> + This makes the given key definition do nothing by assigning the action <code>SCI_NULL</code> + to it.</p> + + <p><b id="SCI_CLEARALLCMDKEYS">SCI_CLEARALLCMDKEYS</b><br /> + This command removes all keyboard command mapping by setting an empty mapping table.</p> + + <p><b id="SCI_NULL">SCI_NULL</b><br /> + The <code>SCI_NULL</code> does nothing and is the value assigned to keys that perform no + action. SCI_NULL ensures that keys do not propagate to the parent window as that may + cause focus to move. If you want the standard platform behaviour use the constant 0 instead.</p> + + <h2 id="PopupEditMenu">Popup edit menu</h2> + + <p><b id="SCI_USEPOPUP">SCI_USEPOPUP(bool bEnablePopup)</b><br /> + Clicking the wrong button on the mouse pops up a short default editing menu. This may be + turned off with <code>SCI_USEPOPUP(0)</code>. If you turn it off, context menu commands (in + Windows, <code>WM_CONTEXTMENU</code>) will not be handled by Scintilla, so the parent of the + Scintilla window will have the opportunity to handle the message.</p> + + <h2 id="MacroRecording">Macro recording</h2> + + <p>Start and stop macro recording mode. In macro recording mode, actions are reported to the + container through <code><a class="message" href="#SCN_MACRORECORD">SCN_MACRORECORD</a></code> + <a class="jump" href="#Notifications">notifications</a>. It is then up to the container to + record these actions for future replay.</p> + + <p><b id="SCI_STARTRECORD">SCI_STARTRECORD</b><br /> + <b id="SCI_STOPRECORD">SCI_STOPRECORD</b><br /> + These two messages turn macro recording on and off.</p> + + <h2 id="Printing">Printing</h2> + + <p>On Windows <code>SCI_FORMATRANGE</code> can be used to draw the text onto a display context + which can include a printer display context. Printed output shows text styling as on the + screen, but it hides all margins except a line number margin. All special marker effects are + removed and the selection and caret are hidden.</p> + <code><a class="message" href="#SCI_FORMATRANGE">SCI_FORMATRANGE(bool bDraw, RangeToFormat + *pfr)</a><br /> + <a class="message" href="#SCI_SETPRINTMAGNIFICATION">SCI_SETPRINTMAGNIFICATION(int + magnification)</a><br /> + <a class="message" href="#SCI_GETPRINTMAGNIFICATION">SCI_GETPRINTMAGNIFICATION</a><br /> + <a class="message" href="#SCI_SETPRINTCOLOURMODE">SCI_SETPRINTCOLOURMODE(int mode)</a><br /> + <a class="message" href="#SCI_GETPRINTCOLOURMODE">SCI_GETPRINTCOLOURMODE</a><br /> + <a class="message" href="#SCI_SETPRINTWRAPMODE">SCI_SETPRINTWRAPMODE</a><br /> + <a class="message" href="#SCI_GETPRINTWRAPMODE">SCI_GETPRINTWRAPMODE</a><br /> + </code> + + <p><b id="SCI_FORMATRANGE">SCI_FORMATRANGE(bool bDraw, RangeToFormat *pfr)</b><br /> + This call allows Windows users to render a range of text into a device context. If you use + this for printing, you will probably want to arrange a page header and footer; Scintilla does + not do this for you. See <code>SciTEWin::Print()</code> in <code>SciTEWinDlg.cxx</code> for an + example. Each use of this message renders a range of text into a rectangular area and returns + the position in the document of the next character to print.</p> + + <p><code>bDraw</code> controls if any output is done. Set this to false if you are paginating + (for example, if you use this with MFC you will need to paginate in + <code>OnBeginPrinting()</code> before you output each page.</p> +<pre> +struct RangeToFormat { + SurfaceID hdc; // The HDC (device context) we print to + SurfaceID hdcTarget; // The HDC we use for measuring (may be same as hdc) + PRectangle rc; // Rectangle in which to print + PRectangle rcPage; // Physically printable page size + CharacterRange chrg; // Range of characters to print +}; +</pre> + + <p><code>hdc</code> and <code>hdcTarget</code> should both be set to the device context handle + of the output device (usually a printer). If you print to a metafile these will not be the same + as Windows metafiles (unlike extended metafiles) do not implement the full API for returning + information. In this case, set <code>hdcTarget</code> to the screen DC.<br /> + <code>rcPage</code> is the rectangle <code>{0, 0, maxX, maxY}</code> where <code>maxX+1</code> + and <code>maxY+1</code> are the number of physically printable pixels in x and y.<br /> + <code>rc</code> is the rectangle to render the text in (which will, of course, fit within the + rectangle defined by rcPage).<br /> + <code>chrg.cpMin</code> and <code>chrg.cpMax</code> define the start position and maximum + position of characters to output. All of each line within this character range is drawn.</p> + + <p>When printing, the most tedious part is always working out what the margins should be to + allow for the non-printable area of the paper and printing a header and footer. If you look at + the printing code in SciTE, you will find that most of it is taken up with this. The loop that + causes Scintilla to render text is quite simple if you strip out all the margin, non-printable + area, header and footer code.</p> + + <p><b id="SCI_SETPRINTMAGNIFICATION">SCI_SETPRINTMAGNIFICATION(int magnification)</b><br /> + <b id="SCI_GETPRINTMAGNIFICATION">SCI_GETPRINTMAGNIFICATION</b><br /> + <code>SCI_GETPRINTMAGNIFICATION</code> lets you to print at a different size than the screen + font. <code>magnification</code> is the number of points to add to the size of each screen + font. A value of -3 or -4 gives reasonably small print. You can get this value with + <code>SCI_GETPRINTMAGNIFICATION</code>.</p> + + <p><b id="SCI_SETPRINTCOLOURMODE">SCI_SETPRINTCOLOURMODE(int mode)</b><br /> + <b id="SCI_GETPRINTCOLOURMODE">SCI_GETPRINTCOLOURMODE</b><br /> + These two messages set and get the method used to render coloured text on a printer that is + probably using white paper. It is especially important to consider the treatment of colour if + you use a dark or black screen background. Printing white on black uses up toner and ink very + many times faster than the other way around. You can set the mode to one of:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Colour printing modes"> + <tbody> + <tr> + <th align="left">Symbol</th> + + <th>Value</th> + + <th align="left">Purpose</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>SC_PRINT_NORMAL</code></td> + + <td align="center">0</td> + + <td>Print using the current screen colours. This is the default.</td> + </tr> + + <tr> + <td align="left"><code>SC_PRINT_INVERTLIGHT</code></td> + + <td align="center">1</td> + + <td>If you use a dark screen background this saves ink by inverting the light value of + all colours and printing on a white background.</td> + </tr> + + <tr> + <td align="left"><code>SC_PRINT_BLACKONWHITE</code></td> + + <td align="center">2</td> + + <td>Print all text as black on a white background.</td> + </tr> + + <tr> + <td align="left"><code>SC_PRINT_COLOURONWHITE</code></td> + + <td align="center">3</td> + + <td>Everything prints in its own colour on a white background.</td> + </tr> + + <tr> + <td align="left"><code>SC_PRINT_COLOURONWHITEDEFAULTBG</code></td> + + <td align="center">4</td> + + <td>Everything prints in its own colour on a white background except that line numbers + use their own background colour.</td> + </tr> + </tbody> + </table> + + <p><b id="SCI_SETPRINTWRAPMODE">SCI_SETPRINTWRAPMODE(int wrapMode)</b><br /> + <b id="SCI_GETPRINTWRAPMODE">SCI_GETPRINTWRAPMODE</b><br /> + These two functions get and set the printer wrap mode. <code>wrapMode</code> can be + set to <code>SC_WRAP_NONE</code> (0), <code>SC_WRAP_WORD</code> (1) or + <code>SC_WRAP_CHAR</code> (2). The default is + <code>SC_WRAP_WORD</code>, which wraps printed output so that all characters fit + into the print rectangle. If you set <code>SC_WRAP_NONE</code>, each line of text + generates one line of output and the line is truncated if it is too long to fit + into the print area.<br /> + <code>SC_WRAP_WORD</code> tries to wrap only between words as indicated by + white space or style changes although if a word is longer than a line, it will be wrapped before + the line end. <code>SC_WRAP_CHAR</code> is preferred to + <code>SC_WRAP_WORD</code> for Asian languages where there is no white space + between words.</p> + + <h2 id="DirectAccess">Direct access</h2> + <code><a class="message" href="#SCI_GETDIRECTFUNCTION">SCI_GETDIRECTFUNCTION</a><br /> + <a class="message" href="#SCI_GETDIRECTPOINTER">SCI_GETDIRECTPOINTER</a><br /> + </code> + + <p>On Windows, the message-passing scheme used to communicate between the container and + Scintilla is mediated by the operating system <code>SendMessage</code> function and can lead to + bad performance when calling intensively. To avoid this overhead, Scintilla provides messages + that allow you to call the Scintilla message function directly. The code to do this in C/C++ is + of the form:</p> +<pre> +#include "Scintilla.h" +SciFnDirect pSciMsg = (SciFnDirect)SendMessage(hSciWnd, SCI_GETDIRECTFUNCTION, 0, 0); +sptr_t pSciWndData = (sptr_t)SendMessage(hSciWnd, SCI_GETDIRECTPOINTER, 0, 0); + +// now a wrapper to call Scintilla directly +sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ + return pSciMsg(pSciWndData, iMessage, wParam, lParam); +} +</pre> + + <p><code>SciFnDirect</code>, <code>sptr_t</code> and <code>uptr_t</code> are declared in + <code>Scintilla.h</code>. <code>hSciWnd</code> is the window handle returned when you created + the Scintilla window.</p> + + <p>While faster, this direct calling will cause problems if performed from a different thread + to the native thread of the Scintilla window in which case <code>SendMessage(hSciWnd, SCI_*, + wParam, lParam)</code> should be used to synchronize with the window's thread.</p> + + <p>This feature also works on GTK+ but has no significant impact on speed.</p> + + <p>From version 1.47 on Windows, Scintilla exports a function called + <code>Scintilla_DirectFunction</code> that can be used the same as the function returned by + <code>SCI_GETDIRECTFUNCTION</code>. This saves you the call to + <code>SCI_GETDIRECTFUNCTION</code> and the need to call Scintilla indirectly via the function + pointer.</p> + + <p><b id="SCI_GETDIRECTFUNCTION">SCI_GETDIRECTFUNCTION</b><br /> + This message returns the address of the function to call to handle Scintilla messages without + the overhead of passing through the Windows messaging system. You need only call this once, + regardless of the number of Scintilla windows you create.</p> + + <p><b id="SCI_GETDIRECTPOINTER">SCI_GETDIRECTPOINTER</b><br /> + This returns a pointer to data that identifies which Scintilla window is in use. You must call + this once for each Scintilla window you create. When you call the direct function, you must + pass in the direct pointer associated with the target window.</p> + + <h2 id="MultipleViews">Multiple views</h2> + + <p>A Scintilla window and the document that it displays are separate entities. When you create + a new window, you also create a new, empty document. Each document has a reference count that + is initially set to 1. The document also has a list of the Scintilla windows that are linked to + it so when any window changes the document, all other windows in which it appears are notified + to cause them to update. The system is arranged in this way so that you can work with many + documents in a single Scintilla window and so you can display a single document in multiple + windows (for use with splitter windows).</p> + + <p>Although these messages use <code>document *pDoc</code>, to ensure compatibility with future + releases of Scintilla you should treat <code>pDoc</code> as an opaque <code>void*</code>. That + is, you can use and store the pointer as described in this section but you should not + dereference it.</p> + <code><a class="message" href="#SCI_GETDOCPOINTER">SCI_GETDOCPOINTER</a><br /> + <a class="message" href="#SCI_SETDOCPOINTER">SCI_SETDOCPOINTER(<unused>, document + *pDoc)</a><br /> + <a class="message" href="#SCI_CREATEDOCUMENT">SCI_CREATEDOCUMENT</a><br /> + <a class="message" href="#SCI_ADDREFDOCUMENT">SCI_ADDREFDOCUMENT(<unused>, document + *pDoc)</a><br /> + <a class="message" href="#SCI_RELEASEDOCUMENT">SCI_RELEASEDOCUMENT(<unused>, document + *pDoc)</a><br /> + </code> + + <p><b id="SCI_GETDOCPOINTER">SCI_GETDOCPOINTER</b><br /> + This returns a pointer to the document currently in use by the window. It has no other + effect.</p> + + <p><b id="SCI_SETDOCPOINTER">SCI_SETDOCPOINTER(<unused>, document *pDoc)</b><br /> + This message does the following:<br /> + 1. It removes the current window from the list held by the current document.<br /> + 2. It reduces the reference count of the current document by 1.<br /> + 3. If the reference count reaches 0, the document is deleted.<br /> + 4. <code>pDoc</code> is set as the new document for the window.<br /> + 5. If <code>pDoc</code> was 0, a new, empty document is created and attached to the + window.<br /> + 6. If <code>pDoc</code> was not 0, its reference count is increased by 1.</p> + + <p><b id="SCI_CREATEDOCUMENT">SCI_CREATEDOCUMENT</b><br /> + This message creates a new, empty document and returns a pointer to it. This document is not + selected into the editor and starts with a reference count of 1. This means that you have + ownership of it and must either reduce its reference count by 1 after using + <code>SCI_SETDOCPOINTER</code> so that the Scintilla window owns it or you must make sure that + you reduce the reference count by 1 with <code>SCI_RELEASEDOCUMENT</code> before you close the + application to avoid memory leaks.</p> + + <p><b id="SCI_ADDREFDOCUMENT">SCI_ADDREFDOCUMENT(<unused>, document *pDoc)</b><br /> + This increases the reference count of a document by 1. If you want to replace the current + document in the Scintilla window and take ownership of the current document, for example if you + are editing many documents in one window, do the following:<br /> + 1. Use <code>SCI_GETDOCPOINTER</code> to get a pointer to the document, + <code>pDoc</code>.<br /> + 2. Use <code>SCI_ADDREFDOCUMENT(0, pDoc)</code> to increment the reference count.<br /> + 3. Use <code>SCI_SETDOCPOINTER(0, pNewDoc)</code> to set a different document or + <code>SCI_SETDOCPOINTER(0, 0)</code> to set a new, empty document.</p> + + <p><b id="SCI_RELEASEDOCUMENT">SCI_RELEASEDOCUMENT(<unused>, document *pDoc)</b><br /> + This message reduces the reference count of the document identified by <code>pDoc</code>. pDoc + must be the result of <code>SCI_GETDOCPOINTER</code> or <code>SCI_CREATEDOCUMENT</code> and + must point at a document that still exists. If you call this on a document with a reference + count of 1 that is still attached to a Scintilla window, bad things will happen. To keep the + world spinning in its orbit you must balance each call to <code>SCI_CREATEDOCUMENT</code> or + <code>SCI_ADDREFDOCUMENT</code> with a call to <code>SCI_RELEASEDOCUMENT</code>.</p> + + <h2 id="Folding">Folding</h2> + + <p>The fundamental operation in folding is making lines invisible or visible. Line visibility + is a property of the view rather than the document so each view may be displaying a different + set of lines. From the point of view of the user, lines are hidden and displayed using fold + points. Generally, the fold points of a document are based on the hierarchical structure of the + document contents. In Python, the hierarchy is determined by indentation and in C++ by brace + characters. This hierarchy can be represented within a Scintilla document object by attaching a + numeric "fold level" to each line. The fold level is most easily set by a lexer, but you can + also set it with messages.</p> + + <p>It is up to your code to set the connection between user actions and folding and unfolding. + The best way to see how this is done is to search the SciTE source code for the messages used + in this section of the documentation and see how they are used. You will also need to use + markers and a folding margin to complete your folding implementation. + The <code>"fold"</code> property should be set to <code>"1"</code> with + <code>SCI_SETPROPERTY("fold", "1")</code> to enable folding. </p> + <code><a class="message" href="#SCI_VISIBLEFROMDOCLINE">SCI_VISIBLEFROMDOCLINE(int + docLine)</a><br /> + <a class="message" href="#SCI_DOCLINEFROMVISIBLE">SCI_DOCLINEFROMVISIBLE(int + displayLine)</a><br /> + <a class="message" href="#SCI_SHOWLINES">SCI_SHOWLINES(int lineStart, int lineEnd)</a><br /> + <a class="message" href="#SCI_HIDELINES">SCI_HIDELINES(int lineStart, int lineEnd)</a><br /> + <a class="message" href="#SCI_GETLINEVISIBLE">SCI_GETLINEVISIBLE(int line)</a><br /> + <a class="message" href="#SCI_SETFOLDLEVEL">SCI_SETFOLDLEVEL(int line, int level)</a><br /> + <a class="message" href="#SCI_GETFOLDLEVEL">SCI_GETFOLDLEVEL(int line)</a><br /> + <a class="message" href="#SCI_SETFOLDFLAGS">SCI_SETFOLDFLAGS(int flags)</a><br /> + <a class="message" href="#SCI_GETLASTCHILD">SCI_GETLASTCHILD(int line, int level)</a><br /> + <a class="message" href="#SCI_GETFOLDPARENT">SCI_GETFOLDPARENT(int line)</a><br /> + <a class="message" href="#SCI_SETFOLDEXPANDED">SCI_SETFOLDEXPANDED(int line, bool + expanded)</a><br /> + <a class="message" href="#SCI_GETFOLDEXPANDED">SCI_GETFOLDEXPANDED(int line)</a><br /> + <a class="message" href="#SCI_TOGGLEFOLD">SCI_TOGGLEFOLD(int line)</a><br /> + <a class="message" href="#SCI_ENSUREVISIBLE">SCI_ENSUREVISIBLE(int line)</a><br /> + <a class="message" href="#SCI_ENSUREVISIBLEENFORCEPOLICY">SCI_ENSUREVISIBLEENFORCEPOLICY(int + line)</a><br /> + </code> + + <p><b id="SCI_VISIBLEFROMDOCLINE">SCI_VISIBLEFROMDOCLINE(int docLine)</b><br /> + When some lines are folded, then a particular line in the document may be displayed at a + different position to its document position. If no lines are folded, this message returns + <code>docLine</code>. Otherwise, this returns the display line (counting the very first visible + line as 0). The display line of an invisible line is the same as the previous visible line. The + display line number of the first line in the document is 0. If there is folding and + <code>docLine</code> is outside the range of lines in the document, the return value is -1. + Lines can occupy more than one display line if they wrap.</p> + + <p><b id="SCI_DOCLINEFROMVISIBLE">SCI_DOCLINEFROMVISIBLE(int displayLine)</b><br /> + When some lines are hidden, then a particular line in the document may be displayed at a + different position to its document position. This message returns the document line number that + corresponds to a display line (counting the display line of the first line in the document as + 0). If <code>displayLine</code> is less than or equal to 0, the result is 0. If + <code>displayLine</code> is greater than or equal to the number of displayed lines, the result + is the number of lines in the document.</p> + + <p><b id="SCI_SHOWLINES">SCI_SHOWLINES(int lineStart, int lineEnd)</b><br /> + <b id="SCI_HIDELINES">SCI_HIDELINES(int lineStart, int lineEnd)</b><br /> + <b id="SCI_GETLINEVISIBLE">SCI_GETLINEVISIBLE(int line)</b><br /> + The first two messages mark a range of lines as visible or invisible and then redraw the + display. The third message reports on the visible state of a line and returns 1 if it is + visible and 0 if it is not visible. These messages have no effect on fold levels or fold + flags.</p> + + <p><b id="SCI_SETFOLDLEVEL">SCI_SETFOLDLEVEL(int line, int level)</b><br /> + <b id="SCI_GETFOLDLEVEL">SCI_GETFOLDLEVEL(int line)</b><br /> + These two messages set and get a 32-bit value that contains the fold level of a line and some + flags associated with folding. The fold level is a number in the range 0 to + <code>SC_FOLDLEVELNUMBERMASK</code> (4095). However, the initial fold level is set to + <code>SC_FOLDLEVELBASE</code> (1024) to allow unsigned arithmetic on folding levels. There are + two addition flag bits. <code>SC_FOLDLEVELWHITEFLAG</code> indicates that the line is blank and + allows it to be treated slightly different then its level may indicate. For example, blank + lines should generally not be fold points and will be considered part of the preceding section even though + they may have a lesser fold level. + <code>SC_FOLDLEVELHEADERFLAG</code> indicates that + the line is a header (fold point).</p> + + <p>Use <code>SCI_GETFOLDLEVEL(line) & SC_FOLDLEVELNUMBERMASK</code> to get the fold level + of a line. Likewise, use <code>SCI_GETFOLDLEVEL(line) & SC_FOLDLEVEL*FLAG</code> to get the + state of the flags. To set the fold level you must or in the associated flags. For instance, to + set the level to <code>thisLevel</code> and mark a line as being a fold point use: + <code>SCI_SETFOLDLEVEL(line, thisLevel | SC_FOLDLEVELHEADERFLAG)</code>.</p> + If you use a lexer, you should not need to use <code>SCI_SETFOLDLEVEL</code> as this is far + better handled by the lexer. You will need to use <code>SCI_GETFOLDLEVEL</code> to decide how + to handle user folding requests. If you do change the fold levels, the folding margin will + update to match your changes. + + <p><b id="SCI_SETFOLDFLAGS">SCI_SETFOLDFLAGS(int flags)</b><br /> + In addition to showing markers in the folding margin, you can indicate folds to the user by + drawing lines in the text area. The lines are drawn in the foreground colour set for <a + class="message" href="#StyleDefinition"><code>STYLE_DEFAULT</code></a>. Bits set in + <code>flags</code> determine where folding lines are drawn:<br /> + </p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Fold flags"> + <tbody> + <tr> + <th align="center">Value</th> + + <th align="left">Effect</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="center">1</td> + + <td align="left">Experimental - draw boxes if expanded</td> + </tr> + + <tr> + <td align="center">2</td> + + <td align="left">Draw above if expanded</td> + </tr> + + <tr> + <td align="center">4</td> + + <td align="left">Draw above if not expanded</td> + </tr> + + <tr> + <td align="center">8</td> + + <td align="left">Draw below if expanded</td> + </tr> + + <tr> + <td align="center">16</td> + + <td align="left">Draw below if not expanded</td> + </tr> + + <tr> + <td align="center">64</td> + + <td align="left">display hexadecimal fold levels in line margin to aid debugging of + folding. This feature needs to be redesigned to be sensible.</td> + </tr> + </tbody> + </table> + + <p>This message causes the display to redraw.</p> + + <p><b id="SCI_GETLASTCHILD">SCI_GETLASTCHILD(int startLine, int level)</b><br /> + This message searches for the next line after <code>startLine</code>, that has a folding level + that is less than or equal to <code>level</code> and then returns the previous line number. If + you set <code>level</code> to -1, <code>level</code> is set to the folding level of line + <code>startLine</code>. If <code>from</code> is a fold point, <code>SCI_GETLASTCHILD(from, + -1)</code> returns the last line that would be in made visible or hidden by toggling the fold + state.</p> + + <p><b id="SCI_GETFOLDPARENT">SCI_GETFOLDPARENT(int startLine)</b><br /> + This message returns the line number of the first line before <code>startLine</code> that is + marked as a fold point with <code>SC_FOLDLEVELHEADERFLAG</code> and has a fold level less than + the <code>startLine</code>. If no line is found, or if the header flags and fold levels are + inconsistent, the return value is -1.</p> + + <p><b id="SCI_TOGGLEFOLD">SCI_TOGGLEFOLD(int line)</b><br /> + Each fold point may be either expanded, displaying all its child lines, or contracted, hiding + all the child lines. This message toggles the folding state of the given line as long as it has + the <code>SC_FOLDLEVELHEADERFLAG</code> set. This message takes care of folding or expanding + all the lines that depend on the line. The display updates after this message.</p> + + <p><b id="SCI_SETFOLDEXPANDED">SCI_SETFOLDEXPANDED(int line, bool expanded)</b><br /> + <b id="SCI_GETFOLDEXPANDED">SCI_GETFOLDEXPANDED(int line)</b><br /> + These messages set and get the expanded state of a single line. The set message has no effect + on the visible state of the line or any lines that depend on it. It does change the markers in + the folding margin. If you ask for the expansion state of a line that is outside the document, + the result is <code>false</code> (0).</p> + + <p>If you just want to toggle the fold state of one line and handle all the lines that are + dependent on it, it is much easier to use <code>SCI_TOGGLEFOLD</code>. You would use the + <code>SCI_SETFOLDEXPANDED</code> message to process many folds without updating the display + until you had finished. See <code>SciTEBase::FoldAll()</code> and + <code>SciTEBase::Expand()</code> for examples of the use of these messages.</p> + + <p><b id="SCI_ENSUREVISIBLE">SCI_ENSUREVISIBLE(int line)</b><br /> + <b id="SCI_ENSUREVISIBLEENFORCEPOLICY">SCI_ENSUREVISIBLEENFORCEPOLICY(int line)</b><br /> + A line may be hidden because more than one of its parent lines is contracted. Both these + message travels up the fold hierarchy, expanding any contracted folds until they reach the top + level. The line will then be visible. If you use <code>SCI_ENSUREVISIBLEENFORCEPOLICY</code>, + the vertical caret policy set by <a class="message" + href="#SCI_SETVISIBLEPOLICY"><code>SCI_SETVISIBLEPOLICY</code></a> is then applied.</p> + + <h2 id="LineWrapping">Line wrapping</h2> + + <code><a class="message" href="#SCI_SETWRAPMODE">SCI_SETWRAPMODE(int wrapMode)</a><br /> + <a class="message" href="#SCI_GETWRAPMODE">SCI_GETWRAPMODE</a><br /> + <a class="message" href="#SCI_SETWRAPVISUALFLAGS">SCI_SETWRAPVISUALFLAGS(int wrapVisualFlags)</a><br /> + <a class="message" href="#SCI_GETWRAPVISUALFLAGS">SCI_GETWRAPVISUALFLAGS</a><br /> + <a class="message" href="#SCI_SETWRAPSTARTINDENT">SCI_SETWRAPSTARTINDENT(int indent)</a><br /> + <a class="message" href="#SCI_GETWRAPSTARTINDENT">SCI_GETWRAPSTARTINDENT</a><br /> + <a class="message" href="#SCI_SETLAYOUTCACHE">SCI_SETLAYOUTCACHE(int cacheMode)</a><br /> + <a class="message" href="#SCI_GETLAYOUTCACHE">SCI_GETLAYOUTCACHE</a><br /> + <a class="message" href="#SCI_LINESSPLIT">SCI_LINESSPLIT(int pixelWidth)</a><br /> + <a class="message" href="#SCI_LINESJOIN">SCI_LINESJOIN</a><br /> + <a class="message" href="#SCI_WRAPCOUNT">SCI_WRAPCOUNT(int docLine)</a><br /> + </code> + + <p>By default, Scintilla does not wrap lines of text. If you enable line wrapping, lines wider + than the window width are continued on the following lines. Lines are broken after space or tab + characters or between runs of different styles. If this is not possible because a word in one + style is wider than the window then the break occurs after the last character that completely + fits on the line. The horizontal scroll bar does not appear when wrap mode is on.</p> + + <p>For wrapped lines Scintilla can draw visual flags (little arrows) at end of a a subline of a + wrapped line and at begin of the next subline. These can be enabled individually, but if Scintilla + draws the visual flag at begin of the next subline this subline will be indented by one char. + Independent from drawing a visual flag at the begin the subline can have an indention.</p> + + <p>Much of the time used by Scintilla is spent on laying out and drawing text. The same text + layout calculations may be performed many times even when the data used in these calculations + does not change. To avoid these unnecessary calculations in some circumstances, the line layout + cache can store the results of the calculations. The cache is invalidated whenever the + underlying data, such as the contents or styling of the document changes. Caching the layout of + the whole document has the most effect, making dynamic line wrap as much as 20 times faster but + this requires 7 times the memory required by the document contents plus around 80 bytes per + line.</p> + + <p>Wrapping is not performed immediately there is a change but is delayed until the display + is redrawn. This delay improves peformance by allowing a set of changes to be performed + and then wrapped and displayed once. Because of this, some operations may not occur as + expected. If a file is read and the scroll position moved to a particular line in the text, + such as occurs when a container tries to restore a previous editing session, then + the scroll position will have been determined before wrapping so an unexpected range + of text will be displayed. To scroll to the position correctly, delay the scroll until the + wrapping has been performed by waiting for an initial + <a class="message" href="#SCN_PAINTED">SCN_PAINTED</a> notification.</p> + + <p><b id="SCI_SETWRAPMODE">SCI_SETWRAPMODE(int wrapMode)</b><br /> + <b id="SCI_GETWRAPMODE">SCI_GETWRAPMODE</b><br /> + Set wrapMode to <code>SC_WRAP_WORD</code> (1) to enable wrapping + on word boundaries, <code>SC_WRAP_CHAR</code> (2) to enable wrapping + between any characters, and to <code>SC_WRAP_NONE</code> (0) to disable line + wrapping. <code>SC_WRAP_CHAR</code> is preferred to + <code>SC_WRAP_WORD</code> for Asian languages where there is no white space + between words.</p> + + + <p><b id="SCI_SETWRAPVISUALFLAGS">SCI_SETWRAPVISUALFLAGS(int wrapVisualFlags)</b><br /> + <b id="SCI_GETWRAPVISUALFLAGS">SCI_GETWRAPVISUALFLAGS</b><br /> + You can enable the drawing of visual flags to indicate a line is wrapped. Bits set in + wrapVisualFlags determine which visual flags are drawn. + + <table cellpadding="1" cellspacing="2" border="0" summary="Wrap visual flags"> + <tbody> + <tr> + <th align="left">Symbol</th> + <th>Value</th> + <th align="left">Effect</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>SC_WRAPVISUALFLAG_NONE</code></td> + <td align="center">0</td> + <td>No visual flags</td> + </tr> + + <tr> + <td align="left"><code>SC_WRAPVISUALFLAG_END</code></td> + <td align="center">1</td> + <td>Visual flag at end of subline of a wrapped line.</td> + </tr> + + <tr> + <td align="left"><code>SC_WRAPVISUALFLAG_START</code></td> + <td align="center">2</td> + <td>Visual flag at begin of subline of a wrapped line.<br /> + Subline is indented by at least 1 to make room for the flag.<br /> + </td> + </tr> + </tbody> + </table> + + <p><b id="SCI_SETWRAPVISUALFLAGSLOCATION">SCI_SETWRAPVISUALFLAGSLOCATION(int wrapVisualFlagsLocation)</b><br /> + <b id="SCI_GETWRAPVISUALFLAGSLOCATION">SCI_GETWRAPVISUALFLAGSLOCATION</b><br /> + You can set wether the visual flags to indicate a line is wrapped are drawn near the border or near the text. + Bits set in wrapVisualFlagsLocation set the location to near the text for the corresponding visual flag. + + <table cellpadding="1" cellspacing="2" border="0" summary="Wrap visual flags locations"> + <tbody> + <tr> + <th align="left">Symbol</th> + <th>Value</th> + <th align="left">Effect</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>SC_WRAPVISUALFLAGLOC_DEFAULT</code></td> + <td align="center">0</td> + <td>Visual flags drawn near border</td> + </tr> + + <tr> + <td align="left"><code>SC_WRAPVISUALFLAGLOC_END_BY_TEXT</code></td> + <td align="center">1</td> + <td>Visual flag at end of subline drawn near text</td> + </tr> + + <tr> + <td align="left"><code>SC_WRAPVISUALFLAGLOC_START_BY_TEXT</code></td> + <td align="center">2</td> + <td>Visual flag at begin of subline drawn near text</td> + </tr> + </tbody> + </table> + + <br /> + + <p><b id="SCI_SETWRAPSTARTINDENT">SCI_SETWRAPSTARTINDENT(int indent)</b><br /> + <b id="SCI_GETWRAPSTARTINDENT">SCI_GETWRAPSTARTINDENT</b><br /> + <code>SCI_SETWRAPSTARTINDENT</code> sets the size of indentation of sublines for + wrapped lines in terms of the width of a space in + <a class="message" href="#StyleDefinition"><code>STYLE_DEFAULT</code></a>. + There are no limits on indent sizes, but values less than 0 or large values may have + undesirable effects.<br /> + The indention of sublines is independent of visual flags, but if + <code>SC_WRAPVISUALFLAG_START</code> is set an indent of at least 1 is used. + </p> + + <p><b id="SCI_SETLAYOUTCACHE">SCI_SETLAYOUTCACHE(int cacheMode)</b><br /> + <b id="SCI_GETLAYOUTCACHE">SCI_GETLAYOUTCACHE</b><br /> + You can set <code>cacheMode</code> to one of the symbols in the table:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Line caching styles"> + <tbody> + <tr> + <th align="left">Symbol</th> + + <th>Value</th> + + <th align="left">Layout cached for these lines</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>SC_CACHE_NONE</code></td> + + <td align="center">0</td> + + <td>No lines are cached.</td> + </tr> + + <tr> + <td align="left"><code>SC_CACHE_CARET</code></td> + + <td align="center">1</td> + + <td>The line containing the text caret. This is the default.</td> + </tr> + + <tr> + <td align="left"><code>SC_CACHE_PAGE</code></td> + + <td align="center">2</td> + + <td>Visible lines plus the line containing the caret.</td> + </tr> + + <tr> + <td align="left"><code>SC_CACHE_DOCUMENT</code></td> + + <td align="center">3</td> + + <td>All lines in the document.</td> + </tr> + </tbody> + </table> + <br /> + + <p><b id="SCI_LINESSPLIT">SCI_LINESSPLIT(int pixelWidth)</b><br /> + Split a range of lines indicated by the target into lines that are at most pixelWidth wide. + Splitting occurs on word boundaries wherever possible in a similar manner to line wrapping. + When <code>pixelWidth</code> is 0 then the width of the window is used. + </p> + + <p><b id="SCI_LINESJOIN">SCI_LINESJOIN</b><br /> + Join a range of lines indicated by the target into one line by + removing line end characters. + Where this would lead to no space between words, an extra space is inserted. + </p> + + <p><b id="SCI_WRAPCOUNT">SCI_WRAPCOUNT(int docLine)</b><br /> + Document lines can occupy more than one display line if they wrap and this + returns the number of display lines needed to wrap a document line.</p> + + <h2 id="Zooming">Zooming</h2> + + <p>Scintilla incorporates a "zoom factor" that lets you make all the text in the document + larger or smaller in steps of one point. The displayed point size never goes below 2, whatever + zoom factor you set. You can set zoom factors in the range -10 to +20 points.</p> + <code><a class="message" href="#SCI_ZOOMIN">SCI_ZOOMIN</a><br /> + <a class="message" href="#SCI_ZOOMOUT">SCI_ZOOMOUT</a><br /> + <a class="message" href="#SCI_SETZOOM">SCI_SETZOOM(int zoomInPoints)</a><br /> + <a class="message" href="#SCI_GETZOOM">SCI_GETZOOM</a><br /> + </code> + + <p><b id="SCI_ZOOMIN">SCI_ZOOMIN</b><br /> + <b id="SCI_ZOOMOUT">SCI_ZOOMOUT</b><br /> + <code>SCI_ZOOMIN</code> increases the zoom factor by one point if the current zoom factor is + less than 20 points. <code>SCI_ZOOMOUT</code> decreases the zoom factor by one point if the + current zoom factor is greater than -10 points.</p> + + <p><b id="SCI_SETZOOM">SCI_SETZOOM(int zoomInPoints)</b><br /> + <b id="SCI_GETZOOM">SCI_GETZOOM</b><br /> + These messages let you set and get the zoom factor directly. There is no limit set on the + factors you can set, so limiting yourself to -10 to +20 to match the incremental zoom functions + is a good idea.</p> + + <h2 id="LongLines">Long lines</h2> + + <p>You can choose to mark lines that exceed a given length by drawing a vertical line or by + colouring the background of characters that exceed the set length.</p> + <code><a class="message" href="#SCI_SETEDGEMODE">SCI_SETEDGEMODE(int mode)</a><br /> + <a class="message" href="#SCI_GETEDGEMODE">SCI_GETEDGEMODE</a><br /> + <a class="message" href="#SCI_SETEDGECOLUMN">SCI_SETEDGECOLUMN(int column)</a><br /> + <a class="message" href="#SCI_GETEDGECOLUMN">SCI_GETEDGECOLUMN</a><br /> + <a class="message" href="#SCI_SETEDGECOLOUR">SCI_SETEDGECOLOUR(int colour)</a><br /> + <a class="message" href="#SCI_GETEDGECOLOUR">SCI_GETEDGECOLOUR</a><br /> + </code> + + <p><b id="SCI_SETEDGEMODE">SCI_SETEDGEMODE(int edgeMode)</b><br /> + <b id="SCI_GETEDGEMODE">SCI_GETEDGEMODE</b><br /> + These two messages set and get the mode used to display long lines. You can set one of the + values in the table:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Long line styles"> + <tbody> + <tr> + <th align="left">Symbol</th> + + <th>Value</th> + + <th align="left">Long line display mode</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>EDGE_NONE</code></td> + + <td align="center">0</td> + + <td>Long lines are not marked. This is the default state.</td> + </tr> + + <tr> + <td align="left"><code>EDGE_LINE</code></td> + + <td align="center">1</td> + + <td>A vertical line is drawn at the column number set by <code>SCI_SETEDGECOLUMN</code>. + This works well for monospaced fonts. The line is drawn at a position based on the width + of a space character in <a class="message" + href="#StyleDefinition"><code>STYLE_DEFAULT</code></a>, so it may not work very well if + your styles use proportional fonts or if your style have varied font sizes or you use a + mixture of bold, italic and normal text. .</td> + </tr> + + <tr> + <td align="left"><code>EDGE_BACKGROUND</code></td> + + <td align="center">2</td> + + <td>The background colour of characters after the column limit is changed to the colour + set by <code>SCI_SETEDGECOLOUR</code>. This is recommended for proportional fonts.</td> + </tr> + </tbody> + </table> + <br /> + <br /> + + + <p><b id="SCI_SETEDGECOLUMN">SCI_SETEDGECOLUMN(int column)</b><br /> + <b id="SCI_GETEDGECOLUMN">SCI_GETEDGECOLUMN</b><br /> + These messages set and get the column number at which to display the long line marker. When + drawing lines, the column sets a position in units of the width of a space character in + <code>STYLE_DEFAULT</code>. When setting the background colour, the column is a character count + (allowing for tabs) into the line.</p> + + <p><b id="SCI_SETEDGECOLOUR">SCI_SETEDGECOLOUR(int <a class="jump" + href="#colour">colour</a>)</b><br /> + <b id="SCI_GETEDGECOLOUR">SCI_GETEDGECOLOUR</b><br /> + These messages set and get the colour of the marker used to show that a line has exceeded the + length set by <code>SCI_SETEDGECOLUMN</code>.</p> + + <h2 id="Lexer">Lexer</h2> + + <p>If you define the symbol <code>SCI_LEXER</code> when building Scintilla, (this is sometimes + called the SciLexer version of Scintilla), lexing support for a wide range programming + languages is included and the messages in this section are supported. If you want to set + styling and fold points for an unsupported language you can either do this in the container or + better still, write your own lexer following the pattern of one of the existing ones.</p> + + <p>Scintilla also supports external lexers. These are DLLs (on Windows) or .so modules (on GTK+/Linux) that export four + functions: <code>GetLexerCount</code>, <code>GetLexerName</code>, <code>Lex</code> and + <code>Fold</code>. See <code>externalLexer.cxx</code> for more.</p> + <code><a class="message" href="#SCI_SETLEXER">SCI_SETLEXER(int lexer)</a><br /> + <a class="message" href="#SCI_GETLEXER">SCI_GETLEXER</a><br /> + <a class="message" href="#SCI_SETLEXERLANGUAGE">SCI_SETLEXERLANGUAGE(<unused>, char + *name)</a><br /> + <a class="message" href="#SCI_LOADLEXERLIBRARY">SCI_LOADLEXERLIBRARY(<unused>, char + *path)</a><br /> + <a class="message" href="#SCI_COLOURISE">SCI_COLOURISE(int start, int end)</a><br /> + <a class="message" href="#SCI_SETPROPERTY">SCI_SETPROPERTY(const char *key, const char *value)</a><br /> + <a class="message" href="#SCI_GETPROPERTY">SCI_GETPROPERTY(const char *key, char *value)</a><br /> + <a class="message" href="#SCI_GETPROPERTYEXPANDED">SCI_GETPROPERTYEXPANDED(const char *key, char *value)</a><br /> + <a class="message" href="#SCI_GETPROPERTYINT">SCI_GETPROPERTYINT(const char *key, int default)</a><br /> + <a class="message" href="#SCI_SETKEYWORDS">SCI_SETKEYWORDS(int keyWordSet, const char + *keyWordList)</a><br /> + <a class="message" href="#SCI_GETSTYLEBITSNEEDED">SCI_GETSTYLEBITSNEEDED</a> + <br /> + </code> + + <p><b id="SCI_SETLEXER">SCI_SETLEXER(int lexer)</b><br /> + <b id="SCI_GETLEXER">SCI_GETLEXER</b><br /> + You can select the lexer to use with an integer code from the <code>SCLEX_*</code> enumeration + in <code>Scintilla.h</code>. There are two codes in this sequence that do not use lexers: + <code>SCLEX_NULL</code> to select no lexing action and <code>SCLEX_CONTAINER</code> which sends + the <code><a class="message" href="#SCN_STYLENEEDED">SCN_STYLENEEDED</a></code> notification to + the container whenever a range of text needs to be styled. You cannot use the + <code>SCLEX_AUTOMATIC</code> value; this identifies additional external lexers that Scintilla + assigns unused lexer numbers to.</p> + + <p><b id="SCI_SETLEXERLANGUAGE">SCI_SETLEXERLANGUAGE(<unused>, const char *name)</b><br /> + This message lets you select a lexer by name, and is the only method if you are using an + external lexer or if you have written a lexer module for a language of your own and do not wish + to assign it an explicit lexer number. To select an existing lexer, set <code>name</code> to + match the (case sensitive) name given to the module, for example "ada" or "python", not "Ada" + or "Python". To locate the name for the built-in lexers, open the relevant + <code>Lex*.cxx</code> file and search for <code>LexerModule</code>. The third argument in the + <code>LexerModule</code> constructor is the name to use.</p> + + <p>To test if your lexer assignment worked, use <a class="message" + href="#SCI_GETLEXER"><code>SCI_GETLEXER</code></a> before and after setting the new lexer to + see if the lexer number changed.</p> + + <p><b id="SCI_LOADLEXERLIBRARY">SCI_LOADLEXERLIBRARY(<unused>, const char *path)</b><br /> + Load a lexer implemented in a shared library. This is a .so file on GTK+/Linux or a .DLL file on Windows. + </p> + + <p><b id="SCI_COLOURISE">SCI_COLOURISE(int startPos, int endPos)</b><br /> + This requests the current lexer or the container (if the lexer is set to + <code>SCLEX_CONTAINER</code>) to style the document between <code>startPos</code> and + <code>endPos</code>. If <code>endPos</code> is -1, the document is styled from + <code>startPos</code> to the end. If the <code>"fold"</code> property is set to + <code>"1"</code> and your lexer or container supports folding, fold levels are also set. This + message causes a redraw.</p> + + <p><b id="SCI_SETPROPERTY">SCI_SETPROPERTY(const char *key, const char *value)</b><br /> + You can communicate settings to lexers with keyword:value string pairs. There is no limit to + the number of keyword pairs you can set, other than available memory. <code>key</code> is a + case sensitive keyword, <code>value</code> is a string that is associated with the keyword. If + there is already a value string associated with the keyword, it is replaced. If you pass a zero + length string, the message does nothing. Both <code>key</code> and <code>value</code> are used + without modification; extra spaces at the beginning or end of <code>key</code> are + significant.</p> + + <p>The <code>value</code> string can refer to other keywords. For example, + <code>SCI_SETPROPERTY("foldTimes10", "$(fold)0")</code> stores the string + <code>"$(fold)0"</code>, but when this is accessed, the <code>$(fold)</code> is replaced by the + value of the <code>"fold"</code> keyword (or by nothing if this keyword does not exist).</p> + + <p>Currently the "fold" property is defined for most of the lexers to set the fold structure if + set to "1". <code>SCLEX_PYTHON</code> understands <code>"tab.timmy.whinge.level"</code> as a + setting that determines how to indicate bad indentation. Most keywords have values that are + interpreted as integers. Search the lexer sources for <code>GetPropertyInt</code> to see how + properties are used.</p> + + <p><b id="SCI_GETPROPERTY">SCI_GETPROPERTY(const char *key, char *value)</b><br /> + Lookup a keyword:value pair using the specified key; if found, copy the value to the user-supplied + buffer and return the length (not including the terminating 0). If not found, copy an empty string + to the buffer and return 0.</p> + + <p>Note that "keyword replacement" as described in <a class="message" href="#SCI_SETPROPERTY"> + <code>SCI_SETPROPERTY</code></a> will not be performed.</p> + + <p>If the value argument is 0 then the length that should be allocated to store the value is returned; + again, the terminating 0 is not included.</p> + + <p><b id="SCI_GETPROPERTYEXPANDED">SCI_GETPROPERTYEXPANDED(const char *key, char *value)</b><br /> + Lookup a keyword:value pair using the specified key; if found, copy the value to the user-supplied + buffer and return the length (not including the terminating 0). If not found, copy an empty string + to the buffer and return 0.</p> + + <p>Note that "keyword replacement" as described in <a class="message" href="#SCI_SETPROPERTY"> + <code>SCI_SETPROPERTY</code></a> will be performed.</p> + + <p>If the value argument is 0 then the length that should be allocated to store the value (including any indicated keyword replacement) + is returned; again, the terminating 0 is not included.</p> + + <p><b id="SCI_GETPROPERTYINT">SCI_GETPROPERTYINT(const char *key, int default)</b><br /> + Lookup a keyword:value pair using the specified key; if found, interpret the value as an integer and return it. + If not found (or the value is an empty string) then return the supplied default. If the keyword:value pair is found but is not + a number, then return 0.</p> + + <p>Note that "keyword replacement" as described in <a class="message" href="#SCI_SETPROPERTY"> + <code>SCI_SETPROPERTY</code></a> will be performed before any numeric interpretation.</p> + + <p><b id="SCI_SETKEYWORDS">SCI_SETKEYWORDS(int keyWordSet, const char *keyWordList)</b><br /> + You can set up to 9 lists of keywords for use by the current lexer. This was increased from 6 + at revision 1.50. <code>keyWordSet</code> can be 0 to 8 (actually 0 to <code>KEYWORDSET_MAX</code>) + and selects which keyword list to replace. <code>keyWordList</code> is a list of keywords + separated by spaces, tabs, <code>"\n"</code> or <code>"\r"</code> or any combination of these. + It is expected that the keywords will be composed of standard ASCII printing characters, + but there is nothing to stop you using any non-separator character codes from 1 to 255 + (except common sense).</p> + + <p>How these keywords are used is entirely up to the lexer. Some languages, such as HTML may + contain embedded languages, VBScript and JavaScript are common for HTML. For HTML, key word set + 0 is for HTML, 1 is for JavaScript and 2 is for VBScript, 3 is for Python, 4 is for PHP and 5 + is for SGML and DTD keywords. Review the lexer code to see examples of keyword list. A fully + conforming lexer sets the fourth argument of the <code>LexerModule</code> constructor to be a + list of strings that describe the uses of the keyword lists.</p> + + <p>Alternatively, you might use set 0 for general keywords, set 1 for keywords that cause + indentation and set 2 for keywords that cause unindentation. Yet again, you might have a simple + lexer that colours keywords and you could change languages by changing the keywords in set 0. + There is nothing to stop you building your own keyword lists into the lexer, but this means + that the lexer must be rebuilt if more keywords are added.</p> + + <p><b id="SCI_GETSTYLEBITSNEEDED">SCI_GETSTYLEBITSNEEDED</b><br /> + Retrieve the number of bits the current lexer needs for styling. This should normally be the argument + to <a class="message" href="#SCI_SETSTYLEBITS">SCI_SETSTYLEBITS</a>. + </p> + + <h2 id="Notifications">Notifications</h2> + + <p>Notifications are sent (fired) from the Scintilla control to its container when an event has + occurred that may interest the container. Notifications are sent using the + <code>WM_NOTIFY</code> message on Windows and the "notify" signal on GTK+. The container is + passed a <code>SCNotification</code> structure containing information about the event.</p> +<pre id="SCNotification"> +struct NotifyHeader { // This matches the Win32 NMHDR structure + void *hwndFrom; // environment specific window handle/pointer + uptr_t idFrom; // CtrlID of the window issuing the notification + unsigned int code; // The SCN_* notification code +}; + +struct SCNotification { + struct NotifyHeader nmhdr; + int position; + // SCN_STYLENEEDED, SCN_DOUBLECLICK, SCN_MODIFIED, SCN_DWELLSTART, + // SCN_DWELLEND, SCN_CALLTIPCLICK, + // SCN_HOTSPOTCLICK, SCN_HOTSPOTDOUBLECLICK + int ch; // SCN_CHARADDED, SCN_KEY + int modifiers; // SCN_KEY, SCN_HOTSPOTCLICK, SCN_HOTSPOTDOUBLECLICK + int modificationType; // SCN_MODIFIED + const char *text; // SCN_MODIFIED, SCN_USERLISTSELECTION, SCN_AUTOCSELECTION + int length; // SCN_MODIFIED + int linesAdded; // SCN_MODIFIED + int message; // SCN_MACRORECORD + uptr_t wParam; // SCN_MACRORECORD + sptr_t lParam; // SCN_MACRORECORD + int line; // SCN_MODIFIED, SCN_DOUBLECLICK + int foldLevelNow; // SCN_MODIFIED + int foldLevelPrev; // SCN_MODIFIED + int margin; // SCN_MARGINCLICK + int listType; // SCN_USERLISTSELECTION, SCN_AUTOCSELECTION + int x; // SCN_DWELLSTART, SCN_DWELLEND + int y; // SCN_DWELLSTART, SCN_DWELLEND +}; +</pre> + + <p>The notification messages that your container can choose to handle and the messages + associated with them are:</p> + <code><a class="message" href="#SCN_STYLENEEDED">SCN_STYLENEEDED</a><br /> + <a class="message" href="#SCN_CHARADDED">SCN_CHARADDED</a><br /> + <a class="message" href="#SCN_SAVEPOINTREACHED">SCN_SAVEPOINTREACHED</a><br /> + <a class="message" href="#SCN_SAVEPOINTLEFT">SCN_SAVEPOINTLEFT</a><br /> + <a class="message" href="#SCN_MODIFYATTEMPTRO">SCN_MODIFYATTEMPTRO</a><br /> + <a class="message" href="#SCN_KEY">SCN_KEY</a><br /> + <a class="message" href="#SCN_DOUBLECLICK">SCN_DOUBLECLICK</a><br /> + <a class="message" href="#SCN_UPDATEUI">SCN_UPDATEUI</a><br /> + <a class="message" href="#SCN_MODIFIED">SCN_MODIFIED</a><br /> + <a class="message" href="#SCN_MACRORECORD">SCN_MACRORECORD</a><br /> + <a class="message" href="#SCN_MARGINCLICK">SCN_MARGINCLICK</a><br /> + <a class="message" href="#SCN_NEEDSHOWN">SCN_NEEDSHOWN</a><br /> + <a class="message" href="#SCN_PAINTED">SCN_PAINTED</a><br /> + <a class="message" href="#SCN_USERLISTSELECTION">SCN_USERLISTSELECTION</a><br /> + <a class="message" href="#SCN_URIDROPPED">SCN_URIDROPPED</a><br /> + <a class="message" href="#SCN_DWELLSTART">SCN_DWELLSTART</a><br /> + <a class="message" href="#SCN_DWELLEND">SCN_DWELLEND</a><br /> + <a class="message" href="#SCN_ZOOM">SCN_ZOOM</a><br /> + <a class="message" href="#SCN_HOTSPOTCLICK">SCN_HOTSPOTCLICK</a><br /> + <a class="message" href="#SCN_HOTSPOTDOUBLECLICK">SCN_HOTSPOTDOUBLECLICK</a><br /> + <a class="message" href="#SCN_CALLTIPCLICK">SCN_CALLTIPCLICK</a><br /> + <a class="message" href="#SCN_AUTOCSELECTION">SCN_AUTOCSELECTION</a><br /> + </code> + + <p>The following <code>SCI_*</code> messages are associated with these notifications:</p> + <code><a class="message" href="#SCI_SETMODEVENTMASK">SCI_SETMODEVENTMASK(int + eventMask)</a><br /> + <a class="message" href="#SCI_GETMODEVENTMASK">SCI_GETMODEVENTMASK</a><br /> + <a class="message" href="#SCI_SETMOUSEDWELLTIME">SCI_SETMOUSEDWELLTIME</a><br /> + <a class="message" href="#SCI_GETMOUSEDWELLTIME">SCI_GETMOUSEDWELLTIME</a><br /> + </code> + + <p>The following additional notifications are sent using the <code>WM_COMMAND</code> message on + Windows and the "Command" signal on GTK+. This emulates the Windows Edit control. Only the lower + 16 bits of the control's ID is passed in these notifications.</p> + <code><a class="message" href="#SCEN_CHANGE">SCEN_CHANGE</a><br /> + <a class="message" href="#SCEN_SETFOCUS">SCEN_SETFOCUS</a><br /> + <a class="message" href="#SCEN_KILLFOCUS">SCEN_KILLFOCUS</a><br /> + </code> + + <p><b id="SCN_STYLENEEDED">SCN_STYLENEEDED</b><br /> + If you used <code><a class="message" + href="#SCI_SETLEXER">SCI_SETLEXER</a>(SCLEX_CONTAINER)</code> to make the container act as the + lexer, you will receive this notification when Scintilla is about to display or print text that + requires styling. You are required to style the text from the line that contains the position + returned by <a class="message" href="#SCI_GETENDSTYLED"><code>SCI_GETENDSTYLED</code></a> up to + the position passed in <code>SCNotification.position</code>. Symbolically, you need code of the + form:</p> +<pre> + startPos = <a class="message" href="#SCI_GETENDSTYLED">SCI_GETENDSTYLED</a>() + lineNumber = <a class="message" +href="#SCI_LINEFROMPOSITION">SCI_LINEFROMPOSITION</a>(startPos); + startPos = <a class="message" +href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE</a>(lineNumber); + MyStyleRoutine(startPos, SCNotification.position); +</pre> + + <p><b id="SCN_CHARADDED">SCN_CHARADDED</b><br /> + This is sent when the user types an ordinary text character (as opposed to a command + character) that is entered into the text. The container can use this to decide to display a <a + class="jump" href="#CallTips">call tip</a> or an <a class="jump" href="#Autocompletion">auto + completion list</a>. The character is in <code>SCNotification.ch</code>. + This notification is sent before the character has been styled so processing that depends on + styling should instead be performed in the SCN_UPDATEUI notification.</p> + + <p><b id="SCN_SAVEPOINTREACHED">SCN_SAVEPOINTREACHED</b><br /> + <b id="SCN_SAVEPOINTLEFT">SCN_SAVEPOINTLEFT</b><br /> + Sent to the container when the save point is entered or left, allowing the container to + display a "document dirty" indicator and change its menus.<br /> + See also: <a class="message" href="#SCI_SETSAVEPOINT"><code>SCI_SETSAVEPOINT</code></a>, <a + class="message" href="#SCI_GETMODIFY"><code>SCI_GETMODIFY</code></a></p> + + <p><b id="SCN_MODIFYATTEMPTRO">SCN_MODIFYATTEMPTRO</b><br /> + When in read-only mode, this notification is sent to the container if the user tries to change + the text. This can be used to check the document out of a version control system. You can set + the read-only state of a document with <code><a class="message" + href="#SCI_SETREADONLY">SCI_SETREADONLY</a></code>.</p> + + <p><b id="SCN_KEY">SCN_KEY</b><br /> + Reports all keys pressed but not consumed by Scintilla. Used on GTK+ because of + some problems with keyboard focus and is not sent by the Windows version. <code>SCNotification.ch</code> holds the key code and + <code>SCNotification.modifiers</code> holds the modifiers. This notification is sent if the + modifiers include <code>SCMOD_ALT</code> or <code>SCMOD_CTRL</code> and the key code is less + than 256.</p> + + <p><b id="SCN_DOUBLECLICK">SCN_DOUBLECLICK</b><br /> + The mouse button was double clicked in editor. The <code>position</code> field is set to the text position of the + double click and the <code>line</code> field is set to the line of the double click.</p> + + <p><b id="SCN_UPDATEUI">SCN_UPDATEUI</b><br /> + Either the text or styling of the document has changed or the selection range has changed. Now + would be a good time to update any container UI elements that depend on document or view state. + This was previously called <code><a class="message" + href="#SCN_CHECKBRACE">SCN_CHECKBRACE</a></code> because a common use is to check whether the + caret is next to a brace and set highlights on this brace and its corresponding matching brace. + This also replaces <a class="message" href="#SCN_POSCHANGED"><code>SCN_POSCHANGED</code></a>, + which is now deprecated.</p> + + <p><b id="SCN_MODIFIED">SCN_MODIFIED</b><br /> + This notification is sent when the text or styling of the document changes or is about to + change. You can set a mask for the notifications that are sent to the container with <a + class="message" href="#SCI_SETMODEVENTMASK"><code>SCI_SETMODEVENTMASK</code></a>. The + notification structure contains information about what changed, how the change occurred and + whether this changed the number of lines in the document. No modifications may be performed + while in a <code>SCN_MODIFIED</code> event. The <code>SCNotification</code> fields used + are:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Modify notification types"> + <tbody> + <tr> + <th align="left">Field</th> + + <th align="left">Usage</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>modificationType</code></td> + + <td align="left">A set of flags that identify the change(s) made. See the next + table.</td> + </tr> + + <tr> + <td align="left"><code>position</code></td> + + <td align="left">Start position of a text or styling change. Set to 0 if not used.</td> + </tr> + + <tr> + <td align="left"><code>length</code></td> + + <td align="left">Length of the change in cells or characters when the text or styling + changes. Set to 0 if not used.</td> + </tr> + + <tr> + <td align="left"><code>linesAdded</code></td> + + <td align="left">Number of added lines. If negative, the number of deleted lines. Set to + 0 if not used or no lines added or deleted.</td> + </tr> + + <tr> + <td align="left"><code>text</code></td> + + <td align="left">Valid for text changes, not for style changes. If we are collecting undo + information this holds a pointer to the text that is handed to the Undo system, otherwise + it is zero. For user performed SC_MOD_BEFOREDELETE the text field is 0 and + for user performed SC_MOD_BEFOREINSERT the text field points to an array of cells, + not bytes and the length is the number of cells.</td> + </tr> + + <tr> + <td align="left"><code>line</code></td> + + <td align="left">The line number at which a fold level or marker change occurred. This is + 0 if unused and may be -1 if more than one line changed.</td> + </tr> + + <tr> + <td align="left"><code>foldLevelNow</code></td> + + <td align="left">The new fold level applied to the line or 0 if this field is + unused.</td> + </tr> + + <tr> + <td align="left"><code>foldLevelPrev</code></td> + + <td align="left">The previous folding level of the line or 0 if this field is + unused.</td> + </tr> + </tbody> + </table> + + <p>The <code>SCNotification.modificationType</code> field has bits set to tell you what has + been done. The <code>SC_MOD_*</code> bits correspond to actions. The + <code>SC_PERFORMED_*</code> bits tell you if the action was done by the user, or the result of + Undo or Redo of a previous action.</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Modify notification type flags"> + <tbody> + <tr> + <th align="left">Symbol</th> + + <th>Value</th> + + <th align="left">Meaning</th> + + <th align="left">SCNotification fields</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>SC_MOD_INSERTTEXT</code></td> + + <td align="center">0x01</td> + + <td>Text has been inserted into the document.</td> + + <td><code>position, length, text, linesAdded</code></td> + </tr> + + <tr> + <td align="left"><code>SC_MOD_DELETETEXT</code></td> + + <td align="center">0x02</td> + + <td>Text has been removed from the document.</td> + + <td><code>position, length, text, linesAdded</code></td> + </tr> + + <tr> + <td align="left"><code>SC_MOD_CHANGESTYLE</code></td> + + <td align="center">0x04</td> + + <td>A style change has occurred.</td> + + <td><code>position, length</code></td> + </tr> + + <tr> + <td align="left"><code>SC_MOD_CHANGEFOLD</code></td> + + <td align="center">0x08</td> + + <td>A folding change has occurred.</td> + + <td><code>line, foldLevelNow, foldLevelPrev</code></td> + </tr> + + <tr> + <td align="left"><code>SC_PERFORMED_USER</code></td> + + <td align="center">0x10</td> + + <td>Information: the operation was done by the user.</td> + + <td>None</td> + </tr> + + <tr> + <td align="left"><code>SC_PERFORMED_UNDO</code></td> + + <td align="center">0x20</td> + + <td>Information: this was the result of an Undo.</td> + + <td>None</td> + </tr> + + <tr> + <td align="left"><code>SC_PERFORMED_REDO</code></td> + + <td align="center">0x40</td> + + <td>Information: this was the result of a Redo.</td> + + <td>None</td> + </tr> + + <tr> + <td align="left"><code>SC_MULTISTEPUNDOREDO</code></td> + + <td align="center">0x80</td> + + <td>This is part of a multi-step Undo or Redo.</td> + + <td>None</td> + </tr> + + <tr> + <td align="left"><code>SC_LASTSTEPINUNDOREDO</code></td> + + <td align="center">0x100</td> + + <td>This is the final step in an Undo or Redo.</td> + + <td>None</td> + </tr> + + <tr> + <td align="left"><code>SC_MOD_CHANGEMARKER</code></td> + + <td align="center">0x200</td> + + <td>One or more markers has changed in a line.</td> + + <td><code>line</code></td> + </tr> + + <tr> + <td align="left"><code>SC_MOD_BEFOREINSERT</code></td> + + <td align="center">0x400</td> + + <td>Text is about to be inserted into the document.</td> + + <td><code>position, if performed by user then text in cells, length in cells</code></td> + </tr> + + <tr> + <td align="left"><code>SC_MOD_BEFOREDELETE</code></td> + + <td align="center">0x800</td> + + <td>Text is about to be deleted from the document.</td> + + <td><code>position, length</code></td> + </tr> + + <tr> + <td align="left"><code>SC_MULTILINEUNDOREDO</code></td> + + <td align="center">0x1000</td> + + <td>This is part of an Undo or Redo with multi-line changes.</td> + + <td>None</td> + </tr> + + <tr> + <td align="left"><code>SC_MODEVENTMASKALL</code></td> + + <td align="center">0x1fff</td> + + <td>This is a mask for all valid flags. This is the default mask state set by <a + class="message" href="#SCI_SETMODEVENTMASK"><code>SCI_SETMODEVENTMASK</code></a>.</td> + + <td>None</td> + </tr> + </tbody> + </table> + + <p><b id="SCEN_CHANGE">SCEN_CHANGE</b><br /> + <code>SCEN_CHANGE</code> (768) is fired when the text (not the style) of the document changes. + This notification is sent using the <code>WM_COMMAND</code> message on Windows and the + "Command" signal on GTK+ as this is the behavior of the standard Edit control + (<code>SCEN_CHANGE</code> has the same value as the Windows Edit control + <code>EN_CHANGE</code>). No other information is sent. If you need more detailed information + use <a class="message" href="#SCN_MODIFIED"><code>SCN_MODIFIED</code></a>. You can filter the + types of changes you are notified about with <a class="message" + href="#SCI_SETMODEVENTMASK"><code>SCI_SETMODEVENTMASK</code></a>.</p> + + <p><b id="SCI_SETMODEVENTMASK">SCI_SETMODEVENTMASK(int eventMask)</b><br /> + <b id="SCI_GETMODEVENTMASK">SCI_GETMODEVENTMASK</b><br /> + These messages set and get an event mask that determines which document change events are + notified to the container with <a class="message" + href="#SCN_MODIFIED"><code>SCN_MODIFIED</code></a> and <a class="message" + href="#SCEN_CHANGE"><code>SCEN_CHANGE</code></a>. For example, a container may decide to see + only notifications about changes to text and not styling changes by calling + <code>SCI_SETMODEVENTMASK(SC_MOD_INSERTTEXT|SC_MOD_DELETETEXT)</code>.</p> + + <p>The possible notification types are the same as the <code>modificationType</code> bit flags + used by <code>SCN_MODIFIED</code>: <code>SC_MOD_INSERTTEXT</code>, + <code>SC_MOD_DELETETEXT</code>, <code>SC_MOD_CHANGESTYLE</code>, + <code>SC_MOD_CHANGEFOLD</code>, <code>SC_PERFORMED_USER</code>, <code>SC_PERFORMED_UNDO</code>, + <code>SC_PERFORMED_REDO</code>, <code>SC_MULTISTEPUNDOREDO</code>, + <code>SC_LASTSTEPINUNDOREDO</code>, <code>SC_MOD_CHANGEMARKER</code>, + <code>SC_MOD_BEFOREINSERT</code>, <code>SC_MOD_BEFOREDELETE</code>, + <code>SC_MULTILINEUNDOREDO</code>, and <code>SC_MODEVENTMASKALL</code>.</p> + + <p><b id="SCEN_SETFOCUS">SCEN_SETFOCUS</b><br /> + <b id="SCEN_KILLFOCUS">SCEN_KILLFOCUS</b><br /> + <code>SCEN_SETFOCUS</code> (512) is fired when Scintilla receives focus and + <code>SCEN_KILLFOCUS</code> (256) when it loses focus. These notifications are sent using the + <code>WM_COMMAND</code> message on Windows and the "Command" signal on GTK+ as this is the + behavior of the standard Edit control. Unfortunately, these codes do not match the Windows Edit + notification codes <code>EN_SETFOCUS</code> (256) and <code>EN_KILLFOCUS</code> (512). It is + now too late to change the Scintilla codes as clients depend on the current values.</p> + + <p><b id="SCN_MACRORECORD">SCN_MACRORECORD</b><br /> + The <code><a class="message" href="#SCI_STARTRECORD">SCI_STARTRECORD</a></code> and <a + class="message" href="#SCI_STOPRECORD"><code>SCI_STOPRECORD</code></a> messages enable and + disable macro recording. When enabled, each time a recordable change occurs, the + <code>SCN_MACRORECORD</code> notification is sent to the container. It is up to the container + to record the action. To see the complete list of <code>SCI_*</code> messages that are + recordable, search the Scintilla source <code>Editor.cxx</code> for + <code>Editor::NotifyMacroRecord</code>. The fields of <code>SCNotification</code> set in this + notification are:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Macro record notification data"> + <tbody> + <tr> + <th align="left">Field</th> + + <th align="left">Usage</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>message</code></td> + + <td align="left">The <code>SCI_*</code> message that caused the notification.</td> + </tr> + + <tr> + <td align="left"><code>wParam</code></td> + + <td align="left">The value of <code>wParam</code> in the <code>SCI_*</code> message.</td> + </tr> + + <tr> + <td align="left"><code>lParam</code></td> + + <td align="left">The value of <code>lParam</code> in the <code>SCI_*</code> message.</td> + </tr> + </tbody> + </table> + + <p><b id="SCN_MARGINCLICK">SCN_MARGINCLICK</b><br /> + This notification tells the container that the mouse was clicked inside a <a class="jump" + href="#Margins">margin</a> that was marked as sensitive (see <a class="message" + href="#SCI_SETMARGINSENSITIVEN"><code>SCI_SETMARGINSENSITIVEN</code></a>). This can be used to + perform folding or to place breakpoints. The following <code>SCNotification</code> fields are + used:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Margin click notification"> + <tbody> + <tr> + <th align="left">Field</th> + + <th align="left">Usage</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>modifiers</code></td> + + <td align="left">The appropriate combination of <code>SCI_SHIFT</code>, + <code>SCI_CTRL</code> and <code>SCI_ALT</code> to indicate the keys that were held down + at the time of the margin click.</td> + </tr> + + <tr> + <td align="left"><code>position</code></td> + + <td align="left">The position of the start of the line in the document that corresponds + to the margin click.</td> + </tr> + + <tr> + <td align="left"><code>margin</code></td> + + <td align="left">The margin number that was clicked.</td> + </tr> + </tbody> + </table> + + <p><b id="SCN_NEEDSHOWN">SCN_NEEDSHOWN</b><br /> + Scintilla has determined that a range of lines that is currently invisible should be made + visible. An example of where this may be needed is if the end of line of a contracted fold + point is deleted. This message is sent to the container in case it wants to make the line + visible in some unusual way such as making the whole document visible. Most containers will + just ensure each line in the range is visible by calling <a class="message" + href="#SCI_ENSUREVISIBLE"><code>SCI_ENSUREVISIBLE</code></a>. The <code>position</code> and + <code>length</code> fields of <code>SCNotification</code> indicate the range of the document + that should be made visible. The container code will be similar to the following code + skeleton:</p> +<pre> +firstLine = SCI_LINEFROMPOSITION(scn.position) +lastLine = SCI_LINEFROMPOSITION(scn.position+scn.length-1) +for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next +</pre> + + <p><b id="SCN_PAINTED">SCN_PAINTED</b><br /> + Painting has just been done. Useful when you want to update some other widgets based on a + change in Scintilla, but want to have the paint occur first to appear more responsive. There is + no other information in <code>SCNotification</code>.</p> + + <p><b id="SCN_USERLISTSELECTION">SCN_USERLISTSELECTION</b><br /> + The user has selected an item in a <a class="jump" href="#UserLists">user list</a>. The + <code>SCNotification</code> fields used are:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="User list notification"> + <tbody> + <tr> + <th align="left">Field</th> + + <th align="left">Usage</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>wParam</code></td> + + <td align="left">This is set to the <code>listType</code> parameter from the <a + class="message" href="#SCI_USERLISTSHOW"><code>SCI_USERLISTSHOW</code></a> message that + initiated the list.</td> + </tr> + + <tr> + <td align="left"><code>text</code></td> + + <td align="left">The text of the selection.</td> + </tr> + </tbody> + </table> + <br /> + <br /> + + + <p><b id="SCN_URIDROPPED">SCN_URIDROPPED</b><br /> + Only on the GTK+ version. Indicates that the user has dragged a URI such as a file name or Web + address onto Scintilla. The container could interpret this as a request to open the file. The + <code>text</code> field of <code>SCNotification</code> points at the URI text.</p> + + <p><b id="SCN_DWELLSTART">SCN_DWELLSTART</b><br /> + <b id="SCN_DWELLEND">SCN_DWELLEND</b><br /> + <code>SCN_DWELLSTART</code> is generated when the user keeps the mouse in one position for the + dwell period (see <code><a class="message" + href="#SCI_SETMOUSEDWELLTIME">SCI_SETMOUSEDWELLTIME</a></code>). <code>SCN_DWELLEND</code> is + generated after a <code>SCN_DWELLSTART</code> and the mouse is moved or other activity such as + key press indicates the dwell is over. Both notifications set the same fields in + <code>SCNotification</code>:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Mouse dwell notification"> + <tbody> + <tr> + <th align="left">Field</th> + + <th align="left">Usage</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>position</code></td> + + <td align="left">This is the nearest position in the document to the position where the + mouse pointer was lingering.</td> + </tr> + + <tr> + <td align="left"><code>x, y</code></td> + + <td align="left">Where the pointer lingered. The <code>position</code> field is set to + <code><a class="message" + href="#SCI_POSITIONFROMPOINTCLOSE">SCI_POSITIONFROMPOINTCLOSE</a>(x, y)</code>.</td> + </tr> + </tbody> + </table> + <br /> + <br /> + + <p><b id="SCI_SETMOUSEDWELLTIME">SCI_SETMOUSEDWELLTIME</b><br /> + <b id="SCI_GETMOUSEDWELLTIME">SCI_GETMOUSEDWELLTIME</b><br /> + These two messages set and get the time the mouse must sit still, in milliseconds, to generate + a <code><a class="message" href="#SCN_DWELLSTART">SCN_DWELLSTART</a></code> notification. If + set to <code>SC_TIME_FOREVER</code>, the default, no dwell events are generated.</p> + + <p><b id="SCN_ZOOM">SCN_ZOOM</b><br /> + This notification is generated when the user zooms the display using the keyboard or the + <code><a class="message" href="#SCI_SETZOOM">SCI_SETZOOM</a></code> method is called. This + notification can be used to recalculate positions, such as the width of the line number margin + to maintain sizes in terms of characters rather than pixels. <code>SCNotification</code> has no + additional information.</p> + + <p> + <b id="SCN_HOTSPOTCLICK">SCN_HOTSPOTCLICK</b><br /> + <b id="SCN_HOTSPOTDOUBLECLICK">SCN_HOTSPOTDOUBLECLICK</b><br /> + These notifications are generated when the user clicks or double clicks on + text that is in a style with the hotspot attribute set. + This notification can be used to link to variable definitions or web pages. + The <code>position</code> field is set the text position of the click or + double click and the <code>modifiers</code> field set to the key modifiers + held down in a similar manner to <a class="message" href="#SCN_KEY">SCN_KEY</a>.</p> + + <p><b id="SCN_CALLTIPCLICK">SCN_CALLTIPCLICK</b><br /> + This notification is generated when the user clicks on a calltip. + This notification can be used to display the next function prototype when a + function name is overloaded with different arguments. + The <code>position</code> field is set to 1 if the click is in an up arrow, + 2 if in a down arrow, and 0 if elsewhere.</p> + + <p><b id="SCN_AUTOCSELECTION">SCN_AUTOCSELECTION</b><br /> + The user has selected an item in an <a class="jump" href="#Autocompletion">autocompletion list</a>. The + notification is sent before the selection is inserted. Automatic insertion can be cancelled by sending a + <code><a class="message" href="#SCI_AUTOCCANCEL">SCI_AUTOCCANCEL</a></code> message + before returning from the notification. The <code>SCNotification</code> fields used are:</p> + + <table cellpadding="1" cellspacing="2" border="0" summary="Autocompletion list notification"> + <tbody> + <tr> + <th align="left">Field</th> + + <th align="left">Usage</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>lParam</code></td> + + <td align="left">The start position of the word being completed.</td> + </tr> + <tr> + <td align="left"><code>text</code></td> + + <td align="left">The text of the selection.</td> + </tr> + </tbody> + </table> + + <h2 id="GTK">GTK+</h2> + <p>On GTK+, the following functions create a Scintilla widget, communicate with it and allow + resources to be released after all Scintilla widgets hace been destroyed.</p> + <code><a class="message" href="#scintilla_new">GtkWidget *scintilla_new()</a><br /> + <a class="message" href="#scintilla_set_id">void scintilla_set_id(ScintillaObject *sci, uptr_t id)</a><br /> + <a class="message" href="#scintilla_send_message">sptr_t scintilla_send_message(ScintillaObject *sci,unsigned int iMessage, uptr_t wParam, sptr_t lParam)</a><br /> + <a class="message" href="#scintilla_release_resources">void scintilla_release_resources()</a><br /> + </code> + + <p><b id="scintilla_new">GtkWidget *scintilla_new()</b></b><br /> + Create a new Scintilla widget. The returned pointer can be added to a container and displayed in the same way as other + widgets.</p> + + <p><b id="scintilla_set_id">void scintilla_set_id(ScintillaObject *sci, uptr_t id)</b></b><br /> + Set the control ID which will be used in the idFrom field of the NotifyHeader structure of all + notifications for this instance. When an application creates multiple Scintilla widgets, this allows + the source of each notification to be found. The value should be small, preferrably less than 16 bits, + rather than a pointer as some of the functions will only transmit 16 or 32 bits.</p> + + <p><b id="scintilla_send_message">sptr_t scintilla_send_message(ScintillaObject *sci,unsigned int iMessage, uptr_t wParam, sptr_t lParam)</b><br /> + The main entry point allows sending any of the messages described in this document.</p> + + <p><b id="scintilla_release_resources">void scintilla_release_resources()</b><br /> + Call this to free any remaining resources after all the Scintilla widgets have been destroyed.</p> + + <h2 id="DeprecatedMessages">Deprecated messages and notifications</h2> + + <p>The following messages are currently supported to emulate existing Windows controls, but + they will be removed in future versions of Scintilla. If you use these messages you should + replace them with the Scintilla equivalent.</p> +<pre> +WM_GETTEXT(int length, char *text) +WM_SETTEXT(<unused>, const char *text) +EM_GETLINE(int line, char *text) +EM_REPLACESEL(<unused>, const char *text) +EM_SETREADONLY +EM_GETTEXTRANGE(<unused>, TEXTRANGE *tr) +WM_CUT +WM_COPY +WM_PASTE +WM_CLEAR +WM_UNDO +EM_CANUNDO +EM_EMPTYUNDOBUFFER +WM_GETTEXTLENGTH +EM_GETFIRSTVISIBLELINE +EM_GETLINECOUNT +EM_GETMODIFY +EM_SETMODIFY(bool isModified) +EM_GETRECT(RECT *rect) +EM_GETSEL(int *start, int *end) +EM_EXGETSEL(<unused>, CHARRANGE *cr) +EM_SETSEL(int start, int end) +EM_EXSETSEL(<unused>, CHARRANGE *cr) +EM_GETSELTEXT(<unused>, char *text) +EM_LINEFROMCHAR(int position) +EM_EXLINEFROMCHAR(int position) +EM_LINEINDEX(int line) +EM_LINELENGTH(int position) +EM_SCROLL(int line) +EM_LINESCROLL(int column, int line) +EM_SCROLLCARET() +EM_CANPASTE +EM_CHARFROMPOS(<unused>, POINT *location) +EM_POSFROMCHAR(int position, POINT *location) +EM_SELECTIONTYPE +EM_HIDESELECTION(bool hide) +EM_FINDTEXT(int flags, FINDTEXTEX *ft) +EM_FINDTEXTEX(int flags, FINDTEXTEX *ft) +EM_GETMARGINS +EM_SETMARGINS(EC_LEFTMARGIN or EC_RIGHTMARGIN or EC_USEFONTINFO, int val) +EM_FORMATRANGE +</pre> + + <p>The following are features that are only included if you define + <code>INCLUDE_DEPRECATED_FEATURES</code> in <code>Scintilla.h</code>. To ensure future + compatibility you should change them as indicated.</p> + + <p><b id="SCN_POSCHANGED">SCN_POSCHANGED()</b> Deprecated<br /> + Fired when the user moves the cursor to a different position in the text. Use <a + class="message" href="#SCN_UPDATEUI"><code>SCN_UPDATEUI</code></a> instead.</p> + + <p><b id="SCN_CHECKBRACE">SCN_CHECKBRACE</b> Deprecated<br /> + Either the text or styling of the document has changed or the selection range has changed. + This is replaced by <a class="message" href="#SCN_UPDATEUI"><code>SCN_UPDATEUI</code></a>. You + can also use <code><a class="message" href="#SCN_MODIFIED">SCN_MODIFIED</a></code> for more + detailed information on text and styling changes,</p> + + <h2 id="EditMessagesNeverSupportedByScintilla">Edit messages never supported by Scintilla</h2> +<pre> +EM_GETWORDBREAKPROC EM_GETWORDBREAKPROCEX +EM_SETWORDBREAKPROC EM_SETWORDBREAKPROCEX +EM_GETWORDWRAPMODE EM_SETWORDWRAPMODE +EM_LIMITTEXT EM_EXLIMITTEXT +EM_SETRECT EM_SETRECTNP +EM_FMTLINES +EM_GETHANDLE EM_SETHANDLE +EM_GETPASSWORDCHAR EM_SETPASSWORDCHAR +EM_SETTABSTOPS +EM_FINDWORDBREAK +EM_GETCHARFORMAT EM_SETCHARFORMAT +EM_GETOLEINTERFACE EM_SETOLEINTERFACE +EM_SETOLECALLBACK +EM_GETPARAFORMAT EM_SETPARAFORMAT +EM_PASTESPECIAL +EM_REQUESTRESIZE +EM_GETBKGNDCOLOR EM_SETBKGNDCOLOR +EM_STREAMIN EM_STREAMOUT +EM_GETIMECOLOR EM_SETIMECOLOR +EM_GETIMEOPTIONS EM_SETIMEOPTIONS +EM_GETOPTIONS EM_SETOPTIONS +EM_GETPUNCTUATION EM_SETPUNCTUATION +EM_GETTHUMB +EM_GETEVENTMASK +EM_SETEVENTMASK +EM_DISPLAYBAND +EM_SETTARGETDEVICE +</pre> + + <p>Scintilla tries to be a superset of the standard windows Edit and RichEdit controls wherever + that makes sense. As it is not intended for use in a word processor, some edit messages can not + be sensibly handled. Unsupported messages have no effect.</p> + + <h2 id="BuildingScintilla">Building Scintilla</h2> + + <p>To build Scintilla or SciTE, see the README file present in both the Scintilla and SciTE + directories. For Windows, GCC 3.2, Borland C++ or Microsoft Visual Studio .NET can be used + for building. There is a make file for building Scintilla but not SciTE with Visual C++ 6 at + scintilla/win32/scintilla_vc6.mak. For GTK+, GCC 3.1 should be used. GTK+ 1.2x and 2.0x are + supported. The version of GTK+ installed should be detected automatically. + When both GTK+ 1 and GTK+ 2 are present, building for GTK+ 1.x requires defining GTK1 + on the command line.</p> + + <h3>Static linking</h3> + + <p>On Windows, Scintilla is normally used as a dynamic library as a .DLL file. If you want to + link Scintilla directly into your application .EXE or .DLL file, then the + <code>STATIC_BUILD</code> preprocessor symbol should be defined and + <code>Scintilla_RegisterClasses</code> called. <code>STATIC_BUILD</code> prevents compiling the + <code>DllMain</code> function which will conflict with any <code>DllMain</code> defined in your + code. <code>Scintilla_RegisterClasses</code> takes the <code>HINSTANCE</code> of your + application and ensures that the "Scintilla" window class is registered. To make sure that the + right pointing arrow cursor used in the margin is displayed by Scintilla add the + <code>scintilla/win32/Margin.cur</code> file to your application's resources with the ID + <code>IDC_MARGIN</code> which is defined in <code>scintilla/win32/platfromRes.h</code> as + 400.</p> + + <h3>Ensuring lexers are linked into Scintilla</h3> + + <p>Depending on the compiler and linker used, the lexers may be stripped out. This is most + often caused when building a static library. To ensure the lexers are linked in, the + <code>Scintilla_LinkLexers()</code> function may be called.</p> + + <h3>Changing set of lexers</h3> + + <p>To change the set of lexers in Scintilla, add and remove lexer source files + (<code>Lex*.cxx</code>) from the <code>scintilla/src directory</code> and run the + <code>src/LexGen.py</code> script from the <code>src</code> directory to update the make files + and <code>KeyWords.cxx</code>. <code>LexGen.py</code> requires Python 2.1 or later. If you do + not have access to Python, you can hand edit <code>KeyWords.cxx</code> in a simple-minded way, + following the patterns of other lexers. The important thing is to include + <code>LINK_LEXER(lmMyLexer);</code> to correspond with the <code>LexerModule + lmMyLexer(...);</code> in your lexer source code.</p> + </body> +</html> + diff --git a/doc/Scintilla/ScintillaDownload.html b/doc/Scintilla/ScintillaDownload.html new file mode 100755 index 0000000..c6b9657 --- /dev/null +++ b/doc/Scintilla/ScintillaDownload.html @@ -0,0 +1,70 @@ +<?xml version="1.0"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="generator" content="HTML Tidy, see www.w3.org" /> + <meta name="generator" content="SciTE" /> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + <title> + Download Scintilla + </title> + </head> + <body bgcolor="#FFFFFF" text="#000000"> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="0" border="0"> + <tr> + <td> + <img src="SciTEIco.png" border="3" height="64" width="64" alt="Scintilla icon" /> + </td> + <td> + <a href="index.html" style="color:white;text-decoration:none"><font size="5">Download + Scintilla</font></a> + </td> + </tr> + </table> + <table bgcolor="#CCCCCC" width="100%" cellspacing="0" cellpadding="8" border="0"> + <tr> + <td> + <font size="4"> <a href="http://prdownloads.sourceforge.net/scintilla/scintilla171.zip?download"> + Windows</a> + <a href="http://prdownloads.sourceforge.net/scintilla/scintilla171.tgz?download"> + GTK+/Linux</a> + </font> + </td> + </tr> + </table> + <h2> + Download. + </h2> + <p> + The <a href="License.txt">license</a> for using Scintilla or SciTE is similar to that of Python + containing very few restrictions. + </p> + <h3> + Release 1.71 + </h3> + <h4> + Source Code + </h4> + The source code package contains all of the source code for Scintilla but no binary + executable code and is available in + <ul> + <li><a href="http://prdownloads.sourceforge.net/scintilla/scintilla171.zip?download">zip format</a> (720K) commonly used on Windows</li> + <li><a href="http://prdownloads.sourceforge.net/scintilla/scintilla171.tgz?download">tgz format</a> (620K) commonly used on Linux and compatible operating systems</li> + </ul> + Instructions for building on both Windows and Linux are included in the readme file. + <h4> + Windows Executable Code + </h4> + There is no download available containing only the Scintilla DLL. + However, it is included in the <a href="SciTEDownload.html">SciTE + executable full download</a> as SciLexer.DLL. + <p> + <a href="SciTEDownload.html">SciTE</a> is a good demonstration of Scintilla. + </p> + <p> + Previous versions can be downloaded from the <a href="ScintillaHistory.html">history + page</a>. + </p> + </body> +</html> diff --git a/doc/Scintilla/ScintillaHistory.html b/doc/Scintilla/ScintillaHistory.html new file mode 100755 index 0000000..a230271 --- /dev/null +++ b/doc/Scintilla/ScintillaHistory.html @@ -0,0 +1,5296 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="generator" content="HTML Tidy, see www.w3.org" /> + <meta name="generator" content="SciTE" /> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title> + Scintilla and SciTE + </title> + </head> + <body bgcolor="#FFFFFF" text="#000000"> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="0" border="0"> + <tr> + <td> + <img src="SciTEIco.png" border="3" height="64" width="64" alt="Scintilla icon" /> + </td> + <td> + <a href="index.html" style="color:white;text-decoration:none"><font size="5">Scintilla + and SciTE</font></a> + </td> + </tr> + </table> + <h2> + History of Scintilla and SciTE + </h2> + <h3> + Contributors + </h3> + <p> + Thanks to all the people that have contributed patches, bug reports and suggestions. + </p> + <p> + Source code and documentation have been contributed by + </p> + <ul> + <li>Atsuo Ishimoto</li> + <li>Mark Hammond</li> + <li>Francois Le Coguiec</li> + <li>Dale Nagata</li> + <li>Ralf Reinhardt</li> + <li>Philippe Lhoste</li> + <li>Andrew McKinlay</li> + <li>Stephan R. A. Deibel</li> + <li>Hans Eckardt</li> + <li>Vassili Bourdo</li> + <li>Maksim Lin</li> + <li>Robin Dunn</li> + <li>John Ehresman</li> + <li>Steffen Goeldner</li> + <li>Deepak S.</li> + <li>Yann Gaillard</li> + <li>Aubin Paul</li> + <li>Jason Diamond</li> + <li>Ahmad Baitalmal</li> + <li>Paul Winwood</li> + <li>Maxim Baranov</li> + <li>Ragnar Højland</li> + <li>Christian Obrecht</li> + <li>Andreas Neukoetter</li> + <li>Adam Gates</li> + <li>Steve Lhomme</li> + <li>Ferdinand Prantl</li> + <li>Jan Dries</li> + <li>Markus Gritsch</li> + <li>Tahir Karaca</li> + <li>Ahmad Zawawi</li> + <li>Laurent le Tynevez</li> + <li>Walter Braeu</li> + <li>Ashley Cambrell</li> + <li>Garrett Serack</li> + <li>Holger Schmidt</li> + <li><a href="http://www.activestate.com">ActiveState</a></li> + <li>James Larcombe</li> + <li>Alexey Yutkin</li> + <li>Jan Hercek</li> + <li>Richard Pecl</li> + <li>Edward K. Ream</li> + <li>Valery Kondakoff</li> + <li>Smári McCarthy</li> + <li>Clemens Wyss</li> + <li>Simon Steele</li> + <li>Serge A. Baranov</li> + <li>Xavier Nodet</li> + <li>Willy Devaux</li> + <li>David Clain</li> + <li>Brendon Yenson</li> + <li>Vamsi Potluru</li> + <li>Praveen Ambekar</li> + <li>Alan Knowles</li> + <li>Kengo Jinno</li> + <li>Valentin Valchev</li> + <li>Marcos E. Wurzius</li> + <li>Martin Alderson</li> + <li>Robert Gustavsson</li> + <li>José Fonseca</li> + <li>Holger Kiemes</li> + <li>Francis Irving</li> + <li>Scott Kirkwood</li> + <li>Brian Quinlan</li> + <li>Ubi</li> + <li>Michael R. Duerig</li> + <li>Deepak T</li> + <li>Don Paul Beletsky</li> + <li>Gerhard Kalab</li> + <li>Olivier Dagenais</li> + <li>Josh Wingstrom</li> + <li>Bruce Dodson</li> + <li>Sergey Koshcheyev</li> + <li>Chuan-jian Shen</li> + <li>Shane Caraveo</li> + <li>Alexander Scripnik</li> + <li>Ryan Christianson</li> + <li>Martin Steffensen</li> + <li>Jakub Vrána</li> + <li>The Black Horus</li> + <li>Bernd Kreuss</li> + <li>Thomas Lauer</li> + <li>Mike Lansdaal</li> + <li>Yukihiro Nakai</li> + <li>Jochen Tucht</li> + <li>Greg Smith</li> + <li>Steve Schoettler</li> + <li>Mauritius Thinnes</li> + <li>Darren Schroeder</li> + <li>Pedro Guerreiro</li> + <li>Dan Petitt</li> + <li>Biswapesh Chattopadhyay</li> + <li>Kein-Hong Man</li> + <li>Patrizio Bekerle</li> + <li>Nigel Hathaway</li> + <li>Hrishikesh Desai</li> + <li>Sergey Puljajev</li> + <li>Mathias Rauen</li> + <li>Angelo Mandato</li> + <li>Denis Sureau</li> + <li>Kaspar Schiess</li> + <li>Christoph Hösler</li> + <li>João Paulo F Farias</li> + <li>Ron Schofield</li> + <li>Stefan Wosnik</li> + <li>Marius Gheorghe</li> + <li>Naba Kumar</li> + <li>Sean O'Dell</li> + <li>Stefanos Togoulidis</li> + <li>Hans Hagen</li> + <li>Jim Cape</li> + <li>Roland Walter</li> + <li>Brian Mosher</li> + <li>Nicholas Nemtsev</li> + <li>Roy Wood</li> + <li>Peter-Henry Mander</li> + <li>Robert Boucher</li> + <li>Christoph Dalitz</li> + <li>April White</li> + <li>S. Umar</li> + <li>Trent Mick</li> + <li>Filip Yaghob</li> + <li>Avi Yegudin</li> + <li>Vivi Orunitia</li> + <li>Manfred Becker</li> + <li>Dimitris Keletsekis</li> + <li>Yuiga</li> + <li>Davide Scola</li> + <li>Jason Boggs</li> + <li>Reinhold Niesner</li> + <li>Jos van der Zande</li> + <li>Pescuma</li> + <li>Pavol Bosik</li> + <li>Johannes Schmid</li> + <li>Blair McGlashan</li> + <li>Mikael Hultgren</li> + <li>Florian Balmer</li> + <li>Hadar Raz</li> + <li>Herr Pfarrer</li> + <li>Ben Key</li> + <li>Gene Barry</li> + <li>Niki Spahiev</li> + <li>Carsten Sperber</li> + <li>Phil Reid</li> + <li>Iago Rubio</li> + <li>Régis Vaquette</li> + <li>Massimo Corà </li> + <li>Elias Pschernig</li> + <li>Chris Jones</li> + <li>Josiah Reynolds</li> + <li>Robert Roessler <a href="http://www.rftp.com">rftp.com</a></li> + <li>Steve Donovan</li> + <li>Jan Martin Pettersen</li> + <li>Sergey Philippov</li> + <li>Borujoa</li> + <li>Michael Owens</li> + <li>Franck Marcia</li> + <li>Massimo Maria Ghisalberti</li> + <li>Frank Wunderlich</li> + <li>Josepmaria Roca</li> + <li>Tobias Engvall</li> + <li>Suzumizaki Kimitaka</li> + <li>Michael Cartmell</li> + <li>Pascal Hurni</li> + <li>Andre</li> + <li>Randy Butler</li> + <li>Georg Ritter</li> + <li>Michael Goffioul</li> + <li>Ben Harper</li> + <li>Adam Strzelecki</li> + <li>Kamen Stanev</li> + <li>Steve Menard</li> + <li>Oliver Yeoh</li> + <li>Eric Promislow</li> + <li>Joseph Galbraith</li> + <li>Jeffrey Ren</li> + <li>Armel Asselin</li> + <li>Jim Pattee</li> + <li>Friedrich Vedder</li> + <li>Sebastian Pipping</li> + <li>Andre Arpin</li> + <li>Stanislav Maslovski</li> + <li>Martin Stone</li> + <li>Fabien Proriol</li> + <li>mimir</li> + <li>Nicola Civran</li> + </ul> + <p> + Images used in GTK+ version + </p> + <ul> + <li> + <a href="http://sourceforge.net/projects/icon-collection/"> + Icons</a> Copyright(C) 1998 by Dean S. Jones<br /> + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite171.zip?download">Release 1.71</a> + </h3> + <ul> + <li> + Released on 21 August 2006. + </li> + <li> + On GTK+ drag and drop defaults to move rather than copy. + </li> + <li> + Double click notification includes line and position. + </li> + <li> + VB lexer bugs fixed for preprocessor directive below a comment or some other states and + to use string not closed style back to the starting quote when there are internal doubled quotes. + </li> + <li> + C++ lexer allows identifiers to contain '$' and non-ASCII characters such as UTF-8. + The '$' character can be disallowed with lexer.cpp.allow.dollars=0. + </li> + <li> + Perl lexer allows UTF-8 identifiers and has some other small improvements. + </li> + <li> + SciTE's $(CurrentWord) uses word.characters.<filepattern> to define the word + rather than a hardcoded list of word characters. + </li> + <li> + SciTE Export as HTML adds encoding information for UTF-8 file and fixes DOCTYPE. + </li> + <li> + SciTE session and .recent files default to the user properties directory rather than global + properties directory. + </li> + <li> + Left and right scroll events handled correctly on GTK+ and horizontal scroll bar has more sensible + distances for page and arrow clicks. + </li> + <li> + SciTE on GTK+ tab bar fixed to work on recent versions of GTK+. + </li> + <li> + On GTK+, if the approximate character set conversion is unavailable, a second attempt is made + without approximations. This may allow keyboard input and paste to work on older systems. + </li> + <li> + SciTE on GTK+ can redefine the Insert key. + </li> + <li> + SciTE scripting interface bug fixed where some string properties could not be changed. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite170.zip?download">Release 1.70</a> + </h3> + <ul> + <li> + Released on 20 June 2006. + </li> + <li> + On GTK+, character set conversion is performed using an option that allows approximate conversions rather + than failures when a character can not be converted. This may lead to similar characters being inserted or + when no similar character is available a '?' may be inserted. + </li> + <li> + On GTK+, the internationalised IM (Input Method) feature is used for all typed input for all character sets. + </li> + <li> + Scintilla has new margin types SC_MARGIN_BACK and SC_MARGIN_FORE that use the default + style's background and foreground colours (normally white and black) as the background to the margin. + </li> + <li> + Scintilla/GTK+ allows file drops on Windows when drop is of type DROPFILES_DND + as well as text/uri-list. + </li> + <li> + Code page can only be set to one of the listed valid values. + </li> + <li> + Text wrapping fixed for cases where insertion was not wide enough to trigger + wrapping before being styled but was after styling. + </li> + <li> + SciTE find marks are removed before printing or exporting to avoid producing incorrect styles. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite169.zip?download">Release 1.69</a> + </h3> + <ul> + <li> + Released on 29 May 2006. + </li> + <li> + SciTE supports z-order based buffer switching on Ctrl+Tab. + </li> + <li> + Translucent support for selection and whole line markers. + </li> + <li> + SciTE may have per-language abbreviations files. + </li> + <li> + Support for Spice language. + </li> + <li> + On GTK+ autocompletion lists are optimised and use correct selection colours. + </li> + <li> + On GTK+ the URI data type is preferred in drag and drop so that applications + will see files dragged from the shell rather than dragging the text of the file name + into the document. + </li> + <li> + Increased number of margins to 5. + </li> + <li> + Basic lexer allows include directive $include: "file name". + </li> + <li> + SQL lexer no longer bases folding on indentation. + </li> + <li> + Line ends are transformed when copied to clipboard on + Windows/GTK+2 as well as Windows/GTK+ 1. + </li> + <li> + Lexing code masks off the indicator bits on the start style before calling the lexer + to avoid confusing the lexer when an application has used an indicator. + </li> + <li> + SciTE savebefore:yes only saves the file when it has been changed. + </li> + <li> + SciTE adds output.initial.hide setting to allow setting the size of the output pane + without it showing initially. + </li> + <li> + SciTE on Windows Go To dialog allows line number with more digits. + </li> + <li> + Bug in HTML lexer fixed where a segment of PHP could switch scripting language + based on earlier text on that line. + </li> + <li> + Memory bug fixed when freeing regions on GTK+. + Other minor bugs fixed on GTK+. + </li> + <li> + Deprecated GTK+ calls in Scintilla replaced with current calls. + </li> + <li> + Fixed a SciTE bug where closing the final buffer, if read-only, left the text present in an + untitled buffer. + </li> + <li> + Bug fixed in bash lexer that prevented folding. + </li> + <li> + Crash fixed in bash lexer when backslash at end of file. + </li> + <li> + Crash on recent releases of GTK+ 2.x avoided by changing default font from X + core font to Pango font "!Sans". + </li> + <li> + Fix for SciTE properties files where multiline properties continued over completely blank lines. + </li> + <li> + Bug fixed in SciTE/GTK+ director interface where more data available than + buffer size. + </li> + <li> + Minor visual fixes to SciTE splitter on GTK+. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite168.zip?download">Release 1.68</a> + </h3> + <ul> + <li> + Released on 9 March 2006. + </li> + <li> + Translucent drawing implemented for caret line and box indicators. + </li> + <li> + Lexer specifically for TCL is much more accurate than reusing C++ lexer. + </li> + <li> + Support for Inno Setup scripts. + </li> + <li> + Support for Opal language. + </li> + <li> + Calltips may use a new style, STYLE_CALLTIP which allows choosing a + different font for calltips. + </li> + <li> + Python lexer styles comments on decorators. + </li> + <li> + HTML lexer refined handling of "?>" and "%>" within server + side scripts. + </li> + <li> + Batch file lexer improved. + </li> + <li> + Eiffel lexer doesn't treat '.' as a name character. + </li> + <li> + Lua lexer handles length operator, #, and hex literals. + </li> + <li> + Properties file lexer has separate style for keys. + </li> + <li> + PL/SQL folding improved. + </li> + <li> + SciTE Replace dialog always searches in forwards direction. + </li> + <li> + SciTE can detect language of file from initial #! line. + </li> + <li> + SciTE on GTK+ supports output.scroll=2 setting. + </li> + <li> + SciTE can perform an import a properties file from the command line. + </li> + <li> + Set of word characters used for regular expression \< and \>. + </li> + <li> + Bug fixed with SCI_COPYTEXT stopping too early. + </li> + <li> + Bug fixed with splitting lines so that all lines are split. + </li> + <li> + SciTE calls OnSwitchFile when closing one buffer causes a switch to another. + </li> + <li> + SciTE bug fixed where properties were being reevaluated without good reason + after running a macro. + </li> + <li> + Crash fixed when clearing document with some lines contracted in word wrap mode. + </li> + <li> + Palette expands as more entries are needed. + </li> + <li> + SCI_POSITIONFROMPOINT returns more reasonable value when close to + last text on a line. + </li> + <li> + On Windows, long pieces of text may be drawn in segments if they fail to draw + as a whole. + </li> + <li> + Bug fixed with bad drawing when some visual changes made inside SCN_UPDATEUI + notification. + </li> + <li> + SciTE bug fixed with groupundo setting. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite167.zip?download">Release 1.67</a> + </h3> + <ul> + <li> + Released on 17 December 2005. + </li> + <li> + Scintilla checks the paint region more accurately when seeing if an area is being + repainted. Platform layer implementations may need to change for this to take + effect. This fixes some drawing and styling bugs. Also optimized some parts of + marker code to only redraw the line of the marker rather than whole of the margin. + </li> + <li> + Quoted identifier style for SQL. SQL folding performed more simply. + </li> + <li> + Ruby lexer improved to better handle here documents and non-ASCII + characters. + </li> + <li> + Lua lexer supports long string and block comment syntax from Lua 5.1. + </li> + <li> + Bash lexer handles here documents better. + </li> + <li> + JavaScript lexing recognises regular expressions more accurately and includes flag + characters in the regular expression style. This is both in JavaScript files and when + JavaScript is embedded in HTML. + </li> + <li> + Scintilla API provided to reveal how many style bits are needed for the + current lexer. + </li> + <li> + Selection duplicate added. + </li> + <li> + Scintilla API for adding a set of markers to a line. + </li> + <li> + DBCS encodings work on Windows 9x. + </li> + <li> + Convention defined for property names to be used by lexers and folders + so they can be automatically discovered and forwarded from containers. + </li> + <li> + Default bookmark in SciTE changed to a blue sphere image. + </li> + <li> + SciTE stores the time of last asking for a save separately for each buffer + which fixes bugs with automatic reloading. + </li> + <li> + On Windows, pasted text has line ends converted to current preference. + GTK+ already did this. + </li> + <li> + Kid template language better handled by HTML lexer by finishing ASP Python + mode when a ?> is found. + </li> + <li> + SciTE counts number of characters in a rectangular selection correctly. + </li> + <li> + 64-bit compatibility improved. One change that may affect user code is that + the notification message header changed to include a pointer-sized id field + to match the current Windows definition. + </li> + <li> + Empty ranges can no longer be dragged. + </li> + <li> + Crash fixed when calls made that use layout inside the painted notification. + </li> + <li> + Bug fixed where Scintilla created pixmap buffers that were too large leading + to failures when many instances used. + </li> + <li> + SciTE sets the directory of a new file to the directory of the currently + active file. + </li> + <li> + SciTE allows choosing a code page for the output pane. + </li> + <li> + SciTE HTML exporter no longer honours monospaced font setting. + </li> + <li> + Line layout cache in page mode caches the line of the caret. An assertion is + now used to ensure that the layout reentrancy problem that caused this + is easier to find. + </li> + <li> + Speed optimized for long lines and lines containing many control characters. + </li> + <li> + Bug fixed in brace matching in DBCS files where byte inside character + is same as brace. + </li> + <li> + Indent command does not indent empty lines. + </li> + <li> + SciTE bug fixed for commands that operate on files with empty extensions. + </li> + <li> + SciTE bug fixed where monospaced option was copied for subsequently opened files. + </li> + <li> + SciTE on Windows bug fixed in the display of a non-ASCII search string + which can not be found. + </li> + <li> + Bugs fixed with nested calls displaying a new calltip while one is already + displayed. + </li> + <li> + Bug fixed when styling PHP strings. + </li> + <li> + Bug fixed when styling C++ continued preprocessor lines. + </li> + <li> + SciTE bug fixed where opening file from recently used list reset choice of + language. + </li> + <li> + SciTE bug fixed when compiled with NO_EXTENSIONS and + closing one file closes the application. + </li> + <li> + SciTE crash fixed for error messages that look like Lua messages but aren't + in the same order. + </li> + <li> + Remaining fold box support deprecated. The symbols SC_FOLDLEVELBOXHEADERFLAG, + SC_FOLDLEVELBOXFOOTERFLAG, SC_FOLDLEVELCONTRACTED, + SC_FOLDLEVELUNINDENT, and SC_FOLDFLAG_BOX are deprecated. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite166.zip?download">Release 1.66</a> + </h3> + <ul> + <li> + Released on 26 August 2005. + </li> + <li> + New, more ambitious Ruby lexer. + </li> + <li> + SciTE Find in Files dialog has options for matching case and whole words which are + enabled when the internal find command is used. + </li> + <li> + SciTE output pane can display automatic completion after "$(" typed. + An initial ">" on a line is ignored when Enter pressed. + </li> + <li> + C++ lexer recognises keywords within line doc comments. It continues styles over line + end characters more consistently so that eolfilled style can be used for preprocessor lines + and line comments. + </li> + <li> + VB lexer improves handling of file numbers and date literals. + </li> + <li> + Lua folder handles repeat until, nested comments and nested strings. + </li> + <li> + POV lexer improves handling of comment lines. + </li> + <li> + AU3 lexer and folder updated. COMOBJ style added. + </li> + <li> + Bug fixed with text display on GTK+ with Pango 1.8. + </li> + <li> + Caret painting avoided when not focused. + </li> + <li> + SciTE on GTK+ handles file names used to reference properties as case-sensitive. + </li> + <li> + SciTE on GTK+ Save As and Export commands set the file name field. + On GTK+ the Export commands modify the file name in the same way as on Windows. + </li> + <li> + Fixed SciTE problem where confirmation was not displaying when closing a file where all + contents had been deleted. + </li> + <li> + Middle click on SciTE tab now closes correct buffer on Windows when tool bar is visible. + </li> + <li> + SciTE bugs fixed where files contained in directory that includes '.' character. + </li> + <li> + SciTE bug fixed where import in user options was reading file from directory of + global options. + </li> + <li> + SciTE calltip bug fixed where single line calltips had arrow displayed incorrectly. + </li> + <li> + SciTE folding bug fixed where empty lines were shown for no reason. + </li> + <li> + Bug fixed where 2 byte per pixel XPM images caused crash although they are still not + displayed. + </li> + <li> + Autocompletion list size tweaked. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite165.zip?download">Release 1.65</a> + </h3> + <ul> + <li> + Released on 1 August 2005. + </li> + <li> + FreeBasic support. + </li> + <li> + SciTE on Windows handles command line arguments + "-" (read standard input into buffer), + "--" (read standard input into output pane) and + "-@" (read file names from standard input and open each). + </li> + <li> + SciTE includes a simple implementation of Find in Files which is used if no find.command is set. + </li> + <li> + SciTE can close tabs with a mouse middle click. + </li> + <li> + SciTE includes a save.all.for.build setting. + </li> + <li> + Folder for MSSQL. + </li> + <li> + Batch file lexer understands more of the syntax and the behaviour of built in commands. + </li> + <li> + Perl lexer handles here docs better; disambiguates barewords, quote-like delimiters, and repetition operators; + handles Pods after __END__; recognises numbers better; and handles some typeglob special variables. + </li> + <li> + Lisp adds more lexical states. + </li> + <li> + PHP allows spaces after <<<. + </li> + <li> + TADS3 has a simpler set of states and recognizes identifiers. + </li> + <li> + Avenue elseif folds better. + </li> + <li> + Errorlist lexer treats lines starting with '+++' and '---' as separate + styles from '+' and '-' as they indicate file names in diffs. + </li> + <li> + SciTE error recogniser handles file paths in extra explanatory lines from MSVC + and in '+++' and '---' lines from diff. + </li> + <li> + Bugs fixed in SciTE and Scintilla folding behaviour when text pasted before + folded text caused unnecessary + unfolding and cutting text could lead to text being irretrievably hidden. + </li> + <li> + SciTE on Windows uses correct font for dialogs and better font for tab bar + allowing better localisation + </li> + <li> + When Windows is used with a secondary monitor before the primary + monitor, autocompletion lists are not forced onto the primary monitor. + </li> + <li> + Scintilla calltip bug fixed where down arrow setting wrong value in notification + if not in first line. SciTE bug fixed where second arrow only shown on multiple line + calltip and was therefore misinterpreting the notification value. + </li> + <li> + Lexers will no longer be re-entered recursively during, for example, fold level setting. + </li> + <li> + Undo of typing in overwrite mode undoes one character at a time rather than requiring a removal + and addition step for each character. + </li> + <li> + EM_EXSETSEL(0,-1) fixed. + </li> + <li> + Bug fixed where part of a rectangular selection was not shown as selected. + </li> + <li> + Autocomplete window size fixed. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite164.zip?download">Release 1.64</a> + </h3> + <ul> + <li> + Released on 6 June 2005. + </li> + <li> + TADS3 support + </li> + <li> + Smalltalk support. + </li> + <li> + Rebol support. + </li> + <li> + Flagship (Clipper / XBase) support. + </li> + <li> + CSound support. + </li> + <li> + SQL enhanced to support SQL*Plus. + </li> + <li> + SC_MARK_FULLRECT margin marker fills the whole marker margin for marked + lines with a colour. + </li> + <li> + Performance improved for some large undo and redo operations and modification flags + added in notifications. + </li> + <li> + SciTE adds command equivalents for fold margin mouse actions. + </li> + <li> + SciTE adds OnUpdateUI to set of events that can be handled by a Lua script. + </li> + <li> + Properties set in Scintilla can be read. + </li> + <li> + GTK+ SciTE exit confirmation adds Cancel button. + </li> + <li> + More accurate lexing of numbers in PHP and Caml. + </li> + <li> + Perl can fold POD and package sections. POD verbatim section style. + Globbing syntax recognized better. + </li> + <li> + Context menu moved slightly on GTK+ so that it will be under the mouse and will + stay open if just clicked rather than held. + </li> + <li> + Rectangular selection paste works the same whichever direction the selection was dragged in. + </li> + <li> + EncodedFromUTF8 handles -1 length argument as documented. + </li> + <li> + Undo and redo can cause SCN_MODIFYATTEMPTRO notifications. + </li> + <li> + Indicators display correctly when they start at the second character on a line. + </li> + <li> + SciTE Export As HTML uses standards compliant CSS. + </li> + <li> + SciTE automatic indentation handles keywords for indentation better. + </li> + <li> + SciTE fold.comment.python property removed as does not work. + </li> + <li> + Fixed problem with character set conversion when pasting on GTK+. + </li> + <li> + SciTE default character set changed from ANSI_CHARSET to DEFAULT_CHARSET. + </li> + <li> + Fixed crash when creating empty autocompletion list. + </li> + <li> + Autocomplete window size made larger under some conditions to make truncation less common. + </li> + <li> + Bug fixed where changing case of a selection did not affect initial character of lines + in multi-byte encodings. + </li> + <li> + Bug fixed where rectangular selection not displayed after Alt+Shift+Click. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite163.zip?download">Release 1.63</a> + </h3> + <ul> + <li> + Released on 4 April 2005. + </li> + <li> + Autocompletion on Windows changed to use popup window, be faster, + allow choice of maximum width and height, and to highlight only the text of the + selected item rather than both the text and icon if any. + </li> + <li> + Extra items can be added to the context menu in SciTE. + </li> + <li> + Character wrap mode in Scintilla helps East Asian languages. + </li> + <li> + Lexer added for Haskell. + </li> + <li> + Objective Caml support. + </li> + <li> + BlitzBasic and PureBasic support. + </li> + <li> + CSS support updated to handle CSS2. + </li> + <li> + C++ lexer is more selective about document comment keywords. + </li> + <li> + AutoIt 3 lexer improved. + </li> + <li> + Lua lexer styles end of line characters on comment and preprocessor + lines so that the eolfilled style can be applied to them. + </li> + <li> + NSIS support updated for line continuations, box comments, SectionGroup and + PageEx, and with more up-to-date properties. + </li> + <li> + Clarion lexer updated to perform folding and have more styles. + </li> + <li> + SQL lexer gains second set of keywords. + </li> + <li> + Errorlist lexer recognises Borland Delphi error messages. + </li> + <li> + Method added for determining number of visual lines occupied by a document + line due to wrapping. + </li> + <li> + Sticky caret mode does not modify the preferred caret x position when typing + and may be useful for typing columns of text. + </li> + <li> + Dwell end notification sent when scroll occurs. + </li> + <li> + On GTK+, Scintilla requisition height is screen height rather than large fixed value. + </li> + <li> + Case insensitive autocompletion prefers exact case match. + </li> + <li> + SCI_PARADOWN and SCI_PARAUP treat lines containing only white + space as empty and handle text hidden by folding. + </li> + <li> + Scintilla on Windows supports WM_PRINTCLIENT although there are some + limitations. + </li> + <li> + SCN_AUTOCSELECTION notification sent when user selects from autoselection list. + </li> + <li> + SciTE's standard properties file sets buffers to 10, uses Pango fonts on GTK+ and + has dropped several languages to make the menu fit on screen. + </li> + <li> + SciTE's encoding cookie detection loosened so that common XML files will load + in UTF-8 if that is their declared encoding. + </li> + <li> + SciTE on GTK+ changes menus and toolbars to not be detachable unless turned + on with a property. Menus no longer tear off. The toolbar may be set to use the + default theme icons rather than SciTE's set. Changed key for View | End of Line + because of a conflict. Language menu can contain more items. + </li> + <li> + SciTE on GTK+ 2.x allows the height and width of the file open file chooser to + be set, for the show hidden files check box to be set from an option and for it + to be opened in the directory of the current file explicitly. Enter key works in + save chooser. + </li> + <li> + Scintilla lexers should no longer see bits in style bytes that are outside the set + they modify so should be able to correctly lex documents where the container + has used indicators. + </li> + <li> + SciTE no longer asks to save before performing a revert. + </li> + <li> + SciTE director interface adds a reloadproperties command to reload properties + from files. + </li> + <li> + Allow build on CYGWIN platform. + </li> + <li> + Allow use from LccWin compiler. + </li> + <li> + SCI_COLOURISE for SCLEX_CONTAINER causes a + SCN_STYLENEEDED notification. + </li> + <li> + Bugs fixed in lexing of HTML/ASP/JScript. + </li> + <li> + Fix for folding becoming confused. + </li> + <li> + On Windows, fixes for Japanese Input Method Editor and for 8 bit Katakana + characters. + </li> + <li> + Fixed buffer size bug avoided when typing long words by making buffer bigger. + </li> + <li> + Undo after automatic indentation more sensible. + </li> + <li> + SciTE menus on GTK+ uses Shift and Ctrl rather than old style abbreviations. + </li> + <li> + SciTE full screen mode on Windows calculates size more correctly. + </li> + <li> + SciTE on Windows menus work better with skinning applications. + </li> + <li> + Searching bugs fixed. + </li> + <li> + Colours reallocated when changing image using SCI_REGISTERIMAGE. + </li> + <li> + Caret stays visible when Enter held down. + </li> + <li> + Undo of automatic indentation more reasonable. + </li> + <li> + High processor usage fixed in background wrapping under some + circumstances. + </li> + <li> + Crashing bug fixed on AMD64. + </li> + <li> + SciTE crashing bug fixed when position.height or position.width not set. + </li> + <li> + Crashing bug on GTK+ fixed when setting cursor and window is NULL. + </li> + <li> + Crashing bug on GTK+ preedit window fixed. + </li> + <li> + SciTE crashing bug fixed in incremental search on Windows ME. + </li> + <li> + SciTE on Windows has a optional find and replace dialogs that can search through + all buffers and search within a particular style number. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite162.zip?download">Release 1.62</a> + </h3> + <ul> + <li> + Released on 31 October 2004. + </li> + <li> + Lexer added for ASN.1. + </li> + <li> + Lexer added for VHDL. + </li> + <li> + On Windows, an invisible system caret is used to allow screen readers to determine + where the caret is. The visible caret is still drawn by the painting code. + </li> + <li> + On GTK+, Scintilla has methods to read the target as UTF-8 and to convert + a string from UTF-8 to the document encoding. This eases integration with + containers that use the UTF-8 encoding which is the API encoding for GTK+ 2. + </li> + <li> + SciTE on GTK+2 and Windows NT/2000/XP allows search and replace of Unicode text. + </li> + <li> + SciTE calltips allow setting the characters used to start and end parameter lists and + to separate parameters. + </li> + <li> + FindColumn method converts a line and column into a position, taking into account + tabs and multi-byte characters. + </li> + <li> + On Windows, when Scintilla copies text to the clipboard as Unicode, it avoids + adding an ANSI copy as the system will automatically convert as required in + a context-sensitive manner. + </li> + <li> + SciTE indent.auto setting automatically determines indent.size and use.tabs from + document contents. + </li> + <li> + SciTE defines a CurrentMessage property that holds the most recently selected + output pane message. + </li> + <li> + SciTE Lua scripting enhanced with + <ul> + <li>A Lua table called 'buffer' is associated with each buffer and can be used to + maintain buffer-specific state.</li> + <li>A 'scite' object allows interaction with the application such as opening + files from script.</li> + <li>Dynamic properties can be reset by assigning nil to a given key in + the props table.</li> + <li>An 'OnClear' event fires whenever properties and extension scripts are + about to be reloaded.</li> + <li>On Windows, loadlib is enabled and can be used to access Lua + binary modules / DLLs.</li></ul> + </li> + <li> + SciTE Find in Files on Windows can be used in a modeless way and gains a '..' + button to move up to the parent directory. It is also wider so that longer paths + can be seen. + </li> + <li> + Close buttons added to dialogs in SciTE on Windows. + </li> + <li> + SciTE on GTK+ 2 has a "hidden files" check box in file open dialog. + </li> + <li> + SciTE use.monospaced setting removed. More information in the + <a href="SciTEFAQ.html">FAQ</a>. + </li> + <li> + APDL lexer updated with more lexical classes + </li> + <li> + AutoIt3 lexer updated. + </li> + <li> + Ada lexer fixed to support non-ASCII text. + </li> + <li> + Cpp lexer now only matches exactly three slashes as starting a doc-comment so that + lines of slashes are seen as a normal comment. + Line ending characters are appear in default style on preprocessor and single line + comment lines. + </li> + <li> + CSS lexer updated to support CSS2 including second set of keywords. + </li> + <li> + Errorlist lexer now understands Java stack trace lines. + </li> + <li> + SciTE's handling of HTML Tidy messages jumps to column as well as line indicated. + </li> + <li> + Lisp lexer allows multiline strings. + </li> + <li> + Lua lexer treats .. as an operator when between identifiers. + </li> + <li> + PHP lexer handles 'e' in numerical literals. + </li> + <li> + PowerBasic lexer updated for macros and optimised. + </li> + <li> + Properties file folder changed to leave lines before a header at the base level + and thus avoid a vertical line when using connected folding symbols. + </li> + <li> + GTK+ on Windows version uses Alt for rectangular selection to be compatible with + platform convention. + </li> + <li> + SciTE abbreviations file moved from system directory to user directory + so each user can have separate abbreviations. + </li> + <li> + SciTE on GTK+ has improved .desktop file and make install support that may + lead to better integration with system shell. + </li> + <li> + Disabling of themed background drawing on GTK+ extended to all cases. + </li> + <li> + SciTE date formatting on Windows performed with the user setting rather than the + system setting. + </li> + <li> + GTK+ 2 redraw while scrolling fixed. + </li> + <li> + Recursive property definitions are safer, avoiding expansion when detected. + </li> + <li> + SciTE thread synchronization for scripts no longer uses HWND_MESSAGE + so is compatible with older versions of Windows. + Other Lua scripting bugs fixed. + </li> + <li> + SciTE on Windows localisation of menu accelerators changed to be compatible + with alternative UI themes. + </li> + <li> + SciTE on Windows full screen mode now fits better when menu different height + to title bar height. + </li> + <li> + SC_MARK_EMPTY marker is now invisible and does not change the background + colour. + </li> + <li> + Bug fixed in HTML lexer to allow use of <?xml in strings in scripts without + triggering xml mode. + </li> + <li> + Bug fixed in SciTE abbreviation expansion that could break indentation or crash. + </li> + <li> + Bug fixed when searching for a whole word string that ends one character before + end of document. + </li> + <li> + Drawing bug fixed when indicators drawn on wrapped lines. + </li> + <li> + Bug fixed when double clicking a hotspot. + </li> + <li> + Bug fixed where autocompletion would remove typed text if no match found. + </li> + <li> + Bug fixed where display does not scroll when inserting in long wrapped line. + </li> + <li> + Bug fixed where SCI_MARKERDELETEALL would only remove one of the markers + on a line that contained multiple markers with the same number. + </li> + <li> + Bug fixed where markers would move when converting line endings. + </li> + <li> + Bug fixed where SCI_LINEENDWRAP would move too far when line ends are visible. + </li> + <li> + Bugs fixed where calltips with unicode or other non-ASCII text would display + incorrectly. + </li> + <li> + Bug fixed in determining if at save point after undoing from save point and then + performing changes. + </li> + <li> + Bug fixed on GTK+ using unsupported code pages where extraneous text could + be drawn. + </li> + <li> + Bug fixed in drag and drop code on Windows where dragging from SciTE to + Firefox could hang both applications. + </li> + <li> + Crashing bug fixed on GTK+ when no font allocation succeeds. + </li> + <li> + Crashing bug fixed when autocompleting word longer than 1000 characters. + </li> + <li> + SciTE crashing bug fixed when both Find and Replace dialogs shown by disallowing + this situation. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite161.zip?download">Release 1.61</a> + </h3> + <ul> + <li> + Released on 29 May 2004. + </li> + <li> + Improvements to selection handling on GTK+. + </li> + <li> + SciTE on GTK+ 2.4 uses the improved file chooser which allows + file extension filters, multiple selection, and remembers favourite + directories. + </li> + <li> + SciTE Load Session and Save Session commands available on GTK+. + </li> + <li> + SciTE lists Lua Startup Script in Options menu when loaded. + </li> + <li> + In SciTE, OnUserListSelection can be implemented in Lua. + </li> + <li> + SciTE on Windows has a context menu on the file tabs. + </li> + <li> + SQL lexer allows '#' comments and optionally '\' quoting inside strings. + </li> + <li> + Mssql lexer improved. + </li> + <li> + AutoIt3 lexer updated. + </li> + <li> + Perl lexer recognizes regular expression use better. + </li> + <li> + Errorlist lexer understands Lua tracebacks and copes with findstr + output for file names that end with digits. + </li> + <li> + Drawing of lines on GTK+ improved and made more like Windows + without final point. + </li> + <li> + SciTE on GTK+ uses a high resolution window icon. + </li> + <li> + SciTE can be set to warn before loading files larger than a particular size. + </li> + <li> + SciTE Lua scripting bugs fixed included a crashing bug when using + an undefined function name that would go before first actual name. + </li> + <li> + SciTE bug fixed where a modified buffer was not saved if it was + the last buffer and was not current when the New command used. + </li> + <li> + SciTE monofont mode no longer affects line numbers. + </li> + <li> + Crashing bug in SciTE avoided by not allowing both the Find and Replace + dialogs to be visible at one time. + </li> + <li> + Crashing bug in SciTE fixed when Lua scripts were being run + concurrently. + </li> + <li> + Bug fixed that caused incorrect line number width in SciTE. + </li> + <li> + PHP folding bug fixed. + </li> + <li> + Regression fixed when setting word characters to not include + some of the standard word characters. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite160.zip?download">Release 1.60</a> + </h3> + <ul> + <li> + Released on 1 May 2004. + </li> + <li> + SciTE can be scripted using the Lua programming language. + </li> + <li> + command.mode is a better way to specify tool command options in SciTE. + </li> + <li> + Continuation markers can be displayed so that you can see which lines are wrapped. + </li> + <li> + Lexer for Gui4Cli language. + </li> + <li> + Lexer for Kix language. + </li> + <li> + Lexer for Specman E language. + </li> + <li> + Lexer for AutoIt3 language. + </li> + <li> + Lexer for APDL language. + </li> + <li> + Lexer for Bash language. Also reasonable for other Unix shells. + </li> + <li> + SciTE can load lexers implemented in external shared libraries. + </li> + <li> + Perl treats "." not as part of an identifier and interprets '/' and '->' + correctly in more circumstances. + </li> + <li> + PHP recognises variables within strings. + </li> + <li> + NSIS has properties "nsis.uservars" and "nsis.ignorecase". + </li> + <li> + MSSQL lexer adds keyword list for operators and stored procedures, + defines '(', ')', and ',' as operators and changes some other details. + </li> + <li> + Input method preedit window on GTK+ 2 may support some Asian languages. + </li> + <li> + Platform interface adds an extra platform-specific flag to Font::Create. + Used on wxWidgets to choose antialiased text display but may be used for + any task that a platform needs. + </li> + <li> + OnBeforeSave method added to Extension interface. + </li> + <li> + Scintilla methods that return strings can be called with a NULL pointer + to find out how long the string should be. + </li> + <li> + Visual Studio .NET project file now in VS .NET 2003 format so can not be used + directly in VS .NET 2002. + </li> + <li> + Scintilla can be built with GTK+ 2 on Windows. + </li> + <li> + Updated RPM spec for SciTE on GTK+. + </li> + <li> + GTK+ makefile for SciTE allows selection of destination directory, creates destination + directories and sets file modes and owners better. + </li> + <li> + Tab indents now go to next tab multiple rather than add tab size. + </li> + <li> + SciTE abbreviations now use the longest possible match rather than the shortest. + </li> + <li> + Autocompletion does not remove prefix when actioned with no choice selected. + </li> + <li> + Autocompletion cancels when moving beyond the start position, not at the start position. + </li> + <li> + SciTE now shows only calltips for functions that match exactly, not + those that match as a prefix. + </li> + <li> + SciTE can repair box comment sections where some lines were added without + the box comment middle line prefix. + </li> + <li> + Alt+ works in user.shortcuts on Windows. + </li> + <li> + SciTE on GTK+ enables replace in selection for rectangular selections. + </li> + <li> + Key bindings for command.shortcut implemented in a way that doesn't break + when the menus are localised. + </li> + <li> + Drawing of background on GTK+ faster as theme drawing disabled. + </li> + <li> + On GTK+, calltips are moved back onto the screen if they extend beyond the screen bounds. + </li> + <li> + On Windows, the Scintilla object is destroyed on WM_NCDESTROY rather than + WM_DESTROY which arrives earlier. This fixes some problems when Scintilla was subclassed. + </li> + <li> + The zorder switching feature removed due to number of crashing bugs. + </li> + <li> + Code for XPM images made more robust. + </li> + <li> + Bug fixed with primary selection on GTK+. + </li> + <li> + On GTK+ 2, copied or cut text can still be pasted after the Scintilla widget is destroyed. + </li> + <li> + Styling change not visible problem fixed when line was cached. + </li> + <li> + Bug in SciTE on Windows fixed where clipboard commands stopped working. + </li> + <li> + Crashing bugs in display fixed in line layout cache. + </li> + <li> + Crashing bug may be fixed on AMD64 processor on GTK+. + </li> + <li> + Rare hanging crash fixed in Python lexer. + </li> + <li> + Display bugs fixed with DBCS characters on GTK+. + </li> + <li> + Autocompletion lists on GTK+ 2 are not sorted by the ListModel as the + contents are sorted correctly by Scintilla. + </li> + <li> + SciTE fixed to not open extra untitled buffers with check.if.already.open. + </li> + <li> + Sizing bug fixed on GTK+ when window resized while unmapped. + </li> + <li> + Text drawing crashing bug fixed on GTK+ with non-Pango fonts and long strings. + </li> + <li> + Fixed some issues if characters are unsigned. + </li> + <li> + Fixes in NSIS support. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite159.zip?download">Release 1.59</a> + </h3> + <ul> + <li> + Released on 19 February 2004. + </li> + <li> + SciTE Options and Language menus reduced in length by commenting + out some languages. Languages can be enabled by editing the global + properties file. + </li> + <li> + Verilog language supported. + </li> + <li> + Lexer for Microsoft dialect of SQL. SciTE properties file available from extras page. + </li> + <li> + Perl lexer disambiguates '/' better. + </li> + <li> + NSIS lexer improved with a lexical class for numbers, option for ignoring case + of keywords, and folds only occurring when folding keyword first on line. + </li> + <li> + PowerBasic lexer improved with styles for constants and assembler and + folding improvements. + </li> + <li> + On GTK+, input method support only invoked for Asian languages and not + European languages as the old European keyboard code works better. + </li> + <li> + Scintilla can be requested to allocate a certain amount and so avoid repeated + reallocations and memory inefficiencies. SciTE uses this and so should require + less memory. + </li> + <li> + SciTE's "toggle current fold" works when invoked on child line as well as + fold header. + </li> + <li> + SciTE output pane scrolling can be set to not scroll back to start after + completion of command. + </li> + <li> + SciTE has a $(SessionPath) property. + </li> + <li> + SciTE on Windows can use VK_* codes for keys in user.shortcuts. + </li> + <li> + Stack overwrite bug fixed in SciTE's command to move to the end of a + preprocessor conditional. + </li> + <li> + Bug fixed where vertical selection appeared to select a different set of characters + then would be used by, for example, a copy. + </li> + <li> + SciTE memory leak fixed in fold state remembering. + </li> + <li> + Bug fixed where changing the style of some text outside the + standard StyleNeeded notification would not be visible. + </li> + <li> + On GTK+ 2 g_iconv is used in preference to iconv, as it is provided by GTK+ + so should avoid problems finding the iconv library. + </li> + <li> + On GTK+ fixed a style reference count bug. + </li> + <li> + Memory corruption bug fixed with GetSelText. + </li> + <li> + On Windows Scintilla deletes memory on WM_NCDESTROY rather than + the earlier WM_DESTROY to avoid problems when the window is subclassed. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite158.zip?download">Release 1.58</a> + </h3> + <ul> + <li> + Released on 11 January 2004. + </li> + <li> + Method to discover the currently highlighted element in an autocompletion list. + </li> + <li> + On GTK+, the lexers are now included in the scintilla.a library file. This + will require changes to the make files of dependent projects. + </li> + <li> + Octave support added alongside related Matlab language and Matlab support improved. + </li> + <li> + VB lexer gains an unterminated string state and 4 sets of keywords. + </li> + <li> + Ruby lexer handles $' correctly. + </li> + <li> + Error line handling improved for FORTRAN compilers from Absoft and Intel. + </li> + <li> + International input enabled on GTK+ 2 although there is no way to choose an + input method. + </li> + <li> + MultiplexExtension in SciTE allows multiple extensions to be used at once. + </li> + <li> + Regular expression replace interprets backslash expressions \a, \b, \f, \n, \r, \t, + and \v in the replacement value. + </li> + <li> + SciTE Replace dialog displays number of replacements made when Replace All or + Replace in Selection performed. + </li> + <li> + Localisation files may contain a translation.encoding setting which is used + on GTK+ 2 to automatically reencode the translation to UTF-8 so it will be + the localised text will be displayed correctly. + </li> + <li> + SciTE on GTK+ implements check.if.already.open. + </li> + <li> + Make files for Mac OS X made more robust. + </li> + <li> + Performance improved in SciTE when switching buffers when there + is a rectangular selection. + </li> + <li> + Fixed failure to display some text when wrapped. + </li> + <li> + SciTE crashes from Ctrl+Tab buffer cycling fixed. + May still be some rare bugs here. + </li> + <li> + Crash fixed when decoding an error message that appears similar to a + Borland error message. + </li> + <li> + Fix to auto-scrolling allows containers to implement enhanced double click selection. + </li> + <li> + Hang fixed in idle word wrap. + </li> + <li> + Crash fixed in hotspot display code.. + </li> + <li> + SciTE on Windows Incremental Search no longer moves caret back. + </li> + <li> + SciTE hang fixed when performing a replace with a find string that + matched zero length strings such as ".*". + </li> + <li> + SciTE no longer styles the whole file when saving buffer fold state + as that was slow. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite157.zip?download">Release 1.57</a> + </h3> + <ul> + <li> + Released on 27 November 2003. + </li> + <li> + SciTE remembers folding of each buffer. + </li> + <li> + Lexer for Erlang language. + </li> + <li> + Scintilla allows setting the set of white space characters. + </li> + <li> + Scintilla has 'stuttered' page movement commands to first move + to top or bottom within current visible lines before scrolling. + </li> + <li> + Scintilla commands for moving to end of words. + </li> + <li> + Incremental line wrap enabled on Windows. + </li> + <li> + SciTE PDF exporter produces output that is more compliant with reader + applications, is smaller and allows more configuration. + HTML exporter optimizes size of output files. + </li> + <li> + SciTE defines properties PLAT_WINNT and PLAT_WIN95 on the + corresponding platforms. + </li> + <li> + SciTE can adjust the line margin width to fit the largest line number. + The line.numbers property is split between line.margin.visible and + line.margin.width. + </li> + <li> + SciTE on GTK+ allows user defined menu accelerators. + Alt can be included in user.shortcuts. + </li> + <li> + SciTE Language menu can have items commented out. + </li> + <li> + SciTE on Windows Go to dialog allows choosing a column number as + well as a line number. + </li> + <li> + SciTE on GTK+ make file uses prefix setting more consistently. + </li> + <li> + Bug fixed that caused word wrapping to fail to display all text. + </li> + <li> + Crashing bug fixed in GTK+ version of Scintilla when using GDK fonts + and opening autocompletion. + </li> + <li> + Bug fixed in Scintilla SCI_GETSELTEXT where an extra NUL + was included at end of returned string + </li> + <li> + Crashing bug fixed in SciTE z-order switching implementation. + </li> + <li> + Hanging bug fixed in Perl lexer. + </li> + <li> + SciTE crashing bug fixed for using 'case' without argument in style definition. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite156.zip?download">Release 1.56</a> + </h3> + <ul> + <li> + Released on 25 October 2003. + </li> + <li> + Rectangular selection can be performed using the keyboard. + Greater programmatic control over rectangular selection. + This has caused several changes to key bindings. + </li> + <li> + SciTE Replace In Selection works on rectangular selections. + </li> + <li> + Improved lexer for TeX, new lexer for Metapost and other support for these + languages. + </li> + <li> + Lexer for PowerBasic. + </li> + <li> + Lexer for Forth. + </li> + <li> + YAML lexer improved to include error styling. + </li> + <li> + Perl lexer improved to correctly handle more cases. + </li> + <li> + Assembler lexer updated to support single-quote strings and fix some + problems. + </li> + <li> + SciTE on Windows can switch between buffers in order of use (z-order) rather + than static order. + </li> + <li> + SciTE supports adding an extension for "Open Selected Filename". + The openpath setting works on GTK+. + </li> + <li> + SciTE can Export as XML. + </li> + <li> + SciTE $(SelHeight) variable gives a more natural result for empty and whole line + selections. + </li> + <li> + Fixes to wrapping problems, such as only first display line being visible in some + cases. + </li> + <li> + Fixes to hotspot to only highlight when over the hotspot, only use background + colour when set and option to limit hotspots to a single line. + </li> + <li> + Small fixes to FORTRAN lexing and folding. + </li> + <li> + SQL lexer treats single quote strings as a separate class to double quote strings.. + </li> + <li> + Scintilla made compatible with expectations of container widget in GTK+ 2.3. + </li> + <li> + Fix to strip out pixmap ID when automatically choosing from an autocompletion + list with only one element. + </li> + <li> + SciTE bug fixed where UTF-8 files longer than 128K were gaining more than one + BOM. + </li> + <li> + Crashing bug fixed in SciTE on GTK+ where using "Stop Executing" twice leads + to all applications exiting. + </li> + <li> + Bug fixed in autocompletion scrolling on GTK+ 2 with a case sensitive list. + The ListBox::Sort method is no longer needed or available so platform + maintainers should remove it. + </li> + <li> + SciTE check.if.already.open setting removed from GTK+ version as unmaintained. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite155.zip?download">Release 1.55</a> + </h3> + <ul> + <li> + Released on 25 September 2003. + </li> + <li> + Fix a crashing bug in indicator display in Scintilla. + </li> + <li> + GTK+ version now defaults to building for GTK+ 2 rather than 1. + </li> + <li> + Mingw make file detects compiler version and avoids options + that are cause problems for some versions. + </li> + <li> + Large performance improvement on GTK+ 2 for long lines. + </li> + <li> + Incremental line wrap on GTK+. + </li> + <li> + International text entry works much better on GTK+ with particular + improvements for Baltic languages and languages that use 'dead' accents. + NUL key events such as those generated by some function keys, ignored. + </li> + <li> + Unicode clipboard support on GTK+. + </li> + <li> + Indicator type INDIC_BOX draws a rectangle around the text. + </li> + <li> + Clarion language support. + </li> + <li> + YAML language support. + </li> + <li> + MPT LOG language support. + </li> + <li> + On Windows, SciTE can switch buffers based on activation order rather + than buffer number. + </li> + <li> + SciTE save.on.deactivate saves all buffers rather than just the current buffer. + </li> + <li> + Lua lexer handles non-ASCII characters correctly. + </li> + <li> + Error lexer understands Borland errors with pathnames that contain space. + </li> + <li> + On GTK+ 2, autocompletion uses TreeView rather than deprecated CList. + </li> + <li> + SciTE autocompletion removed when expand abbreviation command used. + </li> + <li> + SciTE calltips support overloaded functions. + </li> + <li> + When Save fails in SciTE, choice offered to Save As. + </li> + <li> + SciTE message boxes on Windows may be moved to front when needed. + </li> + <li> + Indicators drawn correctly on wrapped lines. + </li> + <li> + Regular expression search no longer matches characters with high bit + set to characters without high bit set. + </li> + <li> + Hang fixed in backwards search in multi byte character documents. + </li> + <li> + Hang fixed in SciTE Mark All command when wrap around turned off. + </li> + <li> + SciTE Incremental Search no longer uses hot keys on Windows. + </li> + <li> + Calltips draw non-ASCII characters correctly rather than as arrows. + </li> + <li> + SciTE crash fixed when going to an error message with empty file name. + </li> + <li> + Bugs fixed in XPM image handling code. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite154.zip?download">Release 1.54</a> + </h3> + <ul> + <li> + Released on 12 August 2003. + </li> + <li> + SciTE on GTK+ 2.x can display a tab bar. + </li> + <li> + SciTE on Windows provides incremental search. + </li> + <li> + Lexer for PostScript. + </li> + <li> + Lexer for the NSIS scripting language. + </li> + <li> + New lexer for POV-Ray Scene Description Language + replaces previous implementation. + </li> + <li> + Lexer for the MMIX Assembler language. + </li> + <li> + Lexer for the Scriptol language. + </li> + <li> + Incompatibility: SQL keywords are specified in lower case rather than upper case. + SQL lexer allows double quoted strings. + </li> + <li> + Pascal lexer: character constants that start with '#' understood, + '@' only allowed within assembler blocks, + '$' can be the start of a number, + initial '.' in 0..constant not treated as part of a number, + and assembler blocks made more distinctive. + </li> + <li> + Lua lexer allows '.' in keywords. + Multi-line strings and comments can be folded. + </li> + <li> + CSS lexer handles multiple psuedoclasses. + </li> + <li> + Properties file folder works for INI file format. + </li> + <li> + Hidden indicator style allows the container to mark text within Scintilla + without there being any visual effect. + </li> + <li> + SciTE does not prompt to save changes when the buffer is empty and untitled. + </li> + <li> + Modification notifications caused by SCI_INSERTSTYLEDSTRING + now include the contents of the insertion. + </li> + <li> + SCI_MARKERDELETEALL deletes all the markers on a line + rather than just the first match. + </li> + <li> + Better handling of 'dead' accents on GTK+ 2 for languages + that use accented characters. + </li> + <li> + SciTE now uses value of output.vertical.size property. + </li> + <li> + Crash fixed in SciTE autocompletion on long lines. + </li> + <li> + Crash fixed in SciTE comment command on long lines. + </li> + <li> + Bug fixed with backwards regular expression search skipping + every second match. + </li> + <li> + Hang fixed with regular expression replace where both target and replacement were empty. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite153.zip?download">Release 1.53</a> + </h3> + <ul> + <li> + Released on 16 May 2003. + </li> + <li> + On GTK+ 2, encodings other than ASCII, Latin1, and Unicode are + supported for both display and input using iconv. + </li> + <li> + External lexers supported on GTK+/Linux. + External lexers must now be explicitly loaded with SCI_LOADLEXERLIBRARY + rather than relying upon a naming convention and automatic loading. + </li> + <li> + Support of Lout typesetting language. + </li> + <li> + Support of E-Scripts language used in the POL Ultima Online Emulator. + </li> + <li> + Scrolling and drawing performance on GTK+ enhanced, particularly for GTK+ 2.x + with an extra window for the text area avoiding conflicts with the scroll bars. + </li> + <li> + CopyText and CopyRange methods in Scintilla allow container to + easily copy to the system clipboard. + </li> + <li> + Line Copy command implemented and bound to Ctrl+Shift+T. + </li> + <li> + Scintilla APIs PositionBefore and PositionAfter can be used to iterate through + a document taking into account the encoding and multi-byte characters. + </li> + <li> + C++ folder can fold on the "} else {" line of an if statement by setting + fold.at.else property to 1. + </li> + <li> + C++ lexer allows an extra set of keywords. + </li> + <li> + Property names and thus abbreviations may be non-ASCII. + </li> + <li> + Removed attempt to load a file when setting properties that was + part of an old scripting experiment. + </li> + <li> + SciTE no longer warns about a file not existing when opening + properties files from the Options menu as there is a good chance + the user wants to create one. + </li> + <li> + Bug fixed with brace recognition in multi-byte encoded files where a partial + character matched a brace byte. + </li> + <li> + More protection against infinite loops or recursion with recursive property definitions. + </li> + <li> + On Windows, cursor will no longer disappear over margins in custom builds when + cursor resource not present. The Windows default cursor is displayed instead. + </li> + <li> + load.on.activate fixed in SciTE as was broken in 1.52. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite152.zip?download">Release 1.52</a> + </h3> + <ul> + <li> + Released on 17 April 2003. + </li> + <li> + Pango font support on GTK+ 2. + Unicode input improved on GTK+ 2. + </li> + <li> + Hotspot style implemented in Scintilla. + </li> + <li> + Small up and down arrows can be displayed in calltips and the container + is notified when the mouse is clicked on a calltip. + Normal and selected calltip text colours can be set. + </li> + <li> + POSIX compatibility flag in Scintilla regular expression search + interprets bare ( and ) as tagged sections. + </li> + <li> + Error message lexer tightened to yield fewer false matches. + Recognition of Lahey and Intel FORTRAN error formats. + </li> + <li> + Scintilla keyboard commands for moving to start and end of + screen lines rather than document lines, unless already there + where these keys move to the start or end of the document line. + </li> + <li> + Line joining command. + </li> + <li> + Lexer for POV-Ray. + </li> + <li> + Calltips on Windows are no longer clipped by the parent window. + </li> + <li> + Autocompletion lists are cancelled when focus leaves their parent window. + </li> + <li> + Move to next/previous empty line delimited paragraph key commands. + </li> + <li> + SciTE hang fixed with recursive property definitions by placing limit + on number of substitutions performed. + </li> + <li> + SciTE Export as PDF reenabled and works. + </li> + <li> + Added loadsession: command line command to SciTE. + </li> + <li> + SciTE option to quit application when last document closed. + </li> + <li> + SciTE option to ask user if it is OK to reload a file that has been + modified outside SciTE. + </li> + <li> + SciTE option to automatically save before running particular command tools + or to ask user or to not save. + </li> + <li> + SciTE on Windows 9x will write a Ctrl+Z to the process input pipe before + closing the pipe when running tool commands that take input. + </li> + <li> + Added a manifest resource to SciTE on Windows to enable Windows XP + themed UI. + </li> + <li> + SciTE calltips handle nested calls and other situations better. + </li> + <li> + CSS lexer improved. + </li> + <li> + Interface to platform layer changed - Surface initialisation now requires + a WindowID parameter. + </li> + <li> + Bug fixed with drawing or measuring long pieces of text on Windows 9x + by truncating the pieces. + </li> + <li> + Bug fixed with SciTE on GTK+ where a user shortcut for a visible character + inserted the character as well as executing the command. + </li> + <li> + Bug fixed where primary selection on GTK+ was reset by + Scintilla during creation. + </li> + <li> + Bug fixed where SciTE would close immediately on startup + when using save.session. + </li> + <li> + Crash fixed when entering '\' in LaTeX file. + </li> + <li> + Hang fixed when '#' last character in VB file. + </li> + <li> + Crash fixed in error message lexer. + </li> + <li> + Crash fixed when searching for long regular expressions. + </li> + <li> + Pressing return when nothing selected in user list sends notification with + empty text rather than random text. + </li> + <li> + Mouse debouncing disabled on Windows as it interfered with some + mouse utilities. + </li> + <li> + Bug fixed where overstrike mode inserted before rather than replaced last + character in document. + </li> + <li> + Bug fixed with syntax highlighting of Japanese text. + </li> + <li> + Bug fixed in split lines function. + </li> + <li> + Cosmetic fix to SciTE tab bar on Windows when window resized. + Focus sticks to either pane more consistently. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite151.zip?download">Release 1.51</a> + </h3> + <ul> + <li> + Released on 16 February 2003. + </li> + <li> + Two phase drawing avoids cutting off text that overlaps runs by drawing + all the backgrounds of a line then drawing all the text transparently. + Single phase drawing is an option. + </li> + <li> + Scintilla method to split lines at a particular width by adding new line + characters. + </li> + <li> + The character used in autocompletion lists to separate the text from the image + number can be changed. + </li> + <li> + The scrollbar range will automatically expand when the caret is moved + beyond the current range. + The scroll bar is updated when SCI_SETXOFFSET is called. + </li> + <li> + Mouse cursors on GTK+ improved to be consistent with other applications + and the Windows version. + </li> + <li> + Horizontal scrollbar on GTK+ now disappears in wrapped mode. + </li> + <li> + Scintilla on GTK+ 2: mouse wheel scrolling, cursor over scrollbars, focus, + and syntax highlighting now work. + gtk_selection_notify avoided for compatibility with GTK+ 2.2. + </li> + <li> + Fold margin colours can now be set. + </li> + <li> + SciTE can be built for GTK+ 2. + </li> + <li> + SciTE can optionally preserve the undo history over an automatic file reload. + </li> + <li> + Tags can optionally be case insensitive in XML and HTML. + </li> + <li> + SciTE on Windows handles input to tool commands in a way that should avoid + deadlock. Output from tools can be used to replace the selection. + </li> + <li> + SciTE on GTK+ automatically substitutes '|' for '/' in menu items as '/' + is used to define the menu hierarchy. + </li> + <li> + Optional buffer number in SciTE title bar. + </li> + <li> + Crash fixed in SciTE brace matching. + </li> + <li> + Bug fixed where automatic scrolling past end of document + flipped back to the beginning. + </li> + <li> + Bug fixed where wrapping caused text to disappear. + </li> + <li> + Bug fixed on Windows where images in autocompletion lists were + shown on the wrong item. + </li> + <li> + Crash fixed due to memory bug in autocompletion lists on Windows. + </li> + <li> + Crash fixed when double clicking some error messages. + </li> + <li> + Bug fixed in word part movement where sometimes no movement would occur. + </li> + <li> + Bug fixed on Windows NT where long text runs were truncated by + treating NT differently to 9x where there is a limitation. + </li> + <li> + Text in not-changeable style works better but there remain some cases where + it is still possible to delete text protected this way. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite150.zip?download">Release 1.50</a> + </h3> + <ul> + <li> + Released on 24 January 2003. + </li> + <li> + Autocompletion lists may have a per-item pixmap. + </li> + <li> + Autocompletion lists allow Unicode text on Windows. + </li> + <li> + Scintilla documentation rewritten. + </li> + <li> + Additional DBCS encoding support in Scintilla on GTK+ primarily aimed at + Japanese EUC encoding. + </li> + <li> + CSS (Cascading Style Sheets) lexer added. + </li> + <li> + diff lexer understands some more formats. + </li> + <li> + Fold box feature is an alternative way to show the structure of code. + </li> + <li> + Avenue lexer supports multiple keyword lists. + </li> + <li> + The caret may now be made invisible by setting the caret width to 0. + </li> + <li> + Python folder attaches comments before blocks to the next block rather + than the previous block. + </li> + <li> + SciTE openpath property on Windows searches a path for files that are + the subject of the Open Selected Filename command. + </li> + <li> + The localisation file name can be changed with the locale.properties property. + </li> + <li> + On Windows, SciTE can pipe the result of a string expression into a command line tool. + </li> + <li> + On Windows, SciTE's Find dialog has a Mark All button. + </li> + <li> + On Windows, there is an Insert Abbreviation command that allows a choice from + the defined abbreviations and inserts the selection into the abbreviation at the + position of a '|'. + </li> + <li> + Minor fixes to Fortran lexer. + </li> + <li> + fold.html.preprocessor decides whether to fold <? and ?>. + Minor improvements to PHP folding. + </li> + <li> + Maximum number of keyword lists allowed increased from 6 to 9. + </li> + <li> + Duplicate line command added with default assignment to Ctrl+D. + </li> + <li> + SciTE sets $(Replacements) to the number of replacements made by the + Replace All command. $(CurrentWord) is set to the word before the caret if the caret + is at the end of a word. + </li> + <li> + Opening a SciTE session now loads files in remembered order, sets the current file + as remembered, and moves the caret to the remembered line. + </li> + <li> + Bugs fixed with printing on Windows where line wrapping was causing some text + to not print. + </li> + <li> + Bug fixed with Korean Input Method Editor on Windows. + </li> + <li> + Bugs fixed with line wrap which would sometimes choose different break positions + after switching focus away and back. + </li> + <li> + Bug fixed where wheel scrolling had no effect on GTK+ after opening a fold. + </li> + <li> + Bug fixed with file paths containing non-ASCII characters on Windows. + </li> + <li> + Crash fixed with printing on Windows after defining pixmap marker. + </li> + <li> + Crash fixed in makefile lexer when first character on line was '='. + </li> + <li> + Bug fixed where local properties were not always being applied. + </li> + <li> + Ctrl+Keypad* fold command works on GTK+. + </li> + <li> + Hangs fixed in SciTE's Replace All command when replacing regular expressions '^' + or '$'. + </li> + <li> + SciTE monospace setting behaves more sensibly. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite149.zip?download">Release 1.49</a> + </h3> + <ul> + <li> + Released on 1 November 2002. + </li> + <li> + Unicode supported on GTK+. To perform well, this added a font cache to GTK+ + and to make that safe, a mutex is used. The mutex requires the application to link in + the threading library by evaluating `glib-config --libs gthread`. A Unicode locale + should also be set up by a call like setlocale(LC_CTYPE, "en_US.UTF-8"). + scintilla_release_resources function added to release mutex. + </li> + <li> + FORTRAN and assembler lexers added along with other support for these + languages in SciTE. + </li> + <li> + Ada lexer improved handling of based numbers, identifier validity and attributes + distinguished from character literals. + </li> + <li> + Lua lexer handles block comments and a deep level of nesting for literal strings + and block comments. + </li> + <li> + Errorlist lexer recognises PHP error messages. + </li> + <li> + Variant of the C++ lexer with case insensitive keywords + called cppnocase. Whitespace in preprocessor text handled more correctly. + </li> + <li> + Folder added for Perl. + </li> + <li> + Compilation with GCC 3.2 supported. + </li> + <li> + Markers can be pixmaps. + </li> + <li> + Lines are wrapped when printing. + Bug fixed which printed line numbers in different styles. + </li> + <li> + Text can be appended to end with AppendText method. + </li> + <li> + ChooseCaretX method added. + </li> + <li> + Vertical scroll bar can be turned off with SetVScrollBar method. + </li> + <li> + SciTE Save All command saves all buffers. + </li> + <li> + SciTE localisation compares keys case insensitively to make translations more flexible. + </li> + <li> + SciTE detects a utf-8 coding cookie "coding: utf-8" in first two + lines and goes into Unicode mode. + </li> + <li> + SciTE key bindings are definable. + </li> + <li> + SciTE Find in Files dialog can display directory browser to + choose directory to search. + </li> + <li> + SciTE enabling of undo and redo toolbar buttons improved. + </li> + <li> + SciTE on Windows file type filters in open dialog sorted. + </li> + <li> + Fixed crashing bug when using automatic tag closing in XML or HTML. + </li> + <li> + Fixed bug on Windows causing very long (>64K) lines to not display. + </li> + <li> + Fixed bug in backwards regular expression searching. + </li> + <li> + Fixed bug in calltips where wrong argument was highlighted. + </li> + <li> + Fixed bug in tab timmy feature when file has line feed line endings. + </li> + <li> + Fixed bug in compiling without INCLUDE_DEPRECATED_FEATURES + defined. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite148.zip?download">Release 1.48</a> + </h3> + <ul> + <li> + Released on 9 September 2002. + </li> + <li> + Improved Pascal lexer with context sensitive keywords + and separate folder which handles //{ and //} folding comments and + {$region} and {$end} folding directives. + The "case" statement now folds correctly. + </li> + <li> + C++ lexer correctly handles comments on preprocessor lines. + </li> + <li> + New commands for moving to beginning and end of display lines when in line + wrap mode. Key bindings added for these commands. + </li> + <li> + New marker symbols that look like ">>>" and "..." which can be used for + interactive shell prompts for Python. + </li> + <li> + The foreground and background colours of visible whitespace can be chosen + independent of the colours chosen for the lexical class of that whitespace. + </li> + <li> + Per line data optimised by using an exponential allocation scheme. + </li> + <li> + SciTE API file loading optimised. + </li> + <li> + SciTE for GTK+ subsystem 2 documented. The exit status of commands + is decoded into more understandable fields. + </li> + <li> + SciTE find dialog remembers previous find string when there is no selection. + Find in Selection button disabled when selection is rectangular as command + did not work. + </li> + <li> + Shift+Enter made equivalent to Enter to avoid users having to let go of + the shift key when typing. Avoids the possibility of entering single carriage + returns in a file that contains CR+LF line ends. + </li> + <li> + Autocompletion does not immediately disappear when the length parameter + to SCI_AUTOCSHOW is 0. + </li> + <li> + SciTE focuses on the editor pane when File | New executed and when the + output pane is closed with F8. Double clicking on a non-highlighted output + pane line selects the word under the cursor rather than seeking the next + highlighted line. + </li> + <li> + SciTE director interface implements an "askproperty" command. + </li> + <li> + SciTE's Export as LaTeX output improved. + </li> + <li> + Better choice of autocompletion displaying above the caret rather then + below when that is more sensible. + </li> + <li> + Bug fixed where context menu would not be completely visible if invoked + when cursor near bottom or left of screen. + </li> + <li> + Crashing bug fixed when displaying long strings on GTK+ caused failure of X server + by displaying long text in segments. + </li> + <li> + Crashing bug fixed on GTK+ when a Scintilla window was removed from its parent + but was still the selection owner. + </li> + <li> + Bug fixed on Windows in Unicode mode where not all characters on a line + were displayed when that line contained some characters not in ASCII. + </li> + <li> + Crashing bug fixed in SciTE on Windows with clearing output while running command. + </li> + <li> + Bug fixed in SciTE for GTK+ with command completion not detected when + no output was produced by the command. + </li> + <li> + Bug fixed in SciTE for Windows where menus were not shown translated. + </li> + <li> + Bug fixed where words failed to display in line wrapping mode with visible + line ends. + </li> + <li> + Bug fixed in SciTE where files opened from a session file were not closed. + </li> + <li> + Cosmetic flicker fixed when using Ctrl+Up and Ctrl+Down with some caret policies. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite147.zip?download">Release 1.47</a> + </h3> + <ul> + <li> + Released on 1 August 2002. + </li> + <li> + Support for GTK+ 2 in Scintilla. International input methods not supported + on GTK+2. + </li> + <li> + Line wrapping performance improved greatly. + </li> + <li> + New caret policy implementation that treats horizontal and vertical + positioning equivalently and independently. Old caret policy methods + deprecated and not all options work correctly with old methods. + </li> + <li> + Extra fold points for C, C++, Java, ... for fold comments //{ .. //} and + #if / #ifdef .. #endif and the #region .. #endregion feature of C#. + </li> + <li> + Scintilla method to find the height in pixels of a line. Currently returns the + same result for every line as all lines are same height. + </li> + <li> + Separate make file, scintilla_vc6.mak, for Scintilla to use Visual C++ + version 6 since main makefile now assumes VS .NET. + VS .NET project files available for combined Scintilla and + SciTE in scite/boundscheck. + </li> + <li> + SciTE automatically recognises Unicode files based + on their Byte Order Marks and switches to Unicode mode. + On Windows, where SciTE supports Unicode display, this + allows display of non European characters. + The file is saved back into the same character encoding unless + the user decides to switch using the File | Encoding menu. + </li> + <li> + Handling of character input changed so that a fillup character, typically '(' + displays a calltip when an autocompletion list was being displayed. + </li> + <li> + Multiline strings lexed better for C++ and Lua. + </li> + <li> + Regular expressions in JavaScript within hypertext files are lexed better. + </li> + <li> + On Windows, Scintilla exports a function called Scintilla_DirectFunction + that can be used the same as the function returned by GetDirectFunction. + </li> + <li> + Scintilla converts line endings of text obtained from the clipboard to + the current default line endings. + </li> + <li> + New SciTE property ensure.final.line.end can ensure that saved files + always end with a new line as this is required by some tools. + The ensure.consistent.line.ends property ensures all line ends are the + current default when saving files. + The strip.trailing.spaces property now works on the buffer so the + buffer in memory and the file on disk are the same after a save is performed. + </li> + <li> + The SciTE expand abbreviation command again allows '|' characters + in expansions to be quoted by using '||'. + </li> + <li> + SciTE on Windows can send data to the find tool through standard + input rather than using a command line argument to avoid problems + with quoting command line arguments. + </li> + <li> + The Stop Executing command in SciTE on Windows improved to send + a Ctrl+Z character to the tool. Better messages when stopping a tool. + </li> + <li> + Autocompletion can automatically "fill up" when one of a set of characters is + type with the autocomplete.<lexer>.fillups property. + </li> + <li> + New predefined properties in SciTE, SelectionStartColumn, SelectionStartLine, + SelectionEndColumn, SelectionEndLine can be used to integrate with other + applications. + </li> + <li> + Environment variables are available as properties in SciTE. + </li> + <li> + SciTE on Windows keeps status line more current. + </li> + <li> + Abbreviations work in SciTE on Linux when first opened. + </li> + <li> + File saving fixed in SciTE to ensure files are not closed when they can not be + saved because of file permissions. Also fixed a problem with buffers that + caused files to not be saved. + </li> + <li> + SciTE bug fixed where monospace mode not remembered when saving files. + Some searching options now remembered when switching files. + </li> + <li> + SciTE on Linux now waits on child termination when it shuts a child down + to avoid zombies. + </li> + <li> + SciTE on Linux has a Print menu command that defaults to invoking a2ps. + </li> + <li> + Fixed incorrect highlighting of indentation guides in SciTE for Python. + </li> + <li> + Crash fixed in Scintilla when calling GetText for 0 characters. + </li> + <li> + Exporting as LaTeX improved when processing backslashes and tabs + and setting up font. + </li> + <li> + Crash fixed in SciTE when exporting or copying as RTF. + </li> + <li> + SciTE session loading fixed to handle more than 10 files in session. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite146.zip?download">Release 1.46</a> + </h3> + <ul> + <li> + Released on 10 May 2002. + </li> + <li> + Set of lexers compiled into Scintilla can now be changed by adding and + removing lexer source files from scintilla/src and running LexGen.py. + </li> + <li> + SCN_ZOOM notification provided by Scintilla when user changes zoom level. + Method to determine width of strings in pixels so that elements can be sized + relative to text size. + SciTE changed to keep line number column displaying a given + number of characters. + </li> + <li> + The logical width of the document used to determine scroll bar range can be set. + </li> + <li> + Setting to allow vertical scrolling to display last line at top rather than + bottom of window. + </li> + <li> + Read-only mode improved to avoid changing the selection in most cases + when a modification is attempted. Drag and drop cursors display correctly + for read-only in some cases. + </li> + <li> + Visual C++ options in make files changed to suit Visual Studio .NET. + </li> + <li> + Scintilla.iface includes feature types for enumerations and lexers. + </li> + <li> + Lua lexer improves handling of literal strings and copes with nested literal strings. + </li> + <li> + Diff lexer changed to treat lines starting with "***" similarly to "---". + Symbolic names defined for lexical classes. + </li> + <li> + nncrontab lexer improved. + </li> + <li> + Turkish fonts (iso8859-9) supported on GTK+. + </li> + <li> + Automatic close tag feature for XML and HTML in SciTE. + </li> + <li> + Automatic indentation in SciTE improved. + </li> + <li> + Maximum number of buffers available in SciTE increased. May be up to 100 + although other restrictions on menu length limit the real maximum. + </li> + <li> + Save a Copy command added to SciTE. + </li> + <li> + Export as TeX command added to SciTE. + </li> + <li> + Export as HTML command in SciTE respects Use Monospaced Font and + background colour settings. + </li> + <li> + Compilation problem on Solaris fixed. + </li> + <li> + Order of files displayed for SciTE's previous and next menu and key commands + are now consistent. + </li> + <li> + Saving of MRU in recent file changed so files open when SciTE quit + are remembered. + </li> + <li> + More variants of ctags tags handled by Open Selected Filename in SciTE. + </li> + <li> + JavaScript embedded in XML highlighted again. + </li> + <li> + SciTE status bar updated after changing parameters in case they are being + displayed in status bar. + </li> + <li> + Crash fixed when handling some multi-byte languages. + </li> + <li> + Crash fixed when replacing end of line characters. + </li> + <li> + Bug in SciTE fixed in multiple buffer mode where automatic loading + turned on could lead to losing file contents. + </li> + <li> + Bug in SciTE on GTK+ fixed where dismissing dialogs with close box led to + those dialogs never being shown again. + </li> + <li> + Bug in SciTE on Windows fixed where position.tile with default positions + led to SciTE being positioned off-screen. + </li> + <li> + Bug fixed in read-only mode, clearing all deletes contraction state data + leading to it not being synchronized with text. + </li> + <li> + Crash fixed in SciTE on Windows when tab bar displayed. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite145.zip?download">Release 1.45</a> + </h3> + <ul> + <li> + Released on 15 March 2002. + </li> + <li> + Line layout cache implemented to improve performance by maintaining + the positioning of characters on lines. Can be set to cache nothing, + the line with the caret, the visible page or the whole document. + </li> + <li> + Support, including a new lexer, added for Matlab programs. + </li> + <li> + Lua folder supports folding {} ranges and compact mode. + Lua lexer styles floating point numbers in number style instead of + setting the '.' in operator style. + Up to 6 sets of keywords. + Better support for [[ although only works well + when all on one line. + </li> + <li> + Python lexer improved to handle floating point numbers that contain negative + exponents and that start with '.'. + </li> + <li> + When performing a rectangular paste, the caret now remains at the + insertion point. + </li> + <li> + On Windows with a wheel mouse, page-at-a-time mode is recognised. + </li> + <li> + Read-only mode added to SciTE with a property to initialise it and another property, + $(ReadOnly) available to show this mode in the status bar. + </li> + <li> + SciTE status bar can show the number of lines in the selection + with the $(SelHeight) property. + </li> + <li> + SciTE's "Export as HTML" command uses the current character set to produce + correct output for non-Western-European character sets, such as Russian. + </li> + <li> + SciTE's "Export as RTF" fixed to produce correct output when file contains '\'. + </li> + <li> + SciTE goto command accepts a column as well as a line. + If given a column, it selects the word at that column. + </li> + <li> + SciTE's Build, Compile and Go commands are now disabled if no + action has been assigned to them. + </li> + <li> + The Refresh button in the status bar has been removed from SciTE on Windows. + </li> + <li> + Bug fixed in line wrap mode where cursor up or down command did not work. + </li> + <li> + Some styling bugs fixed that were due to a compilation problem with + gcc and inline functions with same name but different code. + </li> + <li> + The way that lexers loop over text was changed to avoid accessing beyond the + end or setting beyond the end. May fix some bugs and make the code safer but + may also cause new bugs. + </li> + <li> + Bug fixed in HTML lexer's handling of SGML. + </li> + <li> + Bug fixed on GTK+/X where lines wider than 32767 pixels did not display. + </li> + <li> + SciTE bug fixed with file name generation for standard property files. + </li> + <li> + SciTE bug fixed with Open Selected Filename command when used with + file name and line number combination. + </li> + <li> + In SciTE, indentation and tab settings stored with buffers so maintained correctly + as buffers selected. + The properties used to initialise these settings can now be set separately for different + file patterns. + </li> + <li> + Thread safety improved on Windows with a critical section protecting the font + cache and initialisation of globals performed within Scintilla_RegisterClasses. + New Scintilla_ReleaseResources call provided to allow explicit freeing of resources + when statically bound into another application. Resources automatically freed + in DLL version. The window classes are now unregistered as part of resource + freeing which fixes bugs that occurred in some containers such as Internet Explorer. + </li> + <li> + 'make install' fixed on Solaris. + </li> + <li> + Bug fixed that could lead to a file being opened twice in SciTE. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite144.zip?download">Release 1.44</a> + </h3> + <ul> + <li> + Released on 4 February 2002. + </li> + <li> + Crashing bug fixed in Editor::Paint. + </li> + <li> + Lua lexer no longer treats '.' as a word character and + handles 6 keyword sets. + </li> + <li> + WordStartPosition and WordEndPosition take an onlyWordCharacters + argument. + </li> + <li> + SciTE option for simplified automatic indentation which repeats + the indentation of the previous line. + </li> + <li> + Compilation fix on Alpha because of 64 bit. + </li> + <li> + Compilation fix for static linking. + </li> + <li> + Limited maximum line length handled to 8000 characters as previous + value of 16000 was causing stack exhaustion crashes for some. + </li> + <li> + When whole document line selected, only the last display line gets + the extra selected rectangle at the right hand side rather than + every display line. + </li> + <li> + Caret disappearing bug fixed for the case that the caret was not on the + first display line of a document line. + </li> + <li> + SciTE bug fixed where untitled buffer containing text was sometimes + deleted without chance to save. + </li> + <li> + SciTE bug fixed where use.monospaced not working with + multiple buffers. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite143.zip?download">Release 1.43</a> + </h3> + <ul> + <li> + Released on 19 January 2002. + </li> + <li> + Line wrapping robustness and performance improved in Scintilla. + </li> + <li> + Line wrapping option added to SciTE for both edit and output panes. + </li> + <li> + Static linking on Windows handles cursor resource better. + Documentation of static linking improved. + </li> + <li> + Autocompletion has an option to delete any word characters after the caret + upon selecting an item. + </li> + <li> + FOX version identified by PLAT_FOX in Platform.h. + </li> + <li> + Calltips in SciTE use the calltip.<lexer>.word.characters setting to + correctly find calltips for functions that include characters like '$' which + is not normally considered a word character. + </li> + <li> + SciTE has a command to show help on itself which gets hooked up to displaying + SciTEDoc.html. + </li> + <li> + SciTE option calltip.<lexer>.end.definition to display help text on a + second line of calltip. + </li> + <li> + Fixed the handling of the Buffers menu on GTK+ to ensure current buffer + indicated and no warnings occur. + Changed some menu items on GTK+ version to be same as Windows version. + </li> + <li> + use.monospaced property for SciTE determines initial state of Use Monospaced Font + setting. + </li> + <li> + The SciTE Complete Symbol command now works when there are no word + characters before the caret, even though it is slow to display the whole set of + symbols. + </li> + <li> + Function names removed from SciTE's list of PHP keywords. The full list of + predefined functions is available from another web site mentioned on the + Extras page. + </li> + <li> + Crashing bug at startup on GTK+ for some configurations fixed. + </li> + <li> + Crashing bug on GTK+ on 64 bit platforms fixed. + </li> + <li> + Compilation problem with some compilers fixed in GTK+. + </li> + <li> + Japanese text entry improved on Windows 9x. + </li> + <li> + SciTE recent files directory problem on Windows when HOME and SciTE_HOME + environment variables not set is now the directory of the executable. + </li> + <li> + Session files no longer include untitled buffers. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite142.zip?download">Release 1.42</a> + </h3> + <ul> + <li> + Released on 24 December 2001. + </li> + <li> + Better localisation support including context menus and most messages. + Translations of the SciTE user interface available for Bulgarian, + French, German, Italian, Russian, and Turkish. + </li> + <li> + Can specify a character to use to indicate control characters + rather than having them displayed as mnemonics. + </li> + <li> + Scintilla key command for backspace that will not delete line + end characters. + </li> + <li> + Scintilla method to find start and end of words. + </li> + <li> + SciTE on GTK+ now supports the load.on.activate and save.on.deactivate + properties in an equivalent way to the Windows version. + </li> + <li> + The output pane of SciTE on Windows is now interactive so command line + utilities that prompt for input or confirmation can be used. + </li> + <li> + SciTE on Windows can choose directory for a "Find in Files" + command like the GTK+ version could. + </li> + <li> + SciTE can now load a set of API files rather than just one file. + </li> + <li> + ElapsedTime class added to Platform for accurate measurement of durations. + Used for debugging and for showing the user how long commands take in SciTE. + </li> + <li> + Baan lexer added. + </li> + <li> + In C++ lexer, document comment keywords no longer have to be at the start + of the line. + </li> + <li> + PHP lexer changed to match keywords case insensitively. + </li> + <li> + More shell keywords added. + </li> + <li> + SciTE support for VoiceXML added to xml.properties. + </li> + <li> + In SciTE the selection is not copied to the find field of the Search and Replace + dialogs if it contains end of line characters. + </li> + <li> + SciTE on Windows has a menu item to decide whether to respond to other + instances which are performing their check.if.already.open check. + </li> + <li> + SciTE accelerator key for Box Comment command changed to avoid problems + in non-English locales. + </li> + <li> + SciTE context menu includes Close command for the editor pane and + Hide command for the output pane. + </li> + <li> + output: command added to SciTE director interface to add text to the + output pane. The director interface can execute commands (such as tool + commands with subsystem set to 3) by sending a macro:run message. + </li> + <li> + SciTE on GTK+ will defer to the Window Manager for position if position.left or + position.top not set and for size if position.width or position.height not set. + </li> + <li> + SciTE on Windows has a position.tile property to place a second instance + to the right of the first. + </li> + <li> + Scintilla on Windows again supports EM_GETSEL and EM_SETSEL. + </li> + <li> + Problem fixed in Scintilla on Windows where control ID is no longer cached + as it could be changed by external code. + </li> + <li> + Problems fixed in SciTE on Windows when finding any other open instances at + start up when check.if.already.open is true. + </li> + <li> + Bugs fixed in SciTE where command strings were not always having + variables evaluated. + </li> + <li> + Bugs fixed with displaying partial double-byte and Unicode characters + in rectangular selections and at the edge when edge mode is EDGE_BACKGROUND. + Column numbers reported by GetColumn treat multiple byte characters as one column + rather than counting bytes. + </li> + <li> + Bug fixed with caret movement over folded lines. + </li> + <li> + Another bug fixed with tracking selection in secondary views when performing + modifications. + </li> + <li> + Horizontal scrolling and display of long lines optimised. + </li> + <li> + Cursor setting in Scintilla on GTK+ optimised. + </li> + <li> + Experimental changeable style attribute. + Set to false to make text read-only. + Currently only stops caret from being within not-changeable + text and does not yet stop deleting a range that contains + not-changeable text. + Can be used from SciTE by adding notchangeable to style entries. + </li> + <li> + Experimental line wrapping. + Currently has performance and appearence problems. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite141.zip?download">Release 1.41</a> + </h3> + <ul> + <li> + Released on 6 November 2001. + </li> + <li> + Changed Platform.h to not include platform headers. This lessens likelihood and impact of + name clashes from system headers and also speeds up compilation. + Renamed DrawText to DrawTextNoClip to avoid name clash. + </li> + <li> + Changed way word functions work to treat a sequence of punctuation as + a word. This is more sensible and also more compatible with other editors. + </li> + <li> + Cursor changes over the margins and selection on GTK+ platform. + </li> + <li> + SC_MARK_BACKGROUND is a marker that only changes the line's background colour. + </li> + <li> + Enhanced Visual Basic lexer handles character date and octal literals, + and bracketed keywords for VB.NET. There are two VB lexers, vb and vbscript + with type indication characters like ! and $ allowed at the end of identifiers + in vb but not vbscript. Lexer states now separate from those used for C++ and + names start with SCE_B. + </li> + <li> + Lexer added for Bullant language. + </li> + <li> + The horizontal scroll position, xOffset, is now exposed through the API. + </li> + <li> + The SCN_POSCHANGED notification is deprecated as it was causing confusion. + Use SCN_UPDATEUI instead. + </li> + <li> + Compilation problems fixed for some versions of gcc. + </li> + <li> + Support for WM_GETTEXT restored on Windows. + </li> + <li> + Double clicking on an autocompletion list entry works on GTK+. + </li> + <li> + Bug fixed with case insensitive sorts for autocompletion lists. + </li> + <li> + Bug fixed with tracking selection in secondary views when performing modifications. + </li> + <li> + SciTE's abbreviation expansion feature will now indent expansions to the current + indentation level if indent.automatic is on. + </li> + <li> + SciTE allows setting up of parameters to commands from a dialog and can also + show this dialog automatically to prompt for arguments when running a command. + </li> + <li> + SciTE's Language menu (formerly Options | Use Lexer) is now defined by the + menu.language property rather than being hardcoded. + </li> + <li> + The user interface of SciTE can be localised to a particular language by editing + a locale.properties file. + </li> + <li> + On Windows, SciTE will try to move to the front when opening a new file from + the shell and using check.if.already.open. + </li> + <li> + SciTE can display the file name and directory in the title bar in the form + "file @ directory" when title.full.path=2. + </li> + <li> + The SciTE time.commands property reports the time taken by a command as well + as its status when completed. + </li> + <li> + The SciTE find.files property is now a list separated by '|' characters and this list is + added into the Files pull down of the Find in Files dialog. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite140.zip?download">Release 1.40</a> + </h3> + <ul> + <li> + Released on 23 September 2001. + </li> + <li> + Removal of emulation of Win32 RichEdit control in core of Scintilla. + <em>This change may be incompatible with existing client code.</em> + Some emulation still done in Windows platform layer. + </li> + <li> + SGML support in the HTML/XML lexer. + </li> + <li> + SciTE's "Stop Executing" command will terminate GUI programs on + Windows NT and Windows 2000. + </li> + <li> + StyleContext class helps construct lexers that are simple and accurate. + Used in the C++, Eiffel, and Python lexers. + </li> + <li> + Clipboard operations in GTK+ version convert between platform '\n' line endings and + currently chosen line endings. + </li> + <li> + Any character in range 0..255 can be used as a marker. + This can be used to support numbered bookmarks, for example. + </li> + <li> + The default scripting language for ASP can be set. + </li> + <li> + New lexer and other support for crontab files used with the nncron scheduler. + </li> + <li> + Folding of Python improved. + </li> + <li> + The ` character is treated as a Python operator. + </li> + <li> + Line continuations ("\" at end of line) handled inside Python strings. + </li> + <li> + More consistent handling of line continuation ('\' at end of line) in + C++ lexer. + This fixes macro definitions that span more than one line. + </li> + <li> + C++ lexer can understand Doxygen keywords in doc comments. + </li> + <li> + SciTE on Windows allows choosing to open the "open" dialog on the directory + of the current file rather than in the default directory. + </li> + <li> + SciTE on Windows handles command line arguments in "check.if.already.open" + correctly when the current directory of the new instance is different to the + already open instance of SciTE. + </li> + <li> + "cwd" command (change working directory) defined for SciTE director interface. + </li> + <li> + SciTE "Export As HTML" produces better, more compliant, and shorter files. + </li> + <li> + SciTE on Windows allows several options for determining default file name + for exported files. + </li> + <li> + Automatic indentation of Python in SciTE fixed. + </li> + <li> + Exported HTML can support folding. + </li> + <li> + Bug fixed in SCI_GETTEXT macro command of director interface. + </li> + <li> + Cursor leak fixed on GTK+. + </li> + <li> + During SciTE shutdown, "identity" messages are no longer sent over the director interface. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite139.zip?download">Release 1.39</a> + </h3> + <ul> + <li> + Released on 22 August 2001. + </li> + <li> + Windows version requires msvcrt.dll to be available so will not work + on original Windows 95 version 1. The msvcrt.dll file is installed + by almost everything including Internet Explorer so should be available. + </li> + <li> + Flattened tree control style folding margin. The SciTE fold.plus option is + now fold.symbols and has more values for the new styles. + </li> + <li> + Mouse dwell events are generated when the user holds the mouse steady + over Scintilla. + </li> + <li> + PositionFromPointClose is like PositionFromPoint but returns + INVALID_POSITION when point outside window or after end of line. + </li> + <li> + Input of Hungarian and Russian characters in GTK+ version works by + truncating input to 8 bits if in the range of normal characters. + </li> + <li> + Better choices for font descriptors on GTK+ for most character sets. + </li> + <li> + GTK+ Scintilla is destroyed upon receiving destroy signal rather than + destroy_event signal. + </li> + <li> + Style setting that force upper or lower case text. + </li> + <li> + Case-insensitive autocompletion lists work correctly. + </li> + <li> + Keywords can be prefix based so ^GTK_ will treat all words that start + with GTK_ as keywords. + </li> + <li> + Horizontal scrolling can be jumpy rather than gradual. + </li> + <li> + GetSelText places a '\0' in the buffer if the selection is empty.. + </li> + <li> + EnsureVisible split into two methods EnsureVisible which will not scroll to show + the line and EnsureVisibleEnforcePolicy which may scroll. + </li> + <li> + Python folder has options to fold multi-line comments and triple quoted strings. + </li> + <li> + C++ lexer handles keywords before '.' like "this.x" in Java as keywords. + Compact folding mode option chooses whether blank lines after a structure are + folded with that structure. Second set of keywords with separate style supported. + </li> + <li> + Ruby lexer handles multi-line comments. + </li> + <li> + VB has folder. + </li> + <li> + PHP lexer has an operator style, handles "<?" and "?>" inside strings + and some comments. + </li> + <li> + TCL lexer which is just an alias for the C++ lexer so does not really + understand TCL syntax. + </li> + <li> + Error lines lexer has styles for Lua error messages and .NET stack traces. + </li> + <li> + Makefile lexer has a target style. + </li> + <li> + Lua lexer handles some [[]] string literals. + </li> + <li> + HTML and XML lexer have a SCE_H_SGML state for tags that + start with "<!". + </li> + <li> + Fixed Scintilla bugs with folding. When modifications were performed near + folded regions sometimes no unfolding occurred when it should have. Deleting a + fold causing character sometimes failed to update fold information correctly. + </li> + <li> + Better support for Scintilla on GTK+ for Win32 including separate + PLAT_GTK_WIN32 definition and correct handling of rectangular selection + with clipboard operations. + </li> + <li> + SciTE has a Tools | Switch Pane (Ctrl+F6) command to switch focus between + edit and output panes. + </li> + <li> + SciTE option output.scroll allows automatic scrolling of output pane to + be turned off. + </li> + <li> + Commands can be typed into the SciTE output pane similar to a shell window. + </li> + <li> + SciTE properties magnification and output magnification set initial zoom levels. + </li> + <li> + Option for SciTE comment block command to place comments at start of line. + </li> + <li> + SciTE for Win32 has an option to minimize to the tray rather than the task bar. + </li> + <li> + Close button on SciTE tool bar for Win32. + </li> + <li> + SciTE compiles with GCC 3.0. + </li> + <li> + SciTE's automatic indentation of C++ handles braces without preceding keyword + correctly. + </li> + <li> + Bug fixed with GetLine method writing past the end of where it should. + </li> + <li> + Bug fixed with mouse drag automatic scrolling when some lines were folded. + </li> + <li> + Bug fixed because caret XEven setting was inverted. + </li> + <li> + Bug fixed where caret was initially visible even though window was not focussed. + </li> + <li> + Bug fixed where some file names could end with "\\" which caused slow + downs on Windows 9x. + </li> + <li> + On Win32, SciTE Replace dialog starts with focus on replacement text. + </li> + <li> + SciTE Go to dialog displays correct current line. + </li> + <li> + Fixed bug with SciTE opening multiple files at once. + </li> + <li> + Fixed bug with Unicode key values reported to container truncated. + </li> + <li> + Fixed bug with unnecessary save point notifications. + </li> + <li> + Fixed bugs with indenting and unindenting at start of line. + </li> + <li> + Monospace Font setting behaves more consistently. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite138.zip?download">Release 1.38</a> + </h3> + <ul> + <li> + Released on 23 May 2001. + </li> + <li> + Loadable lexer plugins on Windows. + </li> + <li> + Ruby lexer and support. + </li> + <li> + Lisp lexer and support. + </li> + <li> + Eiffel lexer and support. + </li> + <li> + Modes for better handling of Tab and BackSpace keys within + indentation. Mode to avoid autocompletion list cancelling when + there are no viable matches. + </li> + <li> + ReplaceTarget replaced with two calls ReplaceTarget + (which is incompatible with previous ReplaceTarget) and + ReplaceTargetRE. Both of these calls have a count first + parameter which allows using strings containing nulls. + SearchInTarget and SetSearchFlags functions allow + specifying a search in several simple steps which helps + some clients which can not create structs or pointers easily. + </li> + <li> + Asian language input through an Input Method Editor works + on Windows 2000. + </li> + <li> + On Windows, control characters can be entered through use of + the numeric keypad in conjunction with the Alt key. + </li> + <li> + Document memory allocation changed to grow exponentially + which reduced time to load a 30 Megabyte file from + 1000 seconds to 25. Change means more memory may be used. + </li> + <li> + Word part movement keys now handled in Scintilla rather than + SciTE. + </li> + <li> + Regular expression '^' and '$' work more often allowing insertion + of text at start or end of line with a replace command. + Backslash quoted control characters \a, \b, \f, \t, and \v + recognised within sets. + </li> + <li> + Session files for SciTE. + </li> + <li> + Export as PDF command hidden in SciTE as it often failed. + Code still present so can be turned on by those willing to cope. + </li> + <li> + Bug fixed in HTML lexer handling % before > as end ASP + even when no start ASP encountered. + Bug fixed when scripts ended with a quoted string and + end tag was not seen. + </li> + <li> + Bug fixed on Windows where context menu key caused menu to + appear in corner of screen rather than within window. + </li> + <li> + Bug fixed in SciTE's Replace All command not processing + whole file when replace string longer than search string. + </li> + <li> + Bug fixed in SciTE's MRU list repeating entries if Ctrl+Tab + used when all entries filled. + </li> + <li> + ConvertEOLs call documentation fixed. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite137.zip?download">Release 1.37</a> + </h3> + <ul> + <li> + Released on 17 April 2001. + </li> + <li> + Bug fixed with scroll bars being invisible on GTK+ 1.2.9. + </li> + <li> + Scintilla and SciTE support find and replace using simple regular + expressions with tagged expressions. SciTE supports C '\' escapes + in the Find and Replace dialogs. + Replace in Selection available in SciTE. + </li> + <li> + Scintilla has a 'target' feature for replacing code rapidly without + causing display updates. + </li> + <li> + Scintilla and SciTE on GTK+ support file dropping from file managers + such as Nautilus and gmc. Files or other URIs dropped on Scintilla + result in a URIDropped notification. + </li> + <li> + Lexers may have separate Lex and Fold functions. + </li> + <li> + Lexer infrastructure improved to allow for plug in lexers and for referring + to lexers by name rather than by ID. + </li> + <li> + Ada lexer and support added. + </li> + <li> + Option in both Scintilla and SciTE to treat both left and right margin + as equally important when repositioning visible area in response to + caret movement. Default is to prefer visible area positioning which + minimises the horizontal scroll position thus favouring the left margin. + </li> + <li> + Caret line highlighting. + </li> + <li> + Commands to delete from the caret to the end of line and + from the caret to the beginning of line. + </li> + <li> + SciTE has commands for inserting and removing block comments and + for inserting stream comments. + </li> + <li> + SciTE Director interface uses C++ '\' escapes to send control characters. + </li> + <li> + SciTE Director interface adds more commands including support for macros. + </li> + <li> + SciTE has menu options for recording and playing macros which are visible + when used with a companion program that supports these features. + </li> + <li> + SciTE has an Expand Abbreviation command. + Abbreviations are stored in a global abbrev.properties file. + </li> + <li> + SciTE has a Full Screen command to switch between a normal window + size and using the full screen. On Windows, the menu bar can be turned + off when in full screen mode. + </li> + <li> + SciTE has a Use monospaced font command to switch between the normal + set of fonts and one size of a particular fixed width font. + </li> + <li> + SciTE's use of tabs can be controlled for particular file names + as well as globally. + </li> + <li> + The contents of SciTE's status bar can be defined by a property and + include variables. On Windows, several status bar definitions can be active + with a click on the status bar cycling through them. + </li> + <li> + Copy as RTF command in SciTE on Windows to allow pasting + styled text into word processors. + </li> + <li> + SciTE can allow the use of non-alphabetic characters in + Complete Symbol lists and can automatically display this autocompletion + list when a trigger character such as '.' is typed. + Complete word can be set to pop up when the user is typing a word and + there is only one matching word in the document. + </li> + <li> + SciTE lists the imported properties files on a menu to allow rapid + access to them. + </li> + <li> + SciTE on GTK+ improvements to handling accelerator keys and focus + in dialogs. Message boxes respond to key presses without the Alt key as + they have no text entries to accept normal keystrokes. + </li> + <li> + SciTE on GTK+ sets the application icon. + </li> + <li> + SciTE allows setting the colours used to indicate the current + error line. + </li> + <li> + Variables within PHP strings have own style. Keyword list updated. + </li> + <li> + Keyword list for Lua updated for Lua 4.0. + </li> + <li> + Bug fixed in rectangular selection where rectangle still appeared + selected after using cursor keys to move caret. + </li> + <li> + Bug fixed in C++ lexer when deleting a '{' controlling a folded range + led to that range becoming permanently invisible. + </li> + <li> + Bug fixed in Batch lexer where comments were not recognised. + </li> + <li> + Bug fixed with undo actions coalescing into steps incorrectly. + </li> + <li> + Bug fixed with Scintilla on GTK+ positioning scroll bars 1 pixel + over the Scintilla window leading to their sides being chopped off. + </li> + <li> + Bugs fixed in SciTE when doing some actions led to the start + or end of the file being displayed rather than the current location. + </li> + <li> + Appearance of calltips fixed to look like document text including + any zoom factor. Positioned to be outside current line even when + multiple fonts and sizes used. + </li> + <li> + Bug fixed in Scintilla macro support where typing Enter caused both a newline + command and newline character insertion to be recorded. + </li> + <li> + Bug fixed in SciTE on GTK+ where focus was moving + between widgets incorrectly. + </li> + <li> + Bug fixed with fold symbols sometimes not updating when + the text changed. + </li> + <li> + Bugs fixed in SciTE's handling of folding commands. + </li> + <li> + Deprecated undo collection enumeration removed from API. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite136.zip?download">Release 1.36</a> + </h3> + <ul> + <li> + Released on 1 March 2001. + </li> + <li> + Scintilla supports GTK+ on Win32. + </li> + <li> + Some untested work on making Scintilla and SciTE 64 bit compatible. + For users on GTK+ this requires including Scintilla.h before + ScintillaWidget.h. + </li> + <li> + HTML lexer allows folding HTML. + </li> + <li> + New lexer for Avenue files which are used in the ESRI ArcView GIS. + </li> + <li> + DOS Batch file lexer has states for '@', external commands, variables and + operators. + </li> + <li> + C++ lexer can fold comments of /* .. */ form. + </li> + <li> + Better disabling of popup menu items in Scintilla when in read-only mode. + </li> + <li> + Starting to move to Doxygen compatible commenting. + </li> + <li> + Director interface on Windows enables another application to control SciTE. + </li> + <li> + Opening SciTE on Windows 9x sped up greatly for some cases. + </li> + <li> + The command.build.directory property allows SciTE to run the build + command in a different directory to the source files. + </li> + <li> + SciTE on Windows allows setting foreground and background colours + for printed headers and footers. + </li> + <li> + Bug fixed in finding calltips in SciTE which led to no calltips for some identifiers. + </li> + <li> + Documentation added for lexers and for the extension and director interfaces. + </li> + <li> + SciTE menus rearranged with new View menu taking over some of the items that + were under the Options menu. Clear All Bookmarks command added. + </li> + <li> + Clear Output command in SciTE. + </li> + <li> + SciTE on Windows gains an Always On Top command. + </li> + <li> + Bug fixed in SciTE with attempts to define properties recursively. + </li> + <li> + Bug fixed in SciTE properties where only one level of substitution was done. + </li> + <li> + Bug fixed in SciTE properties where extensions were not being + matched in a case insensitive manner. + </li> + <li> + Bug fixed in SciTE on Windows where the Go to dialog displays the correct + line number. + </li> + <li> + In SciTE, if fold.on.open set then switching buffers also performs fold. + </li> + <li> + Bug fixed in Scintilla where ensuring a line was visible in the presence of folding + operated on the document line instead of the visible line. + </li> + <li> + SciTE command line processing modified to operate on arguments in order and in + two phases. First any arguments before the first file name are processed, then the + UI is opened, then the remaining arguments are processed. Actions defined for the + Director interface (currently only "open") may also be used on the command line. + For example, "SciTE -open:x.txt" will start SciTE and open x.txt. + </li> + <li> + Numbered menu items SciTE's Buffers menu and the Most Recently Used portion + of the File menu go from 1..0 rather than 0..9. + </li> + <li> + The tab bar in SciTE for Windows has numbers. + The tab.hide.one option hides the tab bar until there is more than one buffer open. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite135.zip?download">Release 1.35</a> + </h3> + <ul> + <li> + Released on 29 January 2001. + </li> + <li> + Rewritten and simplified widget code for the GTK+ version to enhance + solidity and make more fully compliant with platform norms. This includes more + normal handling of keystrokes so they are forwarded to containers correctly. + </li> + <li> + User defined lists can be shown. + </li> + <li> + Many fixes to the Perl lexer. + </li> + <li> + Pascal lexer handles comments more correctly. + </li> + <li> + C/C++/Java/JavaScipt lexer has a state for line doc comments. + </li> + <li> + Error output lexer understands Sun CC messages. + </li> + <li> + Make file lexer has variable, preprocessor, and operator states. + </li> + <li> + Wider area given to an italics character that is at the end of a line to prevent it + being cut off. + </li> + <li> + Call to move the caret inside the currently visible area. + </li> + <li> + Paste Rectangular will space fill on the left hand side of the pasted text as + needed to ensure it is kept rectangular. + </li> + <li> + Cut and Paste Rectangular does nothing in read-only mode. + </li> + <li> + Undo batching changed so that a paste followed by typing creates two undo actions.. + </li> + <li> + A "visibility policy" setting for Scintilla determines which range of lines are displayed + when a particular line is moved to. Also exposed as a property in SciTE. + </li> + <li> + SciTE command line allows property settings. + </li> + <li> + SciTE has a View Output command to hide or show the output pane. + </li> + <li> + SciTE's Edit menu has been split in two with searching commands moved to a + new Search menu. Find Previous and Previous Bookmark are in the Search menu. + </li> + <li> + SciTE on Windows has options for setting print margins, headers and footers. + </li> + <li> + SciTE on Windows has tooltips for toolbar. + </li> + <li> + SciTE on GTK+ has properties for setting size of file selector. + </li> + <li> + Visual and audio cues in SciTE on Windows enhanced. + </li> + <li> + Fixed performance problem in SciTE for GTK+ by dropping the extra 3D + effect on the content windows. + </li> + <li> + Fixed problem in SciTE where choosing a specific lexer then meant + that no lexer was chosen when files opened. + </li> + <li> + Default selection colour changed to be visible on low colour displays. + </li> + <li> + Fixed problems with automatically reloading changed documents in SciTE on + Windows. + </li> + <li> + Fixed problem with uppercase file extensions in SciTE. + </li> + <li> + Fixed some problems when using characters >= 128, some of which were being + incorrectly treated as spaces. + </li> + <li> + Fixed handling multiple line tags, non-inline scripts, and XML end tags /> in HTML/XML lexer. + </li> + <li> + Bookmarks in SciTE no longer disappear when switching between buffers. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite134.zip?download">Release 1.34</a> + </h3> + <ul> + <li> + Released on 28 November 2000. + </li> + <li> + Pascal lexer. + </li> + <li> + Export as PDF in SciTE. + </li> + <li> + Support for the OpenVMS operating system in SciTE. + </li> + <li> + SciTE for GTK+ can check for another instance of SciTE + editing a file and switch to it rather than open a second instance + on one file. + </li> + <li> + Fixes to quoting and here documents in the Perl lexer. + </li> + <li> + SciTE on Windows can give extra visual and audio cues when a + warning is shown or find restarts from beginning of file. + </li> + <li> + Open Selected Filename command in SciTE. Also understands some + warning message formats. + </li> + <li> + Wider area for line numbers when printing. + </li> + <li> + Better scrolling performance on GTK+. + </li> + <li> + Fixed problem where rectangles with negative coordinates were + invalidated leading to trouble with platforms that use + unsigned coordinates. + </li> + <li> + GTK+ Scintilla uses more compliant signalling code so that keyboard + events should propagate to containers. + </li> + <li> + Bug fixed with opening full or partial paths. + </li> + <li> + Improved handling of paths in error messages in SciTE. + </li> + <li> + Better handling of F6 in SciTE. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite133.zip?download">Release 1.33</a> + </h3> + <ul> + <li> + Released on 6 November 2000. + </li> + <li> + XIM support for the GTK+ version of Scintilla ensures that more non-English + characters can be typed. + </li> + <li> + Caret may be 1, 2, or 3 pixels wide. + </li> + <li> + Cursor may be switched to wait image during lengthy processing. + </li> + <li> + Scintilla's internal focus flag is exposed for clients where focus is handled in + complex ways. + </li> + <li> + Error status defined for Scintilla to hold indication that an operation failed and the reason + for that failure. No detection yet implemented but clients may start using the interface + so as to be ready for when it does. + </li> + <li> + Context sensitive help in SciTE. + </li> + <li> + CurrentWord property available in SciTE holding the value of the word the + caret is within or near. + </li> + <li> + Apache CONF file lexer. + </li> + <li> + Changes to Python lexer to allow 'as' as a context sensitive keyword and the + string forms starting with u, r, and ur to be recognised. + </li> + <li> + SCN_POSCHANGED notification now working and SCN_PAINTED notification added. + </li> + <li> + Word part movement commands for cursoring between the parts of reallyLongCamelIdentifiers and + other_ways_of_making_words. + </li> + <li> + When text on only one line is selected, Shift+Tab moves to the previous tab stop. + </li> + <li> + Tab control available for Windows version of SciTE listing all the buffers + and making it easy to switch between them. + </li> + <li> + SciTE can be set to automatically determine the line ending type from the contents of a + file when it is opened. + </li> + <li> + Dialogs in GTK+ version of SciTE made more modal and have accelerator keys. + </li> + <li> + Find in Files command in GTK+ version of SciTE allows choice of directory. + </li> + <li> + On Windows, multiple files can be opened at once. + </li> + <li> + SciTE source broken up into more files. + </li> + <li> + Scintilla headers made safe for C language, not just C++. + </li> + <li> + New printing modes - force background to white and force default background to white. + </li> + <li> + Automatic unfolding not occurring when Enter pressed at end of line bug fixed. + </li> + <li> + Bugs fixed in line selection. + </li> + <li> + Bug fixed with escapes in PHP strings in the HTML lexer. + </li> + <li> + Bug fixed in SciTE for GTK+ opening files when given full paths. + </li> + <li> + Bug fixed in autocompletion where user backspaces into existing text. + </li> + <li> + Bugs fixed in opening files and ensuring they are saved before running. + A case bug also fixed here. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite132.zip?download">Release 1.32</a> + </h3> + <ul> + <li> + Released on 8 September 2000. + </li> + <li> + Fixes bugs in complete word and related code. Protection against a bug when + receiving a bad argument. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite131.zip?download">Release 1.31</a> + </h3> + <ul> + <li> + Released on 6 September 2000. + </li> + <li> + Scintilla is available as a COM control from the scintillactrl module in CVS. + </li> + <li> + Style setting to underline text. Exposed in SciTE as "underlined". + </li> + <li> + Style setting to make text invisible. + </li> + <li> + SciTE has an extensibility interface that can be used to implement features such as + a scripting language or remote control. An example use of this is the extlua module + available from CVS which allows SciTE to be scripted in Lua. + </li> + <li> + Many minor fixes to all of the lexers. + </li> + <li> + New lexer for diff and patch files. + </li> + <li> + Error message lexer understands Perl error messages. + </li> + <li> + C/C++/Java lexer now supports C#, specifically verbatim strings and + @ quoting of identifiers that are the same as keywords. SciTE has + a set of keywords for C# and a build command set up for C#. + </li> + <li> + Scintilla property to see whether in overtype or insert state. + </li> + <li> + PosChanged notification fired when caret moved. + </li> + <li> + Comboboxes in dialogs in SciTE on Windows can be horizontally scrolled. + </li> + <li> + Autocompletion and calltips can treat the document as case sensitive or + case insensitive. + </li> + <li> + Autocompletion can be set to automatically choose the only + element in a single element list. + </li> + <li> + Set of characters that automatically complete an autocompletion list + can be set. + </li> + <li> + SciTE command to display calltip - useful when dropped because of + editing. + </li> + <li> + SciTE has a Revert command to go back to the last saved version. + </li> + <li> + SciTE has an Export as RTF command. Save as HTML is renamed + to Export as HTML and is located on the Export sub menu. + </li> + <li> + SciTE command "Complete Word" searches document for any + words starting with characters before caret. + </li> + <li> + SciTE options for changing aspects of the formatting of files exported + as HTML or RTF. + </li> + <li> + SciTE "character.set" option for choosing the character + set for all fonts. + </li> + <li> + SciTE has a "Toggle all folds" command. + </li> + <li> + The makefiles have changed. The makefile_vc and + makefile_bor files in scintilla/win32 and scite/win32 have been + merged into scintilla/win32/scintilla.mak and scite/win32/scite.mak. + DEBUG may be defined for all make files and this will turn on + assertions and for some make files will choose other debugging + options. + </li> + <li> + To make debugging easier and allow good use of BoundsChecker + there is a Visual C++ project file in scite/boundscheck that builds + all of Scintilla and SciTE into one executable. + </li> + <li> + The size of the SciTE output window can be set with the + output.horizontal.size and output.vertical.size settings. + </li> + <li> + SciTE status bar indicator for insert or overwrite mode. + </li> + <li> + Performance improvements to autocompletion and calltips. + </li> + <li> + A caret redraw problem when undoing is fixed. + </li> + <li> + Crash with long lines fixed. + </li> + <li> + Bug fixed with merging markers when lines merged. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite130.zip?download">Release 1.30</a> + </h3> + <ul> + <li> + Released on 26 July 2000. + </li> + <li> + Much better support for PHP which is now an integral part of the HTML support. + </li> + <li> + Start replacement of Windows-specific APIs with cross platform APIs. + In 1.30, the new APIs are introduced but the old APIs are still available. + For the GTK+ version, may have to include "WinDefs.h" explicitly to + use the old APIs. + </li> + <li> + "if" and "import" statements in SciTE properties files allows modularisation into + language-specific properties files and choices based upon platform. + This means that SciTE is delivered with 9 language-specific properties files + as well as the standard SciTEGlobal.properties file. + </li> + <li> + Much lower resource usage on Windows 9x. + </li> + <li> + "/p" option in SciTE on Windows for printing a file and then exiting. + </li> + <li> + Options for printing with inverted brightness (when the screen is set to use + a dark background) and to force black on white printing. + </li> + <li> + Option for printing magnified or miniaturised from screen settings. + </li> + <li> + In SciTE, Ctrl+F3 and Ctrl+Shift+F3 find the selection in the forwards and backwards + directions respectively. + </li> + <li> + Auto-completion lists may be set to cancel when the cursor goes before + its start position or before the start of string being completed. + </li> + <li> + Auto-completion lists automatically size more sensibly. + </li> + <li> + SCI_CLEARDOCUMENTSTYLE zeroes all style bytes, ensures all + lines are shown and deletes all folding information. + </li> + <li> + On Windows, auto-completion lists are visually outdented rather than indented. + </li> + <li> + Close all command in SciTE. + </li> + <li> + On Windows multiple files can be dragged into SciTE. + </li> + <li> + When saving a file, the SciTE option save.deletes.first deletes it before doing the save. + This allows saving with a different capitalisation on Windows. + </li> + <li> + When use tabs option is off pressing the tab key inserts spaces. + </li> + <li> + Bug in indicators leading to extra line drawn fixed. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite128.zip?download">Release 1.28</a> + </h3> + <ul> + <li> + Released on 27 June 2000. + </li> + <li> + Fixes crash in indentation guides when indent size set to 0. + </li> + <li> + Fixes to installation on GTK+/Linux. User properties file on GTK+ has a dot at front of name: + .SciTEUser.properties. Global properties file location configurable at compile time + defaulting to $prefix/share/scite. $prefix determined from Gnome if present else its + /usr/local and can be overridden by installer. Gnome menu integration performed in + make install if Gnome present. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite127.zip?download">Release 1.27</a> + </h3> + <ul> + <li> + Released on 23 June 2000. + </li> + <li> + Indentation guides. View whitespace mode may be set to not display whitespace + in indentation. + </li> + <li> + Set methods have corresponding gets for UndoCollection, BufferedDraw, + CodePage, UsePalette, ReadOnly, CaretFore, and ModEventMask. + </li> + <li> + Caret is continuously on rather than blinking while typing or holding down + delete or backspace. And is now always shown if non blinking when focused on GTK+. + </li> + <li> + Bug fixed in SciTE with file extension comparison now done in case insensitive way. + </li> + <li> + Bugs fixed in SciTE's file path handling on Windows. + </li> + <li> + Bug fixed with preprocessor '#' last visible character causing hang. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite126.zip?download">Release 1.26</a> + </h3> + <ul> + <li> + Released on 13 June 2000. + </li> + <li> + Support for the Lua language in both Scintilla and SciTE. + </li> + <li> + Multiple buffers may be open in SciTE. + </li> + <li> + Each style may have a character set configured. This may determine + the characters that are displayed by the style. + </li> + <li> + In the C++ lexer, lexing of preprocessor source may either treat it all as being in + the preprocessor class or only the initial # and preprocessor command word as + being in the preprocessor class. + </li> + <li> + Scintilla provides SCI_CREATEDOCUMENT, SCI_ADDREFDOCUMENT, and + SCI_RELEASEDOCUMENT to make it easier for a container to deal with multiple + documents. + </li> + <li> + GTK+ specific definitions in Scintilla.h were removed to ScintillaWidget.h. All GTK+ clients will need to + #include "ScintillaWidget.h". + </li> + <li> + For GTK+, tools can be executed in the background by setting subsystem to 2. + </li> + <li> + Keys in the properties files are now case sensitive. This leads to a performance increase. + </li> + <li> + Menu to choose which lexer to use on a file. + </li> + <li> + Tab size dialog on Windows. + </li> + <li> + File dialogs enlarged on GTK+. + </li> + <li> + Match Brace command bound to Ctrl+E on both platforms with Ctrl+] a synonym on Windows. + Ctrl+Shift+E is select to matching brace. Brace matching tries to match to either the inside or the + outside, depending on whether the cursor is inside or outside the braces initially. + View End of Line bound to Ctrl+Shift+O. + </li> + <li> + The Home key may be bound to move the caret to either the start of the line or the start of the + text on the line. + </li> + <li> + Visual C++ project file for SciTE. + </li> + <li> + Bug fixed with current x location after Tab key. + </li> + <li> + Bug fixed with hiding fold margin by setting fold.margin.width to 0. + </li> + <li> + Bugs fixed with file name confusion on Windows when long and short names used, or different capitalisations, + or relative paths. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite125.zip?download">Release 1.25</a> + </h3> + <ul> + <li> + Released on 9 May 2000. + </li> + <li> + Some Unicode support on Windows. Treats buffer and API as UTF-8 and displays + through UCS-2 of Windows. + </li> + <li> + Automatic indentation. Indentation size can be different to tab size. + </li> + <li> + Tool bar. + </li> + <li> + Status bar now on Windows as well as GTK+. + </li> + <li> + Input fields in Find and Replace dialogs now have history on both Windows and + GTK+. + </li> + <li> + Auto completion list items may be separated by a chosen character to allow spaces + in items. The selected item may be changed through the API. + </li> + <li> + Horizontal scrollbar can be turned off. + </li> + <li> + Property to remove trailing spaces when saving file. + </li> + <li> + On Windows, changed font size calculation to be more compatible with + other applications. + </li> + <li> + On GTK+, SciTE's global properties files are looked for in the directory specified in the + SCITE_HOME environment variable if it is set. This allows hiding in a dot directory. + </li> + <li> + Keyword lists in SciTE updated for JavaScript to include those destined to be used in + the future. IDL includes XPIDL keywords as well as MSIDL keywords. + </li> + <li> + Zoom level can be set and queried through API. + </li> + <li> + New notification sent before insertions and deletions. + </li> + <li> + LaTeX lexer. + </li> + <li> + Fixes to folding including when deletions and additions are performed. + </li> + <li> + Fix for crash with very long lines. + </li> + <li> + Fix to affect all of rectangular selections with deletion and case changing. + </li> + <li> + Removed non-working messages that had been included only for Richedit compatibility. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/scite124.zip">Release 1.24</a> + </h3> + <ul> + <li> + Released on 29 March 2000. + </li> + <li> + Added lexing of IDL based on C++ lexer with extra UUID lexical class. + </li> + <li> + Functions and associated keys for Line Delete, Line Cut, Line Transpose, + Selection Lower Case and Selection Upper Case. + </li> + <li> + Property setting for SciTE, eol.mode, chooses initial state of line end characters. + </li> + <li> + Fixed bugs in undo history with small almost-contiguous changes being incorrectly coalesced. + </li> + <li> + Fixed bugs with incorrect expansion of ContractionState data structures causing crash. + </li> + <li> + Fixed bugs relating to null fonts. + </li> + <li> + Fixed bugs where recolourisation was not done sometimes when required. + </li> + <li> + Fixed compilation problems with SVector.h. + </li> + <li> + Fixed bad setting of fold points in Python. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/scite123.zip?download">Release 1.23</a> + </h3> + <ul> + <li> + Released on 21 March 2000. + </li> + <li> + Directory structure to separate on basis of product (Scintilla, SciTE, DMApp) + and environment (Cross-platform, Win32, GTK+). + </li> + <li> + Download packaging to allow download of the source or platform dependent executables. + </li> + <li> + Source code now available from CVS at SourceForge. + </li> + <li> + Very simple Windows-only demonstration application DMApp is available from cvs as dmapp. + </li> + <li> + Lexing functionality may optionally be included in Scintilla rather than be provided by + the container. + </li> + <li> + Set of lexers included is determined at link time by defining which of the Lex* object files + are linked in. + </li> + <li> + On Windows, the SciLexer.DLL extends Scintilla.DLL with the standard lexers. + </li> + <li> + Enhanced HTML lexer styles embedded VBScript and Python. + ASP segments are styled and ASP scripts in JavaScript, VBScript and Python are styled. + </li> + <li> + PLSQL and PHP supported. + </li> + <li> + Maximum number of lexical states extended to 128. + </li> + <li> + Lexers may store per line parse state for multiple line features such as ASP script language choice. + </li> + <li> + Lexing API simplified. + </li> + <li> + Project file for Visual C++. + </li> + <li> + Can now cycle through all recent files with Ctrl+Tab in SciTE. + </li> + <li> + Bookmarks in SciTE. + </li> + <li> + Drag and drop copy works when dragging to the edge of the selection. + </li> + <li> + Fixed bug with value sizes in properties file. + </li> + <li> + Fixed bug with last line in properties file not being used. + </li> + <li> + Bug with multiple views of one document fixed. + </li> + <li> + Keypad now works on GTK+. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/SciTE122.zip?download">Release 1.22</a> + </h3> + <ul> + <li> + Released on 27 February 2000. + </li> + <li> + wxWindows platform defined. + Implementation for wxWindows will be available separately + from main Scintilla distribution. + </li> + <li> + Line folding in Scintilla. + </li> + <li> + SciTE performs syntax directed folding for C/C++/Java/JavaScript and for Python. + </li> + <li> + Optional macro recording support. + </li> + <li> + User properties file (SciTEUser.properties) allows for customisation by the user + that is not overwritten with each installation of SciTE. + </li> + <li> + Python lexer detects and highlights inconsistent indentation. + </li> + <li> + Margin API made more orthogonal. SCI_SETMARGINWIDTH and SCI_SETLINENUMBERWIDTH + are deprecated in favour of this new API. + </li> + <li> + Margins may be made sensitive to forward mouse click events to container. + </li> + <li> + SQL lexer and styles included. + </li> + <li> + Perl lexer handles regular expressions better. + </li> + <li> + Caret policy determines how closely caret is tracked by visible area. + </li> + <li> + New marker shapes: arrow pointing down, plus and minus. + </li> + <li> + Optionally display full path in title rather than just file name. + </li> + <li> + Container is notified when Scintilla gains or loses focus. + </li> + <li> + SciTE handles focus in a more standard way and applies the main + edit commands to the focused pane. + </li> + <li> + Container is notified when Scintilla determines that a line needs to be made visible. + </li> + <li> + Document watchers receive notification when document about to be deleted. + </li> + <li> + Document interface allows access to list of watchers. + </li> + <li> + Line end determined correctly for lines ending with only a '\n'. + </li> + <li> + Search variant that searches form current selection and sets selection. + </li> + <li> + SciTE understands format of diagnostic messages from WScript. + </li> + <li> + SciTE remembers top line of window for each file in MRU list so switching to a recent file + is more likely to show the same text as when the file was previously visible. + </li> + <li> + Document reference count now initialised correctly. + </li> + <li> + Setting a null document pointer creates an empty document. + </li> + <li> + WM_GETTEXT can no longer overrun buffer. + </li> + <li> + Polygon drawing bug fixed on GTK+. + </li> + <li> + Java and JavaScript lexers merged into C++ lexer. + </li> + <li> + C++ lexer indicates unterminated strings by colouring the end of the line + rather than changing the rest of the file to string style. This is less + obtrusive and helps the folding. + </li> + </ul> + <h3> + <a href="http://prdownloads.sourceforge.net/scintilla/SciTE121.zip?download">Release 1.21</a> + </h3> + <ul> + <li> + Released on 2 February 2000. + </li> + <li> + Blank margins on left and right side of text. + </li> + <li> + SCN_CHECKBRACE renamed SCN_UPDATEUI and made more efficient. + </li> + <li> + SciTE source code refactored into platform independent and platform specific classes. + </li> + <li> + XML and Perl subset lexers in SciTE. + </li> + <li> + Large improvement to lexing speed. + </li> + <li> + A new subsystem, 2, allows use of ShellExec on Windows. + </li> + <li> + Borland compatible makefile. + </li> + <li> + Status bar showing caret position in GTK+ version of SciTE. + </li> + <li> + Bug fixes to selection drawing when part of selection outside window, mouse release over + scroll bars, and scroll positioning after deletion. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/SciTE120.zip">Release 1.2</a> + </h3> + <ul> + <li> + Released on 21 January 2000. + </li> + <li> + Multiple views of one document. + </li> + <li> + Rectangular selection, cut, copy, paste, drag and drop. + </li> + <li> + Long line indication. + </li> + <li> + Reverse searching + </li> + <li> + Line end conversion. + </li> + <li> + Generic autocompletion and calltips in SciTE. + </li> + <li> + Call tip background colour can be set. + </li> + <li> + SCI_MARKERPREV for moving to a previous marker. + </li> + <li> + Caret kept more within window where possible. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/SciTE115.zip">Release 1.15</a> + </h3> + <ul> + <li> + Released on 15 December 1999. + </li> + <li> + Brace highlighting and badlighting (for mismatched braces). + </li> + <li> + Visible line ends. + </li> + <li> + Multiple line call tips. + </li> + <li> + Printing now works from SciTE on Windows. + </li> + <li> + SciTE has a global "*" lexer style that is used as the basis for all the lexers' styles. + </li> + <li> + Fixes some warnings on GTK+ 1.2.6. + </li> + <li> + Better handling of modal dialogs on GTK+. + </li> + <li> + Resize handle drawn on pane splitter in SciTE on GTK+ so it looks more like a regular GTK+ + *paned widget. + </li> + <li> + SciTE does not place window origin offscreen if no properties file found on GTK+. + </li> + <li> + File open filter remembered in SciTE on Windows. + </li> + <li> + New mechanism using style numbers 32 to 36 standardises the setting of styles for brace + highlighting, brace badlighting, line numbers, control characters and the default style. + </li> + <li> + Old messages SCI_SETFORE .. SCI_SETFONT have been replaced by the default style 32. The old + messages are deprecated and will disappear in a future version. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/SciTE114.zip">Release 1.14</a> + </h3> + <ul> + <li> + Released on 20 November 1999. + </li> + <li> + Fixes a scrolling bug reported on GTK+. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/SciTE113.zip">Release 1.13</a> + </h3> + <ul> + <li> + Released on 18 November 1999. + </li> + <li> + Fixes compilation problems with the mingw32 GCC 2.95.2 on Windows. + </li> + <li> + Control characters are now visible. + </li> + <li> + Performance has improved, particularly for scrolling. + </li> + <li> + Windows RichEdit emulation is more accurate. This may break client code that uses these + messages: EM_GETLINE, EM_GETLINECOUNT, EM_EXGETSEL, EM_EXSETSEL, EM_EXLINEFROMCHAR, + EM_LINELENGTH, EM_LINEINDEX, EM_CHARFROMPOS, EM_POSFROMCHAR, and EM_GETTEXTRANGE. + </li> + <li> + Menus rearranged and accelerator keys set for all static items. + </li> + <li> + Placement of space indicators in view whitespace mode is more accurate with some fonts. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/SciTE112.zip">Release 1.12</a> + </h3> + <ul> + <li> + Released on 9 November 1999. + </li> + <li> + Packaging error in 1.11 meant that the compilation error was not fixed in that release. + Linux/GTK+ should compile with GCC 2.95 this time. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/SciTE111.zip">Release 1.11</a> + </h3> + <ul> + <li> + Released on 7 November 1999. + </li> + <li> + Fixed a compilation bug in ScintillaGTK.cxx. + </li> + <li> + Added a README file to explain how to build. + </li> + <li> + GTK+/Linux downloads now include documentation. + </li> + <li> + Binary only Sc1.EXE one file download for Windows. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/SciTE110.zip">Release 1.1</a> + </h3> + <ul> + <li> + Released on 6 November 1999. + </li> + <li> + Major restructuring for better modularity and platform independence. + </li> + <li> + Inter-application drag and drop. + </li> + <li> + Printing support in Scintilla on Windows. + </li> + <li> + Styles can select colouring to end of line. This can be used when a file contains more than + one language to differentiate between the areas in each language. An example is the HTML + + JavaScript styling in SciTE. + </li> + <li> + Actions can be grouped in the undo stack, so they will be undone together. This grouping is + hierarchical so higher level actions such as replace all can be undone in one go. Call to + discover whether there are any actions to redo. + </li> + <li> + The set of characters that define words can be changed. + </li> + <li> + Markers now have identifiers and can be found and deleted by their identifier. The empty + marker type can be used to make a marker that is invisible and which is only used to trace + where a particular line moves to. + </li> + <li> + Double click notification. + </li> + <li> + HTML styling in SciTE also styles embedded JavaScript. + </li> + <li> + Additional tool commands can be added to SciTE. + </li> + <li> + SciTE option to allow reloading if changed upon application activation and saving on + application deactivation. Not yet working on GTK+ version. + </li> + <li> + Entry fields in search dialogs remember last 10 user entries. Not working in all cases in + Windows version. + </li> + <li> + SciTE can save a styled copy of the current file in HTML format. As SciTE does not yet + support printing, this can be used to print a file by then using a browser to print the + HTML file. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/SciTE102.zip">Release 1.02</a> + </h3> + <ul> + <li> + Released on 1 October 1999. + </li> + <li> + GTK+ version compiles with GCC 2.95. + </li> + <li> + Properly deleting objects when window destroyed under GTK+. + </li> + <li> + If the selection is not empty backspace deletes the selection. + </li> + <li> + Some X style middle mouse button handling for copying the primary selection to and from + Scintilla. Does not work in all cases. + </li> + <li> + HTML styling in SciTE. + </li> + <li> + Stopped dirty flag being set in SciTE when results pane modified. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/SciTE101.zip">Release 1.01</a> + </h3> + <ul> + <li> + Released on 28 September 1999. + </li> + <li> + Better DBCS support on Windows including IME. + </li> + <li> + Wheel mouse support for scrolling and zooming on Windows. Zooming with Ctrl+KeypadPlus and + Ctrl+KeypadMinus. + </li> + <li> + Performance improvements especially on GTK+. + </li> + <li> + Caret blinking and settable colour on both GTK+ and Windows. + </li> + <li> + Drag and drop within a Scintilla window. On Windows, files can be dragged into SciTE. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/SciTE100.zip">Release 1.0</a> + </h3> + <ul> + <li> + Released on 17 May 1999. + </li> + <li> + Changed name of "Tide" to "SciTE" to avoid clash with a TCL based IDE. "SciTE" is a + SCIntilla based Text Editor and is Latin meaning something like "understanding in a neat + way" and is also an Old English version of the word "shit". + </li> + <li> + There is a SCI_AUTOCSTOPS message for defining a string of characters that will stop + autocompletion mode. Autocompletion mode is cancelled when any cursor movement occurs apart + from backspace. + </li> + <li> + GTK+ version now splits horizontally as well as vertically and all dialogs cancel when the + escape key is pressed. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/Tide92.zip">Beta release 0.93</a> + </h3> + <ul> + <li> + Released on 12 May 1999. + </li> + <li> + A bit more robust than 0.92 and supports SCI_MARKERNEXT message. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/Tide92.zip">Beta release 0.92</a> + </h3> + <ul> + <li> + Released on 11 May 1999. + </li> + <li> + GTK+ version now contains all features of Windows version with some very small differences. + Executing programs works much better now. + </li> + <li> + New palette code to allow more colours to be displayed in 256 colour screen modes. A line + number column can be displayed to the left of the selection margin. + </li> + <li> + The code that maps from line numbers to text positions and back has been completely + rewritten to be faster, and to allow markers to move with the text. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/Tide91.zip">Beta release 0.91</a> + </h3> + <ul> + <li> + Released on 30 April 1999, containing fixes to text measuring to make Scintilla work better + with bitmap fonts. Also some small fixes to make compiling work with Visual C++. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/Tide90.zip">Beta release 0.90</a> + </h3> + <ul> + <li> + Released on 29 April 1999, containing working GTK+/Linux version. + </li> + <li> + The Java, C++ and Python lexers recognise operators as distinct from default allowing them + to be highlighted. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/Tide82.zip">Beta release 0.82</a> + </h3> + <ul> + <li> + Released on 1 April 1999, to fix a problem with handling the Enter key in PythonWin. Also + fixes some problems with cmd key mapping. + </li> + </ul> + <h3> + <a href="http://www.scintilla.org/Tide81.zip">Beta release 0.81</a> + </h3> + <ul> + <li> + Released on 30th March 1999, containing bug fixes and a few more features. + </li> + <li> + Static linking supported and Tidy.EXE, a statically linked version of Tide.EXE. Changes to + compiler flags in the makefiles to optimise for size. + </li> + <li> + Scintilla supports a 'savepoint' in the undo stack which can be set by the container when + the document is saved. Notifications are sent to the container when the savepoint is + entered or left, allowing the container to to display a dirty indicator and change its + menus. + </li> + <li> + When Scintilla is set to read-only mode, a notification is sent to the container should the + user try to edit the document. This can be used to check the document out of a version + control system. + </li> + <li> + There is an API for setting the appearance of indicators. + </li> + <li> + The keyboard mapping can be redefined or removed so it can be implemented completely by the + container. All of the keyboard commands are now commands which can be sent by the + container. + </li> + <li> + A home command like Visual C++ with one hit going to the start of the text on the line and + the next going to the left margin is available. I do not personally like this but my + fingers have become trained to it by much repetition. + </li> + <li> + SCI_MARKERDELETEALL has an argument in wParam which is the number of the type marker to + delete with -1 performing the old action of removing all marker types. + </li> + <li> + Tide now understands both the file name and line numbers in error messages in most cases. + </li> + <li> + Tide remembers the current lines of files in the recently used list. + </li> + <li> + Tide has a Find in Files command. + </li> + </ul> + <h3> + Beta release 0.80 + </h3> + <ul> + <li> + This was the first public release on 14th March 1999, containing a mostly working Win32 + Scintilla DLL and Tide EXE. + </li> + </ul> + <h3> + Beta releases of SciTE were called Tide + </h3> + </body> +</html> + diff --git a/doc/Scintilla/ScintillaRelated.html b/doc/Scintilla/ScintillaRelated.html new file mode 100755 index 0000000..bc2edc8 --- /dev/null +++ b/doc/Scintilla/ScintillaRelated.html @@ -0,0 +1,507 @@ +<?xml version="1.0"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="generator" content="HTML Tidy, see www.w3.org" /> + <meta name="generator" content="SciTE" /> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + <title> + Scintilla and SciTE Related Sites + </title> + </head> + <body bgcolor="#FFFFFF" text="#000000"> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="0" border="0"> + <tr> + <td> + <img src="SciTEIco.png" border="3" height="64" width="64" alt="Scintilla icon" /> + </td> + <td> + <a href="index.html" style="color:white;text-decoration:none"><font size="5">Scintilla + and SciTE</font></a> + </td> + </tr> + </table> + <h2> + Related Sites + </h2> + <h3> + Ports and Bindings of Scintilla + </h3> + <p> + <a href="http://mewsoft.com/cgi-bin/forum/forum.cgi?action=ViewTopic&Topic=1494&Forum=1&Page=1&Period=0a&Lang=English">Editawy</a> + is an ActiveX Control wrapper that support all Scintilla functions and additional high level functions. + </p> + <p> + <a href="http://sourceforge.net/projects/jintilla/">Jintilla</a> + is a JNI wrapper that allows Scintilla to be used in Java with + both SWT and AWT. + </p> + <p> + <a href="http://delphisci.sourceforge.net/">Delphi Scintilla Interface Components</a> + is a FREE collection of components that makes it easy to use the + Scintilla source code editing control from within Delphi and C++ Builder. + </p> + <p> + <a href="http://www.lehigh.edu/~jrl1/">wxStEdit</a> + is a library and sample program that provides extra features over wxStyledTextControl. + </p> + <p> + <a href="http://www.naughter.com/scintilla.html">CScintillaCtrl, CScintillaView & CScintillaDoc</a> + are freeware MFC classes to encapsulate Scintilla. + </p> + <p> + <a href="http://sourceforge.net/projects/scide/">ScintillaNet + </a> is an encapsulation of Scintilla for use within the .NET framework. + </p> + <p> + <a href="http://www.riverbankcomputing.co.uk/qscintilla/index.php">QScintilla + </a> is a port of Scintilla to the Qt platform. It has a similar license to Qt: GPL for use in + free software and commercial for use in close-source applications. + </p> + <p> + <a href="http://www.adapower.com/gwindows/"> + GWindows</a> is a Win32 RAD GUI Framework for Ada 95 that + includes a binding of Scintilla. + </p> + <p> + <a href="http://www.templatetamer.org/index.php?DolphinScintilla"> + DolphinScintilla</a> is a DolphinSmalltalk wrapper for Scintilla. + </p> + <p> + <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/scintilla/ScintillaVB/">ScintillaVB</a> + is an ActiveX control written in VB that encapsulates Scintilla. + </p> + <p> + <a href="http://savannah.nongnu.org/projects/fxscintilla/">FXScintilla + </a> is a port of Scintilla to the FOX platform. FXRuby includes Ruby + bindings for FXScintilla. + </p> + <p> + <a href="http://www.pnotepad.org/scintilla/">Delphi wrapper</a> for + Scintilla which is also usable from Borland C++ Builder. + </p> + <p> + The wxStyledTextCtrl editor component in the + <a href="http://wxwindows.org/">wxWindows</a> cross platform toolkit is based on Scintilla.<br /> + A Python binding for wxStyledTextCtrl is part of <a href="http://wxpython.org/">wxPython</a>. + </p> + <p> + <a href="http://sourceforge.net/projects/moleskine/">gtkscintilla</a> + is an alternative GTK class implementation for scintilla. + This implementation acts more like a Gtk+ object, with many methods rather + than just scintilla_send_message() and is available as a shared library. + This implementation works with GTK 1.x. + </p> + <p> + <a href="http://sourceforge.net/projects/moleskine/">gtkscintilla2</a> + is an alternative GTK class implementation for scintilla + similar to the above, but for GTK 2.x. + </p> + <p> + <a href="http://www.wingide.com/opensource/pyscintilla.html">pyscintilla</a> + is the original Python binding for Scintilla's default GTK + 1.x class. Includes some additional support, such as native printing on + Windows. The binding is hand-written rather than auto-generated from the + Scintilla.iface file. + </p> + <p> + <a href="http://sourceforge.net/projects/moleskine/">pygtkscintilla</a> + is a Python binding for gtk1.x scintilla that uses + gtkscintilla instead of the default GTK class. + </p> + <p> + <a href="http://sra.itc.it/people/cavada/PyScintilla2.html">pyscintilla2</a> + is a Python binding for GTK 2.x scintilla that uses + gtkscintilla2. + </p> + <p> + <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/scintilla/scintillactrl/">ScintillaCtrl</a> + is an unmaintained ActiveX control wrapper for Scintilla. + </p> + <h3> + Projects using Scintilla + </h3> + <p> + <a href="http://pype.sourceforge.net/">PyPE</a> + is an editor written in Python with the wxPython GUI toolkit. + </p> + <p> + <a href="http://home.mweb.co.za/sd/sdonovan/sciboo.html">Sciboo</a> + is an editor based on ScintillaNET. + </p> + <p> + <a href="https://sourceforge.net/projects/tsct/">The Scite Config Tool</a> + is a graphical user interface for changing SciTE properties files. + </p> + <p> + <a href="http://www.totalcmd.net/plugring/SciLister.html">Scintilla Lister</a> + is a plugin for Total Commander allowing viewing all documents with syntax highlighting + inside Total Commander. + </p> + <p> + <a href="http://chscite.sourceforge.net">ChSciTE</a> + is a free IDE for C/C++ interpreter Ch. It runs cross platform. + Ch is for cross-platform scripting, shell + programming, 2D/3D plotting, numerical computing, and embedded + scripting. + </p> + <p> + <a href="http://codeblocks.org/"> + Code::Blocks</a> is an open source, cross platform free C++ IDE. + </p> + <p> + <a href="http://notepad-plus.sourceforge.net/uk/site.htm"> + Notepad++</a> is a free source code editor under Windows. + </p> + <p> + <a href="http://gubed.mccabe.nu/"> + Gubed</a> is a cross platform program to debug PHP scripts. + </p> + <p> + <a href="http://www.lesser-software.com/lswdnl.htm"> + LSW DotNet-Lab</a> is a development environment for the .NET platform. + </p> + <p> + <a href="http://glintercept.nutty.org/"> + GLIntercept</a> is an OpenGL function call interceptor that uses SciTE as a + run-time shader editor. + </p> + <p> + <a href="http://xined.sourceforge.net/"> + Xin</a> is an open-source XML editor for Windows. + </p> + <p> + <a href="http://wxguide.sourceforge.net/indexedit.html"> + wyoEditor</a> is "A nice editor with a well designed and consistent look and feel". + </p> + <p> + <a href="http://www.flos-freeware.ch/notepad2.html"> + Notepad2</a> is "Yet another Notepad replacement". + </p> + <p> + <a href="http://pycrash.sourceforge.net/index.php?type=3"> + PyCrash Viewer</a> can examine crash dumps of Python programs. + </p> + <p> + <a href="http://www.cabletest.com/mpt-discovery.shtml"> + MPT series Wire Analyzers</a> use Scintilla and SciTE. + </p> + <p> + <a href="http://www.mygenerationsoftware.com">MyGeneration</a> + is a .NET based code generator. + </p> + <p> + <a href="http://cssed.sourceforge.net">CSSED</a> + is a tiny GTK2 CSS editor. + </p> + <p> + <a href="http://www.atari-soldiers.com/dide.html">DIDE</a> + is a free IDE for the D language on Windows. + </p> + <p> + <a href="http://wxghostscript.sourceforge.net/"> + IdePS</a> + is a free Integrated Development Environment for PostScript + </p> + <p> + <a href="http://cute.sourceforge.net/"> + CUTE</a> + is a user-friendly source code editor easily extended using Python. + </p> + <p> + <a href="http://www.spaceblue.com/venis/"> + Venis IX</a>, + the Visual Environment for NSIS (Nullsoft Scriptable Install System). + </p> + <p> + <a href="http://www.parinya.ca/"> + MinGW Developer Studio</a> + is a simple C/C++ IDE for the MinGW compiler on Windows. + </p> + <p> + <a href="http://www.die-offenbachs.de/detlev/eric3.html">Eric3</a> + is a Python IDE written using PyQt and QScintilla. + </p> + <p> + <a href="http://www.templatetamer.com/">TemplateTamer</a> + is a tool for development of template based PHP web pages. + </p> + <p> + <a href="http://www.bomberstudios.com/sciteflash/">SciTE|Flash</a> + is a free Scintilla-based ActionScript editor for Windows. + </p> + <p> + <a href="http://www.computersciencelab.com/CppIde.htm">CPPIDE</a> + is part of some commercial high-school oriented programming course software. + </p> + <p> + <a href="http://www.phpwebclasses.org/index.php?node=13">phpSciTE</a> + is a free distribution of SciTE for Windows customised for use with PHP + and bundled with a PHP API file and online help. + </p> + <p> + <a href="http://www.blazingtools.com/is.html">Instant Source</a> + is a commercial tool for looking at the HTML on web sites. + </p> + <p> + <a href="http://www.codejoin.com/radon/">RAD.On++</a> + is a free C++ Rapid Application Developer for Win32. + </p> + <p> + <a href="http://www.luascript.thersgb.net/index.htm">wxLua</a> is both + a binding of the wxWindows classes for Lua and a small IDE that works on Linux + and Windows. + </p> + <p> + <a href="http://wxbasic.sourceforge.net/">wxBasic</a> is an open source + Basic interpreter that uses the wxWindows toolkit. A small IDE is under construction. + </p> + <p> + <a href="http://freeride.rubyforge.org/wiki/wiki.pl">FreeRIDE</a> will be a + cross-platform IDE for the Ruby programming language. + </p> + <p> + <a href="http://visual-mingw.sourceforge.net/">Visual MinGW</a> is an + IDE for the MinGW compiler system.This runs on Windows with gcc. + </p> + <p> + The <a href="http://archaeopteryx.com/wingide">Wing IDE</a> is a + complete integrated development environment for the Python programming + language. + Available on Intel based Linux and Windows and on MacOS X through XDarwin. + </p> + <p> + <a href="http://www.gorlice.net.pl/~rybak/luaide/">LuaIDE</a> + is an IDE for Lua on Windows. + </p> + <p> + <a href="http://www.aegisknight.org/sphere/">Sphere</a> + is 2D RPG engine with a development environment. + </p> + <p> + <a href="http://gaiacrtn.free.fr/practical-ruby/index.html">Practical Ruby</a> + is an IDE for Ruby on Windows. + </p> + <p> + <a href="http://www.gnuenterprise.org/">GNUe</a> + is a suite of tools and applications for solving the needs of the enterprise. + </p> + <p> + <a href="http://silvercity.sourceforge.net/">SilverCity</a> + is a lexing package that can provide lexical analysis for over 20 programming + and markup languages. + </p> + <p> + <a href="http://www.akbkhome.com/Projects/phpmole-IDE/">Php mole</a> + is an integrated development enviroment for developing (primarily) + web based and phpgtk based applications. + </p> + <p> + <a href="http://hapdebugger.sourceforge.net/">HAP Python Remote Debugger</a> + is a Python debugger that can run on one Windows machine debugging a Python program running + on either the same or another machine. + </p> + <p> + <a href="http://www.rexx.com/~dkuhlman/">pyeditor and wxEditor</a> + are scriptable editors implemented in Python. pyeditor is based on GTK+ and + the pyscintilla wrapper. wxEditor is based on wxWindows, wxPython and + wxStyledTextControl. + </p> + <p> + <a href="http://www.pragmaticprogrammer.com/ruby/downloads/ruby-install.html">Ruby installation</a> + that includes SciTE set up for Ruby using an included copy of the "Programming Ruby" book for help. + </p> + <p> + <a href="http://www.lcc.ufrn.br/~milano/ild/index.html">Interactive LuaSpace Development</a> + is a graphical environment for LuaSpace which combines the CORBA platform + with the language Lua. + </p> + <p> + <a href="http://sourceforge.net/projects/pycrust/">PyCrust</a> is an interactive + Python shell based on wxPython. + </p> + <p> + <a href="http://www.thekompany.com/products/blackadder/">Black Adder</a> is a + Qt based development environment for Python and Ruby. + </p> + <p> + <a href="http://www.activestate.com/Products/Komodo/">Komodo</a> + is a cross-platform multi-language development environment built + as an application of Mozilla. + </p> + <p> + <a href="http://www.xtgsystems.com/lua/">titmouse</a> + is a Lua editor/debugger for Windows. It is available as both a component + and an application. + </p> + <p> + <a href="http://llt.chez.tiscali.fr/">Filerx</a> + is a project manager for SciTE on Windows. + Open source and includes an implementation of SciTE's Director interface so + will be of interest to others wanting to control SciTE. + </p> + <p> + <a href="http://anjuta.sourceforge.net/">Anjuta</a> + is an open source C/C++ IDE for Linux/GNOME. + </p> + <p> + <a href="http://www.develop.com/genx/">Gen<X></a> + is a <i>code generalisation</i> product for Win32 that uses Scintilla in the X-Code Editor (which + can also be used for general purpose editing) and for editing HTML in the HTML Dialog + Editor. + </p> + <p> + <a href="http://www.micampe.it/software/moleskine/">Moleskine</a> is a Scintilla + based editor for GTK+. More ambitious than SciTE with plans + for MDI, printing, and session management. + Includes a new GTK+ wrapper widget for Scintilla. + </p> + <p> + A <a href="http://www.burgaud.com">version of SciTE for Win32</a> enhanced + with a tab control to allow easy movement between buffers. + Go to the "Goodies" area on this site. + </p> + <p> + <a href="http://www.suneido.com"> + Suneido</a> is an integrated application platform currently available for Win32 that includes an + object-oriented language, client-server database, and user interface and reporting frameworks. + </p> + <p> + <a href="http://www.BitBuilder.com"> + BitLeaf</a> is a new GNOME based development environment. + Currently at an early stage of development. + </p> + <p> + <a href="http://agast.dyndns.org/agast/home.html"> + Agast</a> is an authoring system for adventure games which includes + a customised version of SciTE. + </p> + <p> + <a href="http://oss.software.ibm.com/developerworks/opensource/sashxb/"> + SashXB for Linux</a> is an open source application development tool by + IBM that uses Scintilla. + </p> + <p> + <a href="http://boa-constructor.sourceforge.net/">Boa Constructor</a> is a RAD GUI + Building IDE for the wxWindows cross platform platform. Written using wxPython with the + wxStyledTextCtrl used as its editor. + </p> + <p> + <a href="http://www.python.org/windows/">PythonWin</a>, a Win32 IDE for Python, uses + Scintilla for both its editing and interactive windows. + </p> + <h3> + Editing Components + </h3> + <p> + <a href="http://gtksourceview.sourceforge.net/index.html">GtkSourceView</a> + is a text widget that extends the standard GTK+ 2.x text widget and improves it + by implementing syntax highlighting and other features typical of a source editor. + </p> + <p> + <a href="http://aeditor.rubyforge.org/">AEditor</a> + is a free source code editing component implemented in Ruby. + </p> + <p> + <a href="http://www.actiprosoftware.com/Products/DotNet/SyntaxEditor/Default.aspx">SyntaxEditor</a> + is a commercial native .Net source code editing component. + </p> + <p> + <a href="http://jedit.sourceforge.net/">jEdit</a> is a good Open Source syntax colouring + editor written in and for Java. + </p> + <p> + <a href="http://www.gtk.org/">GTK+</a>, the GIMP Toolkit, contains a rich text editing + widget.<br /> + <a href="http://gedit.sourceforge.net/">Gedit</a> is an editor for GTK+/GNOME.<br /> + <!-- + <a href="http://www.daimi.au.dk/~mailund/gtk.html">GtkEditor</a> is a source code editing + widget based on the GTK+ text widget.<br /> + <a href="http://gide.gdev.net/">gIDE</a> is an IDE based on GTK+.<br /> + <a href="http://www.bahnhof.se/~mikeh/linux_software.html">GtkExText</a> is a source code + oriented text widget for GTK+. + --> + </p> + <p> + <a href="http://www.codeguru.com/">CodeGuru</a> has source code for several Win32 MFC based + editors. + </p> + <a href="http://synedit.sourceforge.net/">SynEdit</a> is a Win32 edit control written + in Delphi. + <p> + <a href="http://www.tetradyne.com/srcvwax.htm">SourceView</a> is a commercial editing + component for Win32. + </p> + <p> + <a href="http://www.winmain.com/">CodeMax</a> is another commercial component for Win32. + </p> + <h3> + Documents + </h3> + <p> + <a href="http://www.finseth.com/~fin/craft/">The Craft of Text Editing</a> + describes how EMACS works, <i>Craig A. Finseth</i> + </p> + <p> + <a href="http://freespace.virgin.net/james.brown7/tuts/bigmem02.htm">Span Tables</a> + are another data structure that can be used to represent documents in memory in a way + that performs well when data is inserted and deleted, <i>James Brown</i> + </p> + <p> + <a href="http://www.cs.cmu.edu/~wjh/papers/byte.html">Data Structures in a Bit-Mapped Text + Editor</a>, <i>Wilfred J. Hanson</i>, Byte January 1987 + </p> + <p> + Text Editors: Algorithms and Architectures, <i>Ray Valdés</i>, Dr. Dobbs Journal + April 1993 + </p> + <p> + Macintosh User Interface Guidelines and TextEdit chapters of Inside Macintosh + </p> + <h3> + Development Tools + </h3> + <p> + Scintilla and SciTE were developed using the + <a href="http://www.mingw.org/">Mingw version of GCC</a>. + </p> + <p> + <a href="http://astyle.sourceforge.net/">AStyle</a> is a source code formatter for C++ and + Java code. SciTE has an Indent command defined for .cxx files that uses AStyle. + </p> + <p> + <a href="http://winmerge.sourceforge.net/">WinMerge</a> is an interactive diff / merge + for Windows. I prefer code submissions in the form of source files rather than diffs and then run + WinMerge over the files to work out how to merge. + </p> + <p> + <a href="http://www.python.org">Python</a> is my favourite programming language. Scintilla + was started after I tried to improve the editor built into <a + href="http://www.python.org/windows/">PythonWin</a>, but was frustrated by the limitations of + the Windows Richedit control which PythonWin used. + </p> + <p> + <a href="http://www.cs.yorku.ca/~oz/">regex</a> is a public domain + implementation of regular expression pattern matching used in Scintilla. + </p> + <!-- + <p> + <a href="http://www.petes-place.com/">CodeMagic</a> is a free generic IDE for Win32. + Strongly Perl focused but customisable for other languages. Has more user interface features + than SciTE. + </p> + --> + <p> + <!-- + Debugging dance soundtrack from <a href="http://www.insurge.com.au">iNsuRge</a> + and --> + Inspirational coding soundscapes by <a href="http://www.davidbridie.com.au">David Bridie</a>. + </p> + <p> + Get away from hacking without any of that tedious standing up bother: <a + href="http://www.zip.com.au/~sneal/index.html">Virtually There</a> ;). + </p> + </body> +</html> + diff --git a/doc/Scintilla/ScintillaToDo.html b/doc/Scintilla/ScintillaToDo.html new file mode 100755 index 0000000..0fd6b0b --- /dev/null +++ b/doc/Scintilla/ScintillaToDo.html @@ -0,0 +1,178 @@ +<?xml version="1.0"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="generator" content="HTML Tidy, see www.w3.org" /> + <meta name="generator" content="SciTE" /> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + <title> + Scintilla and SciTE To Do + </title> + </head> + <body bgcolor="#FFFFFF" text="#000000"> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="0" border="0"> + <tr> + <td> + <img src="SciTEIco.png" border="3" height="64" width="64" alt="Scintilla icon" /> + </td> + <td> + <a href="index.html" style="color:white;text-decoration:none"><font size="5">Scintilla + and SciTE</font></a> + </td> + </tr> + </table> + <h2> + Bugs and To Do List + </h2> + <h3> + Feedback + </h3> + <p> + Issues can be reported on the <a href="https://sourceforge.net/tracker/?group_id=2439&atid=102439">Bug Tracker</a> + and features requested on the <a href="https://sourceforge.net/tracker/?group_id=2439&atid=352439">Feature Request Tracker</a>. + </p> + <h3> + Scintilla Bugs + </h3> + <p> + At the end of italics style runs characters can be chopped off. An example + is using Verdana 12 point italics for strings makes an ending double quote + half visible and an ending single quote invisible. This is hard to solve + completely, may be better to avoid these situations by, for example, + choosing a font like Times New Roman for strings. There is a specific kluge + for the end of line which adds some room for italics but this does not + work elsewhere. + </p> + <p> + Dragging over bold text in some fonts will ripple because of the difference in + size between drawing all of a string at once and drawing it in parts. + </p> + <p> + Automatic scrolling when text dragged near edge of window. + </p> + <h3> + GTK+ Version Bugs + </h3> + <h3> + Scintilla To Do + </h3> + <p> + Folding for languages that don't have it yet and good folding for languages + that inherited poor folding from another languages folding code. + </p> + <p> + Simple pattern based styling. + </p> + <p> + Different height lines based upon tallest text on the line rather than on the tallest style + possible. + </p> + <p> + Composition of lexing for mixed languages (such as ASP+ over COBOL) by + combining lexers. + </p> + <p> + Printing support on GTK+. Maybe Postscript output or use Gnome? + </p> + <p> + Stream folding which could be used to fold up the contents of HTML elements. + </p> + <p> + Persisting view state such as current folding into a stream or blob so it is easy + to restore. + </p> + <p> + Move line up and move line down keys or move selected lines up / down. + </p> + <p> + Printing of highlight lines and folding margin. + </p> + <p> + Flow diagrams inside editor similar to + <a href="http://www.eng.auburn.edu/grasp/grasp_main.shtml"> + GRASP</a>. + </p> + <p> + A VCL component wrapper around Scintilla so it can be used with Delphi or + Borland C++ Builder. + There is <a href="http://www.pnotepad.org/scintilla/">some work</a> + on this available. + </p> + <p> + Port to MacOS X. + </p> + <p> + More lexers for other languages. + </p> + <p> + Automatically calculated range for horizontal scrolling. + </p> + <p> + Virtual space at the end of lines so the caret can be moved beyond the end + of lines with the cursor keys. May also make rectangular operations easier + to perform. + </p> + <h3> + SciTE To Do + </h3> + <p> + Good regular expression support through a plugin. + </p> + <p> + Allow tools to transform the selection, performing an operation like + indentation or sorting. + </p> + <p> + Allow file name based selection on all properties rather than just a chosen few. + </p> + <p> + Opening from and saving to FTP servers. + </p> + <p> + Setting to fold away comments upon opening. + </p> + <p> + User defined fold ranges. + </p> + <p> + Silent mode that does not display any message boxes. + </p> + <h3> + Features I am unlikely to do + </h3> + <p> + These are features I don't like or don't think are important enough to work on. + Implementations are welcome from others though. + </p> + <p> + Automatically saving modified menu shortcuts on exit. + </p> + <p> + Mouse wheel panning (press the mouse wheel and then move the mouse) on + Windows. + </p> + <p> + Adding options to the save dialog to save in a particular encoding or with a + chosen line ending. + </p> + <h3> + Directions + </h3> + <p> + The main point of this development is Scintilla, and this is where most effort will + go. SciTE will get new features, but only when they make my life easier - I am + not intending to make it grow up to be a huge full-function IDE like Visual + Cafe. The lines I've currently decided not to step over in SciTE are any sort of + project facility and any configuration dialogs. SciTE for Windows now has a + Director interface for communicating with a separate project manager + application. + </p> + <p> + If you are interested in contributing code, do not feel any need to make it cross + platform. + Just code it for your platform and I'll either reimplement for the other platform or + ensure that there is no effect on the other platform. + </p> + </body> +</html> diff --git a/doc/Scintilla/ScintillaUsage.html b/doc/Scintilla/ScintillaUsage.html new file mode 100755 index 0000000..e0ffb0b --- /dev/null +++ b/doc/Scintilla/ScintillaUsage.html @@ -0,0 +1,375 @@ +<?xml version="1.0"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="generator" content="HTML Tidy, see www.w3.org" /> + <meta name="generator" content="SciTE" /> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + <title> + Scintilla Usage Notes + </title> +<style type="text/css"> +SPAN { + font-family: Verdana, Arial, Helvetica; + font-size: 9pt; +} +.S0 { + color: #808080; + font-family: Verdana, Arial, Helvetica; +} +.S1 { + font-family: Comic Sans MS, Times New Roman, Times; + color: #007F00; + font-size: 8pt; +} +.S2 { + font-family: Comic Sans MS, Times New Roman, Times; + color: #007F00; + font-size: 8pt; +} +.S3 { + font-family: Verdana, Arial, Helvetica; + color: #7F7F7F; +} +.S4 { + font-family: Verdana, Arial, Helvetica; + color: #007F7F; +} +.S5 { + color: #00007F; + font-weight: bold; + font-family: Verdana, Arial, Helvetica; +} +.S6 { + color: #7F007F; + font-family: Courier New, Courier; +} +.S7 { + color: #7F007F; + font-family: Courier New, Courier; +} +.S8 { + color: #007F7F; +} +.S9 { + color: #7F7F00; +} +.S10 { + font-weight: bold; +} +</style> + </head> + <body bgcolor="#FFFFFF" text="#000000"> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="0" border="0"> + <tr> + <td> + <img src="SciTEIco.png" border="3" height="64" width="64" alt="Scintilla icon" /> + </td> + <td> + <a href="index.html" style="color:white;text-decoration:none"><font size="5">Scintilla + Usage Notes</font></a> + </td> + </tr> + </table> + <h2> + Implementing Auto-Indent + </h2> + <p> + The key idea is to use the SCN_CHARADDED notification to add indentation after a newline. + </p> + <p> + The lParam on the notification is a pointer to a SCNotification structure whose ch member + specifies the character added. If a newline was added, the previous line can be retrieved and + the same indentation can be added to the new line. + </p> + <p> + Here is the relevant portion of code from SciTE: (SciTE.cxx SciTEWindow::CharAdded) + </p> + <span class='S5'>if</span><span class='S0'> </span> <span class='S10'>(</span><span + class='S11'>ch</span><span class='S0'> </span> <span class='S10'>==</span><span + class='S0'> </span> <span class='S7'>'\r'</span><span class='S0'> </span> <span + class='S10'>||</span><span class='S0'> </span> <span class='S11'>ch</span><span + class='S0'> </span> <span class='S10'>==</span><span class='S0'> </span> <span + class='S7'>'\n'</span><span class='S10'>)</span><span class='S0'> </span> <span + class='S10'>{</span><span class='S0'><br /> + </span> <span class='S5'>char</span><span class='S0'> </span> + <span class='S11'>linebuf</span><span class='S10'>[</span><span class='S4'>1000</span><span + class='S10'>];</span><span class='S0'><br /> + </span> <span class='S5'>int</span><span class='S0'> </span> + <span class='S11'>curLine</span><span class='S0'> </span> <span class='S10'>=</span><span + class='S0'> </span> <span class='S11'>GetCurrentLineNumber</span><span + class='S10'>();</span><span class='S0'><br /> + </span> <span class='S5'>int</span><span class='S0'> </span> + <span class='S11'>lineLength</span><span class='S0'> </span> <span class='S10'> + =</span><span class='S0'> </span> <span class='S11'>SendEditor</span><span + class='S10'>(</span><span class='S11'>SCI_LINELENGTH</span><span class='S10'>,</span><span + class='S0'> </span> <span class='S11'>curLine</span><span class='S10'>);</span><span + class='S0'><br /> + </span> <span class='S2'> + //Platform::DebugPrintf("[CR] %d len = %d\n", curLine, lineLength);</span><span + class='S0'><br /> + </span> <span class='S5'>if</span><span class='S0'> </span> <span + class='S10'>(</span><span class='S11'>curLine</span><span class='S0'> </span> <span + class='S10'>></span><span class='S0'> </span> <span class='S4'>0</span><span + class='S0'> </span> <span class='S10'>&&</span><span class='S0'> </span> + <span class='S11'>lineLength</span><span class='S0'> </span> <span class='S10'> + <=</span><span class='S0'> </span> <span class='S4'>2</span><span + class='S10'>)</span><span class='S0'> </span> <span class='S10'>{</span><span + class='S0'><br /> + </span> <span class='S5'>int</span><span class='S0'> </span> + <span class='S11'>prevLineLength</span><span class='S0'> </span> <span class='S10'> + =</span><span class='S0'> </span> <span class='S11'>SendEditor</span><span + class='S10'>(</span><span class='S11'>SCI_LINELENGTH</span><span class='S10'>,</span><span + class='S0'> </span> <span class='S11'>curLine</span><span class='S0'> </span> <span + class='S10'>-</span><span class='S0'> </span> <span class='S4'>1</span><span + class='S10'>);</span><span class='S0'><br /> + </span> <span class='S5'>if</span><span class='S0'> </span> <span + class='S10'>(</span><span class='S11'>prevLineLength</span><span class='S0'> </span> <span + class='S10'><</span><span class='S0'> </span> <span class='S5'>sizeof</span><span + class='S10'>(</span><span class='S11'>linebuf</span><span class='S10'>))</span><span + class='S0'> </span> <span class='S10'>{</span><span class='S0'><br /> + </span> <span class='S11'>WORD</span><span + class='S0'> </span> <span class='S11'>buflen</span><span class='S0'> </span> <span + class='S10'>=</span><span class='S0'> </span> <span class='S5'>sizeof</span><span + class='S10'>(</span><span class='S11'>linebuf</span><span class='S10'>);</span><span + class='S0'><br /> + </span> <span class='S11'>memcpy</span><span + class='S10'>(</span><span class='S11'>linebuf</span><span class='S10'>,</span><span + class='S0'> </span> <span class='S10'>&</span><span class='S11'>buflen</span><span + class='S10'>,</span><span class='S0'> </span> <span class='S5'>sizeof</span><span + class='S10'>(</span><span class='S11'>buflen</span><span class='S10'>));</span><span + class='S0'><br /> + </span> <span class='S11'> + SendEditor</span><span class='S10'>(</span><span class='S11'>EM_GETLINE</span><span + class='S10'>,</span><span class='S0'> </span> <span class='S11'>curLine</span><span + class='S0'> </span> <span class='S10'>-</span><span class='S0'> </span> <span + class='S4'>1</span><span class='S10'>,</span><span class='S0'><br /> + </span> + <span class='S5'>reinterpret_cast</span><span class='S10'><</span><span + class='S11'>LPARAM</span><span class='S10'>>(</span><span class='S5'>static_cast</span><span + class='S10'><</span><span class='S5'>char</span><span class='S0'> </span> <span + class='S10'>*>(</span><span class='S11'>linebuf</span><span class='S10'>)));</span><span + class='S0'><br /> + </span> <span class='S11'>linebuf</span><span + class='S10'>[</span><span class='S11'>prevLineLength</span><span class='S10'>]</span><span + class='S0'> </span> <span class='S10'>=</span><span class='S0'> </span> <span + class='S7'>'\0'</span><span class='S10'>;</span><span class='S0'><br /> + </span> <span class='S5'>for</span><span + class='S0'> </span> <span class='S10'>(</span><span class='S5'>int</span><span + class='S0'> </span> <span class='S11'>pos</span><span class='S0'> </span> <span + class='S10'>=</span><span class='S0'> </span> <span class='S4'>0</span><span + class='S10'>;</span><span class='S0'> </span> <span class='S11'>linebuf</span><span + class='S10'>[</span><span class='S11'>pos</span><span class='S10'>];</span><span + class='S0'> </span> <span class='S11'>pos</span><span class='S10'>++)</span><span + class='S0'> </span> <span class='S10'>{</span><span class='S0'><br /> + </span> <span + class='S5'>if</span><span class='S0'> </span> <span class='S10'>(</span><span + class='S11'>linebuf</span><span class='S10'>[</span><span class='S11'>pos</span><span + class='S10'>]</span><span class='S0'> </span> <span class='S10'>!=</span><span + class='S0'> </span> <span class='S7'>' '</span><span class='S0'> </span> <span + class='S10'>&&</span><span class='S0'> </span> <span class='S11'> + linebuf</span><span class='S10'>[</span><span class='S11'>pos</span><span + class='S10'>]</span><span class='S0'> </span> <span class='S10'>!=</span><span + class='S0'> </span> <span class='S7'>'\t'</span><span class='S10'>)</span><span + class='S0'><br /> + </span> + <span class='S11'>linebuf</span><span class='S10'>[</span><span class='S11'>pos</span><span + class='S10'>]</span><span class='S0'> </span> <span class='S10'>=</span><span + class='S0'> </span> <span class='S7'>'\0'</span><span class='S10'>;</span><span + class='S0'><br /> + </span> <span class='S10'>}</span><span + class='S0'><br /> + </span> <span class='S11'> + SendEditor</span><span class='S10'>(</span><span class='S11'>EM_REPLACESEL</span><span + class='S10'>,</span><span class='S0'> </span> <span class='S4'>0</span><span + class='S10'>,</span><span class='S0'> </span> <span class='S5'> + reinterpret_cast</span><span class='S10'><</span><span class='S11'>LPARAM</span><span + class='S10'>>(</span><span class='S5'>static_cast</span><span class='S10'><</span><span + class='S5'>char</span><span class='S0'> </span> <span class='S10'>*>(</span><span + class='S11'>linebuf</span><span class='S10'>)));</span><span class='S0'><br /> + </span> <span class='S10'>}</span><span class='S0'><br /> + </span> <span class='S10'>}</span><br /> + + <p style="margin-bottom: 0in"> + Of course, fancier handling could be implemented. For example, if the previous line was the + start of a control construct, the next line could be automatically indented one tab further. + (Assuming that is your indenting style.) + </p> + <h2> + Implementing Syntax Styling + </h2> + <p> + Syntax styling is handled by the SCN_STYLENEEDED notification. Scintilla keeps track of the + end of the styled text - this is retrieved with SCI_GETENDSTYLED. In response to the + SCN_STYLENEEDED notification, you should apply styles to the text from ENDSTYLED to the + position specified by the notification. + </p> + <p> + Here is the relevant portion of code from SciTE: (SciTE.cxx) + </p> + <span class='S5'>void</span><span class='S0'> </span> <span class='S11'> + SciTEWindow</span><span class='S10'>::</span><span class='S11'>Notify</span><span + class='S10'>(</span><span class='S11'>SCNotification</span><span class='S0'> </span> <span + class='S10'>*</span><span class='S11'>notification</span><span class='S10'>)</span><span + class='S0'> </span> <span class='S10'>{</span><span class='S0'><br /> + </span> <span class='S5'>switch</span><span class='S0'> </span> + <span class='S10'>(</span><span class='S11'>notification</span><span + class='S10'>-></span><span class='S11'>nmhdr.code</span><span class='S10'>)</span><span + class='S0'> </span> <span class='S10'>{</span><span class='S0'><br /> + </span> <span class='S5'>case</span><span class='S0'> </span> + <span class='S11'>SCN_STYLENEEDED</span><span class='S10'>:</span><span + class='S0'> </span> <span class='S10'>{</span><span class='S0'><br /> + </span> <span + class='S5'>if</span><span class='S0'> </span> <span class='S10'>(</span><span + class='S11'>notification</span><span class='S10'>-></span><span + class='S11'>nmhdr.idFrom</span><span class='S0'> </span> <span class='S10'>==</span><span + class='S0'> </span> <span class='S11'>IDM_SRCWIN</span><span class='S10'>)</span><span + class='S0'> </span> <span class='S10'>{</span><span class='S0'><br /> + </span> + <span class='S5'>int</span><span class='S0'> </span> <span class='S11'> + endStyled</span><span class='S0'> </span> <span class='S10'>=</span><span + class='S0'> </span> <span class='S11'>SendEditor</span><span class='S10'>(</span><span + class='S11'>SCI_GETENDSTYLED</span><span class='S10'>);</span><span class='S0'><br /> + </span> + <span class='S5'>int</span><span class='S0'> </span> <span class='S11'> + lineEndStyled</span><span class='S0'> </span> <span class='S10'>=</span><span + class='S0'> </span> <span class='S11'>SendEditor</span><span class='S10'>(</span><span + class='S11'>EM_LINEFROMCHAR</span><span class='S10'>,</span><span class='S0'> </span> + <span class='S11'>endStyled</span><span class='S10'>);</span><span class='S0'><br /> + </span> + <span class='S11'>endStyled</span><span class='S0'> </span> <span class='S10'> + =</span><span class='S0'> </span> <span class='S11'>SendEditor</span><span + class='S10'>(</span><span class='S11'>EM_LINEINDEX</span><span class='S10'>,</span><span + class='S0'> </span> <span class='S11'>lineEndStyled</span><span class='S10'>);</span><span + class='S0'><br /> + </span> + <span class='S11'>Colourise</span><span class='S10'>(</span><span + class='S11'>endStyled</span><span class='S10'>,</span><span class='S0'> </span> <span + class='S11'>notification</span><span class='S10'>-></span><span + class='S11'>position</span><span class='S10'>);</span><br /> + + <p> + Colourize(start, end) retrieves the specified range of text and then calls ColourizeDoc in + keywords.cxx. It starts the process by calling: + </p> + <span class='S11'>SendMessage</span><span class='S10'>(</span><span + class='S11'>hwnd</span><span class='S10'>,</span><span class='S0'> </span> <span + class='S11'>SCI_STARTSTYLING</span><span class='S10'>,</span><span class='S0'> </span> + <span class='S11'>startPos</span><span class='S10'>,</span><span class='S0'> </span> <span + class='S4'>31</span><span class='S10'>);</span><br /> + + <p> + and then for each token of the text, calling: + </p> + <span class='S11'>SendMessage</span><span class='S10'>(</span><span + class='S11'>hwnd</span><span class='S10'>,</span><span class='S0'> </span> <span + class='S11'>SCI_SETSTYLING</span><span class='S10'>,</span><span class='S0'> </span> <span + class='S11'>length</span><span class='S10'>,</span><span class='S0'> </span> <span + class='S11'>style</span><span class='S10'>);</span><br /> + + <p> + where style is a number from 0 to 31 whose appearance has been defined using the + SCI_STYLESET... messages. + </p> + <h2> + Implementing Calltips + </h2> + <p> + Again, the SCN_CHARADDED notification is used to catch when an opening parenthesis is added. + The preceding word can then be retrieved from the current line: + </p> + <span class='S5'>char</span><span class='S0'> </span> <span + class='S11'>linebuf</span><span class='S10'>[</span><span class='S4'>1000</span><span + class='S10'>];</span><span class='S0'><br /> + </span> <span class='S5'>int</span><span class='S0'> </span> <span + class='S11'>current</span><span class='S0'> </span> <span class='S10'>=</span><span + class='S0'> </span> <span class='S11'>SendEditor</span><span class='S10'>(</span><span + class='S11'>SCI_GETCURLINE</span><span class='S10'>,</span><span class='S0'> </span> <span + class='S5'>sizeof</span><span class='S10'>(</span><span class='S11'>linebuf</span><span + class='S10'>),</span><span class='S0'><br /> + </span> <span class='S5'> + reinterpret_cast</span><span class='S10'><</span><span class='S11'>LPARAM</span><span + class='S10'>>(</span><span class='S5'>static_cast</span><span class='S10'><</span><span + class='S5'>char</span><span class='S0'> </span> <span class='S10'>*>(</span><span + class='S11'>linebuf</span><span class='S10'>)));</span><span class='S0'><br /> + </span> <span class='S5'>int</span><span class='S0'> </span> <span + class='S11'>pos</span><span class='S0'> </span> <span class='S10'>=</span><span + class='S0'> </span> <span class='S11'>SendEditor</span><span class='S10'>(</span><span + class='S11'>SCI_GETCURRENTPOS</span><span class='S10'>);</span><span class='S0'><br /> + <br /> + </span> <span class='S5'>int</span><span class='S0'> </span> <span + class='S11'>startword</span><span class='S0'> </span> <span class='S10'>=</span><span + class='S0'> </span> <span class='S11'>current</span><span class='S0'> </span> <span + class='S10'>-</span><span class='S0'> </span> <span class='S4'>1</span><span + class='S10'>;</span><span class='S0'><br /> + </span> <span class='S5'>while</span><span class='S0'> </span> + <span class='S10'>(</span><span class='S11'>startword</span><span class='S0'> </span> + <span class='S10'>></span><span class='S0'> </span> <span class='S4'>0</span><span + class='S0'> </span> <span class='S10'>&&</span><span class='S0'> </span> + <span class='S11'>isalpha</span><span class='S10'>(</span><span class='S11'>linebuf</span><span + class='S10'>[</span><span class='S11'>startword</span><span class='S0'> </span> <span + class='S10'>-</span><span class='S0'> </span> <span class='S4'>1</span><span + class='S10'>]))</span><span class='S0'><br /> + </span> <span class='S11'> + startword</span><span class='S10'>--;</span><span class='S0'><br /> + </span> <span class='S11'>linebuf</span><span class='S10'>[</span><span + class='S11'>current</span><span class='S0'> </span> <span class='S10'>-</span><span + class='S0'> </span> <span class='S4'>1</span><span class='S10'>]</span><span + class='S0'> </span> <span class='S10'>=</span><span class='S0'> </span> <span + class='S7'>'\0'</span><span class='S10'>;</span><span class='S0'><br /> + </span> <span class='S5'>char</span><span class='S10'>*</span><span + class='S0'> </span> <span class='S11'>word</span><span class='S0'> </span> <span + class='S10'>=</span><span class='S0'> </span> <span class='S11'>linebuf</span><span + class='S0'> </span> <span class='S10'>+</span><span class='S0'> </span> <span + class='S11'>startword</span><span class='S10'>;</span><br /> + + <p> + Then if a calltip is available it can be displayed. The calltip appears immediately below + the position specified. The calltip can be multiple lines separated by newlines (\n). + </p> + <span class='S11'>pos</span><span class='S0'> </span> <span + class='S10'>=</span><span class='S0'> </span> <span class='S11'>SendMessage</span><span + class='S10'>(</span><span class='S11'>hwnd</span><span class='S10'>,</span><span + class='S0'> </span> <span class='S11'>SCI_GETCURRENTPOS</span><span + class='S10'>,</span><span class='S0'> </span> <span class='S4'>0</span><span + class='S10'>,</span><span class='S0'> </span> <span class='S4'>0</span><span + class='S10'>);</span><span class='S0'><br /> + </span> <span class='S11'>SendMessageText</span><span + class='S10'>(</span><span class='S11'>hwnd</span><span class='S10'>,</span><span + class='S0'> </span> <span class='S11'>SCI_CALLTIPSHOW</span><span + class='S10'>,</span><span class='S0'> </span> <span class='S11'>pos</span><span + class='S0'> </span> <span class='S10'>-</span><span class='S0'> </span> <span + class='S11'>wordLen</span><span class='S0'> </span> <span class='S10'>-</span><span + class='S0'> </span> <span class='S4'>1</span><span class='S10'>,</span><span + class='S0'> </span> <span class='S11'>calltip</span><span class='S10'>);</span><br /> + + <p> + The calltip can be removed when a closing parenthesis is entered: + </p> + <span class='S5'>if</span><span class='S0'> </span> <span + class='S10'>(</span><span class='S11'>SendMessage</span><span class='S10'>(</span><span + class='S11'>hwnd</span><span class='S10'>,</span><span class='S0'> </span> <span + class='S11'>SCI_CALLTIPACTIVE</span><span class='S10'>,</span><span class='S0'> </span> + <span class='S4'>0</span><span class='S10'>,</span><span class='S0'> </span> <span + class='S4'>0</span><span class='S10'>))</span><span class='S0'><br /> + </span> <span class='S11'> + SendMessage</span><span class='S10'>(</span><span class='S11'>hwnd</span><span + class='S10'>,</span><span class='S0'> </span> <span class='S11'> + SCI_CALLTIPCANCEL</span><span class='S10'>,</span><span class='S0'> </span> <span + class='S4'>0</span><span class='S10'>,</span><span class='S0'> </span> <span class='S4'> + 0</span><span class='S10'>);</span><br /> + + <p> + Obviously, it is up the application to look after supplying the appropriate calltip text. + </p> + <p> + SciTE goes one step further, counting the commas between arguments and highlighting the + corresponding part of the calltip. This code is in ContinueCallTip. + </p> + <p> + <i>Page contributed by Andrew McKinlay.</i> + </p> + </body> +</html> + diff --git a/doc/Scintilla/Steps.html b/doc/Scintilla/Steps.html new file mode 100755 index 0000000..ff88e88 --- /dev/null +++ b/doc/Scintilla/Steps.html @@ -0,0 +1,142 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type"><title>How to use the Scintilla Edit Control in windows?</title></head><body bgcolor="#ffffff"> + <p><h2>How to use the Scintilla Edit Control in windows?</h2> + <p> + This should be a little step by step explanation how to use Scintilla in the windows environment. + </p> + </p> + <p><h2>How to create Scintilla Edit Control?</h2> + <p> + First of all, load the Scintilla DLL with something like: + </p> + <pre> + + hmod = LoadLibrary("SciLexer.DLL"); + if (hmod==NULL) + { + MessageBox(hwndParent, + "The Scintilla DLL could not be loaded.", + "Error loading Scintilla", + MB_OK | MB_ICONERROR); + } + </pre> + <p> + If the DLL was loaded successfully, then the DLL has registered (yes, by itself) a new + window class. The new class called "Scintilla" is the new scintilla edit control. + </p> + <p> + Now you can use this new control just like any other windows control. + </p> + <pre> + + hwndScintilla = CreateWindowEx(0, + "Scintilla","", WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_CLIPCHILDREN, + 10,10,500,400,hwndParent,(HMENU)GuiID, hInstance,NULL); + </pre> + <p> + Note the new window class name: "Scintilla". By reaching this point you actually included + a Scintilla Edit Control to your windows program. + </p> + </p> + <p><h2>How to control the Scintilla Edit Control?</h2> + <p> + You can control Scintilla by sending commands to the Edit Control. + There a 2 ways of doing this. A simple and fast way. + </p> + <p><h3>The simple way to control Scintilla</h3> + <p> + The simple way is just like with any other windows control. You can send messages to the + Scintilla Edit Control and receive notifications from the control. (Note that the notifications + are sent to the parent window of the Scintilla Edit Control.) + </p> + <p> + The Scintilla Edit Control knows a special message for each command. + To send commands to the Scintilla Edit Control you can use the SendMessage function. + </p> + <pre> + + SendMessage(hwndScintilla,sci_command,wparam,lparam); + </pre> + <p> + like: + </p> + <pre> + + SendMessage(hwndScintilla,SCI_CREATEDOCUMENT, 0, 0); + </pre> + <p> + Some of the commands will return a value and unused parameters should be set to NULL. + </p> + </p> + <p><h3>The fast way to control Scintilla</h3> + <p> + The fast way of controlling the Scintilla Edit Control is to call message handling function by yourself. + You can retrieve a pointer to the message handling function of the Scintilla Edit Control and + call it directly to execute a command. This way is much more faster than the SendMessage() way. + </p> + <p> + 1st you have to use the SCI_GETDIRECTFUNCTION and SCI_GETDIRECTPOINTER commands to + retrieve the pointer to the function and a pointer which must be the first parameter when calling the retrieved + function pointer. + You have to do this with the SendMessage way :) + </p> + <p> + The whole thing has to look like this: + </p> + <pre> + + int (*fn)(void*,int,int,int); + void * ptr; + int canundo; + + fn = (int (__cdecl *)(void *,int,int,int))SendMessage( + hwndScintilla,SCI_GETDIRECTFUNCTION,0,0); + ptr = (void *)SendMessage(hwndScintilla,SCI_GETDIRECTPOINTER,0,0); + + canundo = fn(ptr,SCI_CANUNDO,0,0); + </pre> + <p> + with "fn" as the function pointer to the message handling function of the Scintilla Control + and "ptr" as the pointer that must be used as 1st parameter. + The next parameters are the Scintilla Command with its two (optional) parameters. + </p> + + </p> + <p><h3>How will I receive notifications?</h3> + <p> + Whenever an event occurs where Scintilla wants to inform you about something, the Scintilla Edit Control + will send notification to the parent window. This is done by a WM_NOTITY message. + When receiving that message, you have to look in the xxx struct for the actual message. + </p> + <p> + So in Scintillas parent window message handling function you have to include some code like this: + </p> + <pre> + NMHDR *lpnmhdr; + + [...] + + case WM_NOTIFY: + lpnmhdr = (LPNMHDR) lParam; + + if(lpnmhdr->hwndFrom==hwndScintilla) + { + switch(lpnmhdr->code) + { + case SCN_CHARADDED: + /* Hey, Scintilla just told me that a new */ + /* character was added to the Edit Control.*/ + /* Now i do something cool with that char. */ + break; + } + } + break; + </pre> + </p> + </p> + + <p> + <i>Page contributed by Holger Schmidt.</i> + </p> +</body></html> + diff --git a/doc/Scintilla/index.html b/doc/Scintilla/index.html new file mode 100755 index 0000000..a4eeeda --- /dev/null +++ b/doc/Scintilla/index.html @@ -0,0 +1,198 @@ +<?xml version="1.0"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="generator" content="HTML Tidy, see www.w3.org" /> + <meta name="generator" content="SciTE" /> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + <meta name="keywords" content="Scintilla, SciTE, Editing Component, Text Editor" /> + <meta name="Description" + content="www.scintilla.org is the home of the Scintilla editing component and SciTE text editor application." /> + <meta name="Date.Modified" content="20060821" /> + <style type="text/css"> + .versionlist { + color: #FFCC99; + } + </style> + <script> + function IsRemote() { + var loc = '' + window.location; + return loc.indexOf('http:') != -1; + } + </script> + <title> + Scintilla and SciTE + </title> + </head> + <body bgcolor="#FFFFFF" text="#000000"> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="0" border="0"> + <tr> + <td width="256"> + <img src="SciWord.jpg" height="78" width="256" alt="Scintilla" /> + </td> + <td width="40%" align="left"> + <font color="#FFCC99" size="4"> A free source code editing component for Win32 and + GTK+</font> + </td> + <td width="40%" align="right"> + <font color="#FFCC99" size="3"> Release version 1.71<br /> + Site last modified August 21 2006</font> + </td> + <td width="20%"> + + </td> + </tr> + </table> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="0" border="0"> + <tr> + <td width="100%"> + <img src="SciBreak.jpg" height="150" width="1024" alt="Sci Break" /> + </td> + </tr> + </table> + <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="6" border="0"> + <tr> + <td width="100%"> + <span class="versionlist">Version 1.71 defaults mouse drag to be move on GTK+ + and GTK+ also has some internationalisation fixes.</span> + </td> + </tr> + <tr> + <td width="100%"> + <span class="versionlist">Version 1.70 allows, on GTK+, approximate character set conversions + for pasting and uses internationalised input at all times.</span> + </td> + </tr> + <tr> + <td width="100%"> + <span class="versionlist">Version 1.69 supports the Spice language and can draw + the selection and whole line markers translucently.</span> + </td> + </tr> + <tr> + <td width="100%"> + <span class="versionlist">Version 1.68 can draw the caret line + and box indicators translucently and has an accurate TCL lexer.</span> + </td> + </tr> + <tr> + <td width="100%"> + <span class="versionlist">Version 1.67 enhances some lexers and fixes bugs.</span> + </td> + </tr> + <tr> + <td width="100%"> + <span class="versionlist">Version 1.66 has a new Ruby lexer and fixes bugs on GTK+ + with Pango 1.8.</span> + </td> + </tr> + </table> + <table bgcolor="#CCCCCC" width="100%" cellspacing="0" cellpadding="8" border="0"> + <tr> + <td> + <font size="4"> +<script type="text/javascript" language="JavaScript"><!-- +if (IsRemote()) { + document.write('<a href="http://scintilla.sourceforge.net/SciTEImage.html">Screenshot</a> '); + document.write('<a href="http://scintilla.sourceforge.net/ScintillaDownload.html">Download</a> '); +} +//--></script> + <a href="http://scintilla.sourceforge.net/ScintillaDoc.html">Documentation</a> + <a href="http://scintilla.sourceforge.net/ScintillaToDo.html">Bugs</a> +<script type="text/javascript" language="JavaScript"><!-- +if (IsRemote()) { + document.write('<a href="http://scintilla.sourceforge.net/SciTE.html">SciTE</a> '); +} +//--></script> + <a href="http://scintilla.sourceforge.net/ScintillaHistory.html"> + History</a> <a href="http://scintilla.sourceforge.net/ScintillaRelated.html">Related</a> </font> + </td> + </tr> + </table> + <p> + <a href="http://scintilla.sourceforge.net/ScintillaDoc.html">Scintilla</a> is a free source code editing component. + It comes with complete source code and a <a href="http://scintilla.sourceforge.net/License.txt">license</a> that + permits use in any free project or commercial product. + </p> + <p> + As well as features found in standard text editing components, Scintilla includes features + especially useful when editing and debugging source code. + These include support for syntax styling, error indicators, code completion and call tips. + The selection margin can contain markers like those used in debuggers to indicate + breakpoints and the current line. Styling choices are more open than with many editors, + allowing the use of proportional fonts, bold and italics, multiple foreground and background + colours and multiple fonts. + </p> + <p> + The <a href="http://scintilla.sourceforge.net/SinkWorld.html">SinkWorld project</a> + investigates possible future directions for Scintilla to make it more flexible, robust, perform + better and run on the .NET and Java virtual machines. + </p> + <p> + <a href="http://scintilla.sourceforge.net/SciTE.html">SciTE</a> is a SCIntilla based Text Editor. Originally built to + demonstrate Scintilla, it has grown to be a generally useful editor with facilities for + building and running programs. It is best used for jobs with simple configurations - I use it + for building test and demonstration programs as well as SciTE and Scintilla, themselves. + </p> + <p> + Development of Scintilla started as an effort to improve the text editor in PythonWin. After + being frustrated by problems in the Richedit control used by PythonWin, it looked like the + best way forward was to write a new edit control. The biggest problem with Richedit and other + similar controls is that they treat styling changes as important persistent changes to the + document so they are saved into the undo stack and set the document's dirty flag. For source + code, styling should not be persisted as it can be mechanically recreated. + </p> + <p> + Scintilla and SciTE are currently available for Intel Win32 and Linux compatible operating + systems with GTK+. They have been run on Windows 95, NT 4.0, Windows 2000, and on Red Hat + Linux 8 and 9 with GTK+ 1.2 and 2.0. <a href="http://scintilla.sourceforge.net/SciTEImage.html">Here is a screenshot of + SciTE.</a><br /> + </p> + <p> + You can <a href="http://scintilla.sourceforge.net/ScintillaDownload.html">download Scintilla.</a> + </p> + <p> + The source code can be downloaded via CVS at the Source Forge + <a href="https://sourceforge.net/project/?group_id=2439">Scintilla project page</a>. + </p> + <p> + <a href="http://scintilla.sourceforge.net/ScintillaRelated.html">Related sites.</a> + </p> + <p> + <a href="http://scintilla.sourceforge.net/ScintillaToDo.html">Bugs and To Do list.</a> + </p> + <p> + <a href="http://scintilla.sourceforge.net/ScintillaHistory.html">History and contribution credits.</a> + </p> + <p> + <a href="http://scintilla.sourceforge.net/Icons.html">Icons that can be used with Scintilla.</a> + </p> + <p> + Questions and comments about Scintilla should be directed to the + <a href="http://mailman.lyra.org/mailman/listinfo/scintilla-interest">scintilla-interest</a> + mailing list, + which is for discussion of Scintilla and related projects, their bugs and future features. + This is a low traffic list, averaging less than 50 messages per week. + To avoid spam, only list members can write to the list. + Announcements of new versions of Scintilla go to both the scintilla-interest list and + <a href="http://mailman.lyra.org/mailman/listinfo/scintilla-announce">scintilla-announce</a>. + Messages sent to my personal email address that could have been sent to the list + may receive no response. + <br /> + </p> +<script type="text/javascript" language="JavaScript"> +<!-- +document.write('There is a <a href="https://sourceforge.net/project/?group_id=2439">Scintilla project page<\/a>'); +document.write(' hosted on '); +if (IsRemote()) { + document.write('<a href="http://sourceforge.net">'); + document.write('<img src="http://sourceforge.net/sflogo.php?group_id=2439&type=1" width="88" height="31" border="0" /><\/a> '); +} else { + document.write('<a href="http://sourceforge.net">SourceForge<\/a>'); +} +//--> +</script> + </body> +</html> + diff --git a/doc/html/annotated.html b/doc/html/annotated.html new file mode 100644 index 0000000..f07b536 --- /dev/null +++ b/doc/html/annotated.html @@ -0,0 +1,54 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QScintilla Class List</h1>Here are the classes, structs, unions and interfaces with brief descriptions:<table> + <tr><td class="indexkey"><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td class="indexvalue">Implements a higher level, more Qt-like, API to the Scintilla editor widget </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a></td><td class="indexvalue">Textual API information used in call tips and for auto-completion </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td class="indexvalue">Implements the Scintilla editor widget and its low-level API </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a></td><td class="indexvalue">Internal editor command that may have one or two keys bound to it </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a></td><td class="indexvalue">Set of all internal editor commands that may have keys bound </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a></td><td class="indexvalue">Document to be editted </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td class="indexvalue">Abstract class used as a base for specific language lexers </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td class="indexvalue">Encapsulates the Scintilla Bash lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td class="indexvalue">Encapsulates the Scintilla batch file lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td class="indexvalue">Encapsulates the Scintilla C++ lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a></td><td class="indexvalue">Encapsulates the Scintilla C# lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td class="indexvalue">Encapsulates the Scintilla CSS lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td class="indexvalue">Encapsulates the Scintilla Diff lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td class="indexvalue">Encapsulates the Scintilla HTML lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a></td><td class="indexvalue">Encapsulates the Scintilla IDL lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a></td><td class="indexvalue">Encapsulates the Scintilla Java lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a></td><td class="indexvalue">Encapsulates the Scintilla JavaScript lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td class="indexvalue">Encapsulates the Scintilla Lua lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td class="indexvalue">Encapsulates the Scintilla Makefile lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td class="indexvalue">Encapsulates the Scintilla Perl lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td class="indexvalue">Encapsulates the Scintilla POV lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td class="indexvalue">Encapsulates the Scintilla Properties lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td class="indexvalue">Encapsulates the Scintilla Python lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td class="indexvalue">Encapsulates the Scintilla Ruby lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td class="indexvalue">Encapsulates the Scintilla SQL lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td class="indexvalue">Encapsulates the Scintilla TeX lexer </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a></td><td class="indexvalue">Sequence of recordable editor commands </td></tr> + <tr><td class="indexkey"><a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a></td><td class="indexvalue">Sub-class of the Qt QPrinter class that is able to print the text of a Scintilla document </td></tr> +</table> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintilla-members.html b/doc/html/classQextScintilla-members.html new file mode 100644 index 0000000..5f05801 --- /dev/null +++ b/doc/html/classQextScintilla-members.html @@ -0,0 +1,1014 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintilla Member List</h1>This is the complete list of members for <a class="el" href="classQextScintilla.html">QextScintilla</a>, including all inherited members.<p><table> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7099252dfa0fbb8e26853a79578b33f7e">AcsAll</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7af0b70461479558da5cf363a7e3b35c2">AcsAPIs</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7e8cbc5b781bff6985e4f524668fb3110">AcsDocument</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae917d10ecdceac133845dc43ed53e0fb64">AiClosing</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae9c1e2a26467f02b3fc645a10083d04208">AiMaintain</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae93781e4e24c094255b5cc8c01a6afaf8b">AiOpening</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#5440db24cf8aeaece95d3ab74ee194a5">append</a>(const QString &text)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#311d3dcefa8f5180ababc42bdf38f109">autoCompleteFromAll</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a760573163b27895ff6aaac53343338f">autoCompleteFromAPIs</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#d0e48a5aa94192f985bf6ff207874b82">autoCompleteFromDocument</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#5cff73a97337f5976254179a88a47b3a">autoCompletionCaseSensitivity</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#e9b647d35f8470e13e42e2e0e683ec6a">autoCompletionFillupsEnabled</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#f0c3f1d2db5029e1c6323fd12962084a">autoCompletionReplaceWord</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#b70c407c8d3ed1048269fbd2ac439fdc">autoCompletionShowSingle</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7">AutoCompletionSource</a> enum name</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#9df1501f0ad8c01a9f3bea1867cf8c7b">autoCompletionSource</a>() const </td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#4dc81e76945748f22f97ce2855b6cffc">autoCompletionThreshold</a>() const </td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#5aafd0d48172014fab301300433f9d79">autoIndent</a>() const </td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e679546b0e1f41ec63e751bc1b0c5b358">Background</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a930abcf668124af9c07f2a04a06b16f">backspaceUnindents</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#992e38601fb13f8d4a49ac58bb4aa5d0">beginUndoAction</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e9d5a57c4bedde7059bea56f5bd4934cd">BottomLeftCorner</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cfcb1f1d2bd51d589287865f44ae4b08c0">BoxedFoldStyle</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4a4a4d6c4834ded0218f9795e9390f95">BoxedMinus</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e6169156f553cbaa54d2b466fe510dea6">BoxedMinusConnected</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc6de462d1b5a1c3f90a2b7277894b02">BoxedPlus</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72eeb3dd9d4a1c11498f1e2474fd6aec576">BoxedPlusConnected</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf8a0fab06a1e5e77a9d3a252a412eb0aa">BoxedTreeFoldStyle</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b">BraceMatch</a> enum name</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#2cdccb4225833d6645faa0ac7ae0cbe5">braceMatching</a>() const </td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#46feb30184ded7c63d6edfef45c86061">callTip</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#2008b3d1abf1220308ff30a10182f9d7">callTipsVisible</a>() const </td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#eb038b88ef1676504b2a6602af1ce6aa">cancelList</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>CARET_EVEN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>CARET_JUMPS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>CARET_SLOP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>CARET_STRICT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e452faff3eae9ed78188c1468d85a8c5f">Circle</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf58df1387aaf6e4a05104d34c06868cdd">CircledFoldStyle</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee72e33be4b3f7cb3b70638721900d045">CircledMinus</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4a6a3f3368636e350699cc60b3415ca5">CircledMinusConnected</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e95ccb68fe182c2632314e12c74539924">CircledPlus</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee6c19ec3354b9e5449fa32a0905bf829">CircledPlusConnected</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cfd9215f00cf188ef6259740768e866506">CircledTreeFoldStyle</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#8b9654c9a68e6454a7e457a266c329da">clear</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#cc818b2e94bc849c1a33e68b8e1f220e">clearRegisteredImages</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#42f33ad513bb2636e4969ae2beff2463">color</a>() const </td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#01b225376be7ea272eb542e46291d89c">convertEols</a>(EolMode mode)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#e2554d0e59cde9e5de14351f26c4f6b6">copy</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#c741c9b8ed144370bad992c49a9f5aa4">copyAvailable</a>(bool yes)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#7750e4896fb860de1c7a0c3ee79cc8bf">cursorPositionChanged</a>(int line, int pos)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#d5d5178610285dda5004ccc5c5c6c306">cut</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#93e41e7e1474301d1fdf7b469855fa1d">document</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e424e38d2d52e311348f552158596dc7a">DownTriangle</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>EDGE_BACKGROUND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>EDGE_LINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>EDGE_NONE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef952b3ab1ab0f1de59c13ed703c9a857c3">EdgeBackground</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a2f525ae5dd684b0ba3c79b930258155">edgeColor</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#096d84a9a8fa9ca50f758d4ee35c7106">edgeColumn</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef983b130b7b74ea372fc3d9b5b19bbd5d4">EdgeLine</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9">EdgeMode</a> enum name</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#265ab349dbe1d3801137cd29f9424eea">edgeMode</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9fb431bfc050ea921924574abdf310643">EdgeNone</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#cf85f22ce1ef53cd0851a99282a3cd8b">endUndoAction</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#dd5100eebb1241b90da9b77cfca26c8d">ensureCursorVisible</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#8c5a39688b5ca5995f8060941a8065d4">ensureLineVisible</a>(int line)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a07ec88765cc5f9669aa9ebbf309c54dd">EolMac</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a">EolMode</a> enum name</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#099d5bfe4b4f27ff2b666eeb9bcd4867">eolMode</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a06657431efe214758a12041f238300b7">EolUnix</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#8e8e0a0c1d7fb0718df7f32cf194eba4">eolVisibility</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a757794a61cf9baf2de33bac37066554b">EolWindows</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#a31a4b262617ad472c95f700de47a84b">eventFilter</a>(QObject *o, QEvent *e)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#8f350dd53ae60c25c6b63c7c5fbf6e18">findFirst</a>(const QString &expr, bool re, bool cs, bool wo, bool wrap, bool forward=TRUE, int line=-1, int index=-1, bool show=TRUE)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#480033f7629a1ce9558c8b0e0c240898">findNext</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#820471fe6c696bda646e93c51a151e5f">firstVisibleLine</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#85e6877f9aad613a869fe5b7d97f9035">focusInEvent</a>(QFocusEvent *)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#9516bc2125ea51a8de4c21f6af42a4b1">focusNextPrevChild</a>(bool)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#f87a97050d71a323d47d666fe4a5547b">focusOutEvent</a>(QFocusEvent *)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#5b289640689062f4fa5479c7212107c0">foldAll</a>(bool children=FALSE)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#86418f82fe35ff366f4ef023c470f0a1">folding</a>() const </td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#f81c922d74d8746d9cbc8d576c440dd4">foldLine</a>(int line)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf">FoldStyle</a> enum name</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#da3e0b58a20e1c7e4f062cabf40b6d6b">getCursorPosition</a>(int *line, int *index)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#92f76a5a9eb56275d77905738de3f4a1">getSelection</a>(int *lineFrom, int *indexFrom, int *lineTo, int *indexTo)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#3d12bf3c4d1a80b8fea698c591222855">hasSelectedText</a>() const </td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#0017b86a4fff9d1228b204deda1e9d57">indent</a>(int line)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a57fae593f33dd9b5d1542c95afd9a01">indentation</a>(int line)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#0d63a0fc79c8fae6934f6599d407a3d4">indentationGuides</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#53d57d43f67a8dcc9d08369906906a8d">indentationsUseTabs</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#678d8e15ff532854af87f2ff0575327c">indentationWidth</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC0_MASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC1_MASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC2_MASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_BOX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_DIAGONAL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_HIDDEN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_MAX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_PLAIN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_ROUNDBOX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_SQUIGGLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_STRIKE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_TT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDICS_MASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#bd158556a8565eb1bf92f2dd8fa9b66f">insert</a>(const QString &text)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#45ea4ddcb8a8f0f0c106582d4246e4fb">insertAt</a>(const QString &text, int line, int index)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc46bd102729e4ddec0f312b31cc18ab">Invisible</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#3a4a72bd99de522e74858217b3eafa31">isCallTipActive</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1b8012fdc00f81007ab979e3a59efba5">isListActive</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#2ddb6b2ade644a6b2d13b215828b2f4e">isModified</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#bf7834644311e59ee424ef57b99771d8">isReadOnly</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#e36287a0a472ab110c661c80d78aef3f">isRedoAvailable</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#df3fac9f4711417ff6c25f34615f67c8">isUndoAvailable</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#695d9741eafdf28eb8c26448e2455cca">isUtf8</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#f2973f7bf587f7e71902a1b7909a7c60">keyPressEvent</a>(QKeyEvent *ke)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4aae653a78cd0cd197db2987f0eb4150">LeftSideRoundedSplitter</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e6744df3fdf44463301b645e10c9fcb64">LeftSideSplitter</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#d2c5da20d2f22f0c592330c618f6c7bd">length</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#9221fa7b6665d7ad5490c7db02b1e59b">lexer</a>() const </td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#432c50978f56ae8722a42751dd350bdd">lineAt</a>(const QPoint &pos)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#c8823b1c95b8b213d16bb8c801b02842">lineLength</a>(int line)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#8e8c34edc623256f29061a9cd69d9195">lines</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#e066273695466c6e19cd4e8cd2414e17">marginClicked</a>(int margin, int line, Qt::ButtonState state)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#43f2c96091e57ac4818a16ecdf275a6a">marginLineNumbers</a>(int margin)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#81a2053eef4e0e085a2b8ef2e675466a">marginMarkerMask</a>(int margin)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#9206b50c414a0d42f705acec533e608f">marginSensitivity</a>(int margin)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#67b8e6edfca91d945a015c85d4dcf391">marginWidth</a>(int margin)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#210ded3888b4ec5f6a02078f7baab78a">markerAdd</a>(int linenr, int mnr)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cb86fc464868753c3cdbe1892bf4ea8">markerDefine</a>(MarkerSymbol sym, int mnr=-1)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#5f216b74732ffdc458e4836fe0f833bf">markerDefine</a>(char ch, int mnr=-1)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#8959a19ddf5a574dd9ad8b7ed5461820">markerDefine</a>(const QPixmap *pm, int mnr=-1)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#403508173e2292c7d39dc4728420caf0">markerDelete</a>(int linenr, int mnr=-1)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#ae1c8607b83a83f416832227da5740a5">markerDeleteAll</a>(int mnr=-1)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#0983b52c2d4454b6a531e07138791d30">markerDeleteHandle</a>(int mhandle)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#85a6c94aa396c28e548a151be4465ed4">markerFindNext</a>(int linenr, unsigned mask)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#d5fd073acbc05e75d957feb9004316f6">markerFindPrevious</a>(int linenr, unsigned mask)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#e143cb71aa915e9934618282184a9aba">markerLine</a>(int mhandle)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#b334127d4033b5336d8aa52e0efa581a">markersAtLine</a>(int linenr)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e">MarkerSymbol</a> enum name</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee9d6088eaf7e66c9446ab6a45d06ee1c">Minus</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#361adb6dbed444724c2b503d1329cc8b">modificationAttempted</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#429e0a1e9c1cd7bc49b8d6939743e26d">modificationChanged</a>(bool m)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#17f49beed46f36d2e80aa28ed40302cf">moveToMatchingBrace</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06bb87d61027f50717f9df0526ad9654bfa">NoBraceMatch</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf15bf3a37eb510d9e28cffa522aaa938a">NoFoldStyle</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#f6e3058d707eabd9f99d1fa93a91ea30">paper</a>() const </td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#b06dcc3f9252043a915595e3398711e4">paste</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cff1c523d088ff3118802f265134f7b0c8">PlainFoldStyle</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ec8380a8e0e64281cd3e9235d38f4bdf4">Plus</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#e9a2e982760ae835cdecfcfe6b92c416">pool</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [static]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#82bdfb8912254d875b2561ee06e3dac5">QextScintilla</a>(QWidget *parent=0, const char *name=0, WFlags f=0)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#e54a418ee8c182e1ddfa404b59a34149">QextScintillaBase</a>(QWidget *parent=0, const char *name=0, WFlags f=0)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#98a9d6ccb14bf28e9bf75dc069577b9b">QSCN_SELCHANGED</a>(bool yes)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#7134334cfb405096fc37a0f53942739d">recolor</a>(int start=0, int end=-1)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e9f09b445e420d7da2690fa04a3b47aca">Rectangle</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#6cb5d1ef84197df4ebc410de61775e98">redo</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#72462e663c2e41ab79fde1a2b793b0bc">registerImage</a>(int id, const QPixmap *pm)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#844f15ee19c413f867a8643e98499eb6">removeSelectedText</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#520e57b1a1330e59293ba796bacd3159">replace</a>(const QString &replaceStr)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#b92a8b75e43f431ec2015bef367c548d">resetFoldMarginColors</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#5202253f6428debe10bc5f3e2f194048">resetSelectionBackgroundColor</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a82474200e54331d49369129cdf03962">resetSelectionForegroundColor</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc48c1353c0700fbce7934cec712ad46">RightArrow</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e1067d54d6ffc9638173c14eafb94a076">RightTriangle</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ea00fb6bd4558f17771593aae1441c25d">RoundedBottomLeftCorner</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_ALPHA_NOALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_ALPHA_OPAQUE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_ALPHA_TRANSPARENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CACHE_CARET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CACHE_DOCUMENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CACHE_NONE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CACHE_PAGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CASE_LOWER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CASE_MIXED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CASE_UPPER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_8859_15</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_ANSI</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_ARABIC</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_BALTIC</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_CHINESEBIG5</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_DEFAULT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_EASTEUROPE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_GB2312</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_GREEK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_HANGUL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_HEBREW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_JOHAB</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_MAC</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_OEM</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_RUSSIAN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_SHIFTJIS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_SYMBOL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_THAI</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_TURKISH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_VIETNAMESE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CP_DBCS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CP_UTF8</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CURSORNORMAL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CURSORWAIT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_EOL_CR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_EOL_CRLF</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_EOL_LF</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_BOX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_LEVELNUMBERS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_LINEAFTER_CONTRACTED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_LINEAFTER_EXPANDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_LINEBEFORE_CONTRACTED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_LINEBEFORE_EXPANDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELBASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELBOXFOOTERFLAG</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELBOXHEADERFLAG</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELCONTRACTED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELHEADERFLAG</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELNUMBERMASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELUNINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELWHITEFLAG</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_LASTSTEPINUNDOREDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2202759936bafc4284957c4226f3042db">SC_MARGIN_BACK</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a23d1e3bb214808a93cf72986b0b461027">SC_MARGIN_FORE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2ed8932da45c8172b8b9c8fdeca780f62">SC_MARGIN_NUMBER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a27e7af608c20e4123e0c63a4cc773b363">SC_MARGIN_SYMBOL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4e3b1de6390cc0af837be4f7d7fe2c874">SC_MARK_ARROW</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4edad3abdf6caacb6b2e0aa6b5dcb2225">SC_MARK_ARROWDOWN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f89256799c23918fda728e89cca33202">SC_MARK_ARROWS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40299712b9cc948d89b63ccb57cc718b1">SC_MARK_BACKGROUND</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4562a720141731259a0b103de4bd97d97">SC_MARK_BOXMINUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4796ee8aec20e6718fb0f64ed6842f788">SC_MARK_BOXMINUSCONNECTED</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4b44cd3777c6526b38e43729f55d33d9f">SC_MARK_BOXPLUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a273fcfe1adb61f9209aae02dc0255e">SC_MARK_BOXPLUSCONNECTED</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43b6b66013744d32a407bdfd6d09a5b51">SC_MARK_CHARACTER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f434a6ab21669939553df7ea20efee63">SC_MARK_CIRCLE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4d8679bbada38b23e093aca2d7e181cf6">SC_MARK_CIRCLEMINUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ef80900cadb97b802077c229197a5cb3">SC_MARK_CIRCLEMINUSCONNECTED</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7d571a7e7e48ae750c7a862e1bbaac">SC_MARK_CIRCLEPLUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f44be3bd3071b92f21bedeb38080297239">SC_MARK_CIRCLEPLUSCONNECTED</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4bc5087b0b7079ec10079a8346c7f5034">SC_MARK_DOTDOTDOT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f42df2479d1baf9d5576639f46a1222346">SC_MARK_EMPTY</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f427aabfe553646e9ab186017b26577a06">SC_MARK_FULLRECT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f481d4d67f51f4ca1537ed49073485d9a7">SC_MARK_LCORNER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ee7ddee38b57a705314bc6739e488bab">SC_MARK_LCORNERCURVE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f461a1e23b36a33e7dcbe60829fc9bc8cb">SC_MARK_MINUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f45f1d4dcf4839e48bcd9a4e3f134ce7c6">SC_MARK_PIXMAP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4607f53e1b9693350dbf5317d22af3f36">SC_MARK_PLUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498c50cda1aa3ef885dd756384991ee61">SC_MARK_ROUNDRECT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498e14aa4f516be7f37574e209c1e663d">SC_MARK_SHORTARROW</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a7488c79a3800a9c8790763ed4adbef">SC_MARK_SMALLRECT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7c7a88f1171999c0a794440ca52421">SC_MARK_TCORNER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f724482fbd5d843bae330c83639aae34">SC_MARK_TCORNERCURVE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4723048b3e712e9165c6909e07d01295b">SC_MARK_VLINE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDEREND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDERMIDTAIL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDEROPEN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDEROPENMID</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDERSUB</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDERTAIL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MASK_FOLDERS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_BEFOREDELETE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_BEFOREINSERT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_CHANGEFOLD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_CHANGEMARKER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_CHANGESTYLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_DELETETEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_INSERTTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MODEVENTMASKALL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MULTILINEUNDOREDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MULTISTEPUNDOREDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PERFORMED_REDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PERFORMED_UNDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PERFORMED_USER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PRINT_BLACKONWHITE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PRINT_COLOURONWHITE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PRINT_COLOURONWHITEDEFAULTBG</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PRINT_INVERTLIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PRINT_NORMAL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_SEL_LINES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_SEL_RECTANGLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_SEL_STREAM</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_TIME_FOREVER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAP_CHAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAP_NONE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAP_WORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAG_END</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAG_NONE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAG_START</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAGLOC_DEFAULT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAGLOC_END_BY_TEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAGLOC_START_BY_TEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#13a80e946a24ed608742e90e976b770b">SCEN_CHANGE</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCFIND_MATCHCASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCFIND_POSIX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCFIND_REGEXP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCFIND_WHOLEWORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCFIND_WORDSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ADDREFDOCUMENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ADDSTYLEDTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0da963008bd0cd3ee5fafd3a033ba5570">SCI_ADDTEXT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ALLOCATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_APPENDTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ASSIGNCMDKEY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCACTIVE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCCANCEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCCOMPLETE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETAUTOHIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETCANCELATSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETCHOOSESINGLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETCURRENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETDROPRESTOFWORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETIGNORECASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETMAXHEIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETMAXWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETSEPARATOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETTYPESEPARATOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCPOSSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSELECT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETAUTOHIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETCANCELATSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETCHOOSESINGLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETDROPRESTOFWORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETFILLUPS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETIGNORECASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETMAXHEIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETMAXWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETSEPARATOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETTYPESEPARATOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSHOW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSTOPS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_BACKTAB</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_BEGINUNDOACTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_BRACEBADLIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_BRACEHIGHLIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_BRACEMATCH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPACTIVE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPCANCEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPPOSSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPSETBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPSETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPSETFOREHLT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPSETHLT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPSHOW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPUSESTYLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CANCEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CANPASTE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CANREDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CANUNDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARLEFTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARLEFTRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARRIGHTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARRIGHTRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHOOSECARETX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CLEAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CLEARALL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CLEARALLCMDKEYS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CLEARCMDKEY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CLEARDOCUMENTSTYLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0eb5af129108965033a6ae40eb45f7789">SCI_CLEARREGISTEREDIMAGES</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_COLOURISE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CONVERTEOLS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_COPY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_COPYRANGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_COPYTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CREATEDOCUMENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CUT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELETEBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELETEBACKNOTLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELLINELEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELLINERIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELWORDLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELWORDRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DOCLINEFROMVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DOCUMENTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DOCUMENTENDEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DOCUMENTSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DOCUMENTSTARTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_EDITTOGGLEOVERTYPE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d3351e3d838d0ecd57d7d9873364e219">SCI_EMPTYUNDOBUFFER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ENDUNDOACTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ENSUREVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ENSUREVISIBLEENFORCEPOLICY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_FINDCOLUMN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_FINDTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_FORMATRANGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_FORMFEED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0caa048913dfa4284aac9304e4d5e2d96">SCI_GETANCHOR</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETBACKSPACEUNINDENTS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETBUFFEREDDRAW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETLINEBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETLINEBACKALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETLINEVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETPERIOD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETSTICKY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCHARAT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCODEPAGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCOLUMN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCONTROLCHARSYMBOL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCURLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a1a628b61fa247d312e3f883fdcbc47">SCI_GETCURRENTPOS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCURSOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETDIRECTFUNCTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETDIRECTPOINTER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETDOCPOINTER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETEDGECOLOUR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETEDGECOLUMN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETEDGEMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETENDATLASTLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05ff8be672f9810059ab924770ee7a710">SCI_GETENDSTYLED</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETEOLMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETFIRSTVISIBLELINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETFOCUS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETFOLDEXPANDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETFOLDLEVEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETFOLDPARENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETHIGHLIGHTGUIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETHSCROLLBAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETINDENTATIONGUIDES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLASTCHILD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLAYOUTCACHE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLENGTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0f2708d28f4c8b3d30bf4bea14b977945">SCI_GETLEXER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINECOUNT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINEENDPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINEINDENTATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINEINDENTPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINESELENDPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINESELSTARTPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINESTATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINEVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMARGINLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a9d75e0d511355318ab72cc7b7d0876">SCI_GETMARGINMASKN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMARGINRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fb5a01691811c1ad15519d7023f83df9">SCI_GETMARGINSENSITIVEN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce">SCI_GETMARGINTYPEN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d301d4135e034067d2da57890708198e">SCI_GETMARGINWIDTHN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMAXLINESTATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMODEVENTMASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b076256f845570b29f335820a97bd158a5">SCI_GETMODIFY</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMOUSEDOWNCAPTURES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMOUSEDWELLTIME</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETOVERTYPE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPASTECONVERTENDINGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPRINTCOLOURMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPRINTMAGNIFICATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPRINTWRAPMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPROPERTY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPROPERTYEXPANDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPROPERTYINT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0918f3e57dfd152bfe12469d2d27de9db">SCI_GETREADONLY</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSCROLLWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSEARCHFLAGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSELALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSELECTIONEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSELECTIONMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSELECTIONSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSELTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSTATUS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSTYLEAT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSTYLEBITS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSTYLEBITSNEEDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSTYLEDTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTABINDENTS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTABWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTARGETEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTARGETSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b09d5e442a3812d53ac8067628098fedb0">SCI_GETTEXT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b034122ac033e32308cf188f718b0107e9">SCI_GETTEXTLENGTH</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTEXTRANGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTWOPHASEDRAW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETUNDOCOLLECTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETUSEPALETTE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETUSETABS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETVIEWEOL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETVIEWWS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETVSCROLLBAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETWRAPMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETWRAPSTARTINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETWRAPVISUALFLAGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETWRAPVISUALFLAGSLOCATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETXOFFSET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETZOOM</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GOTOLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b00ac47051be6366994d747fd07b52077a">SCI_GOTOPOS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GRABFOCUS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HIDELINES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HIDESELECTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOME</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMEDISPLAY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMEDISPLAYEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMEEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMERECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMEWRAP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMEWRAPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_INDICGETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_INDICGETSTYLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_INDICSETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_INDICSETSTYLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_INSERTTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LEXER_START</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINECOPY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINECUT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEDELETE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEDOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEDOWNEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEDOWNRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEDUPLICATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDDISPLAY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDDISPLAYEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDWRAP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDWRAPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEFROMPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINELENGTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESCROLL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESCROLLDOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESCROLLUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESJOIN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESONSCREEN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESSPLIT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINETRANSPOSE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEUPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEUPRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LOADLEXERLIBRARY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LOWERCASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49">SCI_MARKERADD</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_MARKERADDSET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b053b5ad6db4f59a08f49888d1fe6014c9">SCI_MARKERDEFINE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08b2d54230a47a94bfb2ea2fd88cdabc8">SCI_MARKERDEFINEPIXMAP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0b21015787f6b3914e4d638dee15aa2db">SCI_MARKERDELETE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0daef3f1a3a46547eb9fdd1faa1dcabba">SCI_MARKERDELETEALL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04d4abb132cd5c624fb863a4e2e18cb48">SCI_MARKERDELETEHANDLE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03e011f5a6f9a1933ac95701cbe26e8f1">SCI_MARKERGET</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0c7d428743df3c3270a93ef5458a9c9a4">SCI_MARKERLINEFROMHANDLE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f423984b7557eb8274ba46962d22021">SCI_MARKERNEXT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06f99e3d5fe686e7fc62ea33c7b142bed">SCI_MARKERPREVIOUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_MARKERSETALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fc75921a28636146af28a8f21ca5ff82">SCI_MARKERSETBACK</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06b0344c924e234c5a73466b86225e0af">SCI_MARKERSETFORE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_MOVECARETINSIDEVIEW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_NEWLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_NULL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_OPTIONAL_START</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEDOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEDOWNEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEDOWNRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEUPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEUPRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PARADOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PARADOWNEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PARAUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PARAUPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PASTE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POINTXFROMPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POINTYFROMPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POSITIONAFTER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POSITIONBEFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POSITIONFROMLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POSITIONFROMPOINT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POSITIONFROMPOINTCLOSE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_REDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b041ef59413dbfaeb8d13cde610dffb659">SCI_REGISTERIMAGE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_RELEASEDOCUMENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_REPLACESEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_REPLACETARGET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_REPLACETARGETRE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SCROLLCARET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SEARCHANCHOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SEARCHINTARGET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SEARCHNEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SEARCHPREV</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SELECTALL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SELECTIONDUPLICATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SELECTIONISRECTANGLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ddf73f24d674a7deda70e54f8418edcc">SCI_SETANCHOR</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETBACKSPACEUNINDENTS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETBUFFEREDDRAW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETLINEBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETLINEBACKALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETLINEVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETPERIOD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETSTICKY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCHARSDEFAULT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCODEPAGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCONTROLCHARSYMBOL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08f8198351235bce8efe1c9fa4b69419e">SCI_SETCURRENTPOS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCURSOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETDOCPOINTER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETEDGECOLOUR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETEDGECOLUMN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETEDGEMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETENDATLASTLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETEOLMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOCUS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOLDEXPANDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOLDFLAGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOLDLEVEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOLDMARGINCOLOUR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOLDMARGINHICOLOUR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETHIGHLIGHTGUIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETHOTSPOTACTIVEBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETHOTSPOTACTIVEFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETHOTSPOTACTIVEUNDERLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETHSCROLLBAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETINDENTATIONGUIDES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETKEYWORDS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETLAYOUTCACHE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0072c4ebd26abad84f3892a5aef4cf215">SCI_SETLEXER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08512ebbc6a1341e1fb55f70e693fb8d0">SCI_SETLEXERLANGUAGE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETLINEINDENTATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETLINESTATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETMARGINLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04bad9debaf35fc86b8899891bce53c38">SCI_SETMARGINMASKN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETMARGINRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ac5019b21e5be3cf19fcf999c3da833a">SCI_SETMARGINSENSITIVEN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f9b3a4194c3ee4d18f9efb8dcb91bb9">SCI_SETMARGINTYPEN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0681a357f18daa23daa1f6eaaeb0ea06c">SCI_SETMARGINWIDTHN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETMODEVENTMASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETMOUSEDOWNCAPTURES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETMOUSEDWELLTIME</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETOVERTYPE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETPASTECONVERTENDINGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETPRINTCOLOURMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETPRINTMAGNIFICATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETPRINTWRAPMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETPROPERTY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b059b1bb6d9d65ac410be6b66b2c426f14">SCI_SETREADONLY</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0be33d4f870ce79d968106ae73cc431a0">SCI_SETSAVEPOINT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSCROLLWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSEARCHFLAGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELECTIONEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELECTIONMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELECTIONSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSTATUS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSTYLEBITS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSTYLING</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSTYLINGEX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETTABINDENTS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETTABWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETTARGETEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETTARGETSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b004da7b8cb076eacef2372b9bbfe4dc14">SCI_SETTEXT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETTWOPHASEDRAW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETUNDOCOLLECTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETUSEPALETTE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETUSETABS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETVIEWEOL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETVIEWWS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETVISIBLEPOLICY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETVSCROLLBAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWHITESPACEBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWHITESPACECHARS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWHITESPACEFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWORDCHARS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWRAPMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWRAPSTARTINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWRAPVISUALFLAGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWRAPVISUALFLAGSLOCATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETXCARETPOLICY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETXOFFSET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETYCARETPOLICY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETZOOM</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SHOWLINES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_START</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STARTRECORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STARTSTYLING</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STOPRECORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STUTTEREDPAGEDOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STUTTEREDPAGEDOWNEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STUTTEREDPAGEUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STUTTEREDPAGEUPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLECLEARALL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLERESETDEFAULT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETBOLD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETCASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETCHANGEABLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETCHARACTERSET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETEOLFILLED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETFONT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETHOTSPOT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETITALIC</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETSIZE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETUNDERLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_TAB</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_TARGETFROMSELECTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_TEXTHEIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05a873177612d3225d21459d889b51a20">SCI_TEXTWIDTH</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_TOGGLECARETSTICKY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_TOGGLEFOLD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_UNDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_UPPERCASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_USEPOPUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_USERLISTSHOW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VCHOME</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VCHOMEEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VCHOMERECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VCHOMEWRAP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VCHOMEWRAPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VISIBLEFROMDOCLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDENDPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDLEFTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDLEFTENDEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDLEFTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDPARTLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDPARTLEFTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDPARTRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDPARTRIGHTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDRIGHTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDRIGHTENDEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDRIGHTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDSTARTPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WRAPCOUNT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ZOOMIN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ZOOMOUT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_ADD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_BACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_DELETE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_DIVIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_DOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_END</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_ESCAPE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_HOME</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_INSERT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_LEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_NEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_PRIOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_RETURN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_RIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_SUBTRACT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_TAB</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_UP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8b9733c9dd7b20e68a1226cf9ed81f69">SCLEX_ADA</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc5a6e143f3b3db4c6b2e80fce8d4f8eb">SCLEX_APDL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8c7ff8643a97b01c67a4a9271030d1ac">SCLEX_ASM</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da0b7eaa71bb78dd6d6fced870ba90f24">SCLEX_ASN1</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded111ca524237de01b990c8aa9380542">SCLEX_ASP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8dc8d6b0189cd4d471264a824cf1c199">SCLEX_AU3</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6edb4f9bc36f41d26f4a42a3410c7433">SCLEX_AVE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3c9e1bf7b958e31d8ab870a95cab0851">SCLEX_BAAN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f9e5ea4e564ba6f8d1dae8d7ace454d">SCLEX_BASH</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4f36017b6593f4740d006563caa5dd1a">SCLEX_BATCH</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2696851be5e73938cc53b02903bf30c2">SCLEX_BLITZBASIC</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0925a82889c406669e7293d180555159">SCLEX_BULLANT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d53e5454136a08b61270dfa0e49e471e6">SCLEX_CAML</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0651b9876e477b32d5a3825d298098ae">SCLEX_CLW</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dafaa399612f323eb30aa2ca13bc0e42a">SCLEX_CLWNOCASE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f3a52fea3e08741ea664dedf5530fa5">SCLEX_CONF</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df702befd903d9d65fa84af10461828a0">SCLEX_CONTAINER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d37233777b6512990ad985e41f1470ee0">SCLEX_CPP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddada03b169d0b52daa7c00181f03e897">SCLEX_CPPNOCASE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d046e55128e56aeeb7a72f994fb4e015b">SCLEX_CSOUND</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc4b56223ccc682279fc18900fe650778">SCLEX_CSS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6842f7058b71411ab80bc1c33a63da63">SCLEX_DIFF</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d348f60f0b617eed037b6110e42af0996">SCLEX_EIFFEL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6d8490d0f99f6b329ab5f45c2234adf5">SCLEX_EIFFELKW</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da96b775c8fe016a1e7541600f939e201">SCLEX_ERLANG</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da5ccd91896d4f60a1721f59baca56e13">SCLEX_ERRORLIST</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d07f1b0054d239f968dece3bfb2017e6e">SCLEX_ESCRIPT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb8b68e427523e7e7ac9bc7f20b4347b">SCLEX_F77</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d38bfecc4bc450106195200bf1724a84b">SCLEX_FLAGSHIP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8cba676e4b42856ea6187a171dc74995">SCLEX_FORTH</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d78c83128f5d3c8ed6b2d87a3c6f61e3d">SCLEX_FORTRAN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d276307014b9460c95ebe5076afa050f2">SCLEX_FREEBASIC</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dd9dc2f753f14ca5ef729c2883dee1b0d">SCLEX_GUI4CLI</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d351fd85d3fd522100386bfd9424e3a62">SCLEX_HASKELL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df2338400902a61d96c4057caa0c450a2">SCLEX_HTML</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0efec3f1d46af6f6a7924de1e19a5761">SCLEX_INNOSETUP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb1d483ed2becbbe59887bb89f4014d0">SCLEX_KIX</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8817495465d06d51a7f29663db3e307d">SCLEX_LATEX</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d332fca6d318ec42f4db4191ad6deb193">SCLEX_LISP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2c42663d4d0f5e3ea1ea6667d467bf5f">SCLEX_LOT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62db03b3fda38342d0470fab2357eac2ab0">SCLEX_LOUT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dda37fcab324043a52fc2b85399644454">SCLEX_LUA</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3569ea5aea72d6978fb61b6231c3b4da">SCLEX_MAKEFILE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dbd5db8ab589a9223d2e095dcf3855454">SCLEX_MATLAB</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8953cce4f69b05e263e1f47c617a70fd">SCLEX_METAPOST</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc09594aa860e17ddff434ba2883e552e">SCLEX_MMIXAL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d85f6c994156a3adcea37f321f8dd6a3d">SCLEX_MSSQL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8bbda96ce9f7e57aa479486a2d4edd94">SCLEX_NNCRONTAB</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddd268ef9f9d4209dc241f55828257120">SCLEX_NSIS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a51b24b990fe1e8e3680d25e1331dc6">SCLEX_NULL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d91d63a0032121624fdae20af80851828">SCLEX_OCTAVE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded042730912f5111558955e09214d298">SCLEX_OPAL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6210ca0cdb31e06c18ec14294238a3a4">SCLEX_PASCAL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0bd817c73cd4b9a00a81c04a8585804b">SCLEX_PERL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dab90570deb68926f7c76339b9640bc25">SCLEX_PHP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e89b369bda35c4aebac67f7313a90f2">SCLEX_PHPSCRIPT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d830f97f74f0966734a36579de53e7f9e">SCLEX_POV</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d055c632267a1a9e088e92893398ac0c2">SCLEX_POWERBASIC</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d780544fc36639fc09690ad6dbb352f65">SCLEX_PROPERTIES</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d338ccc586737eb91dfc4333fea64b1f9">SCLEX_PS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7764a265dd69743101b3a64e68ae5efa">SCLEX_PUREBASIC</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d70827e6b1710d76ca56fce165f726ad2">SCLEX_PYTHON</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de5f83876b6fa6a6de26b655e281ffd16">SCLEX_REBOL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc062b29c7caa054f57b5b6aa54385f33">SCLEX_RUBY</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d013005a7d7306628adbcdaa6bd41d24f">SCLEX_SCRIPTOL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3a1de57f409755a648a5755f914ed028">SCLEX_SMALLTALK</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2a598cbdc1084026ef09a46ac1832c62">SCLEX_SPECMAN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d983672d8cd26e849c76717f754e59a80">SCLEX_SPICE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d31b4c7ddbe672064514c775788f56f80">SCLEX_SQL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dcabaa53d59287ebbdc977eeceb9c3e65">SCLEX_TADS3</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e46782e8d9ccda555ec49cfca67e546">SCLEX_TCL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6b8c539414c4f2127c04e5bc2c9da03a">SCLEX_TEX</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d42e3b71bd069a7991e73b16a48d44fb3">SCLEX_VB</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4e2037e23a835db605b0620f32511b87">SCLEX_VBSCRIPT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8142b07f7de61126fc5e4dd005f09c28">SCLEX_VERILOG</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7d9f5bcf567a86ad19f28476539f3c76">SCLEX_VHDL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de4a8bd95f6f567e44a246f46c3d2a7fe">SCLEX_XML</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a3b27b45e2066a6dd275b613adb0a1d">SCLEX_YAML</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e3d58fd86cb23274ec15615fe2c42961f">SCMOD_ALT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4ea69a17f5b83112750f8807a1516b8119">SCMOD_CTRL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e881b5932870b621432a28e0d7a324695">SCMOD_NORM</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4eeb5363cad0f41ea5332418f63a3ad06f">SCMOD_SHIFT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#8201e4d6beab5edbb64515d6d52b1fd7">SCN_AUTOCSELECTION</a>(const char *selection, int position)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#dccbc9d664a8bffc9d59971a362febf2">SCN_CALLTIPCLICK</a>(int direction)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#3af676a6edd1f511a0c46cbc9bbb2cbb">SCN_CHARADDED</a>(int charadded)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_DOUBLECLICK</b>() (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_DWELLEND</b>(int, int, int) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_DWELLSTART</b>(int, int, int) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#c5a9f540a31b8fa2614eb81ee83a3ca4">SCN_HOTSPOTCLICK</a>(int position, int modifiers)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#1ef454f2acaccaa53dcce7e542cdb006">SCN_HOTSPOTDOUBLECLICK</a>(int position, int modifiers)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#48c3b55133b4f2fe40f4a8ad48c8464a">SCN_MACRORECORD</a>(unsigned int, unsigned long, long)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#5d37a34b0254cfe015056c25b1b486a5">SCN_MARGINCLICK</a>(int position, int modifiers, int margin)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_MODIFIED</b>(int, int, const char *, int, int, int, int, int) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#50b6b16bf671969a8e0034b8763a55b2">SCN_MODIFYATTEMPTRO</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_NEEDSHOWN</b>(int, int) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#0812c4c0f7a05df4ede492e5b81c0c5d">SCN_PAINTED</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#2b5ad5e9701145883210c588caa60859">SCN_SAVEPOINTLEFT</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#72a342de3e6973e7bfee0403bc002585">SCN_SAVEPOINTREACHED</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#091c3669666a8d479e8dea5b803f63d7">SCN_STYLENEEDED</a>(int position)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_UPDATEUI</b>() (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_USERLISTSELECTION</b>(const char *, int) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_ZOOM</b>() (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCWS_INVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCWS_VISIBLEAFTERINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCWS_VISIBLEALWAYS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#50499f9105f6dbc9922078139779051c">selectAll</a>(bool select=TRUE)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#45d6e53a4310c13170e605134274aa20">selectedText</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#d4fd9bb7affe4719cb785064b42d685c">selectionChanged</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#b6bfc944a5acbd2b8345529a2416e00a">selectToMatchingBrace</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#35ba57ee3832cf695531cc997b24d821">SendScintilla</a>(unsigned int msg, unsigned long wParam=0, long lParam=0)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, unsigned long wParam, const char *lParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, const char *lParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, const char *wParam, const char *lParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, long wParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, int wParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, long cpMin, long cpMax, char *lpstrText) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, unsigned long wParam, const QColor &col) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, const QColor &col) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, unsigned long wParam, QPainter *hdc, const QRect &rc, long cpMin, long cpMax) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, unsigned long wParam, const QPixmap *lParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#36fdcb3b147a92d5bb4b17b11c229137">setAutoCompletionAPIs</a>(QextScintillaAPIs *apis=0)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#9454e9ddb11fa6a00eb5ea790182b399">setAutoCompletionCaseSensitivity</a>(bool cs)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#d1c9c323b852ac98a7713bcfa9575c38">setAutoCompletionFillups</a>(const char *fillups)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#faf2b98416c08a2cb74d0ed9662ffda8">setAutoCompletionFillupsEnabled</a>(bool enabled)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#c3d23d34c0f0640bb22464b86347b0b9">setAutoCompletionReplaceWord</a>(bool replace)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#533cdccf3cafb0f71c58aeb9b2624062">setAutoCompletionShowSingle</a>(bool single)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#4aa5c60bfa3047118edf15ba15a0e431">setAutoCompletionSource</a>(AutoCompletionSource source)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#dc54314cbcd37186e445c5244d20c3da">setAutoCompletionStartCharacters</a>(const char *start)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#b8838747494640eaf03262c32f559e4c">setAutoCompletionThreshold</a>(int thresh)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#12a3363eb37db0a2697bf737e0f750ce">setAutoIndent</a>(bool autoindent)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#b08d343cda48e43490baae62707e97e2">setBackspaceUnindents</a>(bool unindent)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#28cda2cba2f6f1317a15f662e157fbbf">setBraceMatching</a>(BraceMatch bm)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#3d682f46b23b29e0da9bb0e52560d23e">setCallTipsAPIs</a>(QextScintillaAPIs *apis=0)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#abd9a8e1e59a15ec3a1217aeb6ee7466">setCallTipsBackgroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#727d2a5f880ee4f12dba983ff1dcbee6">setCallTipsForegroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#edede8a8431bca98f760f4e3a999ce50">setCallTipsHighlightColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#cc8e39f55a32337c3cf949a4cd09201e">setCallTipsVisible</a>(int nr)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#6d9ba2d4af256e19049b7ff1b291eb2e">setCaretForegroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#e71f2cf24abfcfe598989e13481bc711">setCaretLineBackgroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#dc9f29c940c8c3b8cc57d8cbd89a02ec">setCaretLineVisible</a>(bool enable)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#8ea3c0a1e23aadb93ae0e6c671a10b09">setCaretWidth</a>(int width)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#2dc9e4690becceb27a9a981c23deb8e0">setColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#76302c4726ba0c75de2627465c5faddb">setCursorPosition</a>(int line, int index)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#69802b3e4de344601674a231ef2cabd2">setDocument</a>(const QextScintillaDocument &document)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#2ed5a40c9d6eb4c68895d35b1a828cf3">setEdgeColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a2ca10384773c2a4f67e6f8cc913cb8c">setEdgeColumn</a>(int colnr)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#b03b1badfc3f69b10f99a1fb9bb7f647">setEdgeMode</a>(EdgeMode mode)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#f372a0b24952de9adf5c06697561ff4f">setEolMode</a>(EolMode mode)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#19bd08e911d00127b02b08b468aa91f9">setEolVisibility</a>(bool visible)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#4c7a389d1492aa92246041545ea0c017">setFolding</a>(FoldStyle fold)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#255e6f2855091409ee2eb7dfe403ca0a">setFoldMarginColors</a>(const QColor &fore, const QColor &back)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#af82bd33f7c35e50ee96547a92cefe13">setFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#cb4de8d10de37d454203fe0fcfcf0aad">setIndentation</a>(int line, int indentation)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#13ff99c97d3928011ec55a54329f7bef">setIndentationGuides</a>(bool enable)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#06159cf5a4c8834c05d4ca13ab8e44f6">setIndentationGuidesBackgroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1dc9a7291e60fd738dfa8aedaa9447a5">setIndentationGuidesForegroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#46decfe40cf613d5978e50c30231b162">setIndentationsUseTabs</a>(bool tabs)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#0670389deb55079381f21764df0e2441">setIndentationWidth</a>(int width)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#f784daa825798f7e9c16d0a721699fa0">setLexer</a>(QextScintillaLexer *lexer=0)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1427cac9893fcc7b952264ff257b32de">setMarginLineNumbers</a>(int margin, bool lnrs)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#6c9e5a77874dfb08b5fb83c650abd414">setMarginMarkerMask</a>(int margin, int mask)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a2a7732db0b17dd08162a7bba8c5af55">setMarginsBackgroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#09e5035f78a603c3e68a22712ac9ae02">setMarginSensitivity</a>(int margin, bool sens)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#b607dd4ea4a5d50ca03878d63d9e99ef">setMarginsFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#11d0ceebbc7938c988be6475c0946636">setMarginsForegroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#2ffce76c496336d195b7438cd4113d0d">setMarginWidth</a>(int margin, int width)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a160ac7908b83f021850d306bd2c7f7f">setMarginWidth</a>(int margin, const QString &s)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#bb5aa0bf13508d14a81e2b0850c524d0">setMarkerBackgroundColor</a>(const QColor &col, int mnr=-1)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#a0e999a76af9f4a691565081e90ceb24">setMarkerForegroundColor</a>(const QColor &col, int mnr=-1)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#d9f4087923672124c971c1f9ccdacd07">setMatchedBraceBackgroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#091dc61d3fca5b38dc789039abdf70bc">setMatchedBraceForegroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#16ec6f5d6b1020c22f33c164d2fc4a10">setModified</a>(bool m)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#6009167416ef66da0a09fdbc4920b1ba">setPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1bb17663785894a85e7fe07ad5768dfb">setReadOnly</a>(bool ro)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#0abb348ecbb21dcecfa2ba7bb423d50b">setSelection</a>(int lineFrom, int indexFrom, int lineTo, int indexTo)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#5720572f4f673b5c877e8a1f35ed76d7">setSelectionBackgroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#2236686ea942de0cc50ddbd6d822536f">setSelectionForegroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#221ac401d34a180392e49bacd9b56c4e">setTabIndents</a>(bool indent)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#20b8f9e86b5279f8bf14793beb0254cd">setTabWidth</a>(int width)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#56ea80d4dad00c736135116e3aa051b6">setText</a>(const QString &text)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#da2281d317ab06a6cd17ea80391f645d">setUnmatchedBraceBackgroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#6b6f687d01a687a29c3439741006f38f">setUnmatchedBraceForegroundColor</a>(const QColor &col)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#4d22589eaa4cf9c37e701c6ec80bc405">setUtf8</a>(bool cp)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#811888818870dd0d9cd74d297f711bc8">setWhitespaceVisibility</a>(WhitespaceVisibility mode)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#945affc0b0f8f25f58138f923d5a270d">setWrapMode</a>(WrapMode mode)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#11ef30c49b7c6fb96988a94059efa687">setWrapVisualFlags</a>(WrapVisualFlag eflag, WrapVisualFlag sflag=WrapFlagNone, int sindent=0)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#74a4da1e86eda7f62262cea8a4a9b26a">showUserList</a>(int id, const QStringList &list)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#171ce27ddcfabf024cc5539181f253dd">sizeHint</a>() const </td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b0663484a90fdee0162e2e2e267c2da8a">SloppyBraceMatch</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee7978b23c827aa996489af72541c670a">SmallRectangle</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#ea83bb0bc19af4a776b68ee3eda10c61">standardCommands</a>() const </td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#7c1be000329c8f9e328999cbc03ba9a7">startDrag</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b630eeb134a1e0a274c9bf70f3c3eaf98">StrictBraceMatch</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_BRACEBAD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_BRACELIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_CALLTIP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_CONTROLCHAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_DEFAULT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_INDENTGUIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_LASTPREDEFINED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_LINENUMBER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_MAX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1deb0e0aff533559500242065e9441a2">tabIndents</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#9aa14c5d05ea338aecb5214dc4cf99c4">tabWidth</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#8ddaf394f65c06d5b20d06be5ca9bd35">text</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#db77f87ba9bb2518181029e1fba8e51b">text</a>(int line)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#b4f0af1a6757e30fe5ecdf82b09618c3">textChanged</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#d4050cea6a4d23c5ee9be5f952eeb072">textHeight</a>(int linenr)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee7a191db8dddab1a3e0531c892d0b27f">ThreeDots</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e65222a20a68f9007cf230f71ca2ba718">ThreeRightArrows</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#50dd001a80d36e81d4f1616a4b9ead02">undo</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#d4a5197ca9a6957e05047d7af5cfa5fc">unindent</a>(int line)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1bc718e051677cc538be5c9045abee87">userListActivated</a>(int id, const QString &string)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e03b0246f54901bc552a3177669c891ef">VerticalLine</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#7c7723d64865b462ecfbf4152d836cae">viewport</a>() const </td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>VISIBLE_SLOP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>VISIBLE_STRICT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e">WhitespaceVisibility</a> enum name</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#5321010c2f04093c3107cf34b23ebb52">whitespaceVisibility</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed30c943c655b94e4b84894e064d2347902">WrapCharacter</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74105f0883c4c951d09f380ebad17c9518">WrapFlagByBorder</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d746c70d596357dcb7913ebf66316a09c3b">WrapFlagByText</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d7409f39f36c9fcfabe6b2008e14e1284dc">WrapFlagNone</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#99ec7ecdc8cd8f79aaeeda2b61796b65">wrapMode</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">WrapMode</a> enum name</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed35c9a275d8d2ec83e22e8d759307b4f41">WrapNone</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74">WrapVisualFlag</a> enum name</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3a7f65cd359e236aee9ab70d7bf55085c">WrapWord</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e398be33ca1a9547568fac0a3f4aa4f9b">WsInvisible</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03ede6353c45c1ff691bd9b623b3b24efda">WsVisible</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03ec266db5b712023c5620b3e2e282f6402">WsVisibleAfterIndent</a> enum value</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#279f582a91cc4210056069039e122187">zoomIn</a>(int range)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#69341ebed602660d09fb47af683ac266">zoomIn</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#5ca018a25639ec07c4e0debd48ce7c38">zoomOut</a>(int range)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#fa53fc56031df8f657e2e75f95848777">zoomOut</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#58bf75fc581f7fc46235a6ad95ef5da5">zoomTo</a>(int size)</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintilla.html#6bec02d815e1e0ca1a0c6a75a5b4e978">~QextScintilla</a>()</td><td><a class="el" href="classQextScintilla.html">QextScintilla</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#f22e6dadb040870209e511018a4aa0b8">~QextScintillaBase</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintilla.html b/doc/html/classQextScintilla.html new file mode 100644 index 0000000..47a99f0 --- /dev/null +++ b/doc/html/classQextScintilla.html @@ -0,0 +1,4920 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintilla Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintilla Class Reference</h1><!-- doxytag: class="QextScintilla" --><!-- doxytag: inherits="QextScintillaBase" -->The <a class="el" href="classQextScintilla.html">QextScintilla</a> class implements a higher level, more Qt-like, API to the Scintilla editor widget. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintilla.h></code> +<p> +Inherits <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>. +<p> +<a href="classQextScintilla-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae9c1e2a26467f02b3fc645a10083d04208">AiMaintain</a> = 0x01 +<li><a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae93781e4e24c094255b5cc8c01a6afaf8b">AiOpening</a> = 0x02 +<li><a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae917d10ecdceac133845dc43ed53e0fb64">AiClosing</a> = 0x04 +<li><a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7e8cbc5b781bff6985e4f524668fb3110">AcsDocument</a> +<li><a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7af0b70461479558da5cf363a7e3b35c2">AcsAPIs</a> +<li><a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7099252dfa0fbb8e26853a79578b33f7e">AcsAll</a> +<li><a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06bb87d61027f50717f9df0526ad9654bfa">NoBraceMatch</a> +<li><a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b630eeb134a1e0a274c9bf70f3c3eaf98">StrictBraceMatch</a> +<li><a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b0663484a90fdee0162e2e2e267c2da8a">SloppyBraceMatch</a> +<li><a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9fb431bfc050ea921924574abdf310643">EdgeNone</a> = EDGE_NONE +<li><a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef983b130b7b74ea372fc3d9b5b19bbd5d4">EdgeLine</a> = EDGE_LINE +<li><a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef952b3ab1ab0f1de59c13ed703c9a857c3">EdgeBackground</a> = EDGE_BACKGROUND +<li><a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a757794a61cf9baf2de33bac37066554b">EolWindows</a> = SC_EOL_CRLF +<li><a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a06657431efe214758a12041f238300b7">EolUnix</a> = SC_EOL_LF +<li><a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a07ec88765cc5f9669aa9ebbf309c54dd">EolMac</a> = SC_EOL_CR +<li><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf15bf3a37eb510d9e28cffa522aaa938a">NoFoldStyle</a> +<li><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cff1c523d088ff3118802f265134f7b0c8">PlainFoldStyle</a> +<li><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf58df1387aaf6e4a05104d34c06868cdd">CircledFoldStyle</a> +<li><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cfcb1f1d2bd51d589287865f44ae4b08c0">BoxedFoldStyle</a> +<li><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cfd9215f00cf188ef6259740768e866506">CircledTreeFoldStyle</a> +<li><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf8a0fab06a1e5e77a9d3a252a412eb0aa">BoxedTreeFoldStyle</a> +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e452faff3eae9ed78188c1468d85a8c5f">Circle</a> = SC_MARK_CIRCLE +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e9f09b445e420d7da2690fa04a3b47aca">Rectangle</a> = SC_MARK_ROUNDRECT +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e1067d54d6ffc9638173c14eafb94a076">RightTriangle</a> = SC_MARK_ARROW +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee7978b23c827aa996489af72541c670a">SmallRectangle</a> = SC_MARK_SMALLRECT +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc48c1353c0700fbce7934cec712ad46">RightArrow</a> = SC_MARK_SHORTARROW +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc46bd102729e4ddec0f312b31cc18ab">Invisible</a> = SC_MARK_EMPTY +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e424e38d2d52e311348f552158596dc7a">DownTriangle</a> = SC_MARK_ARROWDOWN +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee9d6088eaf7e66c9446ab6a45d06ee1c">Minus</a> = SC_MARK_MINUS +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ec8380a8e0e64281cd3e9235d38f4bdf4">Plus</a> = SC_MARK_PLUS +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e03b0246f54901bc552a3177669c891ef">VerticalLine</a> = SC_MARK_VLINE +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e9d5a57c4bedde7059bea56f5bd4934cd">BottomLeftCorner</a> = SC_MARK_LCORNER +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e6744df3fdf44463301b645e10c9fcb64">LeftSideSplitter</a> = SC_MARK_TCORNER +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc6de462d1b5a1c3f90a2b7277894b02">BoxedPlus</a> = SC_MARK_BOXPLUS +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72eeb3dd9d4a1c11498f1e2474fd6aec576">BoxedPlusConnected</a> = SC_MARK_BOXPLUSCONNECTED +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4a4a4d6c4834ded0218f9795e9390f95">BoxedMinus</a> = SC_MARK_BOXMINUS +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e6169156f553cbaa54d2b466fe510dea6">BoxedMinusConnected</a> = SC_MARK_BOXMINUSCONNECTED +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ea00fb6bd4558f17771593aae1441c25d">RoundedBottomLeftCorner</a> = SC_MARK_LCORNERCURVE +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4aae653a78cd0cd197db2987f0eb4150">LeftSideRoundedSplitter</a> = SC_MARK_TCORNERCURVE +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e95ccb68fe182c2632314e12c74539924">CircledPlus</a> = SC_MARK_CIRCLEPLUS +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee6c19ec3354b9e5449fa32a0905bf829">CircledPlusConnected</a> = SC_MARK_CIRCLEPLUSCONNECTED +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee72e33be4b3f7cb3b70638721900d045">CircledMinus</a> = SC_MARK_CIRCLEMINUS +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4a6a3f3368636e350699cc60b3415ca5">CircledMinusConnected</a> = SC_MARK_CIRCLEMINUSCONNECTED +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e679546b0e1f41ec63e751bc1b0c5b358">Background</a> = SC_MARK_BACKGROUND +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee7a191db8dddab1a3e0531c892d0b27f">ThreeDots</a> = SC_MARK_DOTDOTDOT +<li><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e65222a20a68f9007cf230f71ca2ba718">ThreeRightArrows</a> = SC_MARK_ARROWS +<li><a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e398be33ca1a9547568fac0a3f4aa4f9b">WsInvisible</a> = SCWS_INVISIBLE +<li><a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03ede6353c45c1ff691bd9b623b3b24efda">WsVisible</a> = SCWS_VISIBLEALWAYS +<li><a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03ec266db5b712023c5620b3e2e282f6402">WsVisibleAfterIndent</a> = SCWS_VISIBLEAFTERINDENT +<li><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed35c9a275d8d2ec83e22e8d759307b4f41">WrapNone</a> = SC_WRAP_NONE +<li><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3a7f65cd359e236aee9ab70d7bf55085c">WrapWord</a> = SC_WRAP_WORD +<li><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed30c943c655b94e4b84894e064d2347902">WrapCharacter</a> = SC_WRAP_CHAR +<li><a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d7409f39f36c9fcfabe6b2008e14e1284dc">WrapFlagNone</a> +<li><a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d746c70d596357dcb7913ebf66316a09c3b">WrapFlagByText</a> +<li><a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74105f0883c4c951d09f380ebad17c9518">WrapFlagByBorder</a> +<li>enum { <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae9c1e2a26467f02b3fc645a10083d04208">AiMaintain</a> = 0x01, +<a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae93781e4e24c094255b5cc8c01a6afaf8b">AiOpening</a> = 0x02, +<a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae917d10ecdceac133845dc43ed53e0fb64">AiClosing</a> = 0x04 + } +<li>enum <a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7">AutoCompletionSource</a> { <a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7e8cbc5b781bff6985e4f524668fb3110">AcsDocument</a>, +<a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7af0b70461479558da5cf363a7e3b35c2">AcsAPIs</a>, +<a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7099252dfa0fbb8e26853a79578b33f7e">AcsAll</a> + } +<li>enum <a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b">BraceMatch</a> { <a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06bb87d61027f50717f9df0526ad9654bfa">NoBraceMatch</a>, +<a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b630eeb134a1e0a274c9bf70f3c3eaf98">StrictBraceMatch</a>, +<a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b0663484a90fdee0162e2e2e267c2da8a">SloppyBraceMatch</a> + } +<li>enum <a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9">EdgeMode</a> { <a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9fb431bfc050ea921924574abdf310643">EdgeNone</a> = EDGE_NONE, +<a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef983b130b7b74ea372fc3d9b5b19bbd5d4">EdgeLine</a> = EDGE_LINE, +<a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef952b3ab1ab0f1de59c13ed703c9a857c3">EdgeBackground</a> = EDGE_BACKGROUND + } +<li>enum <a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a">EolMode</a> { <a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a757794a61cf9baf2de33bac37066554b">EolWindows</a> = SC_EOL_CRLF, +<a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a06657431efe214758a12041f238300b7">EolUnix</a> = SC_EOL_LF, +<a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a07ec88765cc5f9669aa9ebbf309c54dd">EolMac</a> = SC_EOL_CR + } +<li>enum <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf">FoldStyle</a> { <br> + <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf15bf3a37eb510d9e28cffa522aaa938a">NoFoldStyle</a>, +<a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cff1c523d088ff3118802f265134f7b0c8">PlainFoldStyle</a>, +<a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf58df1387aaf6e4a05104d34c06868cdd">CircledFoldStyle</a>, +<br> + <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cfcb1f1d2bd51d589287865f44ae4b08c0">BoxedFoldStyle</a>, +<a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cfd9215f00cf188ef6259740768e866506">CircledTreeFoldStyle</a>, +<a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf8a0fab06a1e5e77a9d3a252a412eb0aa">BoxedTreeFoldStyle</a> +<br> + } +<li>enum <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e">MarkerSymbol</a> { <br> + <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e452faff3eae9ed78188c1468d85a8c5f">Circle</a> = SC_MARK_CIRCLE, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e9f09b445e420d7da2690fa04a3b47aca">Rectangle</a> = SC_MARK_ROUNDRECT, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e1067d54d6ffc9638173c14eafb94a076">RightTriangle</a> = SC_MARK_ARROW, +<br> + <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee7978b23c827aa996489af72541c670a">SmallRectangle</a> = SC_MARK_SMALLRECT, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc48c1353c0700fbce7934cec712ad46">RightArrow</a> = SC_MARK_SHORTARROW, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc46bd102729e4ddec0f312b31cc18ab">Invisible</a> = SC_MARK_EMPTY, +<br> + <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e424e38d2d52e311348f552158596dc7a">DownTriangle</a> = SC_MARK_ARROWDOWN, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee9d6088eaf7e66c9446ab6a45d06ee1c">Minus</a> = SC_MARK_MINUS, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ec8380a8e0e64281cd3e9235d38f4bdf4">Plus</a> = SC_MARK_PLUS, +<br> + <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e03b0246f54901bc552a3177669c891ef">VerticalLine</a> = SC_MARK_VLINE, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e9d5a57c4bedde7059bea56f5bd4934cd">BottomLeftCorner</a> = SC_MARK_LCORNER, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e6744df3fdf44463301b645e10c9fcb64">LeftSideSplitter</a> = SC_MARK_TCORNER, +<br> + <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc6de462d1b5a1c3f90a2b7277894b02">BoxedPlus</a> = SC_MARK_BOXPLUS, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72eeb3dd9d4a1c11498f1e2474fd6aec576">BoxedPlusConnected</a> = SC_MARK_BOXPLUSCONNECTED, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4a4a4d6c4834ded0218f9795e9390f95">BoxedMinus</a> = SC_MARK_BOXMINUS, +<br> + <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e6169156f553cbaa54d2b466fe510dea6">BoxedMinusConnected</a> = SC_MARK_BOXMINUSCONNECTED, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ea00fb6bd4558f17771593aae1441c25d">RoundedBottomLeftCorner</a> = SC_MARK_LCORNERCURVE, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4aae653a78cd0cd197db2987f0eb4150">LeftSideRoundedSplitter</a> = SC_MARK_TCORNERCURVE, +<br> + <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e95ccb68fe182c2632314e12c74539924">CircledPlus</a> = SC_MARK_CIRCLEPLUS, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee6c19ec3354b9e5449fa32a0905bf829">CircledPlusConnected</a> = SC_MARK_CIRCLEPLUSCONNECTED, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee72e33be4b3f7cb3b70638721900d045">CircledMinus</a> = SC_MARK_CIRCLEMINUS, +<br> + <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4a6a3f3368636e350699cc60b3415ca5">CircledMinusConnected</a> = SC_MARK_CIRCLEMINUSCONNECTED, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e679546b0e1f41ec63e751bc1b0c5b358">Background</a> = SC_MARK_BACKGROUND, +<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee7a191db8dddab1a3e0531c892d0b27f">ThreeDots</a> = SC_MARK_DOTDOTDOT, +<br> + <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e65222a20a68f9007cf230f71ca2ba718">ThreeRightArrows</a> = SC_MARK_ARROWS +<br> + } +<li>enum <a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e">WhitespaceVisibility</a> { <a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e398be33ca1a9547568fac0a3f4aa4f9b">WsInvisible</a> = SCWS_INVISIBLE, +<a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03ede6353c45c1ff691bd9b623b3b24efda">WsVisible</a> = SCWS_VISIBLEALWAYS, +<a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03ec266db5b712023c5620b3e2e282f6402">WsVisibleAfterIndent</a> = SCWS_VISIBLEAFTERINDENT + } +<li>enum <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">WrapMode</a> { <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed35c9a275d8d2ec83e22e8d759307b4f41">WrapNone</a> = SC_WRAP_NONE, +<a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3a7f65cd359e236aee9ab70d7bf55085c">WrapWord</a> = SC_WRAP_WORD, +<a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed30c943c655b94e4b84894e064d2347902">WrapCharacter</a> = SC_WRAP_CHAR + } +<li>enum <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74">WrapVisualFlag</a> { <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d7409f39f36c9fcfabe6b2008e14e1284dc">WrapFlagNone</a>, +<a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d746c70d596357dcb7913ebf66316a09c3b">WrapFlagByText</a>, +<a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74105f0883c4c951d09f380ebad17c9518">WrapFlagByBorder</a> + } +</ul> +<h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintilla.html#5440db24cf8aeaece95d3ab74ee194a5">append</a> (const QString &text) +<li>virtual void <a class="el" href="classQextScintilla.html#311d3dcefa8f5180ababc42bdf38f109">autoCompleteFromAll</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#a760573163b27895ff6aaac53343338f">autoCompleteFromAPIs</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#d0e48a5aa94192f985bf6ff207874b82">autoCompleteFromDocument</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#46feb30184ded7c63d6edfef45c86061">callTip</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#8b9654c9a68e6454a7e457a266c329da">clear</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#e2554d0e59cde9e5de14351f26c4f6b6">copy</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#d5d5178610285dda5004ccc5c5c6c306">cut</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#dd5100eebb1241b90da9b77cfca26c8d">ensureCursorVisible</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#8c5a39688b5ca5995f8060941a8065d4">ensureLineVisible</a> (int line) +<li>virtual void <a class="el" href="classQextScintilla.html#5b289640689062f4fa5479c7212107c0">foldAll</a> (bool children=FALSE) +<li>virtual void <a class="el" href="classQextScintilla.html#f81c922d74d8746d9cbc8d576c440dd4">foldLine</a> (int line) +<li>virtual void <a class="el" href="classQextScintilla.html#0017b86a4fff9d1228b204deda1e9d57">indent</a> (int line) +<li>virtual void <a class="el" href="classQextScintilla.html#bd158556a8565eb1bf92f2dd8fa9b66f">insert</a> (const QString &text) +<li>virtual void <a class="el" href="classQextScintilla.html#45ea4ddcb8a8f0f0c106582d4246e4fb">insertAt</a> (const QString &text, int line, int index) +<li>virtual void <a class="el" href="classQextScintilla.html#17f49beed46f36d2e80aa28ed40302cf">moveToMatchingBrace</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#b06dcc3f9252043a915595e3398711e4">paste</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#6cb5d1ef84197df4ebc410de61775e98">redo</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#844f15ee19c413f867a8643e98499eb6">removeSelectedText</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#5202253f6428debe10bc5f3e2f194048">resetSelectionBackgroundColor</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#a82474200e54331d49369129cdf03962">resetSelectionForegroundColor</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#50499f9105f6dbc9922078139779051c">selectAll</a> (bool select=TRUE) +<li>virtual void <a class="el" href="classQextScintilla.html#b6bfc944a5acbd2b8345529a2416e00a">selectToMatchingBrace</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#9454e9ddb11fa6a00eb5ea790182b399">setAutoCompletionCaseSensitivity</a> (bool cs) +<li>virtual void <a class="el" href="classQextScintilla.html#c3d23d34c0f0640bb22464b86347b0b9">setAutoCompletionReplaceWord</a> (bool replace) +<li>virtual void <a class="el" href="classQextScintilla.html#533cdccf3cafb0f71c58aeb9b2624062">setAutoCompletionShowSingle</a> (bool single) +<li>virtual void <a class="el" href="classQextScintilla.html#4aa5c60bfa3047118edf15ba15a0e431">setAutoCompletionSource</a> (<a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7">AutoCompletionSource</a> source) +<li>virtual void <a class="el" href="classQextScintilla.html#b8838747494640eaf03262c32f559e4c">setAutoCompletionThreshold</a> (int thresh) +<li>virtual void <a class="el" href="classQextScintilla.html#12a3363eb37db0a2697bf737e0f750ce">setAutoIndent</a> (bool autoindent) +<li>virtual void <a class="el" href="classQextScintilla.html#28cda2cba2f6f1317a15f662e157fbbf">setBraceMatching</a> (<a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b">BraceMatch</a> bm) +<li>virtual void <a class="el" href="classQextScintilla.html#b08d343cda48e43490baae62707e97e2">setBackspaceUnindents</a> (bool unindent) +<li>virtual void <a class="el" href="classQextScintilla.html#6d9ba2d4af256e19049b7ff1b291eb2e">setCaretForegroundColor</a> (const QColor &col) +<li>virtual void <a class="el" href="classQextScintilla.html#e71f2cf24abfcfe598989e13481bc711">setCaretLineBackgroundColor</a> (const QColor &col) +<li>virtual void <a class="el" href="classQextScintilla.html#dc9f29c940c8c3b8cc57d8cbd89a02ec">setCaretLineVisible</a> (bool enable) +<li>virtual void <a class="el" href="classQextScintilla.html#8ea3c0a1e23aadb93ae0e6c671a10b09">setCaretWidth</a> (int width) +<li>virtual void <a class="el" href="classQextScintilla.html#2dc9e4690becceb27a9a981c23deb8e0">setColor</a> (const QColor &c) +<li>virtual void <a class="el" href="classQextScintilla.html#76302c4726ba0c75de2627465c5faddb">setCursorPosition</a> (int line, int index) +<li>virtual void <a class="el" href="classQextScintilla.html#f372a0b24952de9adf5c06697561ff4f">setEolMode</a> (<a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a">EolMode</a> mode) +<li>virtual void <a class="el" href="classQextScintilla.html#19bd08e911d00127b02b08b468aa91f9">setEolVisibility</a> (bool visible) +<li>virtual void <a class="el" href="classQextScintilla.html#4c7a389d1492aa92246041545ea0c017">setFolding</a> (<a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf">FoldStyle</a> fold) +<li>virtual void <a class="el" href="classQextScintilla.html#cb4de8d10de37d454203fe0fcfcf0aad">setIndentation</a> (int line, int indentation) +<li>virtual void <a class="el" href="classQextScintilla.html#13ff99c97d3928011ec55a54329f7bef">setIndentationGuides</a> (bool enable) +<li>virtual void <a class="el" href="classQextScintilla.html#06159cf5a4c8834c05d4ca13ab8e44f6">setIndentationGuidesBackgroundColor</a> (const QColor &col) +<li>virtual void <a class="el" href="classQextScintilla.html#1dc9a7291e60fd738dfa8aedaa9447a5">setIndentationGuidesForegroundColor</a> (const QColor &col) +<li>virtual void <a class="el" href="classQextScintilla.html#46decfe40cf613d5978e50c30231b162">setIndentationsUseTabs</a> (bool tabs) +<li>virtual void <a class="el" href="classQextScintilla.html#0670389deb55079381f21764df0e2441">setIndentationWidth</a> (int width) +<li>virtual void <a class="el" href="classQextScintilla.html#f784daa825798f7e9c16d0a721699fa0">setLexer</a> (<a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a> *lexer=0) +<li>virtual void <a class="el" href="classQextScintilla.html#a2a7732db0b17dd08162a7bba8c5af55">setMarginsBackgroundColor</a> (const QColor &col) +<li>virtual void <a class="el" href="classQextScintilla.html#b607dd4ea4a5d50ca03878d63d9e99ef">setMarginsFont</a> (const QFont &f) +<li>virtual void <a class="el" href="classQextScintilla.html#11d0ceebbc7938c988be6475c0946636">setMarginsForegroundColor</a> (const QColor &col) +<li>virtual void <a class="el" href="classQextScintilla.html#1427cac9893fcc7b952264ff257b32de">setMarginLineNumbers</a> (int margin, bool lnrs) +<li>virtual void <a class="el" href="classQextScintilla.html#6c9e5a77874dfb08b5fb83c650abd414">setMarginMarkerMask</a> (int margin, int mask) +<li>virtual void <a class="el" href="classQextScintilla.html#09e5035f78a603c3e68a22712ac9ae02">setMarginSensitivity</a> (int margin, bool sens) +<li>virtual void <a class="el" href="classQextScintilla.html#2ffce76c496336d195b7438cd4113d0d">setMarginWidth</a> (int margin, int width) +<li>virtual void <a class="el" href="classQextScintilla.html#a160ac7908b83f021850d306bd2c7f7f">setMarginWidth</a> (int margin, const QString &s) +<li>virtual void <a class="el" href="classQextScintilla.html#16ec6f5d6b1020c22f33c164d2fc4a10">setModified</a> (bool m) +<li>virtual void <a class="el" href="classQextScintilla.html#6009167416ef66da0a09fdbc4920b1ba">setPaper</a> (const QColor &c) +<li>virtual void <a class="el" href="classQextScintilla.html#1bb17663785894a85e7fe07ad5768dfb">setReadOnly</a> (bool ro) +<li>virtual void <a class="el" href="classQextScintilla.html#0abb348ecbb21dcecfa2ba7bb423d50b">setSelection</a> (int lineFrom, int indexFrom, int lineTo, int indexTo) +<li>virtual void <a class="el" href="classQextScintilla.html#5720572f4f673b5c877e8a1f35ed76d7">setSelectionBackgroundColor</a> (const QColor &col) +<li>virtual void <a class="el" href="classQextScintilla.html#2236686ea942de0cc50ddbd6d822536f">setSelectionForegroundColor</a> (const QColor &col) +<li>virtual void <a class="el" href="classQextScintilla.html#221ac401d34a180392e49bacd9b56c4e">setTabIndents</a> (bool indent) +<li>virtual void <a class="el" href="classQextScintilla.html#20b8f9e86b5279f8bf14793beb0254cd">setTabWidth</a> (int width) +<li>virtual void <a class="el" href="classQextScintilla.html#56ea80d4dad00c736135116e3aa051b6">setText</a> (const QString &text) +<li>virtual void <a class="el" href="classQextScintilla.html#4d22589eaa4cf9c37e701c6ec80bc405">setUtf8</a> (bool cp) +<li>virtual void <a class="el" href="classQextScintilla.html#811888818870dd0d9cd74d297f711bc8">setWhitespaceVisibility</a> (<a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e">WhitespaceVisibility</a> mode) +<li>virtual void <a class="el" href="classQextScintilla.html#945affc0b0f8f25f58138f923d5a270d">setWrapMode</a> (<a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">WrapMode</a> mode) +<li>virtual void <a class="el" href="classQextScintilla.html#50dd001a80d36e81d4f1616a4b9ead02">undo</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#d4a5197ca9a6957e05047d7af5cfa5fc">unindent</a> (int line) +<li>virtual void <a class="el" href="classQextScintilla.html#279f582a91cc4210056069039e122187">zoomIn</a> (int range) +<li>virtual void <a class="el" href="classQextScintilla.html#69341ebed602660d09fb47af683ac266">zoomIn</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#5ca018a25639ec07c4e0debd48ce7c38">zoomOut</a> (int range) +<li>virtual void <a class="el" href="classQextScintilla.html#fa53fc56031df8f657e2e75f95848777">zoomOut</a> () +<li>virtual void <a class="el" href="classQextScintilla.html#58bf75fc581f7fc46235a6ad95ef5da5">zoomTo</a> (int size) +</ul> +<h2>Signals</h2> +<ul> +<li>void <a class="el" href="classQextScintilla.html#7750e4896fb860de1c7a0c3ee79cc8bf">cursorPositionChanged</a> (int line, int pos) +<li>void <a class="el" href="classQextScintilla.html#c741c9b8ed144370bad992c49a9f5aa4">copyAvailable</a> (bool yes) +<li>void <a class="el" href="classQextScintilla.html#e066273695466c6e19cd4e8cd2414e17">marginClicked</a> (int margin, int line, Qt::ButtonState state) +<li>void <a class="el" href="classQextScintilla.html#361adb6dbed444724c2b503d1329cc8b">modificationAttempted</a> () +<li>void <a class="el" href="classQextScintilla.html#429e0a1e9c1cd7bc49b8d6939743e26d">modificationChanged</a> (bool m) +<li>void <a class="el" href="classQextScintilla.html#d4fd9bb7affe4719cb785064b42d685c">selectionChanged</a> () +<li>void <a class="el" href="classQextScintilla.html#b4f0af1a6757e30fe5ecdf82b09618c3">textChanged</a> () +<li>void <a class="el" href="classQextScintilla.html#1bc718e051677cc538be5c9045abee87">userListActivated</a> (int id, const QString &string) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintilla.html#82bdfb8912254d875b2561ee06e3dac5">QextScintilla</a> (QWidget *parent=0, const char *name=0, WFlags f=0) +<li>virtual <a class="el" href="classQextScintilla.html#6bec02d815e1e0ca1a0c6a75a5b4e978">~QextScintilla</a> () +<li>bool <a class="el" href="classQextScintilla.html#5cff73a97337f5976254179a88a47b3a">autoCompletionCaseSensitivity</a> () +<li>bool <a class="el" href="classQextScintilla.html#e9b647d35f8470e13e42e2e0e683ec6a">autoCompletionFillupsEnabled</a> () +<li>bool <a class="el" href="classQextScintilla.html#f0c3f1d2db5029e1c6323fd12962084a">autoCompletionReplaceWord</a> () +<li>bool <a class="el" href="classQextScintilla.html#b70c407c8d3ed1048269fbd2ac439fdc">autoCompletionShowSingle</a> () +<li><a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7">AutoCompletionSource</a> <a class="el" href="classQextScintilla.html#9df1501f0ad8c01a9f3bea1867cf8c7b">autoCompletionSource</a> () const +<li>int <a class="el" href="classQextScintilla.html#4dc81e76945748f22f97ce2855b6cffc">autoCompletionThreshold</a> () const +<li>bool <a class="el" href="classQextScintilla.html#5aafd0d48172014fab301300433f9d79">autoIndent</a> () const +<li>bool <a class="el" href="classQextScintilla.html#a930abcf668124af9c07f2a04a06b16f">backspaceUnindents</a> () +<li>void <a class="el" href="classQextScintilla.html#992e38601fb13f8d4a49ac58bb4aa5d0">beginUndoAction</a> () +<li><a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b">BraceMatch</a> <a class="el" href="classQextScintilla.html#2cdccb4225833d6645faa0ac7ae0cbe5">braceMatching</a> () const +<li>int <a class="el" href="classQextScintilla.html#2008b3d1abf1220308ff30a10182f9d7">callTipsVisible</a> () const +<li>void <a class="el" href="classQextScintilla.html#eb038b88ef1676504b2a6602af1ce6aa">cancelList</a> () +<li>void <a class="el" href="classQextScintilla.html#cc818b2e94bc849c1a33e68b8e1f220e">clearRegisteredImages</a> () +<li>void <a class="el" href="classQextScintilla.html#01b225376be7ea272eb542e46291d89c">convertEols</a> (<a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a">EolMode</a> mode) +<li>QColor <a class="el" href="classQextScintilla.html#42f33ad513bb2636e4969ae2beff2463">color</a> () const +<li><a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a> <a class="el" href="classQextScintilla.html#93e41e7e1474301d1fdf7b469855fa1d">document</a> () +<li>void <a class="el" href="classQextScintilla.html#cf85f22ce1ef53cd0851a99282a3cd8b">endUndoAction</a> () +<li>QColor <a class="el" href="classQextScintilla.html#a2f525ae5dd684b0ba3c79b930258155">edgeColor</a> () +<li>int <a class="el" href="classQextScintilla.html#096d84a9a8fa9ca50f758d4ee35c7106">edgeColumn</a> () +<li><a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9">EdgeMode</a> <a class="el" href="classQextScintilla.html#265ab349dbe1d3801137cd29f9424eea">edgeMode</a> () +<li><a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a">EolMode</a> <a class="el" href="classQextScintilla.html#099d5bfe4b4f27ff2b666eeb9bcd4867">eolMode</a> () +<li>bool <a class="el" href="classQextScintilla.html#8e8e0a0c1d7fb0718df7f32cf194eba4">eolVisibility</a> () +<li>virtual bool <a class="el" href="classQextScintilla.html#8f350dd53ae60c25c6b63c7c5fbf6e18">findFirst</a> (const QString &expr, bool re, bool cs, bool wo, bool wrap, bool forward=TRUE, int line=-1, int index=-1, bool show=TRUE) +<li>virtual bool <a class="el" href="classQextScintilla.html#480033f7629a1ce9558c8b0e0c240898">findNext</a> () +<li>int <a class="el" href="classQextScintilla.html#820471fe6c696bda646e93c51a151e5f">firstVisibleLine</a> () +<li><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf">FoldStyle</a> <a class="el" href="classQextScintilla.html#86418f82fe35ff366f4ef023c470f0a1">folding</a> () const +<li>void <a class="el" href="classQextScintilla.html#da3e0b58a20e1c7e4f062cabf40b6d6b">getCursorPosition</a> (int *line, int *index) +<li>void <a class="el" href="classQextScintilla.html#92f76a5a9eb56275d77905738de3f4a1">getSelection</a> (int *lineFrom, int *indexFrom, int *lineTo, int *indexTo) +<li>bool <a class="el" href="classQextScintilla.html#3d12bf3c4d1a80b8fea698c591222855">hasSelectedText</a> () const +<li>int <a class="el" href="classQextScintilla.html#a57fae593f33dd9b5d1542c95afd9a01">indentation</a> (int line) +<li>bool <a class="el" href="classQextScintilla.html#0d63a0fc79c8fae6934f6599d407a3d4">indentationGuides</a> () +<li>bool <a class="el" href="classQextScintilla.html#53d57d43f67a8dcc9d08369906906a8d">indentationsUseTabs</a> () +<li>int <a class="el" href="classQextScintilla.html#678d8e15ff532854af87f2ff0575327c">indentationWidth</a> () +<li>bool <a class="el" href="classQextScintilla.html#3a4a72bd99de522e74858217b3eafa31">isCallTipActive</a> () +<li>bool <a class="el" href="classQextScintilla.html#1b8012fdc00f81007ab979e3a59efba5">isListActive</a> () +<li>bool <a class="el" href="classQextScintilla.html#2ddb6b2ade644a6b2d13b215828b2f4e">isModified</a> () +<li>bool <a class="el" href="classQextScintilla.html#bf7834644311e59ee424ef57b99771d8">isReadOnly</a> () +<li>bool <a class="el" href="classQextScintilla.html#e36287a0a472ab110c661c80d78aef3f">isRedoAvailable</a> () +<li>bool <a class="el" href="classQextScintilla.html#df3fac9f4711417ff6c25f34615f67c8">isUndoAvailable</a> () +<li>bool <a class="el" href="classQextScintilla.html#695d9741eafdf28eb8c26448e2455cca">isUtf8</a> () +<li>int <a class="el" href="classQextScintilla.html#432c50978f56ae8722a42751dd350bdd">lineAt</a> (const QPoint &pos) +<li>int <a class="el" href="classQextScintilla.html#c8823b1c95b8b213d16bb8c801b02842">lineLength</a> (int line) +<li>int <a class="el" href="classQextScintilla.html#8e8c34edc623256f29061a9cd69d9195">lines</a> () +<li>int <a class="el" href="classQextScintilla.html#d2c5da20d2f22f0c592330c618f6c7bd">length</a> () +<li><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a> * <a class="el" href="classQextScintilla.html#9221fa7b6665d7ad5490c7db02b1e59b">lexer</a> () const +<li>bool <a class="el" href="classQextScintilla.html#43f2c96091e57ac4818a16ecdf275a6a">marginLineNumbers</a> (int margin) +<li>int <a class="el" href="classQextScintilla.html#81a2053eef4e0e085a2b8ef2e675466a">marginMarkerMask</a> (int margin) +<li>bool <a class="el" href="classQextScintilla.html#9206b50c414a0d42f705acec533e608f">marginSensitivity</a> (int margin) +<li>int <a class="el" href="classQextScintilla.html#67b8e6edfca91d945a015c85d4dcf391">marginWidth</a> (int margin) +<li>int <a class="el" href="classQextScintilla.html#1cb86fc464868753c3cdbe1892bf4ea8">markerDefine</a> (<a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e">MarkerSymbol</a> sym, int mnr=-1) +<li>int <a class="el" href="classQextScintilla.html#5f216b74732ffdc458e4836fe0f833bf">markerDefine</a> (char ch, int mnr=-1) +<li>int <a class="el" href="classQextScintilla.html#8959a19ddf5a574dd9ad8b7ed5461820">markerDefine</a> (const QPixmap *pm, int mnr=-1) +<li>int <a class="el" href="classQextScintilla.html#210ded3888b4ec5f6a02078f7baab78a">markerAdd</a> (int linenr, int mnr) +<li>unsigned <a class="el" href="classQextScintilla.html#b334127d4033b5336d8aa52e0efa581a">markersAtLine</a> (int linenr) +<li>void <a class="el" href="classQextScintilla.html#403508173e2292c7d39dc4728420caf0">markerDelete</a> (int linenr, int mnr=-1) +<li>void <a class="el" href="classQextScintilla.html#ae1c8607b83a83f416832227da5740a5">markerDeleteAll</a> (int mnr=-1) +<li>void <a class="el" href="classQextScintilla.html#0983b52c2d4454b6a531e07138791d30">markerDeleteHandle</a> (int mhandle) +<li>int <a class="el" href="classQextScintilla.html#e143cb71aa915e9934618282184a9aba">markerLine</a> (int mhandle) +<li>int <a class="el" href="classQextScintilla.html#85a6c94aa396c28e548a151be4465ed4">markerFindNext</a> (int linenr, unsigned mask) +<li>int <a class="el" href="classQextScintilla.html#d5fd073acbc05e75d957feb9004316f6">markerFindPrevious</a> (int linenr, unsigned mask) +<li>QColor <a class="el" href="classQextScintilla.html#f6e3058d707eabd9f99d1fa93a91ea30">paper</a> () const +<li>virtual void <a class="el" href="classQextScintilla.html#7134334cfb405096fc37a0f53942739d">recolor</a> (int start=0, int end=-1) +<li>void <a class="el" href="classQextScintilla.html#72462e663c2e41ab79fde1a2b793b0bc">registerImage</a> (int id, const QPixmap *pm) +<li>virtual void <a class="el" href="classQextScintilla.html#520e57b1a1330e59293ba796bacd3159">replace</a> (const QString &replaceStr) +<li>void <a class="el" href="classQextScintilla.html#b92a8b75e43f431ec2015bef367c548d">resetFoldMarginColors</a> () +<li>void <a class="el" href="classQextScintilla.html#255e6f2855091409ee2eb7dfe403ca0a">setFoldMarginColors</a> (const QColor &fore, const QColor &back) +<li>void <a class="el" href="classQextScintilla.html#36fdcb3b147a92d5bb4b17b11c229137">setAutoCompletionAPIs</a> (<a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a> *apis=0) +<li>void <a class="el" href="classQextScintilla.html#d1c9c323b852ac98a7713bcfa9575c38">setAutoCompletionFillups</a> (const char *fillups) +<li>void <a class="el" href="classQextScintilla.html#faf2b98416c08a2cb74d0ed9662ffda8">setAutoCompletionFillupsEnabled</a> (bool enabled) +<li>void <a class="el" href="classQextScintilla.html#dc54314cbcd37186e445c5244d20c3da">setAutoCompletionStartCharacters</a> (const char *start) +<li>void <a class="el" href="classQextScintilla.html#3d682f46b23b29e0da9bb0e52560d23e">setCallTipsAPIs</a> (<a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a> *apis=0) +<li>void <a class="el" href="classQextScintilla.html#abd9a8e1e59a15ec3a1217aeb6ee7466">setCallTipsBackgroundColor</a> (const QColor &col) +<li>void <a class="el" href="classQextScintilla.html#727d2a5f880ee4f12dba983ff1dcbee6">setCallTipsForegroundColor</a> (const QColor &col) +<li>void <a class="el" href="classQextScintilla.html#edede8a8431bca98f760f4e3a999ce50">setCallTipsHighlightColor</a> (const QColor &col) +<li>void <a class="el" href="classQextScintilla.html#cc8e39f55a32337c3cf949a4cd09201e">setCallTipsVisible</a> (int nr) +<li>void <a class="el" href="classQextScintilla.html#69802b3e4de344601674a231ef2cabd2">setDocument</a> (const <a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a> &document) +<li>void <a class="el" href="classQextScintilla.html#2ed5a40c9d6eb4c68895d35b1a828cf3">setEdgeColor</a> (const QColor &col) +<li>void <a class="el" href="classQextScintilla.html#a2ca10384773c2a4f67e6f8cc913cb8c">setEdgeColumn</a> (int colnr) +<li>void <a class="el" href="classQextScintilla.html#b03b1badfc3f69b10f99a1fb9bb7f647">setEdgeMode</a> (<a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9">EdgeMode</a> mode) +<li>virtual void <a class="el" href="classQextScintilla.html#af82bd33f7c35e50ee96547a92cefe13">setFont</a> (const QFont &f) +<li>void <a class="el" href="classQextScintilla.html#bb5aa0bf13508d14a81e2b0850c524d0">setMarkerBackgroundColor</a> (const QColor &col, int mnr=-1) +<li>void <a class="el" href="classQextScintilla.html#a0e999a76af9f4a691565081e90ceb24">setMarkerForegroundColor</a> (const QColor &col, int mnr=-1) +<li>void <a class="el" href="classQextScintilla.html#d9f4087923672124c971c1f9ccdacd07">setMatchedBraceBackgroundColor</a> (const QColor &col) +<li>void <a class="el" href="classQextScintilla.html#091dc61d3fca5b38dc789039abdf70bc">setMatchedBraceForegroundColor</a> (const QColor &col) +<li>void <a class="el" href="classQextScintilla.html#da2281d317ab06a6cd17ea80391f645d">setUnmatchedBraceBackgroundColor</a> (const QColor &col) +<li>void <a class="el" href="classQextScintilla.html#6b6f687d01a687a29c3439741006f38f">setUnmatchedBraceForegroundColor</a> (const QColor &col) +<li>void <a class="el" href="classQextScintilla.html#11ef30c49b7c6fb96988a94059efa687">setWrapVisualFlags</a> (<a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74">WrapVisualFlag</a> eflag, <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74">WrapVisualFlag</a> sflag=WrapFlagNone, int sindent=0) +<li>QString <a class="el" href="classQextScintilla.html#45d6e53a4310c13170e605134274aa20">selectedText</a> () +<li>void <a class="el" href="classQextScintilla.html#74a4da1e86eda7f62262cea8a4a9b26a">showUserList</a> (int id, const QStringList &list) +<li><a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a> * <a class="el" href="classQextScintilla.html#ea83bb0bc19af4a776b68ee3eda10c61">standardCommands</a> () const +<li>bool <a class="el" href="classQextScintilla.html#1deb0e0aff533559500242065e9441a2">tabIndents</a> () +<li>int <a class="el" href="classQextScintilla.html#9aa14c5d05ea338aecb5214dc4cf99c4">tabWidth</a> () +<li>QString <a class="el" href="classQextScintilla.html#8ddaf394f65c06d5b20d06be5ca9bd35">text</a> () +<li>QString <a class="el" href="classQextScintilla.html#db77f87ba9bb2518181029e1fba8e51b">text</a> (int line) +<li>int <a class="el" href="classQextScintilla.html#d4050cea6a4d23c5ee9be5f952eeb072">textHeight</a> (int linenr) +<li><a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e">WhitespaceVisibility</a> <a class="el" href="classQextScintilla.html#5321010c2f04093c3107cf34b23ebb52">whitespaceVisibility</a> () +<li><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">WrapMode</a> <a class="el" href="classQextScintilla.html#99ec7ecdc8cd8f79aaeeda2b61796b65">wrapMode</a> () +</ul> +<h2>Classes</h2> +<ul> +<li>struct <b>FindState</b> +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintilla.html">QextScintilla</a> class implements a higher level, more Qt-like, API to the Scintilla editor widget. +<p> +<a class="el" href="classQextScintilla.html">QextScintilla</a> implements methods, signals and slots similar to those found in other Qt editor classes. It also provides a higher level interface to features specific to Scintilla such as syntax styling, call tips, auto-indenting and auto-completion than that provided by <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>.<p> +The API is modelled on QTextEdit - a method of the same name should behave in the same way. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="659a3300af0a7d7e802b713183c61ae9"></a><!-- doxytag: member="QextScintilla::@0" ref="659a3300af0a7d7e802b713183c61ae9" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different auto-indentation styles. +<p> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="659a3300af0a7d7e802b713183c61ae9c1e2a26467f02b3fc645a10083d04208"></a><!-- doxytag: member="AiMaintain" ref="659a3300af0a7d7e802b713183c61ae9c1e2a26467f02b3fc645a10083d04208" args="" -->AiMaintain</em> </td><td> +A line is automatically indented to match the previous line. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="659a3300af0a7d7e802b713183c61ae93781e4e24c094255b5cc8c01a6afaf8b"></a><!-- doxytag: member="AiOpening" ref="659a3300af0a7d7e802b713183c61ae93781e4e24c094255b5cc8c01a6afaf8b" args="" -->AiOpening</em> </td><td> +If the language supported by the current lexer has a specific start of block character (e.g. { in C++), then a line that begins with that character is indented as well as the lines that make up the block. It may be logically ored with AiClosing. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="659a3300af0a7d7e802b713183c61ae917d10ecdceac133845dc43ed53e0fb64"></a><!-- doxytag: member="AiClosing" ref="659a3300af0a7d7e802b713183c61ae917d10ecdceac133845dc43ed53e0fb64" args="" -->AiClosing</em> </td><td> +If the language supported by the current lexer has a specific end of block character (e.g. } in C++), then a line that begins with that character is indented as well as the lines that make up the block. It may be logically ored with AiOpening. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="e0c7b472315b627de567bd2a69553ff7"></a><!-- doxytag: member="QextScintilla::AutoCompletionSource" ref="e0c7b472315b627de567bd2a69553ff7" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7">QextScintilla::AutoCompletionSource</a> </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different sources for auto-completion lists. +<p> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="e0c7b472315b627de567bd2a69553ff7e8cbc5b781bff6985e4f524668fb3110"></a><!-- doxytag: member="AcsDocument" ref="e0c7b472315b627de567bd2a69553ff7e8cbc5b781bff6985e4f524668fb3110" args="" -->AcsDocument</em> </td><td> +The source is the current document. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e0c7b472315b627de567bd2a69553ff7af0b70461479558da5cf363a7e3b35c2"></a><!-- doxytag: member="AcsAPIs" ref="e0c7b472315b627de567bd2a69553ff7af0b70461479558da5cf363a7e3b35c2" args="" -->AcsAPIs</em> </td><td> +The source is any installed APIs. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e0c7b472315b627de567bd2a69553ff7099252dfa0fbb8e26853a79578b33f7e"></a><!-- doxytag: member="AcsAll" ref="e0c7b472315b627de567bd2a69553ff7099252dfa0fbb8e26853a79578b33f7e" args="" -->AcsAll</em> </td><td> +The source is all available sources. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="c9490bc31746441fa4f228f44679b06b"></a><!-- doxytag: member="QextScintilla::BraceMatch" ref="c9490bc31746441fa4f228f44679b06b" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b">QextScintilla::BraceMatch</a> </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different brace matching modes. The character pairs {}, [] and () are treated as braces. The Python lexer will also match a : with the end of the corresponding indented block. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="c9490bc31746441fa4f228f44679b06bb87d61027f50717f9df0526ad9654bfa"></a><!-- doxytag: member="NoBraceMatch" ref="c9490bc31746441fa4f228f44679b06bb87d61027f50717f9df0526ad9654bfa" args="" -->NoBraceMatch</em> </td><td> +Brace matching is disabled. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c9490bc31746441fa4f228f44679b06b630eeb134a1e0a274c9bf70f3c3eaf98"></a><!-- doxytag: member="StrictBraceMatch" ref="c9490bc31746441fa4f228f44679b06b630eeb134a1e0a274c9bf70f3c3eaf98" args="" -->StrictBraceMatch</em> </td><td> +Brace matching is enabled for a brace immediately before the current position. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c9490bc31746441fa4f228f44679b06b0663484a90fdee0162e2e2e267c2da8a"></a><!-- doxytag: member="SloppyBraceMatch" ref="c9490bc31746441fa4f228f44679b06b0663484a90fdee0162e2e2e267c2da8a" args="" -->SloppyBraceMatch</em> </td><td> +Brace matching is enabled for a brace immediately before or after the current position. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="a0643ae0e2c573079072053151ee1ef9"></a><!-- doxytag: member="QextScintilla::EdgeMode" ref="a0643ae0e2c573079072053151ee1ef9" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9">QextScintilla::EdgeMode</a> </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different edge modes for long lines. +<p> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="a0643ae0e2c573079072053151ee1ef9fb431bfc050ea921924574abdf310643"></a><!-- doxytag: member="EdgeNone" ref="a0643ae0e2c573079072053151ee1ef9fb431bfc050ea921924574abdf310643" args="" -->EdgeNone</em> </td><td> +Long lines are not marked. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a0643ae0e2c573079072053151ee1ef983b130b7b74ea372fc3d9b5b19bbd5d4"></a><!-- doxytag: member="EdgeLine" ref="a0643ae0e2c573079072053151ee1ef983b130b7b74ea372fc3d9b5b19bbd5d4" args="" -->EdgeLine</em> </td><td> +A vertical line is drawn at the column set by <a class="el" href="classQextScintilla.html#a2ca10384773c2a4f67e6f8cc913cb8c">setEdgeColumn()</a>. This is recommended for monospace fonts. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a0643ae0e2c573079072053151ee1ef952b3ab1ab0f1de59c13ed703c9a857c3"></a><!-- doxytag: member="EdgeBackground" ref="a0643ae0e2c573079072053151ee1ef952b3ab1ab0f1de59c13ed703c9a857c3" args="" -->EdgeBackground</em> </td><td> +The background color of characters after the column limit is changed to the color set by <a class="el" href="classQextScintilla.html#2ed5a40c9d6eb4c68895d35b1a828cf3">setEdgeColor()</a>. This is recommended for proportional fonts. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="58e588a144b0c495a527b4724d13442a"></a><!-- doxytag: member="QextScintilla::EolMode" ref="58e588a144b0c495a527b4724d13442a" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a">QextScintilla::EolMode</a> </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different end-of-line modes. +<p> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="58e588a144b0c495a527b4724d13442a757794a61cf9baf2de33bac37066554b"></a><!-- doxytag: member="EolWindows" ref="58e588a144b0c495a527b4724d13442a757794a61cf9baf2de33bac37066554b" args="" -->EolWindows</em> </td><td> +A carriage return/line feed as used on Windows systems. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="58e588a144b0c495a527b4724d13442a06657431efe214758a12041f238300b7"></a><!-- doxytag: member="EolUnix" ref="58e588a144b0c495a527b4724d13442a06657431efe214758a12041f238300b7" args="" -->EolUnix</em> </td><td> +A line feed as used on Unix systems. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="58e588a144b0c495a527b4724d13442a07ec88765cc5f9669aa9ebbf309c54dd"></a><!-- doxytag: member="EolMac" ref="58e588a144b0c495a527b4724d13442a07ec88765cc5f9669aa9ebbf309c54dd" args="" -->EolMac</em> </td><td> +A carriage return as used on Mac systems. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="34af4ea7604b156b69f31b5412db93cf"></a><!-- doxytag: member="QextScintilla::FoldStyle" ref="34af4ea7604b156b69f31b5412db93cf" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf">QextScintilla::FoldStyle</a> </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different styles for the folding margin. +<p> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="34af4ea7604b156b69f31b5412db93cf15bf3a37eb510d9e28cffa522aaa938a"></a><!-- doxytag: member="NoFoldStyle" ref="34af4ea7604b156b69f31b5412db93cf15bf3a37eb510d9e28cffa522aaa938a" args="" -->NoFoldStyle</em> </td><td> +Folding is disabled. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="34af4ea7604b156b69f31b5412db93cff1c523d088ff3118802f265134f7b0c8"></a><!-- doxytag: member="PlainFoldStyle" ref="34af4ea7604b156b69f31b5412db93cff1c523d088ff3118802f265134f7b0c8" args="" -->PlainFoldStyle</em> </td><td> +Plain folding style using plus and minus symbols. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="34af4ea7604b156b69f31b5412db93cf58df1387aaf6e4a05104d34c06868cdd"></a><!-- doxytag: member="CircledFoldStyle" ref="34af4ea7604b156b69f31b5412db93cf58df1387aaf6e4a05104d34c06868cdd" args="" -->CircledFoldStyle</em> </td><td> +Circled folding style using circled plus and minus symbols. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="34af4ea7604b156b69f31b5412db93cfcb1f1d2bd51d589287865f44ae4b08c0"></a><!-- doxytag: member="BoxedFoldStyle" ref="34af4ea7604b156b69f31b5412db93cfcb1f1d2bd51d589287865f44ae4b08c0" args="" -->BoxedFoldStyle</em> </td><td> +Boxed folding style using boxed plus and minus symbols. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="34af4ea7604b156b69f31b5412db93cfd9215f00cf188ef6259740768e866506"></a><!-- doxytag: member="CircledTreeFoldStyle" ref="34af4ea7604b156b69f31b5412db93cfd9215f00cf188ef6259740768e866506" args="" -->CircledTreeFoldStyle</em> </td><td> +Circled tree style using a flattened tree with circled plus and minus symbols and rounded corners. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="34af4ea7604b156b69f31b5412db93cf8a0fab06a1e5e77a9d3a252a412eb0aa"></a><!-- doxytag: member="BoxedTreeFoldStyle" ref="34af4ea7604b156b69f31b5412db93cf8a0fab06a1e5e77a9d3a252a412eb0aa" args="" -->BoxedTreeFoldStyle</em> </td><td> +Boxed tree style using a flattened tree with boxed plus and minus symbols and right-angled corners. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e"></a><!-- doxytag: member="QextScintilla::MarkerSymbol" ref="1cefba8e6020a5b760511f83aa4ca72e" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e">QextScintilla::MarkerSymbol</a> </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different pre-defined marker symbols. +<p> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e452faff3eae9ed78188c1468d85a8c5f"></a><!-- doxytag: member="Circle" ref="1cefba8e6020a5b760511f83aa4ca72e452faff3eae9ed78188c1468d85a8c5f" args="" -->Circle</em> </td><td> +A circle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e9f09b445e420d7da2690fa04a3b47aca"></a><!-- doxytag: member="Rectangle" ref="1cefba8e6020a5b760511f83aa4ca72e9f09b445e420d7da2690fa04a3b47aca" args="" -->Rectangle</em> </td><td> +A rectangle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e1067d54d6ffc9638173c14eafb94a076"></a><!-- doxytag: member="RightTriangle" ref="1cefba8e6020a5b760511f83aa4ca72e1067d54d6ffc9638173c14eafb94a076" args="" -->RightTriangle</em> </td><td> +A triangle pointing to the right. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72ee7978b23c827aa996489af72541c670a"></a><!-- doxytag: member="SmallRectangle" ref="1cefba8e6020a5b760511f83aa4ca72ee7978b23c827aa996489af72541c670a" args="" -->SmallRectangle</em> </td><td> +A smaller rectangle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72ebc48c1353c0700fbce7934cec712ad46"></a><!-- doxytag: member="RightArrow" ref="1cefba8e6020a5b760511f83aa4ca72ebc48c1353c0700fbce7934cec712ad46" args="" -->RightArrow</em> </td><td> +An arrow pointing to the right. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72ebc46bd102729e4ddec0f312b31cc18ab"></a><!-- doxytag: member="Invisible" ref="1cefba8e6020a5b760511f83aa4ca72ebc46bd102729e4ddec0f312b31cc18ab" args="" -->Invisible</em> </td><td> +An invisible marker that allows code to track the movement of lines. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e424e38d2d52e311348f552158596dc7a"></a><!-- doxytag: member="DownTriangle" ref="1cefba8e6020a5b760511f83aa4ca72e424e38d2d52e311348f552158596dc7a" args="" -->DownTriangle</em> </td><td> +A triangle pointing down. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72ee9d6088eaf7e66c9446ab6a45d06ee1c"></a><!-- doxytag: member="Minus" ref="1cefba8e6020a5b760511f83aa4ca72ee9d6088eaf7e66c9446ab6a45d06ee1c" args="" -->Minus</em> </td><td> +A drawn minus sign. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72ec8380a8e0e64281cd3e9235d38f4bdf4"></a><!-- doxytag: member="Plus" ref="1cefba8e6020a5b760511f83aa4ca72ec8380a8e0e64281cd3e9235d38f4bdf4" args="" -->Plus</em> </td><td> +A drawn plus sign. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e03b0246f54901bc552a3177669c891ef"></a><!-- doxytag: member="VerticalLine" ref="1cefba8e6020a5b760511f83aa4ca72e03b0246f54901bc552a3177669c891ef" args="" -->VerticalLine</em> </td><td> +A vertical line drawn in the background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e9d5a57c4bedde7059bea56f5bd4934cd"></a><!-- doxytag: member="BottomLeftCorner" ref="1cefba8e6020a5b760511f83aa4ca72e9d5a57c4bedde7059bea56f5bd4934cd" args="" -->BottomLeftCorner</em> </td><td> +A bottom left corner drawn in the background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e6744df3fdf44463301b645e10c9fcb64"></a><!-- doxytag: member="LeftSideSplitter" ref="1cefba8e6020a5b760511f83aa4ca72e6744df3fdf44463301b645e10c9fcb64" args="" -->LeftSideSplitter</em> </td><td> +A vertical line with a centre right horizontal line drawn in the background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72ebc6de462d1b5a1c3f90a2b7277894b02"></a><!-- doxytag: member="BoxedPlus" ref="1cefba8e6020a5b760511f83aa4ca72ebc6de462d1b5a1c3f90a2b7277894b02" args="" -->BoxedPlus</em> </td><td> +A drawn plus sign in a box. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72eeb3dd9d4a1c11498f1e2474fd6aec576"></a><!-- doxytag: member="BoxedPlusConnected" ref="1cefba8e6020a5b760511f83aa4ca72eeb3dd9d4a1c11498f1e2474fd6aec576" args="" -->BoxedPlusConnected</em> </td><td> +A drawn plus sign in a connected box. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e4a4a4d6c4834ded0218f9795e9390f95"></a><!-- doxytag: member="BoxedMinus" ref="1cefba8e6020a5b760511f83aa4ca72e4a4a4d6c4834ded0218f9795e9390f95" args="" -->BoxedMinus</em> </td><td> +A drawn minus sign in a box. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e6169156f553cbaa54d2b466fe510dea6"></a><!-- doxytag: member="BoxedMinusConnected" ref="1cefba8e6020a5b760511f83aa4ca72e6169156f553cbaa54d2b466fe510dea6" args="" -->BoxedMinusConnected</em> </td><td> +A drawn minus sign in a connected box. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72ea00fb6bd4558f17771593aae1441c25d"></a><!-- doxytag: member="RoundedBottomLeftCorner" ref="1cefba8e6020a5b760511f83aa4ca72ea00fb6bd4558f17771593aae1441c25d" args="" -->RoundedBottomLeftCorner</em> </td><td> +A rounded bottom left corner drawn in the background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e4aae653a78cd0cd197db2987f0eb4150"></a><!-- doxytag: member="LeftSideRoundedSplitter" ref="1cefba8e6020a5b760511f83aa4ca72e4aae653a78cd0cd197db2987f0eb4150" args="" -->LeftSideRoundedSplitter</em> </td><td> +A vertical line with a centre right curved line drawn in the background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e95ccb68fe182c2632314e12c74539924"></a><!-- doxytag: member="CircledPlus" ref="1cefba8e6020a5b760511f83aa4ca72e95ccb68fe182c2632314e12c74539924" args="" -->CircledPlus</em> </td><td> +A drawn plus sign in a circle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72ee6c19ec3354b9e5449fa32a0905bf829"></a><!-- doxytag: member="CircledPlusConnected" ref="1cefba8e6020a5b760511f83aa4ca72ee6c19ec3354b9e5449fa32a0905bf829" args="" -->CircledPlusConnected</em> </td><td> +A drawn plus sign in a connected box. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72ee72e33be4b3f7cb3b70638721900d045"></a><!-- doxytag: member="CircledMinus" ref="1cefba8e6020a5b760511f83aa4ca72ee72e33be4b3f7cb3b70638721900d045" args="" -->CircledMinus</em> </td><td> +A drawn minus sign in a circle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e4a6a3f3368636e350699cc60b3415ca5"></a><!-- doxytag: member="CircledMinusConnected" ref="1cefba8e6020a5b760511f83aa4ca72e4a6a3f3368636e350699cc60b3415ca5" args="" -->CircledMinusConnected</em> </td><td> +A drawn minus sign in a connected circle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e679546b0e1f41ec63e751bc1b0c5b358"></a><!-- doxytag: member="Background" ref="1cefba8e6020a5b760511f83aa4ca72e679546b0e1f41ec63e751bc1b0c5b358" args="" -->Background</em> </td><td> +No symbol is drawn but the line of text is drawn with the same background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72ee7a191db8dddab1a3e0531c892d0b27f"></a><!-- doxytag: member="ThreeDots" ref="1cefba8e6020a5b760511f83aa4ca72ee7a191db8dddab1a3e0531c892d0b27f" args="" -->ThreeDots</em> </td><td> +Three drawn dots. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1cefba8e6020a5b760511f83aa4ca72e65222a20a68f9007cf230f71ca2ba718"></a><!-- doxytag: member="ThreeRightArrows" ref="1cefba8e6020a5b760511f83aa4ca72e65222a20a68f9007cf230f71ca2ba718" args="" -->ThreeRightArrows</em> </td><td> +Three drawn arrows pointing right. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="2ba13526306398d7afe2b8946ec6a03e"></a><!-- doxytag: member="QextScintilla::WhitespaceVisibility" ref="2ba13526306398d7afe2b8946ec6a03e" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e">QextScintilla::WhitespaceVisibility</a> </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different whitespace visibility modes. When whitespace is visible spaces are displayed as small centred dots and tabs are displayed as light arrows pointing to the right. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="2ba13526306398d7afe2b8946ec6a03e398be33ca1a9547568fac0a3f4aa4f9b"></a><!-- doxytag: member="WsInvisible" ref="2ba13526306398d7afe2b8946ec6a03e398be33ca1a9547568fac0a3f4aa4f9b" args="" -->WsInvisible</em> </td><td> +Whitespace is invisible. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="2ba13526306398d7afe2b8946ec6a03ede6353c45c1ff691bd9b623b3b24efda"></a><!-- doxytag: member="WsVisible" ref="2ba13526306398d7afe2b8946ec6a03ede6353c45c1ff691bd9b623b3b24efda" args="" -->WsVisible</em> </td><td> +Whitespace is always visible. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="2ba13526306398d7afe2b8946ec6a03ec266db5b712023c5620b3e2e282f6402"></a><!-- doxytag: member="WsVisibleAfterIndent" ref="2ba13526306398d7afe2b8946ec6a03ec266db5b712023c5620b3e2e282f6402" args="" -->WsVisibleAfterIndent</em> </td><td> +Whitespace is visible after the whitespace used for indentation. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="15ead1c6cb74fa8a441f27587ed99ed3"></a><!-- doxytag: member="QextScintilla::WrapMode" ref="15ead1c6cb74fa8a441f27587ed99ed3" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">QextScintilla::WrapMode</a> </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different line wrap modes. +<p> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="15ead1c6cb74fa8a441f27587ed99ed35c9a275d8d2ec83e22e8d759307b4f41"></a><!-- doxytag: member="WrapNone" ref="15ead1c6cb74fa8a441f27587ed99ed35c9a275d8d2ec83e22e8d759307b4f41" args="" -->WrapNone</em> </td><td> +Lines are not wrapped. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="15ead1c6cb74fa8a441f27587ed99ed3a7f65cd359e236aee9ab70d7bf55085c"></a><!-- doxytag: member="WrapWord" ref="15ead1c6cb74fa8a441f27587ed99ed3a7f65cd359e236aee9ab70d7bf55085c" args="" -->WrapWord</em> </td><td> +Lines are wrapped at word boundaries. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="15ead1c6cb74fa8a441f27587ed99ed30c943c655b94e4b84894e064d2347902"></a><!-- doxytag: member="WrapCharacter" ref="15ead1c6cb74fa8a441f27587ed99ed30c943c655b94e4b84894e064d2347902" args="" -->WrapCharacter</em> </td><td> +Lines are wrapped at character boundaries. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="6c9d7053b9535991803885c815b61d74"></a><!-- doxytag: member="QextScintilla::WrapVisualFlag" ref="6c9d7053b9535991803885c815b61d74" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74">QextScintilla::WrapVisualFlag</a> </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different line wrap visual flags. +<p> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="6c9d7053b9535991803885c815b61d7409f39f36c9fcfabe6b2008e14e1284dc"></a><!-- doxytag: member="WrapFlagNone" ref="6c9d7053b9535991803885c815b61d7409f39f36c9fcfabe6b2008e14e1284dc" args="" -->WrapFlagNone</em> </td><td> +No wrap flag is displayed. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6c9d7053b9535991803885c815b61d746c70d596357dcb7913ebf66316a09c3b"></a><!-- doxytag: member="WrapFlagByText" ref="6c9d7053b9535991803885c815b61d746c70d596357dcb7913ebf66316a09c3b" args="" -->WrapFlagByText</em> </td><td> +A wrap flag is displayed by the text. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6c9d7053b9535991803885c815b61d74105f0883c4c951d09f380ebad17c9518"></a><!-- doxytag: member="WrapFlagByBorder" ref="6c9d7053b9535991803885c815b61d74105f0883c4c951d09f380ebad17c9518" args="" -->WrapFlagByBorder</em> </td><td> +A wrap flag is displayed by the border. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="82bdfb8912254d875b2561ee06e3dac5"></a><!-- doxytag: member="QextScintilla::QextScintilla" ref="82bdfb8912254d875b2561ee06e3dac5" args="(QWidget *parent=0, const char *name=0, WFlags f=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintilla::QextScintilla </td> + <td>(</td> + <td class="paramtype">QWidget * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">WFlags </td> + <td class="paramname"> <em>f</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct an empty <a class="el" href="classQextScintilla.html">QextScintilla</a> with parent <em>parent</em>, name <em>name</em>, and widget flags <em>f</em>. +</div> +</div><p> +<a class="anchor" name="6bec02d815e1e0ca1a0c6a75a5b4e978"></a><!-- doxytag: member="QextScintilla::~QextScintilla" ref="6bec02d815e1e0ca1a0c6a75a5b4e978" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintilla::~QextScintilla </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="5cff73a97337f5976254179a88a47b3a"></a><!-- doxytag: member="QextScintilla::autoCompletionCaseSensitivity" ref="5cff73a97337f5976254179a88a47b3a" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::autoCompletionCaseSensitivity </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if auto-completion lists are case sensitive.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#9454e9ddb11fa6a00eb5ea790182b399">setAutoCompletionCaseSensitivity()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="e9b647d35f8470e13e42e2e0e683ec6a"></a><!-- doxytag: member="QextScintilla::autoCompletionFillupsEnabled" ref="e9b647d35f8470e13e42e2e0e683ec6a" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::autoCompletionFillupsEnabled </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns true if auto-completion fill-up characters are enabled.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#d1c9c323b852ac98a7713bcfa9575c38">setAutoCompletionFillups()</a>, <a class="el" href="classQextScintilla.html#faf2b98416c08a2cb74d0ed9662ffda8">setAutoCompletionFillupsEnabled()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="f0c3f1d2db5029e1c6323fd12962084a"></a><!-- doxytag: member="QextScintilla::autoCompletionReplaceWord" ref="f0c3f1d2db5029e1c6323fd12962084a" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::autoCompletionReplaceWord </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if the rest of the word to the right of the current cursor is removed when an item from an auto-completion list is selected.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#c3d23d34c0f0640bb22464b86347b0b9">setAutoCompletionReplaceWord()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="b70c407c8d3ed1048269fbd2ac439fdc"></a><!-- doxytag: member="QextScintilla::autoCompletionShowSingle" ref="b70c407c8d3ed1048269fbd2ac439fdc" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::autoCompletionShowSingle </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if the only item in an auto-completion list with a single entry is automatically used and the list not displayed.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#533cdccf3cafb0f71c58aeb9b2624062">setAutoCompletionShowSingle()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="9df1501f0ad8c01a9f3bea1867cf8c7b"></a><!-- doxytag: member="QextScintilla::autoCompletionSource" ref="9df1501f0ad8c01a9f3bea1867cf8c7b" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7">AutoCompletionSource</a> QextScintilla::autoCompletionSource </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the current source for the auto-completion list when it is being displayed automatically as the user types.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#4aa5c60bfa3047118edf15ba15a0e431">setAutoCompletionSource()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="4dc81e76945748f22f97ce2855b6cffc"></a><!-- doxytag: member="QextScintilla::autoCompletionThreshold" ref="4dc81e76945748f22f97ce2855b6cffc" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::autoCompletionThreshold </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the current threshold for the automatic display of the auto-completion list as the user types.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#b8838747494640eaf03262c32f559e4c">setAutoCompletionThreshold()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="5aafd0d48172014fab301300433f9d79"></a><!-- doxytag: member="QextScintilla::autoIndent" ref="5aafd0d48172014fab301300433f9d79" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::autoIndent </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if auto-indentation is enabled.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#12a3363eb37db0a2697bf737e0f750ce">setAutoIndent()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a930abcf668124af9c07f2a04a06b16f"></a><!-- doxytag: member="QextScintilla::backspaceUnindents" ref="a930abcf668124af9c07f2a04a06b16f" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::backspaceUnindents </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if the backspace key unindents a line instead of deleting a character. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#b08d343cda48e43490baae62707e97e2">setBackspaceUnindents()</a>, <a class="el" href="classQextScintilla.html#1deb0e0aff533559500242065e9441a2">tabIndents()</a>, <a class="el" href="classQextScintilla.html#221ac401d34a180392e49bacd9b56c4e">setTabIndents()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="992e38601fb13f8d4a49ac58bb4aa5d0"></a><!-- doxytag: member="QextScintilla::beginUndoAction" ref="992e38601fb13f8d4a49ac58bb4aa5d0" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::beginUndoAction </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Mark the beginning of a sequence of actions that can be undone by a single call to <a class="el" href="classQextScintilla.html#50dd001a80d36e81d4f1616a4b9ead02">undo()</a>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#cf85f22ce1ef53cd0851a99282a3cd8b">endUndoAction()</a>, <a class="el" href="classQextScintilla.html#50dd001a80d36e81d4f1616a4b9ead02">undo()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="2cdccb4225833d6645faa0ac7ae0cbe5"></a><!-- doxytag: member="QextScintilla::braceMatching" ref="2cdccb4225833d6645faa0ac7ae0cbe5" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b">BraceMatch</a> QextScintilla::braceMatching </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the brace matching mode.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#28cda2cba2f6f1317a15f662e157fbbf">setBraceMatching()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="2008b3d1abf1220308ff30a10182f9d7"></a><!-- doxytag: member="QextScintilla::callTipsVisible" ref="2008b3d1abf1220308ff30a10182f9d7" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::callTipsVisible </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the maximum number of call tips that are displayed.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#cc8e39f55a32337c3cf949a4cd09201e">setCallTipsVisible()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="eb038b88ef1676504b2a6602af1ce6aa"></a><!-- doxytag: member="QextScintilla::cancelList" ref="eb038b88ef1676504b2a6602af1ce6aa" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::cancelList </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Cancel any current auto-completion or user defined list. +<p> + +</div> +</div><p> +<a class="anchor" name="cc818b2e94bc849c1a33e68b8e1f220e"></a><!-- doxytag: member="QextScintilla::clearRegisteredImages" ref="cc818b2e94bc849c1a33e68b8e1f220e" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::clearRegisteredImages </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Clear all registered images.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#72462e663c2e41ab79fde1a2b793b0bc">registerImage()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="01b225376be7ea272eb542e46291d89c"></a><!-- doxytag: member="QextScintilla::convertEols" ref="01b225376be7ea272eb542e46291d89c" args="(EolMode mode)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::convertEols </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a">EolMode</a> </td> + <td class="paramname"> <em>mode</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +All the lines of the text have their end-of-lines converted to mode <em>mode</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#099d5bfe4b4f27ff2b666eeb9bcd4867">eolMode()</a>, <a class="el" href="classQextScintilla.html#f372a0b24952de9adf5c06697561ff4f">setEolMode()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="42f33ad513bb2636e4969ae2beff2463"></a><!-- doxytag: member="QextScintilla::color" ref="42f33ad513bb2636e4969ae2beff2463" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintilla::color </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the widget's text (ie. foreground) colour.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#2dc9e4690becceb27a9a981c23deb8e0">setColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="93e41e7e1474301d1fdf7b469855fa1d"></a><!-- doxytag: member="QextScintilla::document" ref="93e41e7e1474301d1fdf7b469855fa1d" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a> QextScintilla::document </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the attached document.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#69802b3e4de344601674a231ef2cabd2">setDocument()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="cf85f22ce1ef53cd0851a99282a3cd8b"></a><!-- doxytag: member="QextScintilla::endUndoAction" ref="cf85f22ce1ef53cd0851a99282a3cd8b" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::endUndoAction </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Mark the end of a sequence of actions that can be undone by a single call to <a class="el" href="classQextScintilla.html#50dd001a80d36e81d4f1616a4b9ead02">undo()</a>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#992e38601fb13f8d4a49ac58bb4aa5d0">beginUndoAction()</a>, <a class="el" href="classQextScintilla.html#50dd001a80d36e81d4f1616a4b9ead02">undo()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a2f525ae5dd684b0ba3c79b930258155"></a><!-- doxytag: member="QextScintilla::edgeColor" ref="a2f525ae5dd684b0ba3c79b930258155" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintilla::edgeColor </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the color of the marker used to show that a line has exceeded the length set by <a class="el" href="classQextScintilla.html#a2ca10384773c2a4f67e6f8cc913cb8c">setEdgeColumn()</a>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#2ed5a40c9d6eb4c68895d35b1a828cf3">setEdgeColor()</a>,<p> +<a class="el" href="classQextScintilla.html#a2ca10384773c2a4f67e6f8cc913cb8c">setEdgeColumn</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="096d84a9a8fa9ca50f758d4ee35c7106"></a><!-- doxytag: member="QextScintilla::edgeColumn" ref="096d84a9a8fa9ca50f758d4ee35c7106" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::edgeColumn </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the number of the column after which lines are considered to be long.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#a2ca10384773c2a4f67e6f8cc913cb8c">setEdgeColumn()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="265ab349dbe1d3801137cd29f9424eea"></a><!-- doxytag: member="QextScintilla::edgeMode" ref="265ab349dbe1d3801137cd29f9424eea" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9">EdgeMode</a> QextScintilla::edgeMode </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the edge mode which determines how long lines are marked.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#b03b1badfc3f69b10f99a1fb9bb7f647">setEdgeMode()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="099d5bfe4b4f27ff2b666eeb9bcd4867"></a><!-- doxytag: member="QextScintilla::eolMode" ref="099d5bfe4b4f27ff2b666eeb9bcd4867" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a">EolMode</a> QextScintilla::eolMode </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line mode.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#f372a0b24952de9adf5c06697561ff4f">setEolMode()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="8e8e0a0c1d7fb0718df7f32cf194eba4"></a><!-- doxytag: member="QextScintilla::eolVisibility" ref="8e8e0a0c1d7fb0718df7f32cf194eba4" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::eolVisibility </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the visibility of end-of-lines.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#19bd08e911d00127b02b08b468aa91f9">setEolVisibility()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="8f350dd53ae60c25c6b63c7c5fbf6e18"></a><!-- doxytag: member="QextScintilla::findFirst" ref="8f350dd53ae60c25c6b63c7c5fbf6e18" args="(const QString &expr, bool re, bool cs, bool wo, bool wrap, bool forward=TRUE, int line=-1, int index=-1, bool show=TRUE)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual bool QextScintilla::findFirst </td> + <td>(</td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>expr</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>re</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>cs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>wo</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>wrap</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>forward</em> = <code>TRUE</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em> = <code>-1</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>index</em> = <code>-1</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>show</em> = <code>TRUE</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Find the next occurrence of the string <em>expr</em> and return TRUE if <em>expr</em> was found, otherwise returns FALSE. If <em>expr</em> is found it becomes the current selection.<p> +If <em>re</em> is TRUE then <em>expr</em> is interpreted as a regular expression rather than a simple string.<p> +If <em>cs</em> is TRUE then the search is case sensitive.<p> +If <em>wo</em> is TRUE then the search looks for whole word matches only, otherwise it searches for any matching text.<p> +If <em>wrap</em> is TRUE then the search wraps around the end of the text.<p> +If <em>forward</em> is TRUE (the default) then the search is forward from the starting position to the end of the text, otherwise it is backwards to the beginning of the text.<p> +If either <em>line</em> or <em>index</em> are negative (the default) then the search begins from the current cursor position. Otherwise the search begins at position <em>index</em> of line <em>line</em>.<p> +If <em>show</em> is TRUE (the default) then any text found is made visible (ie. it is unfolded).<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#480033f7629a1ce9558c8b0e0c240898">findNext()</a>, <a class="el" href="classQextScintilla.html#520e57b1a1330e59293ba796bacd3159">replace()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="480033f7629a1ce9558c8b0e0c240898"></a><!-- doxytag: member="QextScintilla::findNext" ref="480033f7629a1ce9558c8b0e0c240898" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual bool QextScintilla::findNext </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Find the next occurence of the string found using <a class="el" href="classQextScintilla.html#8f350dd53ae60c25c6b63c7c5fbf6e18">findFirst()</a>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#8f350dd53ae60c25c6b63c7c5fbf6e18">findFirst()</a>, <a class="el" href="classQextScintilla.html#520e57b1a1330e59293ba796bacd3159">replace()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="820471fe6c696bda646e93c51a151e5f"></a><!-- doxytag: member="QextScintilla::firstVisibleLine" ref="820471fe6c696bda646e93c51a151e5f" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::firstVisibleLine </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the number of the first visible line. +<p> + +</div> +</div><p> +<a class="anchor" name="86418f82fe35ff366f4ef023c470f0a1"></a><!-- doxytag: member="QextScintilla::folding" ref="86418f82fe35ff366f4ef023c470f0a1" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf">FoldStyle</a> QextScintilla::folding </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the current folding style.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#4c7a389d1492aa92246041545ea0c017">setFolding()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="da3e0b58a20e1c7e4f062cabf40b6d6b"></a><!-- doxytag: member="QextScintilla::getCursorPosition" ref="da3e0b58a20e1c7e4f062cabf40b6d6b" args="(int *line, int *index)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::getCursorPosition </td> + <td>(</td> + <td class="paramtype">int * </td> + <td class="paramname"> <em>line</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int * </td> + <td class="paramname"> <em>index</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets <em>*line</em> and <em>*index</em> to the line and index of the cursor.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#76302c4726ba0c75de2627465c5faddb">setCursorPosition()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="92f76a5a9eb56275d77905738de3f4a1"></a><!-- doxytag: member="QextScintilla::getSelection" ref="92f76a5a9eb56275d77905738de3f4a1" args="(int *lineFrom, int *indexFrom, int *lineTo, int *indexTo)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::getSelection </td> + <td>(</td> + <td class="paramtype">int * </td> + <td class="paramname"> <em>lineFrom</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int * </td> + <td class="paramname"> <em>indexFrom</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int * </td> + <td class="paramname"> <em>lineTo</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int * </td> + <td class="paramname"> <em>indexTo</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If there is a selection, <em>*lineFrom</em> is set to the line number in which the selection begins and <em>*lineTo</em> is set to the line number in which the selection ends. (They could be the same.) <em>*indexFrom</em> is set to the index at which the selection begins within <em>*lineFrom</em>, and <em>*indexTo</em> is set to the index at which the selection ends within <em>*lineTo</em>. If there is no selection, <em>*lineFrom</em>, <em>*indexFrom</em>, <em>*lineTo</em> and <em>*indexTo</em> are all set to -1.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#0abb348ecbb21dcecfa2ba7bb423d50b">setSelection()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="3d12bf3c4d1a80b8fea698c591222855"></a><!-- doxytag: member="QextScintilla::hasSelectedText" ref="3d12bf3c4d1a80b8fea698c591222855" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::hasSelectedText </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if some text is selected.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#45d6e53a4310c13170e605134274aa20">selectedText()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a57fae593f33dd9b5d1542c95afd9a01"></a><!-- doxytag: member="QextScintilla::indentation" ref="a57fae593f33dd9b5d1542c95afd9a01" args="(int line)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::indentation </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the number of characters that line <em>line</em> is indented by.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#cb4de8d10de37d454203fe0fcfcf0aad">setIndentation()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="0d63a0fc79c8fae6934f6599d407a3d4"></a><!-- doxytag: member="QextScintilla::indentationGuides" ref="0d63a0fc79c8fae6934f6599d407a3d4" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::indentationGuides </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if the display of indentation guides is enabled.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#13ff99c97d3928011ec55a54329f7bef">setIndentationGuides()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="53d57d43f67a8dcc9d08369906906a8d"></a><!-- doxytag: member="QextScintilla::indentationsUseTabs" ref="53d57d43f67a8dcc9d08369906906a8d" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::indentationsUseTabs </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if indentations are created using tabs and spaces, rather than just spaces. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#46decfe40cf613d5978e50c30231b162">setIndentationsUseTabs()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="678d8e15ff532854af87f2ff0575327c"></a><!-- doxytag: member="QextScintilla::indentationWidth" ref="678d8e15ff532854af87f2ff0575327c" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::indentationWidth </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the indentation width in characters. The default is 0 which means that the value returned by <a class="el" href="classQextScintilla.html#9aa14c5d05ea338aecb5214dc4cf99c4">tabWidth()</a> is actually used.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#0670389deb55079381f21764df0e2441">setIndentationWidth()</a>, <a class="el" href="classQextScintilla.html#9aa14c5d05ea338aecb5214dc4cf99c4">tabWidth()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="3a4a72bd99de522e74858217b3eafa31"></a><!-- doxytag: member="QextScintilla::isCallTipActive" ref="3a4a72bd99de522e74858217b3eafa31" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::isCallTipActive </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if a call tip is currently active. +<p> + +</div> +</div><p> +<a class="anchor" name="1b8012fdc00f81007ab979e3a59efba5"></a><!-- doxytag: member="QextScintilla::isListActive" ref="1b8012fdc00f81007ab979e3a59efba5" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::isListActive </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if an auto-completion or user defined list is currently active. +</div> +</div><p> +<a class="anchor" name="2ddb6b2ade644a6b2d13b215828b2f4e"></a><!-- doxytag: member="QextScintilla::isModified" ref="2ddb6b2ade644a6b2d13b215828b2f4e" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::isModified </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if the text has been modified.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#16ec6f5d6b1020c22f33c164d2fc4a10">setModified()</a>, <a class="el" href="classQextScintilla.html#429e0a1e9c1cd7bc49b8d6939743e26d">modificationChanged()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="bf7834644311e59ee424ef57b99771d8"></a><!-- doxytag: member="QextScintilla::isReadOnly" ref="bf7834644311e59ee424ef57b99771d8" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::isReadOnly </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if the text edit is read-only.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#1bb17663785894a85e7fe07ad5768dfb">setReadOnly()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="e36287a0a472ab110c661c80d78aef3f"></a><!-- doxytag: member="QextScintilla::isRedoAvailable" ref="e36287a0a472ab110c661c80d78aef3f" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::isRedoAvailable </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if there is something that can be redone.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#6cb5d1ef84197df4ebc410de61775e98">redo()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="df3fac9f4711417ff6c25f34615f67c8"></a><!-- doxytag: member="QextScintilla::isUndoAvailable" ref="df3fac9f4711417ff6c25f34615f67c8" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::isUndoAvailable </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if there is something that can be undone.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#50dd001a80d36e81d4f1616a4b9ead02">undo()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="695d9741eafdf28eb8c26448e2455cca"></a><!-- doxytag: member="QextScintilla::isUtf8" ref="695d9741eafdf28eb8c26448e2455cca" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::isUtf8 </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if text is interpreted as being UTF8 encoded. The default is to interpret the text as Latin1 encoded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#4d22589eaa4cf9c37e701c6ec80bc405">setUtf8()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="432c50978f56ae8722a42751dd350bdd"></a><!-- doxytag: member="QextScintilla::lineAt" ref="432c50978f56ae8722a42751dd350bdd" args="(const QPoint &pos)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::lineAt </td> + <td>(</td> + <td class="paramtype">const QPoint & </td> + <td class="paramname"> <em>pos</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the line which is at position <em>pos</em> or -1 if there is no line at that position. +</div> +</div><p> +<a class="anchor" name="c8823b1c95b8b213d16bb8c801b02842"></a><!-- doxytag: member="QextScintilla::lineLength" ref="c8823b1c95b8b213d16bb8c801b02842" args="(int line)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::lineLength </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the length of line <em>line</em> or -1 if there is no such line. +<p> + +</div> +</div><p> +<a class="anchor" name="8e8c34edc623256f29061a9cd69d9195"></a><!-- doxytag: member="QextScintilla::lines" ref="8e8c34edc623256f29061a9cd69d9195" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::lines </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the number of lines of text. +<p> + +</div> +</div><p> +<a class="anchor" name="d2c5da20d2f22f0c592330c618f6c7bd"></a><!-- doxytag: member="QextScintilla::length" ref="d2c5da20d2f22f0c592330c618f6c7bd" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::length </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the length of the text edit's text. +<p> + +</div> +</div><p> +<a class="anchor" name="9221fa7b6665d7ad5490c7db02b1e59b"></a><!-- doxytag: member="QextScintilla::lexer" ref="9221fa7b6665d7ad5490c7db02b1e59b" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>* QextScintilla::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the current language lexer used to style text. If it is 0 then syntax styling is disabled.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#f784daa825798f7e9c16d0a721699fa0">setLexer()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="43f2c96091e57ac4818a16ecdf275a6a"></a><!-- doxytag: member="QextScintilla::marginLineNumbers" ref="43f2c96091e57ac4818a16ecdf275a6a" args="(int margin)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::marginLineNumbers </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>margin</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if line numbers are enabled for margin <em>margin</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#1427cac9893fcc7b952264ff257b32de">setMarginLineNumbers()</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce">QextScintillaBase::SCI_GETMARGINTYPEN</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="81a2053eef4e0e085a2b8ef2e675466a"></a><!-- doxytag: member="QextScintilla::marginMarkerMask" ref="81a2053eef4e0e085a2b8ef2e675466a" args="(int margin)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::marginMarkerMask </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>margin</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the marker mask of margin <em>margin</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd>setMarginMask(), QextScintillaMarker, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a9d75e0d511355318ab72cc7b7d0876">QextScintillaBase::SCI_GETMARGINMASKN</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="9206b50c414a0d42f705acec533e608f"></a><!-- doxytag: member="QextScintilla::marginSensitivity" ref="9206b50c414a0d42f705acec533e608f" args="(int margin)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::marginSensitivity </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>margin</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if margin <em>margin</em> is sensitive to mouse clicks.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#09e5035f78a603c3e68a22712ac9ae02">setMarginSensitivity()</a>, <a class="el" href="classQextScintilla.html#e066273695466c6e19cd4e8cd2414e17">marginClicked()</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce">QextScintillaBase::SCI_GETMARGINTYPEN</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="67b8e6edfca91d945a015c85d4dcf391"></a><!-- doxytag: member="QextScintilla::marginWidth" ref="67b8e6edfca91d945a015c85d4dcf391" args="(int margin)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::marginWidth </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>margin</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the width in pixels of margin <em>margin</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#2ffce76c496336d195b7438cd4113d0d">setMarginWidth()</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d301d4135e034067d2da57890708198e">QextScintillaBase::SCI_GETMARGINWIDTHN</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="1cb86fc464868753c3cdbe1892bf4ea8"></a><!-- doxytag: member="QextScintilla::markerDefine" ref="1cb86fc464868753c3cdbe1892bf4ea8" args="(MarkerSymbol sym, int mnr=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::markerDefine </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e">MarkerSymbol</a> </td> + <td class="paramname"> <em>sym</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>mnr</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Define a marker using the symbol <em>sym</em> with the marker number <em>mnr</em>. If <em>mnr</em> is -1 then the marker number is automatically allocated. The marker number is returned or -1 if the marker number was already allocated or too many markers have been defined.<p> +Markers are small geometric symbols and character used, for example, to indicate the current line or, in debuggers, to indicate breakpoints. If a margin has a width of 0 then its markers are not drawn, but their background colours affect the background colour of the corresponding line of text.<p> +There may be up to 32 markers defined and each line of text has a set of these markers associated with it. Markers are drawn according to their numerical identifier. Markers try to move with their text by tracking where the start of their line moves to. For example, when a line is deleted its markers are added to previous line's markers.<p> +Each marker is identified by a marker number. Each instance of a marker is identified by a marker handle. +</div> +</div><p> +<a class="anchor" name="5f216b74732ffdc458e4836fe0f833bf"></a><!-- doxytag: member="QextScintilla::markerDefine" ref="5f216b74732ffdc458e4836fe0f833bf" args="(char ch, int mnr=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::markerDefine </td> + <td>(</td> + <td class="paramtype">char </td> + <td class="paramname"> <em>ch</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>mnr</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Define a marker using the character <em>ch</em> with the marker number <em>mnr</em>. If <em>mnr</em> is -1 then the marker number is automatically allocated. The marker number is returned or -1 if the marker number was already allocated or too many markers have been defined. +</div> +</div><p> +<a class="anchor" name="8959a19ddf5a574dd9ad8b7ed5461820"></a><!-- doxytag: member="QextScintilla::markerDefine" ref="8959a19ddf5a574dd9ad8b7ed5461820" args="(const QPixmap *pm, int mnr=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::markerDefine </td> + <td>(</td> + <td class="paramtype">const QPixmap * </td> + <td class="paramname"> <em>pm</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>mnr</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Define a marker using a copy of the pixmap <em>pm</em> with the marker number <em>mnr</em>. If <em>mnr</em> is -1 then the marker number is automatically allocated. The marker number is returned or -1 if the marker number was already allocated or too many markers have been defined. +</div> +</div><p> +<a class="anchor" name="210ded3888b4ec5f6a02078f7baab78a"></a><!-- doxytag: member="QextScintilla::markerAdd" ref="210ded3888b4ec5f6a02078f7baab78a" args="(int linenr, int mnr)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::markerAdd </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>linenr</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>mnr</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Add a marker number <em>mnr</em> to line number <em>linenr</em>. A handle for the marker is returned which can be used to track the marker's position, or -1 if the <em>mnr</em> was invalid.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#403508173e2292c7d39dc4728420caf0">markerDelete()</a>, <a class="el" href="classQextScintilla.html#ae1c8607b83a83f416832227da5740a5">markerDeleteAll()</a>, <a class="el" href="classQextScintilla.html#0983b52c2d4454b6a531e07138791d30">markerDeleteHandle()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="b334127d4033b5336d8aa52e0efa581a"></a><!-- doxytag: member="QextScintilla::markersAtLine" ref="b334127d4033b5336d8aa52e0efa581a" args="(int linenr)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">unsigned QextScintilla::markersAtLine </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>linenr</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the 32 bit mask of marker numbers at line number <em>linenr</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#210ded3888b4ec5f6a02078f7baab78a">markerAdd()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="403508173e2292c7d39dc4728420caf0"></a><!-- doxytag: member="QextScintilla::markerDelete" ref="403508173e2292c7d39dc4728420caf0" args="(int linenr, int mnr=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::markerDelete </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>linenr</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>mnr</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Delete all markers with the marker number <em>mnr</em> in the line <em>linenr</em>. If <em>mnr</em> is -1 then delete all markers from line <em>linenr</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#210ded3888b4ec5f6a02078f7baab78a">markerAdd()</a>, <a class="el" href="classQextScintilla.html#ae1c8607b83a83f416832227da5740a5">markerDeleteAll()</a>, <a class="el" href="classQextScintilla.html#0983b52c2d4454b6a531e07138791d30">markerDeleteHandle()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="ae1c8607b83a83f416832227da5740a5"></a><!-- doxytag: member="QextScintilla::markerDeleteAll" ref="ae1c8607b83a83f416832227da5740a5" args="(int mnr=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::markerDeleteAll </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>mnr</em> = <code>-1</code> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Delete the all markers with the marker number <em>mnr</em>. If <em>mnr</em> is -1 then delete all markers.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#210ded3888b4ec5f6a02078f7baab78a">markerAdd()</a>, <a class="el" href="classQextScintilla.html#403508173e2292c7d39dc4728420caf0">markerDelete()</a>, <a class="el" href="classQextScintilla.html#0983b52c2d4454b6a531e07138791d30">markerDeleteHandle()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="0983b52c2d4454b6a531e07138791d30"></a><!-- doxytag: member="QextScintilla::markerDeleteHandle" ref="0983b52c2d4454b6a531e07138791d30" args="(int mhandle)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::markerDeleteHandle </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>mhandle</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Delete the the marker instance with the marker handle <em>mhandle</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#210ded3888b4ec5f6a02078f7baab78a">markerAdd()</a>, <a class="el" href="classQextScintilla.html#403508173e2292c7d39dc4728420caf0">markerDelete()</a>, <a class="el" href="classQextScintilla.html#ae1c8607b83a83f416832227da5740a5">markerDeleteAll()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="e143cb71aa915e9934618282184a9aba"></a><!-- doxytag: member="QextScintilla::markerLine" ref="e143cb71aa915e9934618282184a9aba" args="(int mhandle)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::markerLine </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>mhandle</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Return the line number that contains the marker instance with the marker handle <em>mhandle</em>. +</div> +</div><p> +<a class="anchor" name="85a6c94aa396c28e548a151be4465ed4"></a><!-- doxytag: member="QextScintilla::markerFindNext" ref="85a6c94aa396c28e548a151be4465ed4" args="(int linenr, unsigned mask)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::markerFindNext </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>linenr</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">unsigned </td> + <td class="paramname"> <em>mask</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Return the number of the next line to contain at least one marker from a 32 bit mask of markers. <em>linenr</em> is the line number to start the search from. <em>mask</em> is the mask of markers to search for.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#d5fd073acbc05e75d957feb9004316f6">markerFindPrevious()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="d5fd073acbc05e75d957feb9004316f6"></a><!-- doxytag: member="QextScintilla::markerFindPrevious" ref="d5fd073acbc05e75d957feb9004316f6" args="(int linenr, unsigned mask)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::markerFindPrevious </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>linenr</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">unsigned </td> + <td class="paramname"> <em>mask</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Return the number of the previous line to contain at least one marker from a 32 bit mask of markers. <em>linenr</em> is the line number to start the search from. <em>mask</em> is the mask of markers to search for.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#85a6c94aa396c28e548a151be4465ed4">markerFindNext()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="f6e3058d707eabd9f99d1fa93a91ea30"></a><!-- doxytag: member="QextScintilla::paper" ref="f6e3058d707eabd9f99d1fa93a91ea30" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintilla::paper </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the widget's paper (ie. background) colour.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#6009167416ef66da0a09fdbc4920b1ba">setPaper()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="7134334cfb405096fc37a0f53942739d"></a><!-- doxytag: member="QextScintilla::recolor" ref="7134334cfb405096fc37a0f53942739d" args="(int start=0, int end=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::recolor </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>start</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>end</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Recolours the document between the <em>start</em> and <em>end</em> positions. <em>start</em> defaults to the start of the document and <em>end</em> defaults to the end of the document. +</div> +</div><p> +<a class="anchor" name="72462e663c2e41ab79fde1a2b793b0bc"></a><!-- doxytag: member="QextScintilla::registerImage" ref="72462e663c2e41ab79fde1a2b793b0bc" args="(int id, const QPixmap *pm)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::registerImage </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>id</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QPixmap * </td> + <td class="paramname"> <em>pm</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Register an image <em>pm</em> with ID <em>id</em>. Registered images can be displayed in auto-completion lists.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#cc818b2e94bc849c1a33e68b8e1f220e">clearRegisteredImages()</a>, <a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="520e57b1a1330e59293ba796bacd3159"></a><!-- doxytag: member="QextScintilla::replace" ref="520e57b1a1330e59293ba796bacd3159" args="(const QString &replaceStr)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::replace </td> + <td>(</td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>replaceStr</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Replace the current selection, set by a previous call to <a class="el" href="classQextScintilla.html#8f350dd53ae60c25c6b63c7c5fbf6e18">findFirst()</a> or <a class="el" href="classQextScintilla.html#480033f7629a1ce9558c8b0e0c240898">findNext()</a>, with <em>replaceStr</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#8f350dd53ae60c25c6b63c7c5fbf6e18">findFirst()</a>, <a class="el" href="classQextScintilla.html#480033f7629a1ce9558c8b0e0c240898">findNext()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="b92a8b75e43f431ec2015bef367c548d"></a><!-- doxytag: member="QextScintilla::resetFoldMarginColors" ref="b92a8b75e43f431ec2015bef367c548d" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::resetFoldMarginColors </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Reset the fold margin colours to their defaults.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#255e6f2855091409ee2eb7dfe403ca0a">setFoldMarginColors()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="255e6f2855091409ee2eb7dfe403ca0a"></a><!-- doxytag: member="QextScintilla::setFoldMarginColors" ref="255e6f2855091409ee2eb7dfe403ca0a" args="(const QColor &fore, const QColor &back)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setFoldMarginColors </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>fore</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>back</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The fold margin may be drawn as a one pixel sized checkerboard pattern of two colours, <em>fore</em> and <em>back</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#b92a8b75e43f431ec2015bef367c548d">resetFoldMarginColors()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="36fdcb3b147a92d5bb4b17b11c229137"></a><!-- doxytag: member="QextScintilla::setAutoCompletionAPIs" ref="36fdcb3b147a92d5bb4b17b11c229137" args="(QextScintillaAPIs *apis=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setAutoCompletionAPIs </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a> * </td> + <td class="paramname"> <em>apis</em> = <code>0</code> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the APIs used for auto-completion to <em>apis</em>. If <em>apis</em> is 0 then any existing APIs are removed.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#a760573163b27895ff6aaac53343338f">autoCompleteFromAPIs()</a>, <a class="el" href="classQextScintilla.html#3d682f46b23b29e0da9bb0e52560d23e">setCallTipsAPIs()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="d1c9c323b852ac98a7713bcfa9575c38"></a><!-- doxytag: member="QextScintilla::setAutoCompletionFillups" ref="d1c9c323b852ac98a7713bcfa9575c38" args="(const char *fillups)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setAutoCompletionFillups </td> + <td>(</td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>fillups</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +set its own. Explicitly setting the fill-up characters using this method automatically enables their use.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#e9b647d35f8470e13e42e2e0e683ec6a">autoCompletionFillupsEnabled()</a>, <a class="el" href="classQextScintilla.html#faf2b98416c08a2cb74d0ed9662ffda8">setAutoCompletionFillupsEnabled()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="faf2b98416c08a2cb74d0ed9662ffda8"></a><!-- doxytag: member="QextScintilla::setAutoCompletionFillupsEnabled" ref="faf2b98416c08a2cb74d0ed9662ffda8" args="(bool enabled)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setAutoCompletionFillupsEnabled </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>enabled</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Enable the use of fill-up characters, either those explicitly set or those set by a lexer. By default, fill-up characters are disabled.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#e9b647d35f8470e13e42e2e0e683ec6a">autoCompletionFillupsEnabled()</a>, <a class="el" href="classQextScintilla.html#d1c9c323b852ac98a7713bcfa9575c38">setAutoCompletionFillups()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="dc54314cbcd37186e445c5244d20c3da"></a><!-- doxytag: member="QextScintilla::setAutoCompletionStartCharacters" ref="dc54314cbcd37186e445c5244d20c3da" args="(const char *start)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setAutoCompletionStartCharacters </td> + <td>(</td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>start</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +A start character is one that, when entered, causes the auto-completion list to be displayed. If a language lexer has been set then this is ignored and the lexer defines the start characters. The default is that no start characters are set.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#b8838747494640eaf03262c32f559e4c">setAutoCompletionThreshold()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="3d682f46b23b29e0da9bb0e52560d23e"></a><!-- doxytag: member="QextScintilla::setCallTipsAPIs" ref="3d682f46b23b29e0da9bb0e52560d23e" args="(QextScintillaAPIs *apis=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setCallTipsAPIs </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a> * </td> + <td class="paramname"> <em>apis</em> = <code>0</code> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the APIs used for call tips to <em>apis</em>. If <em>apis</em> is 0 then then call tips are disabled.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#36fdcb3b147a92d5bb4b17b11c229137">setAutoCompletionAPIs()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="abd9a8e1e59a15ec3a1217aeb6ee7466"></a><!-- doxytag: member="QextScintilla::setCallTipsBackgroundColor" ref="abd9a8e1e59a15ec3a1217aeb6ee7466" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setCallTipsBackgroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the background colour of call tips to <em>col</em>. The default is white. +</div> +</div><p> +<a class="anchor" name="727d2a5f880ee4f12dba983ff1dcbee6"></a><!-- doxytag: member="QextScintilla::setCallTipsForegroundColor" ref="727d2a5f880ee4f12dba983ff1dcbee6" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setCallTipsForegroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the foreground colour of call tips to <em>col</em>. The default is mid-gray. +</div> +</div><p> +<a class="anchor" name="edede8a8431bca98f760f4e3a999ce50"></a><!-- doxytag: member="QextScintilla::setCallTipsHighlightColor" ref="edede8a8431bca98f760f4e3a999ce50" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setCallTipsHighlightColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the highlighted colour of call tip text to <em>col</em>. The default is dark blue. +</div> +</div><p> +<a class="anchor" name="cc8e39f55a32337c3cf949a4cd09201e"></a><!-- doxytag: member="QextScintilla::setCallTipsVisible" ref="cc8e39f55a32337c3cf949a4cd09201e" args="(int nr)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setCallTipsVisible </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>nr</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the maximum number of call tips that are displayed to <em>nr</em>. If the maximum number is 0 then all applicable call tips are displayed. If the maximum number is -1 then one call tip will be displayed with up and down arrows that allow the use to scroll through the full list. The default is -1.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#2008b3d1abf1220308ff30a10182f9d7">callTipsVisible()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="69802b3e4de344601674a231ef2cabd2"></a><!-- doxytag: member="QextScintilla::setDocument" ref="69802b3e4de344601674a231ef2cabd2" args="(const QextScintillaDocument &document)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setDocument </td> + <td>(</td> + <td class="paramtype">const <a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a> & </td> + <td class="paramname"> <em>document</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Attach the document <em>document</em>, replacing the currently attached document.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#93e41e7e1474301d1fdf7b469855fa1d">document()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="2ed5a40c9d6eb4c68895d35b1a828cf3"></a><!-- doxytag: member="QextScintilla::setEdgeColor" ref="2ed5a40c9d6eb4c68895d35b1a828cf3" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setEdgeColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the color of the marker used to show that a line has exceeded the length set by <a class="el" href="classQextScintilla.html#a2ca10384773c2a4f67e6f8cc913cb8c">setEdgeColumn()</a>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#a2f525ae5dd684b0ba3c79b930258155">edgeColor()</a>,<p> +<a class="el" href="classQextScintilla.html#a2ca10384773c2a4f67e6f8cc913cb8c">setEdgeColumn</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a2ca10384773c2a4f67e6f8cc913cb8c"></a><!-- doxytag: member="QextScintilla::setEdgeColumn" ref="a2ca10384773c2a4f67e6f8cc913cb8c" args="(int colnr)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setEdgeColumn </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>colnr</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the number of the column after which lines are considered to be long.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#096d84a9a8fa9ca50f758d4ee35c7106">edgeColumn()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="b03b1badfc3f69b10f99a1fb9bb7f647"></a><!-- doxytag: member="QextScintilla::setEdgeMode" ref="b03b1badfc3f69b10f99a1fb9bb7f647" args="(EdgeMode mode)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setEdgeMode </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9">EdgeMode</a> </td> + <td class="paramname"> <em>mode</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the edge mode which determines how long lines are marked.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#265ab349dbe1d3801137cd29f9424eea">edgeMode()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="af82bd33f7c35e50ee96547a92cefe13"></a><!-- doxytag: member="QextScintilla::setFont" ref="af82bd33f7c35e50ee96547a92cefe13" args="(const QFont &f)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setFont </td> + <td>(</td> + <td class="paramtype">const QFont & </td> + <td class="paramname"> <em>f</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the default font. This has no effect if a language lexer has been set. +</div> +</div><p> +<a class="anchor" name="bb5aa0bf13508d14a81e2b0850c524d0"></a><!-- doxytag: member="QextScintilla::setMarkerBackgroundColor" ref="bb5aa0bf13508d14a81e2b0850c524d0" args="(const QColor &col, int mnr=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setMarkerBackgroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>mnr</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the background colour, including the alpha component, of marker <em>mnr</em> to <em>col</em>. If <em>mnr</em> is -1 then the colour of all markers is set. The default is white.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#a0e999a76af9f4a691565081e90ceb24">setMarkerForegroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a0e999a76af9f4a691565081e90ceb24"></a><!-- doxytag: member="QextScintilla::setMarkerForegroundColor" ref="a0e999a76af9f4a691565081e90ceb24" args="(const QColor &col, int mnr=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setMarkerForegroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>mnr</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the foreground colour of marker <em>mnr</em> to <em>col</em>. If <em>mnr</em> is -1 then the colour of all markers is set. The default is black.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#bb5aa0bf13508d14a81e2b0850c524d0">setMarkerBackgroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="d9f4087923672124c971c1f9ccdacd07"></a><!-- doxytag: member="QextScintilla::setMatchedBraceBackgroundColor" ref="d9f4087923672124c971c1f9ccdacd07" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setMatchedBraceBackgroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the background colour used to display matched braces to <em>col</em>. The default is white.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#091dc61d3fca5b38dc789039abdf70bc">setMatchedBraceForegroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="091dc61d3fca5b38dc789039abdf70bc"></a><!-- doxytag: member="QextScintilla::setMatchedBraceForegroundColor" ref="091dc61d3fca5b38dc789039abdf70bc" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setMatchedBraceForegroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the foreground colour used to display matched braces to <em>col</em>. The default is red.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#d9f4087923672124c971c1f9ccdacd07">setMatchedBraceBackgroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="da2281d317ab06a6cd17ea80391f645d"></a><!-- doxytag: member="QextScintilla::setUnmatchedBraceBackgroundColor" ref="da2281d317ab06a6cd17ea80391f645d" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setUnmatchedBraceBackgroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the background colour used to display unmatched braces to <em>col</em>. The default is white.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#6b6f687d01a687a29c3439741006f38f">setUnmatchedBraceForegroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="6b6f687d01a687a29c3439741006f38f"></a><!-- doxytag: member="QextScintilla::setUnmatchedBraceForegroundColor" ref="6b6f687d01a687a29c3439741006f38f" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setUnmatchedBraceForegroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the foreground colour used to display unmatched braces to <em>col</em>. The default is blue.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#da2281d317ab06a6cd17ea80391f645d">setUnmatchedBraceBackgroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="11ef30c49b7c6fb96988a94059efa687"></a><!-- doxytag: member="QextScintilla::setWrapVisualFlags" ref="11ef30c49b7c6fb96988a94059efa687" args="(WrapVisualFlag eflag, WrapVisualFlag sflag=WrapFlagNone, int sindent=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::setWrapVisualFlags </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74">WrapVisualFlag</a> </td> + <td class="paramname"> <em>eflag</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74">WrapVisualFlag</a> </td> + <td class="paramname"> <em>sflag</em> = <code>WrapFlagNone</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>sindent</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the visual flags displayed when a line is wrapped. <em>eflag</em> determines if and where the flag at the end of a line is displayed. <em>sflag</em> determines if and where the flag at the start of a line is displayed. <em>sindent</em> is the number of characters a wrapped line is indented by. By default no visual flags are displayed. +</div> +</div><p> +<a class="anchor" name="45d6e53a4310c13170e605134274aa20"></a><!-- doxytag: member="QextScintilla::selectedText" ref="45d6e53a4310c13170e605134274aa20" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintilla::selectedText </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the selected text or an empty string if there is no currently selected text.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#3d12bf3c4d1a80b8fea698c591222855">hasSelectedText()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="74a4da1e86eda7f62262cea8a4a9b26a"></a><!-- doxytag: member="QextScintilla::showUserList" ref="74a4da1e86eda7f62262cea8a4a9b26a" args="(int id, const QStringList &list)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::showUserList </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>id</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QStringList & </td> + <td class="paramname"> <em>list</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Displays a user defined list which can be interacted with like an auto-completion list. <em>id</em> is an identifier for the list which is passed as an argument to the <a class="el" href="classQextScintilla.html#1bc718e051677cc538be5c9045abee87">userListActivated()</a> signal and must be at least 1. <em>list</em> is the text with which the list is populated.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#eb038b88ef1676504b2a6602af1ce6aa">cancelList()</a>, <a class="el" href="classQextScintilla.html#1b8012fdc00f81007ab979e3a59efba5">isListActive()</a>, <a class="el" href="classQextScintilla.html#1bc718e051677cc538be5c9045abee87">userListActivated()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="ea83bb0bc19af4a776b68ee3eda10c61"></a><!-- doxytag: member="QextScintilla::standardCommands" ref="ea83bb0bc19af4a776b68ee3eda10c61" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a>* QextScintilla::standardCommands </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The standard command set is returned. +<p> + +</div> +</div><p> +<a class="anchor" name="1deb0e0aff533559500242065e9441a2"></a><!-- doxytag: member="QextScintilla::tabIndents" ref="1deb0e0aff533559500242065e9441a2" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintilla::tabIndents </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if the tab key indents a line instead of inserting a tab character. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#221ac401d34a180392e49bacd9b56c4e">setTabIndents()</a>, <a class="el" href="classQextScintilla.html#a930abcf668124af9c07f2a04a06b16f">backspaceUnindents()</a>, <a class="el" href="classQextScintilla.html#b08d343cda48e43490baae62707e97e2">setBackspaceUnindents()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="9aa14c5d05ea338aecb5214dc4cf99c4"></a><!-- doxytag: member="QextScintilla::tabWidth" ref="9aa14c5d05ea338aecb5214dc4cf99c4" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::tabWidth </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the tab width in characters. The default is 8.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#20b8f9e86b5279f8bf14793beb0254cd">setTabWidth()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="8ddaf394f65c06d5b20d06be5ca9bd35"></a><!-- doxytag: member="QextScintilla::text" ref="8ddaf394f65c06d5b20d06be5ca9bd35" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintilla::text </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the text edit's text.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#56ea80d4dad00c736135116e3aa051b6">setText()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="db77f87ba9bb2518181029e1fba8e51b"></a><!-- doxytag: member="QextScintilla::text" ref="db77f87ba9bb2518181029e1fba8e51b" args="(int line)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintilla::text </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Returns the text of line <em>line</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#56ea80d4dad00c736135116e3aa051b6">setText()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="d4050cea6a4d23c5ee9be5f952eeb072"></a><!-- doxytag: member="QextScintilla::textHeight" ref="d4050cea6a4d23c5ee9be5f952eeb072" args="(int linenr)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintilla::textHeight </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>linenr</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the height in pixels of the text in line number <em>linenr</em>. +<p> + +</div> +</div><p> +<a class="anchor" name="5321010c2f04093c3107cf34b23ebb52"></a><!-- doxytag: member="QextScintilla::whitespaceVisibility" ref="5321010c2f04093c3107cf34b23ebb52" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e">WhitespaceVisibility</a> QextScintilla::whitespaceVisibility </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the visibility of whitespace.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#811888818870dd0d9cd74d297f711bc8">setWhitespaceVisibility()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="99ec7ecdc8cd8f79aaeeda2b61796b65"></a><!-- doxytag: member="QextScintilla::wrapMode" ref="99ec7ecdc8cd8f79aaeeda2b61796b65" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">WrapMode</a> QextScintilla::wrapMode </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the line wrap mode.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#945affc0b0f8f25f58138f923d5a270d">setWrapMode()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="5440db24cf8aeaece95d3ab74ee194a5"></a><!-- doxytag: member="QextScintilla::append" ref="5440db24cf8aeaece95d3ab74ee194a5" args="(const QString &text)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::append </td> + <td>(</td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>text</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Appends the text <em>text</em> to the end of the text edit. Note that the undo/redo history is cleared by this function. +</div> +</div><p> +<a class="anchor" name="311d3dcefa8f5180ababc42bdf38f109"></a><!-- doxytag: member="QextScintilla::autoCompleteFromAll" ref="311d3dcefa8f5180ababc42bdf38f109" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::autoCompleteFromAll </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Display an auto-completion list based on any installed APIs, the current contents of the document and the characters immediately to the left of the cursor.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#a760573163b27895ff6aaac53343338f">autoCompleteFromAPIs()</a>, <a class="el" href="classQextScintilla.html#d0e48a5aa94192f985bf6ff207874b82">autoCompleteFromDocument()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a760573163b27895ff6aaac53343338f"></a><!-- doxytag: member="QextScintilla::autoCompleteFromAPIs" ref="a760573163b27895ff6aaac53343338f" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::autoCompleteFromAPIs </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Display an auto-completion list based on any installed APIs and the characters immediately to the left of the cursor.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#311d3dcefa8f5180ababc42bdf38f109">autoCompleteFromAll()</a>, <a class="el" href="classQextScintilla.html#d0e48a5aa94192f985bf6ff207874b82">autoCompleteFromDocument()</a>, <a class="el" href="classQextScintilla.html#36fdcb3b147a92d5bb4b17b11c229137">setAutoCompletionAPIs()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="d0e48a5aa94192f985bf6ff207874b82"></a><!-- doxytag: member="QextScintilla::autoCompleteFromDocument" ref="d0e48a5aa94192f985bf6ff207874b82" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::autoCompleteFromDocument </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Display an auto-completion list based on the current contents of the document and the characters immediately to the left of the cursor.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#311d3dcefa8f5180ababc42bdf38f109">autoCompleteFromAll()</a>, <a class="el" href="classQextScintilla.html#a760573163b27895ff6aaac53343338f">autoCompleteFromAPIs()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="46feb30184ded7c63d6edfef45c86061"></a><!-- doxytag: member="QextScintilla::callTip" ref="46feb30184ded7c63d6edfef45c86061" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::callTip </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Display a call tip based on the the characters immediately to the left of the cursor. +</div> +</div><p> +<a class="anchor" name="8b9654c9a68e6454a7e457a266c329da"></a><!-- doxytag: member="QextScintilla::clear" ref="8b9654c9a68e6454a7e457a266c329da" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::clear </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Deletes all the text in the text edit. +<p> + +</div> +</div><p> +<a class="anchor" name="e2554d0e59cde9e5de14351f26c4f6b6"></a><!-- doxytag: member="QextScintilla::copy" ref="e2554d0e59cde9e5de14351f26c4f6b6" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::copy </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Copies any selected text to the clipboard.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#c741c9b8ed144370bad992c49a9f5aa4">copyAvailable()</a>, <a class="el" href="classQextScintilla.html#d5d5178610285dda5004ccc5c5c6c306">cut()</a>, <a class="el" href="classQextScintilla.html#b06dcc3f9252043a915595e3398711e4">paste()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="d5d5178610285dda5004ccc5c5c6c306"></a><!-- doxytag: member="QextScintilla::cut" ref="d5d5178610285dda5004ccc5c5c6c306" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::cut </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Copies any selected text to the clipboard and then deletes the text.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#e2554d0e59cde9e5de14351f26c4f6b6">copy()</a>, <a class="el" href="classQextScintilla.html#b06dcc3f9252043a915595e3398711e4">paste()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="dd5100eebb1241b90da9b77cfca26c8d"></a><!-- doxytag: member="QextScintilla::ensureCursorVisible" ref="dd5100eebb1241b90da9b77cfca26c8d" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::ensureCursorVisible </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Ensures that the cursor is visible. +<p> + +</div> +</div><p> +<a class="anchor" name="8c5a39688b5ca5995f8060941a8065d4"></a><!-- doxytag: member="QextScintilla::ensureLineVisible" ref="8c5a39688b5ca5995f8060941a8065d4" args="(int line)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::ensureLineVisible </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Ensures that the line number <em>line</em> is visible. +<p> + +</div> +</div><p> +<a class="anchor" name="5b289640689062f4fa5479c7212107c0"></a><!-- doxytag: member="QextScintilla::foldAll" ref="5b289640689062f4fa5479c7212107c0" args="(bool children=FALSE)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::foldAll </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>children</em> = <code>FALSE</code> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If any lines are currently folded then they are all unfolded. Otherwise all lines are folded. This has the same effect as clicking in the fold margin with the shift and control keys pressed. If <em>children</em> is not set (the default) then only the top level fold points are affected, otherwise the state of all fold points are changed. +</div> +</div><p> +<a class="anchor" name="f81c922d74d8746d9cbc8d576c440dd4"></a><!-- doxytag: member="QextScintilla::foldLine" ref="f81c922d74d8746d9cbc8d576c440dd4" args="(int line)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::foldLine </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If the line <em>line</em> is folded then it is unfolded. Otherwise it is folded. This has the same effect as clicking in the fold margin. +</div> +</div><p> +<a class="anchor" name="0017b86a4fff9d1228b204deda1e9d57"></a><!-- doxytag: member="QextScintilla::indent" ref="0017b86a4fff9d1228b204deda1e9d57" args="(int line)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::indent </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Increases the indentation of line <em>line</em> by an indentation width.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#d4a5197ca9a6957e05047d7af5cfa5fc">unindent()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="bd158556a8565eb1bf92f2dd8fa9b66f"></a><!-- doxytag: member="QextScintilla::insert" ref="bd158556a8565eb1bf92f2dd8fa9b66f" args="(const QString &text)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::insert </td> + <td>(</td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>text</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Insert the text <em>text</em> at the current position. +<p> + +</div> +</div><p> +<a class="anchor" name="45ea4ddcb8a8f0f0c106582d4246e4fb"></a><!-- doxytag: member="QextScintilla::insertAt" ref="45ea4ddcb8a8f0f0c106582d4246e4fb" args="(const QString &text, int line, int index)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::insertAt </td> + <td>(</td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>text</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>index</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Insert the text <em>text</em> in the line <em>line</em> at the position <em>index</em>. +</div> +</div><p> +<a class="anchor" name="17f49beed46f36d2e80aa28ed40302cf"></a><!-- doxytag: member="QextScintilla::moveToMatchingBrace" ref="17f49beed46f36d2e80aa28ed40302cf" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::moveToMatchingBrace </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If the cursor is either side of a brace character then move it to the position of the corresponding brace. +</div> +</div><p> +<a class="anchor" name="b06dcc3f9252043a915595e3398711e4"></a><!-- doxytag: member="QextScintilla::paste" ref="b06dcc3f9252043a915595e3398711e4" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::paste </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Pastes any text from the clipboard into the text edit at the current cursor position.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#e2554d0e59cde9e5de14351f26c4f6b6">copy()</a>, <a class="el" href="classQextScintilla.html#d5d5178610285dda5004ccc5c5c6c306">cut()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="6cb5d1ef84197df4ebc410de61775e98"></a><!-- doxytag: member="QextScintilla::redo" ref="6cb5d1ef84197df4ebc410de61775e98" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::redo </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Redo the last change or sequence of changes.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#e36287a0a472ab110c661c80d78aef3f">isRedoAvailable()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="844f15ee19c413f867a8643e98499eb6"></a><!-- doxytag: member="QextScintilla::removeSelectedText" ref="844f15ee19c413f867a8643e98499eb6" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::removeSelectedText </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Removes any selected text. +<p> + +</div> +</div><p> +<a class="anchor" name="5202253f6428debe10bc5f3e2f194048"></a><!-- doxytag: member="QextScintilla::resetSelectionBackgroundColor" ref="5202253f6428debe10bc5f3e2f194048" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::resetSelectionBackgroundColor </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Resets the background colour of selected text to the default.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#5720572f4f673b5c877e8a1f35ed76d7">setSelectionBackgroundColor()</a>, <a class="el" href="classQextScintilla.html#a82474200e54331d49369129cdf03962">resetSelectionForegroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a82474200e54331d49369129cdf03962"></a><!-- doxytag: member="QextScintilla::resetSelectionForegroundColor" ref="a82474200e54331d49369129cdf03962" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::resetSelectionForegroundColor </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Resets the foreground colour of selected text to the default.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#2236686ea942de0cc50ddbd6d822536f">setSelectionForegroundColor()</a>, <a class="el" href="classQextScintilla.html#5202253f6428debe10bc5f3e2f194048">resetSelectionBackgroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="50499f9105f6dbc9922078139779051c"></a><!-- doxytag: member="QextScintilla::selectAll" ref="50499f9105f6dbc9922078139779051c" args="(bool select=TRUE)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::selectAll </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>select</em> = <code>TRUE</code> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>select</em> is TRUE (the default) then all the text is selected. If <em>select</em> is FALSE then any currently selected text is deselected. +</div> +</div><p> +<a class="anchor" name="b6bfc944a5acbd2b8345529a2416e00a"></a><!-- doxytag: member="QextScintilla::selectToMatchingBrace" ref="b6bfc944a5acbd2b8345529a2416e00a" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::selectToMatchingBrace </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If the cursor is either side of a brace character then move it to the position of the corresponding brace and select the text between the braces. +</div> +</div><p> +<a class="anchor" name="9454e9ddb11fa6a00eb5ea790182b399"></a><!-- doxytag: member="QextScintilla::setAutoCompletionCaseSensitivity" ref="9454e9ddb11fa6a00eb5ea790182b399" args="(bool cs)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setAutoCompletionCaseSensitivity </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>cs</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>cs</em> is TRUE then auto-completion lists are case sensitive. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#5cff73a97337f5976254179a88a47b3a">autoCompletionCaseSensitivity()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="c3d23d34c0f0640bb22464b86347b0b9"></a><!-- doxytag: member="QextScintilla::setAutoCompletionReplaceWord" ref="c3d23d34c0f0640bb22464b86347b0b9" args="(bool replace)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setAutoCompletionReplaceWord </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>replace</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>replace</em> is TRUE then when an item from an auto-completion list is selected, the rest of the word to the right of the current cursor is removed. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#f0c3f1d2db5029e1c6323fd12962084a">autoCompletionReplaceWord()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="533cdccf3cafb0f71c58aeb9b2624062"></a><!-- doxytag: member="QextScintilla::setAutoCompletionShowSingle" ref="533cdccf3cafb0f71c58aeb9b2624062" args="(bool single)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setAutoCompletionShowSingle </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>single</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>single</em> is TRUE then when there is only a single entry in an auto-completion list it is automatically used and the list is not displayed. This only has an effect when auto-completion is explicitly requested (using <a class="el" href="classQextScintilla.html#a760573163b27895ff6aaac53343338f">autoCompleteFromAPIs()</a> and <a class="el" href="classQextScintilla.html#d0e48a5aa94192f985bf6ff207874b82">autoCompleteFromDocument()</a>) and has no effect when auto-completion is triggered as the user types. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#b70c407c8d3ed1048269fbd2ac439fdc">autoCompletionShowSingle()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="4aa5c60bfa3047118edf15ba15a0e431"></a><!-- doxytag: member="QextScintilla::setAutoCompletionSource" ref="4aa5c60bfa3047118edf15ba15a0e431" args="(AutoCompletionSource source)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setAutoCompletionSource </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7">AutoCompletionSource</a> </td> + <td class="paramname"> <em>source</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the source for the auto-completion list when it is being displayed automatically as the user types to <em>source</em>. The default is AcsDocument.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#9df1501f0ad8c01a9f3bea1867cf8c7b">autoCompletionSource()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="b8838747494640eaf03262c32f559e4c"></a><!-- doxytag: member="QextScintilla::setAutoCompletionThreshold" ref="b8838747494640eaf03262c32f559e4c" args="(int thresh)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setAutoCompletionThreshold </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>thresh</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the threshold for the automatic display of the auto-completion list as the user types to <em>thresh</em>. The threshold is the number of characters that the user must type before the list is displayed. If the threshold is less than or equal to 0 then the list is disabled. The default is -1.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#4dc81e76945748f22f97ce2855b6cffc">autoCompletionThreshold()</a>, <a class="el" href="classQextScintilla.html#dc54314cbcd37186e445c5244d20c3da">setAutoCompletionStartCharacters()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="12a3363eb37db0a2697bf737e0f750ce"></a><!-- doxytag: member="QextScintilla::setAutoIndent" ref="12a3363eb37db0a2697bf737e0f750ce" args="(bool autoindent)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setAutoIndent </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>autoindent</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>autoindent</em> is TRUE then auto-indentation is enabled. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#5aafd0d48172014fab301300433f9d79">autoIndent()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="28cda2cba2f6f1317a15f662e157fbbf"></a><!-- doxytag: member="QextScintilla::setBraceMatching" ref="28cda2cba2f6f1317a15f662e157fbbf" args="(BraceMatch bm)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setBraceMatching </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b">BraceMatch</a> </td> + <td class="paramname"> <em>bm</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the brace matching mode to <em>bm</em>. The default is NoBraceMatching.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#2cdccb4225833d6645faa0ac7ae0cbe5">braceMatching()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="b08d343cda48e43490baae62707e97e2"></a><!-- doxytag: member="QextScintilla::setBackspaceUnindents" ref="b08d343cda48e43490baae62707e97e2" args="(bool unindent)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setBackspaceUnindents </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>unindent</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>deindent</em> is TRUE then the backspace key will unindent a line rather then delete a character.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#a930abcf668124af9c07f2a04a06b16f">backspaceUnindents()</a>, <a class="el" href="classQextScintilla.html#1deb0e0aff533559500242065e9441a2">tabIndents()</a>, <a class="el" href="classQextScintilla.html#221ac401d34a180392e49bacd9b56c4e">setTabIndents()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="6d9ba2d4af256e19049b7ff1b291eb2e"></a><!-- doxytag: member="QextScintilla::setCaretForegroundColor" ref="6d9ba2d4af256e19049b7ff1b291eb2e" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setCaretForegroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the foreground colour of the caret to <em>col</em>. +<p> + +</div> +</div><p> +<a class="anchor" name="e71f2cf24abfcfe598989e13481bc711"></a><!-- doxytag: member="QextScintilla::setCaretLineBackgroundColor" ref="e71f2cf24abfcfe598989e13481bc711" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setCaretLineBackgroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the background colour, including the alpha component, of the line containing the caret to <em>col</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#dc9f29c940c8c3b8cc57d8cbd89a02ec">setCaretLineVisible()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="dc9f29c940c8c3b8cc57d8cbd89a02ec"></a><!-- doxytag: member="QextScintilla::setCaretLineVisible" ref="dc9f29c940c8c3b8cc57d8cbd89a02ec" args="(bool enable)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setCaretLineVisible </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>enable</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Enables or disables, according to <em>enable</em>, the background color of the line containing the caret.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#e71f2cf24abfcfe598989e13481bc711">setCaretLineBackgroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="8ea3c0a1e23aadb93ae0e6c671a10b09"></a><!-- doxytag: member="QextScintilla::setCaretWidth" ref="8ea3c0a1e23aadb93ae0e6c671a10b09" args="(int width)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setCaretWidth </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>width</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the width of the caret to <em>width</em> pixels. A <em>width</em> of 0 makes the caret invisible. +</div> +</div><p> +<a class="anchor" name="2dc9e4690becceb27a9a981c23deb8e0"></a><!-- doxytag: member="QextScintilla::setColor" ref="2dc9e4690becceb27a9a981c23deb8e0" args="(const QColor &c)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>c</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#42f33ad513bb2636e4969ae2beff2463">color()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="76302c4726ba0c75de2627465c5faddb"></a><!-- doxytag: member="QextScintilla::setCursorPosition" ref="76302c4726ba0c75de2627465c5faddb" args="(int line, int index)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setCursorPosition </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>index</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the cursor to the line <em>line</em> at the position <em>index</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#da3e0b58a20e1c7e4f062cabf40b6d6b">getCursorPosition()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="f372a0b24952de9adf5c06697561ff4f"></a><!-- doxytag: member="QextScintilla::setEolMode" ref="f372a0b24952de9adf5c06697561ff4f" args="(EolMode mode)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setEolMode </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a">EolMode</a> </td> + <td class="paramname"> <em>mode</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the end-of-line mode to <em>mode</em>. The default is the platform's natural mode.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#099d5bfe4b4f27ff2b666eeb9bcd4867">eolMode()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="19bd08e911d00127b02b08b468aa91f9"></a><!-- doxytag: member="QextScintilla::setEolVisibility" ref="19bd08e911d00127b02b08b468aa91f9" args="(bool visible)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setEolVisibility </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>visible</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>visible</em> is TRUE then end-of-lines are made visible. The default is that they are invisible.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#8e8e0a0c1d7fb0718df7f32cf194eba4">eolVisibility()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="4c7a389d1492aa92246041545ea0c017"></a><!-- doxytag: member="QextScintilla::setFolding" ref="4c7a389d1492aa92246041545ea0c017" args="(FoldStyle fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setFolding </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf">FoldStyle</a> </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the folding style for margin 2 to <em>fold</em>. The default is NoFoldStyle (ie. folding is disabled).<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#86418f82fe35ff366f4ef023c470f0a1">folding()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="cb4de8d10de37d454203fe0fcfcf0aad"></a><!-- doxytag: member="QextScintilla::setIndentation" ref="cb4de8d10de37d454203fe0fcfcf0aad" args="(int line, int indentation)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setIndentation </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>indentation</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the indentation of line <em>to</em> <em>indentation</em> characters.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#a57fae593f33dd9b5d1542c95afd9a01">indentation()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="13ff99c97d3928011ec55a54329f7bef"></a><!-- doxytag: member="QextScintilla::setIndentationGuides" ref="13ff99c97d3928011ec55a54329f7bef" args="(bool enable)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setIndentationGuides </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>enable</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Enables or disables, according to <em>enable</em>, this display of indentation guides.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#0d63a0fc79c8fae6934f6599d407a3d4">indentationGuides()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="06159cf5a4c8834c05d4ca13ab8e44f6"></a><!-- doxytag: member="QextScintilla::setIndentationGuidesBackgroundColor" ref="06159cf5a4c8834c05d4ca13ab8e44f6" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setIndentationGuidesBackgroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the background colour of indentation guides to <em>col</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#1dc9a7291e60fd738dfa8aedaa9447a5">setIndentationGuidesForegroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="1dc9a7291e60fd738dfa8aedaa9447a5"></a><!-- doxytag: member="QextScintilla::setIndentationGuidesForegroundColor" ref="1dc9a7291e60fd738dfa8aedaa9447a5" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setIndentationGuidesForegroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the foreground colour of indentation guides to <em>col</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#06159cf5a4c8834c05d4ca13ab8e44f6">setIndentationGuidesBackgroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="46decfe40cf613d5978e50c30231b162"></a><!-- doxytag: member="QextScintilla::setIndentationsUseTabs" ref="46decfe40cf613d5978e50c30231b162" args="(bool tabs)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setIndentationsUseTabs </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>tabs</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>tabs</em> is TRUE then indentations are created using tabs and spaces, rather than just spaces.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#53d57d43f67a8dcc9d08369906906a8d">indentationsUseTabs()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="0670389deb55079381f21764df0e2441"></a><!-- doxytag: member="QextScintilla::setIndentationWidth" ref="0670389deb55079381f21764df0e2441" args="(int width)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setIndentationWidth </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>width</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the indentation width to <em>width</em> characters. If <em>width</em> is 0 then the value returned by <a class="el" href="classQextScintilla.html#9aa14c5d05ea338aecb5214dc4cf99c4">tabWidth()</a> is used.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#678d8e15ff532854af87f2ff0575327c">indentationWidth()</a>, <a class="el" href="classQextScintilla.html#9aa14c5d05ea338aecb5214dc4cf99c4">tabWidth()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="f784daa825798f7e9c16d0a721699fa0"></a><!-- doxytag: member="QextScintilla::setLexer" ref="f784daa825798f7e9c16d0a721699fa0" args="(QextScintillaLexer *lexer=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setLexer </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a> * </td> + <td class="paramname"> <em>lexer</em> = <code>0</code> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the specific language lexer used to style text to <em>lexer</em>. If <em>lexer</em> is 0 then syntax styling is disabled.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#9221fa7b6665d7ad5490c7db02b1e59b">lexer()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a2a7732db0b17dd08162a7bba8c5af55"></a><!-- doxytag: member="QextScintilla::setMarginsBackgroundColor" ref="a2a7732db0b17dd08162a7bba8c5af55" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setMarginsBackgroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the background colour of all margins to <em>col</em>. The default is a gray.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#11d0ceebbc7938c988be6475c0946636">setMarginsForegroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="b607dd4ea4a5d50ca03878d63d9e99ef"></a><!-- doxytag: member="QextScintilla::setMarginsFont" ref="b607dd4ea4a5d50ca03878d63d9e99ef" args="(const QFont &f)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setMarginsFont </td> + <td>(</td> + <td class="paramtype">const QFont & </td> + <td class="paramname"> <em>f</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the font used in all margins to <em>f</em>. +<p> + +</div> +</div><p> +<a class="anchor" name="11d0ceebbc7938c988be6475c0946636"></a><!-- doxytag: member="QextScintilla::setMarginsForegroundColor" ref="11d0ceebbc7938c988be6475c0946636" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setMarginsForegroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Set the foreground colour of all margins to <em>col</em>. The default is black.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#a2a7732db0b17dd08162a7bba8c5af55">setMarginsBackgroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="1427cac9893fcc7b952264ff257b32de"></a><!-- doxytag: member="QextScintilla::setMarginLineNumbers" ref="1427cac9893fcc7b952264ff257b32de" args="(int margin, bool lnrs)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setMarginLineNumbers </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>margin</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>lnrs</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Enables or disables, according to <em>lnrs</em>, the display of line numbers in margin <em>margin</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#43f2c96091e57ac4818a16ecdf275a6a">marginLineNumbers()</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f9b3a4194c3ee4d18f9efb8dcb91bb9">QextScintillaBase::SCI_SETMARGINTYPEN</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="6c9e5a77874dfb08b5fb83c650abd414"></a><!-- doxytag: member="QextScintilla::setMarginMarkerMask" ref="6c9e5a77874dfb08b5fb83c650abd414" args="(int margin, int mask)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setMarginMarkerMask </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>margin</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>mask</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the marker mask of margin <em>margin</em> to <em>mask</em>. Only those markers whose bit is set in the mask are displayed in the margin.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#81a2053eef4e0e085a2b8ef2e675466a">marginMarkerMask()</a>, QextScintillaMarker, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04bad9debaf35fc86b8899891bce53c38">QextScintillaBase::SCI_SETMARGINMASKN</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="09e5035f78a603c3e68a22712ac9ae02"></a><!-- doxytag: member="QextScintilla::setMarginSensitivity" ref="09e5035f78a603c3e68a22712ac9ae02" args="(int margin, bool sens)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setMarginSensitivity </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>margin</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>sens</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Enables or disables, according to <em>sens</em>, the sensitivity of margin <em>margin</em> to mouse clicks. If the user clicks in a sensitive margin the <a class="el" href="classQextScintilla.html#e066273695466c6e19cd4e8cd2414e17">marginClicked()</a> signal is emitted.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#9206b50c414a0d42f705acec533e608f">marginSensitivity()</a>, <a class="el" href="classQextScintilla.html#e066273695466c6e19cd4e8cd2414e17">marginClicked()</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ac5019b21e5be3cf19fcf999c3da833a">QextScintillaBase::SCI_SETMARGINSENSITIVEN</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="2ffce76c496336d195b7438cd4113d0d"></a><!-- doxytag: member="QextScintilla::setMarginWidth" ref="2ffce76c496336d195b7438cd4113d0d" args="(int margin, int width)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setMarginWidth </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>margin</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>width</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the width of margin <em>margin</em> to <em>width</em> pixels. If the width of a margin is 0 then it is not displayed.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#67b8e6edfca91d945a015c85d4dcf391">marginWidth()</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0681a357f18daa23daa1f6eaaeb0ea06c">QextScintillaBase::SCI_SETMARGINWIDTHN</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a160ac7908b83f021850d306bd2c7f7f"></a><!-- doxytag: member="QextScintilla::setMarginWidth" ref="a160ac7908b83f021850d306bd2c7f7f" args="(int margin, const QString &s)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setMarginWidth </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>margin</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>s</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the width of margin <em>margin</em> so that it is wide enough to display <em>s</em> in the current margin font.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#67b8e6edfca91d945a015c85d4dcf391">marginWidth()</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0681a357f18daa23daa1f6eaaeb0ea06c">QextScintillaBase::SCI_SETMARGINWIDTHN</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="16ec6f5d6b1020c22f33c164d2fc4a10"></a><!-- doxytag: member="QextScintilla::setModified" ref="16ec6f5d6b1020c22f33c164d2fc4a10" args="(bool m)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setModified </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>m</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the modified state of the text edit to <em>m</em>. Note that it is only possible to clear the modified state (where <em>m</em> is FALSE). Attempts to set the modified state (where <em>m</em> is TRUE) are ignored.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#2ddb6b2ade644a6b2d13b215828b2f4e">isModified()</a>, <a class="el" href="classQextScintilla.html#429e0a1e9c1cd7bc49b8d6939743e26d">modificationChanged()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="6009167416ef66da0a09fdbc4920b1ba"></a><!-- doxytag: member="QextScintilla::setPaper" ref="6009167416ef66da0a09fdbc4920b1ba" args="(const QColor &c)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setPaper </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>c</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#f6e3058d707eabd9f99d1fa93a91ea30">paper()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="1bb17663785894a85e7fe07ad5768dfb"></a><!-- doxytag: member="QextScintilla::setReadOnly" ref="1bb17663785894a85e7fe07ad5768dfb" args="(bool ro)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setReadOnly </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>ro</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the read-only state of the text edit to <em>ro</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#bf7834644311e59ee424ef57b99771d8">isReadOnly()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="0abb348ecbb21dcecfa2ba7bb423d50b"></a><!-- doxytag: member="QextScintilla::setSelection" ref="0abb348ecbb21dcecfa2ba7bb423d50b" args="(int lineFrom, int indexFrom, int lineTo, int indexTo)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setSelection </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>lineFrom</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>indexFrom</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>lineTo</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>indexTo</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the selection which starts at position <em>indexFrom</em> in line <em>lineFrom</em> and ends at position <em>indexTo</em> in line <em>lineTo</em>. The cursor is moved to the end of the selection.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#92f76a5a9eb56275d77905738de3f4a1">getSelection()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="5720572f4f673b5c877e8a1f35ed76d7"></a><!-- doxytag: member="QextScintilla::setSelectionBackgroundColor" ref="5720572f4f673b5c877e8a1f35ed76d7" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setSelectionBackgroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the background colour, including the alpha component, of selected text to <em>col</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#5202253f6428debe10bc5f3e2f194048">resetSelectionBackgroundColor()</a>, <a class="el" href="classQextScintilla.html#2236686ea942de0cc50ddbd6d822536f">setSelectionForegroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="2236686ea942de0cc50ddbd6d822536f"></a><!-- doxytag: member="QextScintilla::setSelectionForegroundColor" ref="2236686ea942de0cc50ddbd6d822536f" args="(const QColor &col)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setSelectionForegroundColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>col</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the foreground colour of selected text to <em>col</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#a82474200e54331d49369129cdf03962">resetSelectionForegroundColor()</a>, <a class="el" href="classQextScintilla.html#5720572f4f673b5c877e8a1f35ed76d7">setSelectionBackgroundColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="221ac401d34a180392e49bacd9b56c4e"></a><!-- doxytag: member="QextScintilla::setTabIndents" ref="221ac401d34a180392e49bacd9b56c4e" args="(bool indent)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setTabIndents </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>indent</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>indent</em> is TRUE then the tab key will indent a line rather then insert a tab character.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#1deb0e0aff533559500242065e9441a2">tabIndents()</a>, <a class="el" href="classQextScintilla.html#a930abcf668124af9c07f2a04a06b16f">backspaceUnindents()</a>, <a class="el" href="classQextScintilla.html#b08d343cda48e43490baae62707e97e2">setBackspaceUnindents()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="20b8f9e86b5279f8bf14793beb0254cd"></a><!-- doxytag: member="QextScintilla::setTabWidth" ref="20b8f9e86b5279f8bf14793beb0254cd" args="(int width)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setTabWidth </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>width</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the tab width to <em>width</em> characters.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#9aa14c5d05ea338aecb5214dc4cf99c4">tabWidth()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="56ea80d4dad00c736135116e3aa051b6"></a><!-- doxytag: member="QextScintilla::setText" ref="56ea80d4dad00c736135116e3aa051b6" args="(const QString &text)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setText </td> + <td>(</td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>text</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Replaces all of the current text with <em>text</em>. Note that the undo/redo history is cleared by this function.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#8ddaf394f65c06d5b20d06be5ca9bd35">text()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="4d22589eaa4cf9c37e701c6ec80bc405"></a><!-- doxytag: member="QextScintilla::setUtf8" ref="4d22589eaa4cf9c37e701c6ec80bc405" args="(bool cp)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setUtf8 </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>cp</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the current text encoding. If <em>cp</em> is TRUE then UTF8 is used, otherwise Latin1 is used.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#695d9741eafdf28eb8c26448e2455cca">isUtf8()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="811888818870dd0d9cd74d297f711bc8"></a><!-- doxytag: member="QextScintilla::setWhitespaceVisibility" ref="811888818870dd0d9cd74d297f711bc8" args="(WhitespaceVisibility mode)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setWhitespaceVisibility </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e">WhitespaceVisibility</a> </td> + <td class="paramname"> <em>mode</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the visibility of whitespace to mode <em>mode</em>. The default is that whitespace is invisible.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#5321010c2f04093c3107cf34b23ebb52">whitespaceVisibility()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="945affc0b0f8f25f58138f923d5a270d"></a><!-- doxytag: member="QextScintilla::setWrapMode" ref="945affc0b0f8f25f58138f923d5a270d" args="(WrapMode mode)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::setWrapMode </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">WrapMode</a> </td> + <td class="paramname"> <em>mode</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the line wrap mode to mode <em>mode</em>. The default is that lines are not wrapped.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#99ec7ecdc8cd8f79aaeeda2b61796b65">wrapMode()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="50dd001a80d36e81d4f1616a4b9ead02"></a><!-- doxytag: member="QextScintilla::undo" ref="50dd001a80d36e81d4f1616a4b9ead02" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::undo </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Undo the last change or sequence of changes.<p> +Scintilla has multiple level undo and redo. It will continue to record undoable actions until memory runs out. Sequences of typing or deleting are compressed into single actions to make it easier to undo and redo at a sensible level of detail. Sequences of actions can be combined into actions that are undone as a unit. These sequences occur between calls to <a class="el" href="classQextScintilla.html#992e38601fb13f8d4a49ac58bb4aa5d0">beginUndoAction()</a> and <a class="el" href="classQextScintilla.html#cf85f22ce1ef53cd0851a99282a3cd8b">endUndoAction()</a>. These sequences can be nested and only the top level sequences are undone as units.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#992e38601fb13f8d4a49ac58bb4aa5d0">beginUndoAction()</a>, <a class="el" href="classQextScintilla.html#cf85f22ce1ef53cd0851a99282a3cd8b">endUndoAction()</a>, <a class="el" href="classQextScintilla.html#df3fac9f4711417ff6c25f34615f67c8">isUndoAvailable()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="d4a5197ca9a6957e05047d7af5cfa5fc"></a><!-- doxytag: member="QextScintilla::unindent" ref="d4a5197ca9a6957e05047d7af5cfa5fc" args="(int line)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::unindent </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Decreases the indentation of line <em>line</em> by an indentation width.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#0017b86a4fff9d1228b204deda1e9d57">indent()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="279f582a91cc4210056069039e122187"></a><!-- doxytag: member="QextScintilla::zoomIn" ref="279f582a91cc4210056069039e122187" args="(int range)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::zoomIn </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>range</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Zooms in on the text by by making the base font size <em>range</em> points larger and recalculating all font sizes.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#fa53fc56031df8f657e2e75f95848777">zoomOut()</a>, <a class="el" href="classQextScintilla.html#58bf75fc581f7fc46235a6ad95ef5da5">zoomTo()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="69341ebed602660d09fb47af683ac266"></a><!-- doxytag: member="QextScintilla::zoomIn" ref="69341ebed602660d09fb47af683ac266" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::zoomIn </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Zooms in on the text by by making the base font size one point larger and recalculating all font sizes. +</div> +</div><p> +<a class="anchor" name="5ca018a25639ec07c4e0debd48ce7c38"></a><!-- doxytag: member="QextScintilla::zoomOut" ref="5ca018a25639ec07c4e0debd48ce7c38" args="(int range)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::zoomOut </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>range</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Zooms out on the text by by making the base font size <em>range</em> points smaller and recalculating all font sizes.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#69341ebed602660d09fb47af683ac266">zoomIn()</a>, <a class="el" href="classQextScintilla.html#58bf75fc581f7fc46235a6ad95ef5da5">zoomTo()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="fa53fc56031df8f657e2e75f95848777"></a><!-- doxytag: member="QextScintilla::zoomOut" ref="fa53fc56031df8f657e2e75f95848777" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::zoomOut </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Zooms out on the text by by making the base font size one point larger and recalculating all font sizes. +</div> +</div><p> +<a class="anchor" name="58bf75fc581f7fc46235a6ad95ef5da5"></a><!-- doxytag: member="QextScintilla::zoomTo" ref="58bf75fc581f7fc46235a6ad95ef5da5" args="(int size)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintilla::zoomTo </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>size</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Zooms the text by making the base font size <em>size</em> points and recalculating all font sizes.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#69341ebed602660d09fb47af683ac266">zoomIn()</a>, <a class="el" href="classQextScintilla.html#fa53fc56031df8f657e2e75f95848777">zoomOut()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="7750e4896fb860de1c7a0c3ee79cc8bf"></a><!-- doxytag: member="QextScintilla::cursorPositionChanged" ref="7750e4896fb860de1c7a0c3ee79cc8bf" args="(int line, int pos)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::cursorPositionChanged </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>pos</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted whenever the cursor position changes. <em>line</em> contains the line number and <em>pos</em> contains the character position within the line. +</div> +</div><p> +<a class="anchor" name="c741c9b8ed144370bad992c49a9f5aa4"></a><!-- doxytag: member="QextScintilla::copyAvailable" ref="c741c9b8ed144370bad992c49a9f5aa4" args="(bool yes)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::copyAvailable </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>yes</em> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted whenever text is selected or de-selected. <em>yes</em> is TRUE if text has been selected and FALSE if text has been deselected. If <em>yes</em> is TRUE then <a class="el" href="classQextScintilla.html#e2554d0e59cde9e5de14351f26c4f6b6">copy()</a> can be used to copy the selection to the clipboard. If <em>yes</em> is FALSE then <a class="el" href="classQextScintilla.html#e2554d0e59cde9e5de14351f26c4f6b6">copy()</a> does nothing.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#e2554d0e59cde9e5de14351f26c4f6b6">copy()</a>, <a class="el" href="classQextScintilla.html#d4fd9bb7affe4719cb785064b42d685c">selectionChanged()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="e066273695466c6e19cd4e8cd2414e17"></a><!-- doxytag: member="QextScintilla::marginClicked" ref="e066273695466c6e19cd4e8cd2414e17" args="(int margin, int line, Qt::ButtonState state)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::marginClicked </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>margin</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>line</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">Qt::ButtonState </td> + <td class="paramname"> <em>state</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted whenever the user clicks on a sensitive margin. <em>margin</em> is the margin. <em>line</em> is the number of the line where the user clicked. <em>state</em> is the state of the modifier keys (ShiftButton, ControlButton and AltButton) when the user clicked.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#9206b50c414a0d42f705acec533e608f">marginSensitivity()</a>, <a class="el" href="classQextScintilla.html#09e5035f78a603c3e68a22712ac9ae02">setMarginSensitivity()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="361adb6dbed444724c2b503d1329cc8b"></a><!-- doxytag: member="QextScintilla::modificationAttempted" ref="361adb6dbed444724c2b503d1329cc8b" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::modificationAttempted </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted whenever the user attempts to modify read-only text.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#bf7834644311e59ee424ef57b99771d8">isReadOnly()</a>, <a class="el" href="classQextScintilla.html#1bb17663785894a85e7fe07ad5768dfb">setReadOnly()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="429e0a1e9c1cd7bc49b8d6939743e26d"></a><!-- doxytag: member="QextScintilla::modificationChanged" ref="429e0a1e9c1cd7bc49b8d6939743e26d" args="(bool m)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::modificationChanged </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>m</em> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted whenever the modification state of the text changes. <em>m</em> is TRUE if the text has been modified.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#2ddb6b2ade644a6b2d13b215828b2f4e">isModified()</a>, <a class="el" href="classQextScintilla.html#16ec6f5d6b1020c22f33c164d2fc4a10">setModified()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="d4fd9bb7affe4719cb785064b42d685c"></a><!-- doxytag: member="QextScintilla::selectionChanged" ref="d4fd9bb7affe4719cb785064b42d685c" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::selectionChanged </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted whenever the selection changes.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#c741c9b8ed144370bad992c49a9f5aa4">copyAvailable()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="b4f0af1a6757e30fe5ecdf82b09618c3"></a><!-- doxytag: member="QextScintilla::textChanged" ref="b4f0af1a6757e30fe5ecdf82b09618c3" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::textChanged </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted whenever the text in the text edit changes. +<p> + +</div> +</div><p> +<a class="anchor" name="1bc718e051677cc538be5c9045abee87"></a><!-- doxytag: member="QextScintilla::userListActivated" ref="1bc718e051677cc538be5c9045abee87" args="(int id, const QString &string)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintilla::userListActivated </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>id</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>string</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when an item in a user defined list is activated (selected). <em>id</em> is the list identifier. <em>string</em> is the text of the item.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintilla.html#74a4da1e86eda7f62262cea8a4a9b26a">showUserList()</a> </dd></dl> + +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaAPIs-members.html b/doc/html/classQextScintillaAPIs-members.html new file mode 100644 index 0000000..3bf9904 --- /dev/null +++ b/doc/html/classQextScintillaAPIs-members.html @@ -0,0 +1,30 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaAPIs Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a>, including all inherited members.<p><table> + <tr class="memlist"><td><a class="el" href="classQextScintillaAPIs.html#b443486e48c91ae4878a21d30b242d73">add</a>(const QString &entry)</td><td><a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaAPIs.html#f316a9a0e9d1bde57916c09fbd362918">clear</a>()</td><td><a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaAPIs.html#5d424a6c31b3f91739977a99103c3415">load</a>(const QString &fname)</td><td><a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaAPIs.html#37e89c8f886f627bfffe8c7497c687b4">QextScintillaAPIs</a>()</td><td><a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaAPIs.html#25c4b5eec176538900c3fb0028e47a80">~QextScintillaAPIs</a>()</td><td><a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a></td><td></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaAPIs.html b/doc/html/classQextScintillaAPIs.html new file mode 100644 index 0000000..9efdffc --- /dev/null +++ b/doc/html/classQextScintillaAPIs.html @@ -0,0 +1,151 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaAPIs Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaAPIs Class Reference</h1><!-- doxytag: class="QextScintillaAPIs" -->The <a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a> class represents the textual API information used in call tips and for auto-completion. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillaapis.h></code> +<p> +<a href="classQextScintillaAPIs-members.html">List of all members.</a><h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaAPIs.html#37e89c8f886f627bfffe8c7497c687b4">QextScintillaAPIs</a> () +<li><a class="el" href="classQextScintillaAPIs.html#25c4b5eec176538900c3fb0028e47a80">~QextScintillaAPIs</a> () +<li>void <a class="el" href="classQextScintillaAPIs.html#b443486e48c91ae4878a21d30b242d73">add</a> (const QString &entry) +<li>bool <a class="el" href="classQextScintillaAPIs.html#5d424a6c31b3f91739977a99103c3415">load</a> (const QString &fname) +<li>void <a class="el" href="classQextScintillaAPIs.html#f316a9a0e9d1bde57916c09fbd362918">clear</a> () +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a> class represents the textual API information used in call tips and for auto-completion. +<p> +API information is read from one or more files. Each API function is described by a single line of text comprising the function's name, followed by the function's optional comma separated parameters enclosed in parenthesis, and finally followed by optional explanatory text.<p> +A function name may be followed by a `?' and a number. The number is used by auto-completion to display a registered QPixmap with the function name.<p> +All function names are used by auto-completion, but only those that include function parameters are used in call tips. +<p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="37e89c8f886f627bfffe8c7497c687b4"></a><!-- doxytag: member="QextScintillaAPIs::QextScintillaAPIs" ref="37e89c8f886f627bfffe8c7497c687b4" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaAPIs::QextScintillaAPIs </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Constructs a <a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a> instance. +<p> + +</div> +</div><p> +<a class="anchor" name="25c4b5eec176538900c3fb0028e47a80"></a><!-- doxytag: member="QextScintillaAPIs::~QextScintillaAPIs" ref="25c4b5eec176538900c3fb0028e47a80" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaAPIs::~QextScintillaAPIs </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="b443486e48c91ae4878a21d30b242d73"></a><!-- doxytag: member="QextScintillaAPIs::add" ref="b443486e48c91ae4878a21d30b242d73" args="(const QString &entry)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaAPIs::add </td> + <td>(</td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>entry</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Add the single API entry <em>entry</em> to the current set. +<p> + +</div> +</div><p> +<a class="anchor" name="5d424a6c31b3f91739977a99103c3415"></a><!-- doxytag: member="QextScintillaAPIs::load" ref="5d424a6c31b3f91739977a99103c3415" args="(const QString &fname)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaAPIs::load </td> + <td>(</td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>fname</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Load the API information from the file named <em>fname</em>, adding it to the current set. Returns TRUE if successful, otherwise FALSE. +</div> +</div><p> +<a class="anchor" name="f316a9a0e9d1bde57916c09fbd362918"></a><!-- doxytag: member="QextScintillaAPIs::clear" ref="f316a9a0e9d1bde57916c09fbd362918" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaAPIs::clear </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Deletes all API information. +<p> + +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaBase-members.html b/doc/html/classQextScintillaBase-members.html new file mode 100644 index 0000000..183b5ac --- /dev/null +++ b/doc/html/classQextScintillaBase-members.html @@ -0,0 +1,769 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaBase Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>CARET_EVEN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>CARET_JUMPS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>CARET_SLOP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>CARET_STRICT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>EDGE_BACKGROUND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>EDGE_LINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>EDGE_NONE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#a31a4b262617ad472c95f700de47a84b">eventFilter</a>(QObject *o, QEvent *e)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#85e6877f9aad613a869fe5b7d97f9035">focusInEvent</a>(QFocusEvent *)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#9516bc2125ea51a8de4c21f6af42a4b1">focusNextPrevChild</a>(bool)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#f87a97050d71a323d47d666fe4a5547b">focusOutEvent</a>(QFocusEvent *)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected, virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC0_MASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC1_MASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC2_MASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_BOX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_DIAGONAL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_HIDDEN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_MAX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_PLAIN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_ROUNDBOX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_SQUIGGLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_STRIKE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDIC_TT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>INDICS_MASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#f2973f7bf587f7e71902a1b7909a7c60">keyPressEvent</a>(QKeyEvent *ke)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#e9a2e982760ae835cdecfcfe6b92c416">pool</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [static]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#e54a418ee8c182e1ddfa404b59a34149">QextScintillaBase</a>(QWidget *parent=0, const char *name=0, WFlags f=0)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#98a9d6ccb14bf28e9bf75dc069577b9b">QSCN_SELCHANGED</a>(bool yes)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_ALPHA_NOALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_ALPHA_OPAQUE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_ALPHA_TRANSPARENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CACHE_CARET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CACHE_DOCUMENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CACHE_NONE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CACHE_PAGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CASE_LOWER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CASE_MIXED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CASE_UPPER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_8859_15</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_ANSI</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_ARABIC</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_BALTIC</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_CHINESEBIG5</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_DEFAULT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_EASTEUROPE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_GB2312</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_GREEK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_HANGUL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_HEBREW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_JOHAB</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_MAC</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_OEM</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_RUSSIAN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_SHIFTJIS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_SYMBOL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_THAI</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_TURKISH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CHARSET_VIETNAMESE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CP_DBCS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CP_UTF8</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CURSORNORMAL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_CURSORWAIT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_EOL_CR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_EOL_CRLF</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_EOL_LF</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_BOX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_LEVELNUMBERS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_LINEAFTER_CONTRACTED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_LINEAFTER_EXPANDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_LINEBEFORE_CONTRACTED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDFLAG_LINEBEFORE_EXPANDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELBASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELBOXFOOTERFLAG</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELBOXHEADERFLAG</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELCONTRACTED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELHEADERFLAG</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELNUMBERMASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELUNINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_FOLDLEVELWHITEFLAG</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_LASTSTEPINUNDOREDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2202759936bafc4284957c4226f3042db">SC_MARGIN_BACK</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a23d1e3bb214808a93cf72986b0b461027">SC_MARGIN_FORE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2ed8932da45c8172b8b9c8fdeca780f62">SC_MARGIN_NUMBER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a27e7af608c20e4123e0c63a4cc773b363">SC_MARGIN_SYMBOL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4e3b1de6390cc0af837be4f7d7fe2c874">SC_MARK_ARROW</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4edad3abdf6caacb6b2e0aa6b5dcb2225">SC_MARK_ARROWDOWN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f89256799c23918fda728e89cca33202">SC_MARK_ARROWS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40299712b9cc948d89b63ccb57cc718b1">SC_MARK_BACKGROUND</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4562a720141731259a0b103de4bd97d97">SC_MARK_BOXMINUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4796ee8aec20e6718fb0f64ed6842f788">SC_MARK_BOXMINUSCONNECTED</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4b44cd3777c6526b38e43729f55d33d9f">SC_MARK_BOXPLUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a273fcfe1adb61f9209aae02dc0255e">SC_MARK_BOXPLUSCONNECTED</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43b6b66013744d32a407bdfd6d09a5b51">SC_MARK_CHARACTER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f434a6ab21669939553df7ea20efee63">SC_MARK_CIRCLE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4d8679bbada38b23e093aca2d7e181cf6">SC_MARK_CIRCLEMINUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ef80900cadb97b802077c229197a5cb3">SC_MARK_CIRCLEMINUSCONNECTED</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7d571a7e7e48ae750c7a862e1bbaac">SC_MARK_CIRCLEPLUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f44be3bd3071b92f21bedeb38080297239">SC_MARK_CIRCLEPLUSCONNECTED</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4bc5087b0b7079ec10079a8346c7f5034">SC_MARK_DOTDOTDOT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f42df2479d1baf9d5576639f46a1222346">SC_MARK_EMPTY</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f427aabfe553646e9ab186017b26577a06">SC_MARK_FULLRECT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f481d4d67f51f4ca1537ed49073485d9a7">SC_MARK_LCORNER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ee7ddee38b57a705314bc6739e488bab">SC_MARK_LCORNERCURVE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f461a1e23b36a33e7dcbe60829fc9bc8cb">SC_MARK_MINUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f45f1d4dcf4839e48bcd9a4e3f134ce7c6">SC_MARK_PIXMAP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4607f53e1b9693350dbf5317d22af3f36">SC_MARK_PLUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498c50cda1aa3ef885dd756384991ee61">SC_MARK_ROUNDRECT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498e14aa4f516be7f37574e209c1e663d">SC_MARK_SHORTARROW</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a7488c79a3800a9c8790763ed4adbef">SC_MARK_SMALLRECT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7c7a88f1171999c0a794440ca52421">SC_MARK_TCORNER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f724482fbd5d843bae330c83639aae34">SC_MARK_TCORNERCURVE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4723048b3e712e9165c6909e07d01295b">SC_MARK_VLINE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDEREND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDERMIDTAIL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDEROPEN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDEROPENMID</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDERSUB</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MARKNUM_FOLDERTAIL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MASK_FOLDERS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_BEFOREDELETE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_BEFOREINSERT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_CHANGEFOLD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_CHANGEMARKER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_CHANGESTYLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_DELETETEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MOD_INSERTTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MODEVENTMASKALL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MULTILINEUNDOREDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_MULTISTEPUNDOREDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PERFORMED_REDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PERFORMED_UNDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PERFORMED_USER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PRINT_BLACKONWHITE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PRINT_COLOURONWHITE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PRINT_COLOURONWHITEDEFAULTBG</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PRINT_INVERTLIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_PRINT_NORMAL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_SEL_LINES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_SEL_RECTANGLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_SEL_STREAM</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_TIME_FOREVER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAP_CHAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAP_NONE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAP_WORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAG_END</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAG_NONE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAG_START</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAGLOC_DEFAULT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAGLOC_END_BY_TEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SC_WRAPVISUALFLAGLOC_START_BY_TEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#13a80e946a24ed608742e90e976b770b">SCEN_CHANGE</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCFIND_MATCHCASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCFIND_POSIX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCFIND_REGEXP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCFIND_WHOLEWORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCFIND_WORDSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ADDREFDOCUMENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ADDSTYLEDTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0da963008bd0cd3ee5fafd3a033ba5570">SCI_ADDTEXT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ALLOCATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_APPENDTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ASSIGNCMDKEY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCACTIVE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCCANCEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCCOMPLETE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETAUTOHIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETCANCELATSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETCHOOSESINGLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETCURRENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETDROPRESTOFWORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETIGNORECASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETMAXHEIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETMAXWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETSEPARATOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCGETTYPESEPARATOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCPOSSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSELECT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETAUTOHIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETCANCELATSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETCHOOSESINGLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETDROPRESTOFWORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETFILLUPS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETIGNORECASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETMAXHEIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETMAXWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETSEPARATOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSETTYPESEPARATOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSHOW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_AUTOCSTOPS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_BACKTAB</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_BEGINUNDOACTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_BRACEBADLIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_BRACEHIGHLIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_BRACEMATCH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPACTIVE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPCANCEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPPOSSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPSETBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPSETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPSETFOREHLT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPSETHLT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPSHOW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CALLTIPUSESTYLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CANCEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CANPASTE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CANREDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CANUNDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARLEFTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARLEFTRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARRIGHTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHARRIGHTRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CHOOSECARETX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CLEAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CLEARALL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CLEARALLCMDKEYS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CLEARCMDKEY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CLEARDOCUMENTSTYLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0eb5af129108965033a6ae40eb45f7789">SCI_CLEARREGISTEREDIMAGES</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_COLOURISE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CONVERTEOLS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_COPY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_COPYRANGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_COPYTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CREATEDOCUMENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_CUT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELETEBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELETEBACKNOTLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELLINELEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELLINERIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELWORDLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DELWORDRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DOCLINEFROMVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DOCUMENTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DOCUMENTENDEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DOCUMENTSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_DOCUMENTSTARTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_EDITTOGGLEOVERTYPE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d3351e3d838d0ecd57d7d9873364e219">SCI_EMPTYUNDOBUFFER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ENDUNDOACTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ENSUREVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ENSUREVISIBLEENFORCEPOLICY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_FINDCOLUMN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_FINDTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_FORMATRANGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_FORMFEED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0caa048913dfa4284aac9304e4d5e2d96">SCI_GETANCHOR</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETBACKSPACEUNINDENTS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETBUFFEREDDRAW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETLINEBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETLINEBACKALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETLINEVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETPERIOD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETSTICKY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCARETWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCHARAT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCODEPAGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCOLUMN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCONTROLCHARSYMBOL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCURLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a1a628b61fa247d312e3f883fdcbc47">SCI_GETCURRENTPOS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETCURSOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETDIRECTFUNCTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETDIRECTPOINTER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETDOCPOINTER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETEDGECOLOUR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETEDGECOLUMN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETEDGEMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETENDATLASTLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05ff8be672f9810059ab924770ee7a710">SCI_GETENDSTYLED</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETEOLMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETFIRSTVISIBLELINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETFOCUS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETFOLDEXPANDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETFOLDLEVEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETFOLDPARENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETHIGHLIGHTGUIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETHSCROLLBAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETINDENTATIONGUIDES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLASTCHILD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLAYOUTCACHE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLENGTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0f2708d28f4c8b3d30bf4bea14b977945">SCI_GETLEXER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINECOUNT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINEENDPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINEINDENTATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINEINDENTPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINESELENDPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINESELSTARTPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINESTATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETLINEVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMARGINLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a9d75e0d511355318ab72cc7b7d0876">SCI_GETMARGINMASKN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMARGINRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fb5a01691811c1ad15519d7023f83df9">SCI_GETMARGINSENSITIVEN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce">SCI_GETMARGINTYPEN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d301d4135e034067d2da57890708198e">SCI_GETMARGINWIDTHN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMAXLINESTATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMODEVENTMASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b076256f845570b29f335820a97bd158a5">SCI_GETMODIFY</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMOUSEDOWNCAPTURES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETMOUSEDWELLTIME</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETOVERTYPE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPASTECONVERTENDINGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPRINTCOLOURMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPRINTMAGNIFICATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPRINTWRAPMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPROPERTY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPROPERTYEXPANDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETPROPERTYINT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0918f3e57dfd152bfe12469d2d27de9db">SCI_GETREADONLY</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSCROLLWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSEARCHFLAGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSELALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSELECTIONEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSELECTIONMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSELECTIONSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSELTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSTATUS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSTYLEAT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSTYLEBITS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSTYLEBITSNEEDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETSTYLEDTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTABINDENTS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTABWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTARGETEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTARGETSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b09d5e442a3812d53ac8067628098fedb0">SCI_GETTEXT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b034122ac033e32308cf188f718b0107e9">SCI_GETTEXTLENGTH</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTEXTRANGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETTWOPHASEDRAW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETUNDOCOLLECTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETUSEPALETTE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETUSETABS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETVIEWEOL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETVIEWWS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETVSCROLLBAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETWRAPMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETWRAPSTARTINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETWRAPVISUALFLAGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETWRAPVISUALFLAGSLOCATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETXOFFSET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GETZOOM</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GOTOLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b00ac47051be6366994d747fd07b52077a">SCI_GOTOPOS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_GRABFOCUS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HIDELINES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HIDESELECTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOME</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMEDISPLAY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMEDISPLAYEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMEEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMERECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMEWRAP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_HOMEWRAPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_INDICGETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_INDICGETSTYLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_INDICSETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_INDICSETSTYLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_INSERTTEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LEXER_START</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINECOPY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINECUT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEDELETE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEDOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEDOWNEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEDOWNRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEDUPLICATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDDISPLAY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDDISPLAYEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDWRAP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEENDWRAPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEFROMPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINELENGTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESCROLL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESCROLLDOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESCROLLUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESJOIN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESONSCREEN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINESSPLIT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINETRANSPOSE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEUPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LINEUPRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LOADLEXERLIBRARY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_LOWERCASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49">SCI_MARKERADD</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_MARKERADDSET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b053b5ad6db4f59a08f49888d1fe6014c9">SCI_MARKERDEFINE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08b2d54230a47a94bfb2ea2fd88cdabc8">SCI_MARKERDEFINEPIXMAP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0b21015787f6b3914e4d638dee15aa2db">SCI_MARKERDELETE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0daef3f1a3a46547eb9fdd1faa1dcabba">SCI_MARKERDELETEALL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04d4abb132cd5c624fb863a4e2e18cb48">SCI_MARKERDELETEHANDLE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03e011f5a6f9a1933ac95701cbe26e8f1">SCI_MARKERGET</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0c7d428743df3c3270a93ef5458a9c9a4">SCI_MARKERLINEFROMHANDLE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f423984b7557eb8274ba46962d22021">SCI_MARKERNEXT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06f99e3d5fe686e7fc62ea33c7b142bed">SCI_MARKERPREVIOUS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_MARKERSETALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fc75921a28636146af28a8f21ca5ff82">SCI_MARKERSETBACK</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06b0344c924e234c5a73466b86225e0af">SCI_MARKERSETFORE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_MOVECARETINSIDEVIEW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_NEWLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_NULL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_OPTIONAL_START</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEDOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEDOWNEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEDOWNRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEUPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PAGEUPRECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PARADOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PARADOWNEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PARAUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PARAUPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_PASTE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POINTXFROMPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POINTYFROMPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POSITIONAFTER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POSITIONBEFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POSITIONFROMLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POSITIONFROMPOINT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_POSITIONFROMPOINTCLOSE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_REDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b041ef59413dbfaeb8d13cde610dffb659">SCI_REGISTERIMAGE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_RELEASEDOCUMENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_REPLACESEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_REPLACETARGET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_REPLACETARGETRE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SCROLLCARET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SEARCHANCHOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SEARCHINTARGET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SEARCHNEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SEARCHPREV</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SELECTALL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SELECTIONDUPLICATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SELECTIONISRECTANGLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ddf73f24d674a7deda70e54f8418edcc">SCI_SETANCHOR</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETBACKSPACEUNINDENTS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETBUFFEREDDRAW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETLINEBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETLINEBACKALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETLINEVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETPERIOD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETSTICKY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCARETWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCHARSDEFAULT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCODEPAGE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCONTROLCHARSYMBOL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08f8198351235bce8efe1c9fa4b69419e">SCI_SETCURRENTPOS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETCURSOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETDOCPOINTER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETEDGECOLOUR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETEDGECOLUMN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETEDGEMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETENDATLASTLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETEOLMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOCUS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOLDEXPANDED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOLDFLAGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOLDLEVEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOLDMARGINCOLOUR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETFOLDMARGINHICOLOUR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETHIGHLIGHTGUIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETHOTSPOTACTIVEBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETHOTSPOTACTIVEFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETHOTSPOTACTIVEUNDERLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETHSCROLLBAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETINDENTATIONGUIDES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETKEYWORDS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETLAYOUTCACHE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0072c4ebd26abad84f3892a5aef4cf215">SCI_SETLEXER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08512ebbc6a1341e1fb55f70e693fb8d0">SCI_SETLEXERLANGUAGE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETLINEINDENTATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETLINESTATE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETMARGINLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04bad9debaf35fc86b8899891bce53c38">SCI_SETMARGINMASKN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETMARGINRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ac5019b21e5be3cf19fcf999c3da833a">SCI_SETMARGINSENSITIVEN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f9b3a4194c3ee4d18f9efb8dcb91bb9">SCI_SETMARGINTYPEN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0681a357f18daa23daa1f6eaaeb0ea06c">SCI_SETMARGINWIDTHN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETMODEVENTMASK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETMOUSEDOWNCAPTURES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETMOUSEDWELLTIME</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETOVERTYPE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETPASTECONVERTENDINGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETPRINTCOLOURMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETPRINTMAGNIFICATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETPRINTWRAPMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETPROPERTY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b059b1bb6d9d65ac410be6b66b2c426f14">SCI_SETREADONLY</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0be33d4f870ce79d968106ae73cc431a0">SCI_SETSAVEPOINT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSCROLLWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSEARCHFLAGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSEL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELALPHA</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELECTIONEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELECTIONMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELECTIONSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSELFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSTATUS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSTYLEBITS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSTYLING</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETSTYLINGEX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETTABINDENTS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETTABWIDTH</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETTARGETEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETTARGETSTART</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b004da7b8cb076eacef2372b9bbfe4dc14">SCI_SETTEXT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETTWOPHASEDRAW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETUNDOCOLLECTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETUSEPALETTE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETUSETABS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETVIEWEOL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETVIEWWS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETVISIBLEPOLICY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETVSCROLLBAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWHITESPACEBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWHITESPACECHARS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWHITESPACEFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWORDCHARS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWRAPMODE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWRAPSTARTINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWRAPVISUALFLAGS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETWRAPVISUALFLAGSLOCATION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETXCARETPOLICY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETXOFFSET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETYCARETPOLICY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SETZOOM</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_SHOWLINES</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_START</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STARTRECORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STARTSTYLING</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STOPRECORD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STUTTEREDPAGEDOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STUTTEREDPAGEDOWNEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STUTTEREDPAGEUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STUTTEREDPAGEUPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLECLEARALL</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLERESETDEFAULT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETBACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETBOLD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETCASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETCHANGEABLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETCHARACTERSET</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETEOLFILLED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETFONT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETFORE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETHOTSPOT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETITALIC</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETSIZE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETUNDERLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_STYLESETVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_TAB</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_TARGETFROMSELECTION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_TEXTHEIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05a873177612d3225d21459d889b51a20">SCI_TEXTWIDTH</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_TOGGLECARETSTICKY</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_TOGGLEFOLD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_UNDO</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_UPPERCASE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_USEPOPUP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_USERLISTSHOW</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VCHOME</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VCHOMEEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VCHOMERECTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VCHOMEWRAP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VCHOMEWRAPEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_VISIBLEFROMDOCLINE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDENDPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDLEFTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDLEFTENDEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDLEFTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDPARTLEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDPARTLEFTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDPARTRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDPARTRIGHTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDRIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDRIGHTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDRIGHTENDEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDRIGHTEXTEND</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WORDSTARTPOSITION</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_WRAPCOUNT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ZOOMIN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCI_ZOOMOUT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_ADD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_BACK</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_DELETE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_DIVIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_DOWN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_END</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_ESCAPE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_HOME</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_INSERT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_LEFT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_NEXT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_PRIOR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_RETURN</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_RIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_SUBTRACT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_TAB</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCK_UP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8b9733c9dd7b20e68a1226cf9ed81f69">SCLEX_ADA</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc5a6e143f3b3db4c6b2e80fce8d4f8eb">SCLEX_APDL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8c7ff8643a97b01c67a4a9271030d1ac">SCLEX_ASM</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da0b7eaa71bb78dd6d6fced870ba90f24">SCLEX_ASN1</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded111ca524237de01b990c8aa9380542">SCLEX_ASP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8dc8d6b0189cd4d471264a824cf1c199">SCLEX_AU3</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6edb4f9bc36f41d26f4a42a3410c7433">SCLEX_AVE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3c9e1bf7b958e31d8ab870a95cab0851">SCLEX_BAAN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f9e5ea4e564ba6f8d1dae8d7ace454d">SCLEX_BASH</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4f36017b6593f4740d006563caa5dd1a">SCLEX_BATCH</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2696851be5e73938cc53b02903bf30c2">SCLEX_BLITZBASIC</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0925a82889c406669e7293d180555159">SCLEX_BULLANT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d53e5454136a08b61270dfa0e49e471e6">SCLEX_CAML</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0651b9876e477b32d5a3825d298098ae">SCLEX_CLW</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dafaa399612f323eb30aa2ca13bc0e42a">SCLEX_CLWNOCASE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f3a52fea3e08741ea664dedf5530fa5">SCLEX_CONF</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df702befd903d9d65fa84af10461828a0">SCLEX_CONTAINER</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d37233777b6512990ad985e41f1470ee0">SCLEX_CPP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddada03b169d0b52daa7c00181f03e897">SCLEX_CPPNOCASE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d046e55128e56aeeb7a72f994fb4e015b">SCLEX_CSOUND</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc4b56223ccc682279fc18900fe650778">SCLEX_CSS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6842f7058b71411ab80bc1c33a63da63">SCLEX_DIFF</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d348f60f0b617eed037b6110e42af0996">SCLEX_EIFFEL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6d8490d0f99f6b329ab5f45c2234adf5">SCLEX_EIFFELKW</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da96b775c8fe016a1e7541600f939e201">SCLEX_ERLANG</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da5ccd91896d4f60a1721f59baca56e13">SCLEX_ERRORLIST</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d07f1b0054d239f968dece3bfb2017e6e">SCLEX_ESCRIPT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb8b68e427523e7e7ac9bc7f20b4347b">SCLEX_F77</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d38bfecc4bc450106195200bf1724a84b">SCLEX_FLAGSHIP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8cba676e4b42856ea6187a171dc74995">SCLEX_FORTH</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d78c83128f5d3c8ed6b2d87a3c6f61e3d">SCLEX_FORTRAN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d276307014b9460c95ebe5076afa050f2">SCLEX_FREEBASIC</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dd9dc2f753f14ca5ef729c2883dee1b0d">SCLEX_GUI4CLI</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d351fd85d3fd522100386bfd9424e3a62">SCLEX_HASKELL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df2338400902a61d96c4057caa0c450a2">SCLEX_HTML</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0efec3f1d46af6f6a7924de1e19a5761">SCLEX_INNOSETUP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb1d483ed2becbbe59887bb89f4014d0">SCLEX_KIX</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8817495465d06d51a7f29663db3e307d">SCLEX_LATEX</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d332fca6d318ec42f4db4191ad6deb193">SCLEX_LISP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2c42663d4d0f5e3ea1ea6667d467bf5f">SCLEX_LOT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62db03b3fda38342d0470fab2357eac2ab0">SCLEX_LOUT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dda37fcab324043a52fc2b85399644454">SCLEX_LUA</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3569ea5aea72d6978fb61b6231c3b4da">SCLEX_MAKEFILE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dbd5db8ab589a9223d2e095dcf3855454">SCLEX_MATLAB</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8953cce4f69b05e263e1f47c617a70fd">SCLEX_METAPOST</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc09594aa860e17ddff434ba2883e552e">SCLEX_MMIXAL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d85f6c994156a3adcea37f321f8dd6a3d">SCLEX_MSSQL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8bbda96ce9f7e57aa479486a2d4edd94">SCLEX_NNCRONTAB</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddd268ef9f9d4209dc241f55828257120">SCLEX_NSIS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a51b24b990fe1e8e3680d25e1331dc6">SCLEX_NULL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d91d63a0032121624fdae20af80851828">SCLEX_OCTAVE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded042730912f5111558955e09214d298">SCLEX_OPAL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6210ca0cdb31e06c18ec14294238a3a4">SCLEX_PASCAL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0bd817c73cd4b9a00a81c04a8585804b">SCLEX_PERL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dab90570deb68926f7c76339b9640bc25">SCLEX_PHP</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e89b369bda35c4aebac67f7313a90f2">SCLEX_PHPSCRIPT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d830f97f74f0966734a36579de53e7f9e">SCLEX_POV</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d055c632267a1a9e088e92893398ac0c2">SCLEX_POWERBASIC</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d780544fc36639fc09690ad6dbb352f65">SCLEX_PROPERTIES</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d338ccc586737eb91dfc4333fea64b1f9">SCLEX_PS</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7764a265dd69743101b3a64e68ae5efa">SCLEX_PUREBASIC</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d70827e6b1710d76ca56fce165f726ad2">SCLEX_PYTHON</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de5f83876b6fa6a6de26b655e281ffd16">SCLEX_REBOL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc062b29c7caa054f57b5b6aa54385f33">SCLEX_RUBY</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d013005a7d7306628adbcdaa6bd41d24f">SCLEX_SCRIPTOL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3a1de57f409755a648a5755f914ed028">SCLEX_SMALLTALK</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2a598cbdc1084026ef09a46ac1832c62">SCLEX_SPECMAN</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d983672d8cd26e849c76717f754e59a80">SCLEX_SPICE</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d31b4c7ddbe672064514c775788f56f80">SCLEX_SQL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dcabaa53d59287ebbdc977eeceb9c3e65">SCLEX_TADS3</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e46782e8d9ccda555ec49cfca67e546">SCLEX_TCL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6b8c539414c4f2127c04e5bc2c9da03a">SCLEX_TEX</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d42e3b71bd069a7991e73b16a48d44fb3">SCLEX_VB</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4e2037e23a835db605b0620f32511b87">SCLEX_VBSCRIPT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8142b07f7de61126fc5e4dd005f09c28">SCLEX_VERILOG</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7d9f5bcf567a86ad19f28476539f3c76">SCLEX_VHDL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de4a8bd95f6f567e44a246f46c3d2a7fe">SCLEX_XML</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a3b27b45e2066a6dd275b613adb0a1d">SCLEX_YAML</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e3d58fd86cb23274ec15615fe2c42961f">SCMOD_ALT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4ea69a17f5b83112750f8807a1516b8119">SCMOD_CTRL</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e881b5932870b621432a28e0d7a324695">SCMOD_NORM</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4eeb5363cad0f41ea5332418f63a3ad06f">SCMOD_SHIFT</a> enum value</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#8201e4d6beab5edbb64515d6d52b1fd7">SCN_AUTOCSELECTION</a>(const char *selection, int position)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#dccbc9d664a8bffc9d59971a362febf2">SCN_CALLTIPCLICK</a>(int direction)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#3af676a6edd1f511a0c46cbc9bbb2cbb">SCN_CHARADDED</a>(int charadded)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_DOUBLECLICK</b>() (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_DWELLEND</b>(int, int, int) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_DWELLSTART</b>(int, int, int) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#c5a9f540a31b8fa2614eb81ee83a3ca4">SCN_HOTSPOTCLICK</a>(int position, int modifiers)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#1ef454f2acaccaa53dcce7e542cdb006">SCN_HOTSPOTDOUBLECLICK</a>(int position, int modifiers)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#48c3b55133b4f2fe40f4a8ad48c8464a">SCN_MACRORECORD</a>(unsigned int, unsigned long, long)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#5d37a34b0254cfe015056c25b1b486a5">SCN_MARGINCLICK</a>(int position, int modifiers, int margin)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_MODIFIED</b>(int, int, const char *, int, int, int, int, int) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#50b6b16bf671969a8e0034b8763a55b2">SCN_MODIFYATTEMPTRO</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_NEEDSHOWN</b>(int, int) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#0812c4c0f7a05df4ede492e5b81c0c5d">SCN_PAINTED</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#2b5ad5e9701145883210c588caa60859">SCN_SAVEPOINTLEFT</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#72a342de3e6973e7bfee0403bc002585">SCN_SAVEPOINTREACHED</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#091c3669666a8d479e8dea5b803f63d7">SCN_STYLENEEDED</a>(int position)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_UPDATEUI</b>() (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_USERLISTSELECTION</b>(const char *, int) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCN_ZOOM</b>() (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [signal]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCWS_INVISIBLE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCWS_VISIBLEAFTERINDENT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SCWS_VISIBLEALWAYS</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#35ba57ee3832cf695531cc997b24d821">SendScintilla</a>(unsigned int msg, unsigned long wParam=0, long lParam=0)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, unsigned long wParam, const char *lParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, const char *lParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, const char *wParam, const char *lParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, long wParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, int wParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, long cpMin, long cpMax, char *lpstrText) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, unsigned long wParam, const QColor &col) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, const QColor &col) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, unsigned long wParam, QPainter *hdc, const QRect &rc, long cpMin, long cpMax) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>SendScintilla</b>(unsigned int msg, unsigned long wParam, const QPixmap *lParam) (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#171ce27ddcfabf024cc5539181f253dd">sizeHint</a>() const </td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#7c1be000329c8f9e328999cbc03ba9a7">startDrag</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [protected, virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_BRACEBAD</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_BRACELIGHT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_CALLTIP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_CONTROLCHAR</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_DEFAULT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_INDENTGUIDE</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_LASTPREDEFINED</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_LINENUMBER</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>STYLE_MAX</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#7c7723d64865b462ecfbf4152d836cae">viewport</a>() const </td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>VISIBLE_SLOP</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>VISIBLE_STRICT</b> enum value (defined in <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>)</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaBase.html#f22e6dadb040870209e511018a4aa0b8">~QextScintillaBase</a>()</td><td><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaBase.html b/doc/html/classQextScintillaBase.html new file mode 100644 index 0000000..bbecf39 --- /dev/null +++ b/doc/html/classQextScintillaBase.html @@ -0,0 +1,3465 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaBase Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaBase Class Reference</h1><!-- doxytag: class="QextScintillaBase" -->The <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a> class implements the Scintilla editor widget and its low-level API. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillabase.h></code> +<p> +Inherited by <a class="el" href="classQextScintilla.html">QextScintilla</a>. +<p> +<a href="classQextScintillaBase-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04c655020493959c25ba8a92d4a8c29c9"></a><!-- doxytag: member="QextScintillaBase::SCI_START" ref="ebbb6944d058b48277d6ab33eceab4b04c655020493959c25ba8a92d4a8c29c9" args="" --> +<b>SCI_START</b> = 2000 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0455f820bfa3ef5eefe4e0f9cdd8af9a3"></a><!-- doxytag: member="QextScintillaBase::SCI_OPTIONAL_START" ref="ebbb6944d058b48277d6ab33eceab4b0455f820bfa3ef5eefe4e0f9cdd8af9a3" args="" --> +<b>SCI_OPTIONAL_START</b> = 3000 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03c693f13beafe15154376423cbc6eba2"></a><!-- doxytag: member="QextScintillaBase::SCI_LEXER_START" ref="ebbb6944d058b48277d6ab33eceab4b03c693f13beafe15154376423cbc6eba2" args="" --> +<b>SCI_LEXER_START</b> = 4000 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0da963008bd0cd3ee5fafd3a033ba5570">SCI_ADDTEXT</a> = 2001 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b00676ffe15f16e67b07faf857ffa6eb67"></a><!-- doxytag: member="QextScintillaBase::SCI_ADDSTYLEDTEXT" ref="ebbb6944d058b48277d6ab33eceab4b00676ffe15f16e67b07faf857ffa6eb67" args="" --> +<b>SCI_ADDSTYLEDTEXT</b> = 2002 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01141d3385290f4b964bbfd64a76fbf61"></a><!-- doxytag: member="QextScintillaBase::SCI_INSERTTEXT" ref="ebbb6944d058b48277d6ab33eceab4b01141d3385290f4b964bbfd64a76fbf61" args="" --> +<b>SCI_INSERTTEXT</b> = 2003 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07a5655c01f5db050e7a02f4ca743b167"></a><!-- doxytag: member="QextScintillaBase::SCI_CLEARALL" ref="ebbb6944d058b48277d6ab33eceab4b07a5655c01f5db050e7a02f4ca743b167" args="" --> +<b>SCI_CLEARALL</b> = 2004 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04487b0ed27b06c7fe5e44eb2d7930b7c"></a><!-- doxytag: member="QextScintillaBase::SCI_CLEARDOCUMENTSTYLE" ref="ebbb6944d058b48277d6ab33eceab4b04487b0ed27b06c7fe5e44eb2d7930b7c" args="" --> +<b>SCI_CLEARDOCUMENTSTYLE</b> = 2005 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0438f25c4e7e21d17968d16c5a01f124d"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLENGTH" ref="ebbb6944d058b48277d6ab33eceab4b0438f25c4e7e21d17968d16c5a01f124d" args="" --> +<b>SCI_GETLENGTH</b> = 2006 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c97efcbd63408a2e7564e9d89b79e966"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCHARAT" ref="ebbb6944d058b48277d6ab33eceab4b0c97efcbd63408a2e7564e9d89b79e966" args="" --> +<b>SCI_GETCHARAT</b> = 2007 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a1a628b61fa247d312e3f883fdcbc47">SCI_GETCURRENTPOS</a> = 2008 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0caa048913dfa4284aac9304e4d5e2d96">SCI_GETANCHOR</a> = 2009 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b014d3f1b94391f537bd4e2ae180d9a560"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSTYLEAT" ref="ebbb6944d058b48277d6ab33eceab4b014d3f1b94391f537bd4e2ae180d9a560" args="" --> +<b>SCI_GETSTYLEAT</b> = 2010 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0b7264a4b7510a25d5ac12d5e924435f4"></a><!-- doxytag: member="QextScintillaBase::SCI_REDO" ref="ebbb6944d058b48277d6ab33eceab4b0b7264a4b7510a25d5ac12d5e924435f4" args="" --> +<b>SCI_REDO</b> = 2011 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b066f411dd6dffdcb488b25bdf2effbdbf"></a><!-- doxytag: member="QextScintillaBase::SCI_SETUNDOCOLLECTION" ref="ebbb6944d058b48277d6ab33eceab4b066f411dd6dffdcb488b25bdf2effbdbf" args="" --> +<b>SCI_SETUNDOCOLLECTION</b> = 2012 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0733f9fbaba6ba496a167a667071d8b61"></a><!-- doxytag: member="QextScintillaBase::SCI_SELECTALL" ref="ebbb6944d058b48277d6ab33eceab4b0733f9fbaba6ba496a167a667071d8b61" args="" --> +<b>SCI_SELECTALL</b> = 2013 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0be33d4f870ce79d968106ae73cc431a0">SCI_SETSAVEPOINT</a> = 2014 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0605bf071ceec36be5ec53c7f48e95c18"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSTYLEDTEXT" ref="ebbb6944d058b48277d6ab33eceab4b0605bf071ceec36be5ec53c7f48e95c18" args="" --> +<b>SCI_GETSTYLEDTEXT</b> = 2015 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05f5221345fbc99aa2d2c0a5d397986dc"></a><!-- doxytag: member="QextScintillaBase::SCI_CANREDO" ref="ebbb6944d058b48277d6ab33eceab4b05f5221345fbc99aa2d2c0a5d397986dc" args="" --> +<b>SCI_CANREDO</b> = 2016 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0c7d428743df3c3270a93ef5458a9c9a4">SCI_MARKERLINEFROMHANDLE</a> = 2017 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04d4abb132cd5c624fb863a4e2e18cb48">SCI_MARKERDELETEHANDLE</a> = 2018 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b043f7f2185363c232f64057ba2676f3a7"></a><!-- doxytag: member="QextScintillaBase::SCI_GETUNDOCOLLECTION" ref="ebbb6944d058b48277d6ab33eceab4b043f7f2185363c232f64057ba2676f3a7" args="" --> +<b>SCI_GETUNDOCOLLECTION</b> = 2019 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0364058efd2d81939779b22eeae309d86"></a><!-- doxytag: member="QextScintillaBase::SCI_GETVIEWWS" ref="ebbb6944d058b48277d6ab33eceab4b0364058efd2d81939779b22eeae309d86" args="" --> +<b>SCI_GETVIEWWS</b> = 2020 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0fcfd78e734d2c528e54deee5300ba66d"></a><!-- doxytag: member="QextScintillaBase::SCI_SETVIEWWS" ref="ebbb6944d058b48277d6ab33eceab4b0fcfd78e734d2c528e54deee5300ba66d" args="" --> +<b>SCI_SETVIEWWS</b> = 2021 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b087ee607bab9b9fbe67a82bd050b925cc"></a><!-- doxytag: member="QextScintillaBase::SCI_POSITIONFROMPOINT" ref="ebbb6944d058b48277d6ab33eceab4b087ee607bab9b9fbe67a82bd050b925cc" args="" --> +<b>SCI_POSITIONFROMPOINT</b> = 2022 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b064a0b9b40ac24ce571e5ba048b9d9d80"></a><!-- doxytag: member="QextScintillaBase::SCI_POSITIONFROMPOINTCLOSE" ref="ebbb6944d058b48277d6ab33eceab4b064a0b9b40ac24ce571e5ba048b9d9d80" args="" --> +<b>SCI_POSITIONFROMPOINTCLOSE</b> = 2023 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d0f8c2c7a1585ef948364c4258bfdbbd"></a><!-- doxytag: member="QextScintillaBase::SCI_GOTOLINE" ref="ebbb6944d058b48277d6ab33eceab4b0d0f8c2c7a1585ef948364c4258bfdbbd" args="" --> +<b>SCI_GOTOLINE</b> = 2024 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b00ac47051be6366994d747fd07b52077a">SCI_GOTOPOS</a> = 2025 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ddf73f24d674a7deda70e54f8418edcc">SCI_SETANCHOR</a> = 2026 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b085e22a3a42899a2d0d281ad8e011cad5"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCURLINE" ref="ebbb6944d058b48277d6ab33eceab4b085e22a3a42899a2d0d281ad8e011cad5" args="" --> +<b>SCI_GETCURLINE</b> = 2027 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05ff8be672f9810059ab924770ee7a710">SCI_GETENDSTYLED</a> = 2028 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03e4d76183fd559171a07c5c3d5eb467d"></a><!-- doxytag: member="QextScintillaBase::SCI_CONVERTEOLS" ref="ebbb6944d058b48277d6ab33eceab4b03e4d76183fd559171a07c5c3d5eb467d" args="" --> +<b>SCI_CONVERTEOLS</b> = 2029 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0268092e35dd32b650fdc55323fb05f4a"></a><!-- doxytag: member="QextScintillaBase::SCI_GETEOLMODE" ref="ebbb6944d058b48277d6ab33eceab4b0268092e35dd32b650fdc55323fb05f4a" args="" --> +<b>SCI_GETEOLMODE</b> = 2030 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0a3650acf903d34a239104b535e93e6ca"></a><!-- doxytag: member="QextScintillaBase::SCI_SETEOLMODE" ref="ebbb6944d058b48277d6ab33eceab4b0a3650acf903d34a239104b535e93e6ca" args="" --> +<b>SCI_SETEOLMODE</b> = 2031 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07eb5138aa7e6f3ec7baa869af1c6fe9a"></a><!-- doxytag: member="QextScintillaBase::SCI_STARTSTYLING" ref="ebbb6944d058b48277d6ab33eceab4b07eb5138aa7e6f3ec7baa869af1c6fe9a" args="" --> +<b>SCI_STARTSTYLING</b> = 2032 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0b965337492e54f6f02f2862b89cbfea6"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSTYLING" ref="ebbb6944d058b48277d6ab33eceab4b0b965337492e54f6f02f2862b89cbfea6" args="" --> +<b>SCI_SETSTYLING</b> = 2033 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08ccace4eb5ad0e60af62d6532f217dcf"></a><!-- doxytag: member="QextScintillaBase::SCI_GETBUFFEREDDRAW" ref="ebbb6944d058b48277d6ab33eceab4b08ccace4eb5ad0e60af62d6532f217dcf" args="" --> +<b>SCI_GETBUFFEREDDRAW</b> = 2034 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0a4cc56ed03f82de20e6bbecb199bfb5d"></a><!-- doxytag: member="QextScintillaBase::SCI_SETBUFFEREDDRAW" ref="ebbb6944d058b48277d6ab33eceab4b0a4cc56ed03f82de20e6bbecb199bfb5d" args="" --> +<b>SCI_SETBUFFEREDDRAW</b> = 2035 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05a95218928d238cc1edb6e85ce036731"></a><!-- doxytag: member="QextScintillaBase::SCI_SETTABWIDTH" ref="ebbb6944d058b48277d6ab33eceab4b05a95218928d238cc1edb6e85ce036731" args="" --> +<b>SCI_SETTABWIDTH</b> = 2036 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0167068f6e613c19a79f234c4759dd59b"></a><!-- doxytag: member="QextScintillaBase::SCI_GETTABWIDTH" ref="ebbb6944d058b48277d6ab33eceab4b0167068f6e613c19a79f234c4759dd59b" args="" --> +<b>SCI_GETTABWIDTH</b> = 2121 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08c8a5f43d00e8879a226e72a3ba97f6a"></a><!-- doxytag: member="QextScintillaBase::SCI_SETCODEPAGE" ref="ebbb6944d058b48277d6ab33eceab4b08c8a5f43d00e8879a226e72a3ba97f6a" args="" --> +<b>SCI_SETCODEPAGE</b> = 2037 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03623542d9b0aee413ab2b9ebe8308fbd"></a><!-- doxytag: member="QextScintillaBase::SCI_SETUSEPALETTE" ref="ebbb6944d058b48277d6ab33eceab4b03623542d9b0aee413ab2b9ebe8308fbd" args="" --> +<b>SCI_SETUSEPALETTE</b> = 2039 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b053b5ad6db4f59a08f49888d1fe6014c9">SCI_MARKERDEFINE</a> = 2040 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06b0344c924e234c5a73466b86225e0af">SCI_MARKERSETFORE</a> = 2041 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fc75921a28636146af28a8f21ca5ff82">SCI_MARKERSETBACK</a> = 2042 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49">SCI_MARKERADD</a> = 2043 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0b21015787f6b3914e4d638dee15aa2db">SCI_MARKERDELETE</a> = 2044 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0daef3f1a3a46547eb9fdd1faa1dcabba">SCI_MARKERDELETEALL</a> = 2045 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03e011f5a6f9a1933ac95701cbe26e8f1">SCI_MARKERGET</a> = 2046 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f423984b7557eb8274ba46962d22021">SCI_MARKERNEXT</a> = 2047 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06f99e3d5fe686e7fc62ea33c7b142bed">SCI_MARKERPREVIOUS</a> = 2048 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08b2d54230a47a94bfb2ea2fd88cdabc8">SCI_MARKERDEFINEPIXMAP</a> = 2049 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f9b3a4194c3ee4d18f9efb8dcb91bb9">SCI_SETMARGINTYPEN</a> = 2240 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce">SCI_GETMARGINTYPEN</a> = 2241 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0681a357f18daa23daa1f6eaaeb0ea06c">SCI_SETMARGINWIDTHN</a> = 2242 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d301d4135e034067d2da57890708198e">SCI_GETMARGINWIDTHN</a> = 2243 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04bad9debaf35fc86b8899891bce53c38">SCI_SETMARGINMASKN</a> = 2244 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a9d75e0d511355318ab72cc7b7d0876">SCI_GETMARGINMASKN</a> = 2245 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ac5019b21e5be3cf19fcf999c3da833a">SCI_SETMARGINSENSITIVEN</a> = 2246 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fb5a01691811c1ad15519d7023f83df9">SCI_GETMARGINSENSITIVEN</a> = 2247 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07e3b8fa0ea5979f8bc9615b26b3258dd"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLECLEARALL" ref="ebbb6944d058b48277d6ab33eceab4b07e3b8fa0ea5979f8bc9615b26b3258dd" args="" --> +<b>SCI_STYLECLEARALL</b> = 2050 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09b9526567970c4471f59c6f03ec5c2fc"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETFORE" ref="ebbb6944d058b48277d6ab33eceab4b09b9526567970c4471f59c6f03ec5c2fc" args="" --> +<b>SCI_STYLESETFORE</b> = 2051 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f2eef7e8340c75ab7f112b978016e511"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETBACK" ref="ebbb6944d058b48277d6ab33eceab4b0f2eef7e8340c75ab7f112b978016e511" args="" --> +<b>SCI_STYLESETBACK</b> = 2052 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b075ec019ed67093a8713b915a69fc8a1c"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETBOLD" ref="ebbb6944d058b48277d6ab33eceab4b075ec019ed67093a8713b915a69fc8a1c" args="" --> +<b>SCI_STYLESETBOLD</b> = 2053 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b029a600b10743d6c42cc96bd2cd7e59b6"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETITALIC" ref="ebbb6944d058b48277d6ab33eceab4b029a600b10743d6c42cc96bd2cd7e59b6" args="" --> +<b>SCI_STYLESETITALIC</b> = 2054 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0b6226dd5dbe61deb45b468a6074e0a1e"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETSIZE" ref="ebbb6944d058b48277d6ab33eceab4b0b6226dd5dbe61deb45b468a6074e0a1e" args="" --> +<b>SCI_STYLESETSIZE</b> = 2055 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0cb5eb5a937fb406515795737ce6d6252"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETFONT" ref="ebbb6944d058b48277d6ab33eceab4b0cb5eb5a937fb406515795737ce6d6252" args="" --> +<b>SCI_STYLESETFONT</b> = 2056 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06c0545070ae230d1a6b6e84af319522e"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETEOLFILLED" ref="ebbb6944d058b48277d6ab33eceab4b06c0545070ae230d1a6b6e84af319522e" args="" --> +<b>SCI_STYLESETEOLFILLED</b> = 2057 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b070d96eb7f517be5dc709f42930a9ef6d"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLERESETDEFAULT" ref="ebbb6944d058b48277d6ab33eceab4b070d96eb7f517be5dc709f42930a9ef6d" args="" --> +<b>SCI_STYLERESETDEFAULT</b> = 2058 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01ada09d897cb1218b424aec80fbc5f10"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETUNDERLINE" ref="ebbb6944d058b48277d6ab33eceab4b01ada09d897cb1218b424aec80fbc5f10" args="" --> +<b>SCI_STYLESETUNDERLINE</b> = 2059 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0780aadf0424af7362a9233f46cba2dd8"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETCASE" ref="ebbb6944d058b48277d6ab33eceab4b0780aadf0424af7362a9233f46cba2dd8" args="" --> +<b>SCI_STYLESETCASE</b> = 2060 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0da03190d9cfb548379262cdefee3a567"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETCHARACTERSET" ref="ebbb6944d058b48277d6ab33eceab4b0da03190d9cfb548379262cdefee3a567" args="" --> +<b>SCI_STYLESETCHARACTERSET</b> = 2066 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b059cd2566d8041c98e714c841dcf38fda"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSELFORE" ref="ebbb6944d058b48277d6ab33eceab4b059cd2566d8041c98e714c841dcf38fda" args="" --> +<b>SCI_SETSELFORE</b> = 2067 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0683bc193f6ed3d63e86e2dba20ea8596"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSELBACK" ref="ebbb6944d058b48277d6ab33eceab4b0683bc193f6ed3d63e86e2dba20ea8596" args="" --> +<b>SCI_SETSELBACK</b> = 2068 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b000bc9e495ac9386cc1beae398f6a722d"></a><!-- doxytag: member="QextScintillaBase::SCI_SETCARETFORE" ref="ebbb6944d058b48277d6ab33eceab4b000bc9e495ac9386cc1beae398f6a722d" args="" --> +<b>SCI_SETCARETFORE</b> = 2069 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0e0d0748f18796c2302e2a6d85dff37d8"></a><!-- doxytag: member="QextScintillaBase::SCI_ASSIGNCMDKEY" ref="ebbb6944d058b48277d6ab33eceab4b0e0d0748f18796c2302e2a6d85dff37d8" args="" --> +<b>SCI_ASSIGNCMDKEY</b> = 2070 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01dc51a523bfeeda7161704e21af2a7ee"></a><!-- doxytag: member="QextScintillaBase::SCI_CLEARCMDKEY" ref="ebbb6944d058b48277d6ab33eceab4b01dc51a523bfeeda7161704e21af2a7ee" args="" --> +<b>SCI_CLEARCMDKEY</b> = 2071 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08323de43146421940b32d3bfcd2997c8"></a><!-- doxytag: member="QextScintillaBase::SCI_CLEARALLCMDKEYS" ref="ebbb6944d058b48277d6ab33eceab4b08323de43146421940b32d3bfcd2997c8" args="" --> +<b>SCI_CLEARALLCMDKEYS</b> = 2072 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05340e23ecffa651f4a5ea568a65b46e2"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSTYLINGEX" ref="ebbb6944d058b48277d6ab33eceab4b05340e23ecffa651f4a5ea568a65b46e2" args="" --> +<b>SCI_SETSTYLINGEX</b> = 2073 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c523d42cfc8089f58eda5293fb0c3c4b"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETVISIBLE" ref="ebbb6944d058b48277d6ab33eceab4b0c523d42cfc8089f58eda5293fb0c3c4b" args="" --> +<b>SCI_STYLESETVISIBLE</b> = 2074 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ca68d19381bfe501afce5e43e703513b"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCARETPERIOD" ref="ebbb6944d058b48277d6ab33eceab4b0ca68d19381bfe501afce5e43e703513b" args="" --> +<b>SCI_GETCARETPERIOD</b> = 2075 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0218aa6e67edfdf241ed4961f25975a08"></a><!-- doxytag: member="QextScintillaBase::SCI_SETCARETPERIOD" ref="ebbb6944d058b48277d6ab33eceab4b0218aa6e67edfdf241ed4961f25975a08" args="" --> +<b>SCI_SETCARETPERIOD</b> = 2076 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01cba5972939a38b930713c9a01e03e1a"></a><!-- doxytag: member="QextScintillaBase::SCI_SETWORDCHARS" ref="ebbb6944d058b48277d6ab33eceab4b01cba5972939a38b930713c9a01e03e1a" args="" --> +<b>SCI_SETWORDCHARS</b> = 2077 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0fd3b5bdccbfb5ec9d8020d3af9931705"></a><!-- doxytag: member="QextScintillaBase::SCI_BEGINUNDOACTION" ref="ebbb6944d058b48277d6ab33eceab4b0fd3b5bdccbfb5ec9d8020d3af9931705" args="" --> +<b>SCI_BEGINUNDOACTION</b> = 2078 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0fe0a697b2ed8ddc63398da9bfa175624"></a><!-- doxytag: member="QextScintillaBase::SCI_ENDUNDOACTION" ref="ebbb6944d058b48277d6ab33eceab4b0fe0a697b2ed8ddc63398da9bfa175624" args="" --> +<b>SCI_ENDUNDOACTION</b> = 2079 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d4acc8d427acf1985bff05630b9a25ed"></a><!-- doxytag: member="QextScintillaBase::SCI_INDICSETSTYLE" ref="ebbb6944d058b48277d6ab33eceab4b0d4acc8d427acf1985bff05630b9a25ed" args="" --> +<b>SCI_INDICSETSTYLE</b> = 2080 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05d03c750c30872653043a0c030b15979"></a><!-- doxytag: member="QextScintillaBase::SCI_INDICGETSTYLE" ref="ebbb6944d058b48277d6ab33eceab4b05d03c750c30872653043a0c030b15979" args="" --> +<b>SCI_INDICGETSTYLE</b> = 2081 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ee6fe14bdf15fab52212f4778199cbb3"></a><!-- doxytag: member="QextScintillaBase::SCI_INDICSETFORE" ref="ebbb6944d058b48277d6ab33eceab4b0ee6fe14bdf15fab52212f4778199cbb3" args="" --> +<b>SCI_INDICSETFORE</b> = 2082 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0be16bcfa59700340c68c456d58761d81"></a><!-- doxytag: member="QextScintillaBase::SCI_INDICGETFORE" ref="ebbb6944d058b48277d6ab33eceab4b0be16bcfa59700340c68c456d58761d81" args="" --> +<b>SCI_INDICGETFORE</b> = 2083 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0a6451dc08e6401c6fe59a628000db2d8"></a><!-- doxytag: member="QextScintillaBase::SCI_SETWHITESPACEFORE" ref="ebbb6944d058b48277d6ab33eceab4b0a6451dc08e6401c6fe59a628000db2d8" args="" --> +<b>SCI_SETWHITESPACEFORE</b> = 2084 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01d013b56a4c236927f1b57991c96016d"></a><!-- doxytag: member="QextScintillaBase::SCI_SETWHITESPACEBACK" ref="ebbb6944d058b48277d6ab33eceab4b01d013b56a4c236927f1b57991c96016d" args="" --> +<b>SCI_SETWHITESPACEBACK</b> = 2085 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0514298146217ee46e28c86a71bc9822f"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSTYLEBITS" ref="ebbb6944d058b48277d6ab33eceab4b0514298146217ee46e28c86a71bc9822f" args="" --> +<b>SCI_SETSTYLEBITS</b> = 2090 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b051ce5f9b2c5cc74e4c37bbfbfcc84a9b"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSTYLEBITS" ref="ebbb6944d058b48277d6ab33eceab4b051ce5f9b2c5cc74e4c37bbfbfcc84a9b" args="" --> +<b>SCI_GETSTYLEBITS</b> = 2091 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0a847145cc9702391053c654316f5fcbc"></a><!-- doxytag: member="QextScintillaBase::SCI_SETLINESTATE" ref="ebbb6944d058b48277d6ab33eceab4b0a847145cc9702391053c654316f5fcbc" args="" --> +<b>SCI_SETLINESTATE</b> = 2092 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0734cfdab969d93fe378eb248361b2a8a"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLINESTATE" ref="ebbb6944d058b48277d6ab33eceab4b0734cfdab969d93fe378eb248361b2a8a" args="" --> +<b>SCI_GETLINESTATE</b> = 2093 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0aadbfe8675c7eea21ed23c22b323ca75"></a><!-- doxytag: member="QextScintillaBase::SCI_GETMAXLINESTATE" ref="ebbb6944d058b48277d6ab33eceab4b0aadbfe8675c7eea21ed23c22b323ca75" args="" --> +<b>SCI_GETMAXLINESTATE</b> = 2094 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d6b9a61d6cc6fe70909025340f910338"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCARETLINEVISIBLE" ref="ebbb6944d058b48277d6ab33eceab4b0d6b9a61d6cc6fe70909025340f910338" args="" --> +<b>SCI_GETCARETLINEVISIBLE</b> = 2095 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08ed3f2c2f987d26a619ad29a0c0d6d16"></a><!-- doxytag: member="QextScintillaBase::SCI_SETCARETLINEVISIBLE" ref="ebbb6944d058b48277d6ab33eceab4b08ed3f2c2f987d26a619ad29a0c0d6d16" args="" --> +<b>SCI_SETCARETLINEVISIBLE</b> = 2096 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03274336e96a9d164be15acb7c14fec55"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCARETLINEBACK" ref="ebbb6944d058b48277d6ab33eceab4b03274336e96a9d164be15acb7c14fec55" args="" --> +<b>SCI_GETCARETLINEBACK</b> = 2097 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0adb9909c30341a1987887efb2fb99e9f"></a><!-- doxytag: member="QextScintillaBase::SCI_SETCARETLINEBACK" ref="ebbb6944d058b48277d6ab33eceab4b0adb9909c30341a1987887efb2fb99e9f" args="" --> +<b>SCI_SETCARETLINEBACK</b> = 2098 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01c856328a612a312a64d45e609f065b4"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETCHANGEABLE" ref="ebbb6944d058b48277d6ab33eceab4b01c856328a612a312a64d45e609f065b4" args="" --> +<b>SCI_STYLESETCHANGEABLE</b> = 2099 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08b7b9cbf57037e3bfc847aec258a1964"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSHOW" ref="ebbb6944d058b48277d6ab33eceab4b08b7b9cbf57037e3bfc847aec258a1964" args="" --> +<b>SCI_AUTOCSHOW</b> = 2100 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09548b2b917499c9119cdd7da0a779f52"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCCANCEL" ref="ebbb6944d058b48277d6ab33eceab4b09548b2b917499c9119cdd7da0a779f52" args="" --> +<b>SCI_AUTOCCANCEL</b> = 2101 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d3b2d71da0b7fd53349cc02d5e92c4a5"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCACTIVE" ref="ebbb6944d058b48277d6ab33eceab4b0d3b2d71da0b7fd53349cc02d5e92c4a5" args="" --> +<b>SCI_AUTOCACTIVE</b> = 2102 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0dbecfecb5316b7e81d2b40d28712c04a"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCPOSSTART" ref="ebbb6944d058b48277d6ab33eceab4b0dbecfecb5316b7e81d2b40d28712c04a" args="" --> +<b>SCI_AUTOCPOSSTART</b> = 2103 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b030babf4aaf983ec0e260d579a5e1acf2"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCCOMPLETE" ref="ebbb6944d058b48277d6ab33eceab4b030babf4aaf983ec0e260d579a5e1acf2" args="" --> +<b>SCI_AUTOCCOMPLETE</b> = 2104 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0e29c249cf9c779cd88287b77753a0d34"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSTOPS" ref="ebbb6944d058b48277d6ab33eceab4b0e29c249cf9c779cd88287b77753a0d34" args="" --> +<b>SCI_AUTOCSTOPS</b> = 2105 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0bd40b879dd57425d9193cc08746656de"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSETSEPARATOR" ref="ebbb6944d058b48277d6ab33eceab4b0bd40b879dd57425d9193cc08746656de" args="" --> +<b>SCI_AUTOCSETSEPARATOR</b> = 2106 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05fe8d951691acd1e6fcf2129455de76d"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCGETSEPARATOR" ref="ebbb6944d058b48277d6ab33eceab4b05fe8d951691acd1e6fcf2129455de76d" args="" --> +<b>SCI_AUTOCGETSEPARATOR</b> = 2107 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0dbbff040ec126e833731d82f0c1ed4e9"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSELECT" ref="ebbb6944d058b48277d6ab33eceab4b0dbbff040ec126e833731d82f0c1ed4e9" args="" --> +<b>SCI_AUTOCSELECT</b> = 2108 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08f001fb60e0143d1cf4d00d4358f5e2e"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSETCANCELATSTART" ref="ebbb6944d058b48277d6ab33eceab4b08f001fb60e0143d1cf4d00d4358f5e2e" args="" --> +<b>SCI_AUTOCSETCANCELATSTART</b> = 2110 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b029306dd665f558f38a6caba801003b6c"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCGETCANCELATSTART" ref="ebbb6944d058b48277d6ab33eceab4b029306dd665f558f38a6caba801003b6c" args="" --> +<b>SCI_AUTOCGETCANCELATSTART</b> = 2111 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d19f3d1a567856c33409953d25972a35"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSETFILLUPS" ref="ebbb6944d058b48277d6ab33eceab4b0d19f3d1a567856c33409953d25972a35" args="" --> +<b>SCI_AUTOCSETFILLUPS</b> = 2112 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06439788c15f337dbe2413a6d131e4df8"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSETCHOOSESINGLE" ref="ebbb6944d058b48277d6ab33eceab4b06439788c15f337dbe2413a6d131e4df8" args="" --> +<b>SCI_AUTOCSETCHOOSESINGLE</b> = 2113 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d5f3195a8b0fbb3d125a75ef977b3a50"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCGETCHOOSESINGLE" ref="ebbb6944d058b48277d6ab33eceab4b0d5f3195a8b0fbb3d125a75ef977b3a50" args="" --> +<b>SCI_AUTOCGETCHOOSESINGLE</b> = 2114 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03fc56ded8280df2e67f6e3e654d2e1f2"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSETIGNORECASE" ref="ebbb6944d058b48277d6ab33eceab4b03fc56ded8280df2e67f6e3e654d2e1f2" args="" --> +<b>SCI_AUTOCSETIGNORECASE</b> = 2115 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06dd4093c0c0ce5efe9ee332caaa45e42"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCGETIGNORECASE" ref="ebbb6944d058b48277d6ab33eceab4b06dd4093c0c0ce5efe9ee332caaa45e42" args="" --> +<b>SCI_AUTOCGETIGNORECASE</b> = 2116 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0adaf4fcbff4106254422fe17b75e874f"></a><!-- doxytag: member="QextScintillaBase::SCI_USERLISTSHOW" ref="ebbb6944d058b48277d6ab33eceab4b0adaf4fcbff4106254422fe17b75e874f" args="" --> +<b>SCI_USERLISTSHOW</b> = 2117 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02ac3fe1f83e26b7f0f5fb54b3062f95b"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSETAUTOHIDE" ref="ebbb6944d058b48277d6ab33eceab4b02ac3fe1f83e26b7f0f5fb54b3062f95b" args="" --> +<b>SCI_AUTOCSETAUTOHIDE</b> = 2118 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b086305ce93e6c5e754ad34fb14c90c780"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCGETAUTOHIDE" ref="ebbb6944d058b48277d6ab33eceab4b086305ce93e6c5e754ad34fb14c90c780" args="" --> +<b>SCI_AUTOCGETAUTOHIDE</b> = 2119 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0472c47965c6c637a965822cf95beba4e"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSETDROPRESTOFWORD" ref="ebbb6944d058b48277d6ab33eceab4b0472c47965c6c637a965822cf95beba4e" args="" --> +<b>SCI_AUTOCSETDROPRESTOFWORD</b> = 2270 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02416f900dbf0a5baf193b825f68a59c9"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCGETDROPRESTOFWORD" ref="ebbb6944d058b48277d6ab33eceab4b02416f900dbf0a5baf193b825f68a59c9" args="" --> +<b>SCI_AUTOCGETDROPRESTOFWORD</b> = 2271 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05c09d8a039b0dc139be2ef0c9777aca5"></a><!-- doxytag: member="QextScintillaBase::SCI_SETINDENT" ref="ebbb6944d058b48277d6ab33eceab4b05c09d8a039b0dc139be2ef0c9777aca5" args="" --> +<b>SCI_SETINDENT</b> = 2122 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0e0ca58420276a9c279b86f6e11b139e7"></a><!-- doxytag: member="QextScintillaBase::SCI_GETINDENT" ref="ebbb6944d058b48277d6ab33eceab4b0e0ca58420276a9c279b86f6e11b139e7" args="" --> +<b>SCI_GETINDENT</b> = 2123 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0987dfcb35bd7e3c912760934701d61ac"></a><!-- doxytag: member="QextScintillaBase::SCI_SETUSETABS" ref="ebbb6944d058b48277d6ab33eceab4b0987dfcb35bd7e3c912760934701d61ac" args="" --> +<b>SCI_SETUSETABS</b> = 2124 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d7e70681324424e1e2329d0be30ae4e3"></a><!-- doxytag: member="QextScintillaBase::SCI_GETUSETABS" ref="ebbb6944d058b48277d6ab33eceab4b0d7e70681324424e1e2329d0be30ae4e3" args="" --> +<b>SCI_GETUSETABS</b> = 2125 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07ea4db74939e1561b0b6752a5cada84c"></a><!-- doxytag: member="QextScintillaBase::SCI_SETLINEINDENTATION" ref="ebbb6944d058b48277d6ab33eceab4b07ea4db74939e1561b0b6752a5cada84c" args="" --> +<b>SCI_SETLINEINDENTATION</b> = 2126 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b044af4c50831b58ffa87a8943d1a6ccff"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLINEINDENTATION" ref="ebbb6944d058b48277d6ab33eceab4b044af4c50831b58ffa87a8943d1a6ccff" args="" --> +<b>SCI_GETLINEINDENTATION</b> = 2127 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08d1db59b554a9abd7facb36d912e3aee"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLINEINDENTPOSITION" ref="ebbb6944d058b48277d6ab33eceab4b08d1db59b554a9abd7facb36d912e3aee" args="" --> +<b>SCI_GETLINEINDENTPOSITION</b> = 2128 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0aa95ac73f367d2eba95719a5243d991c"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCOLUMN" ref="ebbb6944d058b48277d6ab33eceab4b0aa95ac73f367d2eba95719a5243d991c" args="" --> +<b>SCI_GETCOLUMN</b> = 2129 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0547e1dcfe9a0dbb289d7cc83eeac486b"></a><!-- doxytag: member="QextScintillaBase::SCI_SETHSCROLLBAR" ref="ebbb6944d058b48277d6ab33eceab4b0547e1dcfe9a0dbb289d7cc83eeac486b" args="" --> +<b>SCI_SETHSCROLLBAR</b> = 2130 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b044086c4ee774f90d6c206efbebc907f5"></a><!-- doxytag: member="QextScintillaBase::SCI_GETHSCROLLBAR" ref="ebbb6944d058b48277d6ab33eceab4b044086c4ee774f90d6c206efbebc907f5" args="" --> +<b>SCI_GETHSCROLLBAR</b> = 2131 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02c4b041cb40e19b8ae8d9f939cc09520"></a><!-- doxytag: member="QextScintillaBase::SCI_SETINDENTATIONGUIDES" ref="ebbb6944d058b48277d6ab33eceab4b02c4b041cb40e19b8ae8d9f939cc09520" args="" --> +<b>SCI_SETINDENTATIONGUIDES</b> = 2132 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b065f3dbddb8b2046f27519dacdf1e9c84"></a><!-- doxytag: member="QextScintillaBase::SCI_GETINDENTATIONGUIDES" ref="ebbb6944d058b48277d6ab33eceab4b065f3dbddb8b2046f27519dacdf1e9c84" args="" --> +<b>SCI_GETINDENTATIONGUIDES</b> = 2133 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01690898b2a86c9fb6b86662e52676ecc"></a><!-- doxytag: member="QextScintillaBase::SCI_SETHIGHLIGHTGUIDE" ref="ebbb6944d058b48277d6ab33eceab4b01690898b2a86c9fb6b86662e52676ecc" args="" --> +<b>SCI_SETHIGHLIGHTGUIDE</b> = 2134 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0acfa9b3d08ce631b62a1c79e1f167896"></a><!-- doxytag: member="QextScintillaBase::SCI_GETHIGHLIGHTGUIDE" ref="ebbb6944d058b48277d6ab33eceab4b0acfa9b3d08ce631b62a1c79e1f167896" args="" --> +<b>SCI_GETHIGHLIGHTGUIDE</b> = 2135 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0461abd26f6837c454ba016e8ca00cfc4"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLINEENDPOSITION" ref="ebbb6944d058b48277d6ab33eceab4b0461abd26f6837c454ba016e8ca00cfc4" args="" --> +<b>SCI_GETLINEENDPOSITION</b> = 2136 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09a04552fc23d22071e3d863c2e33feb7"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCODEPAGE" ref="ebbb6944d058b48277d6ab33eceab4b09a04552fc23d22071e3d863c2e33feb7" args="" --> +<b>SCI_GETCODEPAGE</b> = 2137 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0a8f4181352f64c865279cb2fbd2343bb"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCARETFORE" ref="ebbb6944d058b48277d6ab33eceab4b0a8f4181352f64c865279cb2fbd2343bb" args="" --> +<b>SCI_GETCARETFORE</b> = 2138 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01dd81dd103698962151dfd4ce746b778"></a><!-- doxytag: member="QextScintillaBase::SCI_GETUSEPALETTE" ref="ebbb6944d058b48277d6ab33eceab4b01dd81dd103698962151dfd4ce746b778" args="" --> +<b>SCI_GETUSEPALETTE</b> = 2139 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0918f3e57dfd152bfe12469d2d27de9db">SCI_GETREADONLY</a> = 2140 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08f8198351235bce8efe1c9fa4b69419e">SCI_SETCURRENTPOS</a> = 2141 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ebddd6096570dbdd51c8bf9b4ddbbfe4"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSELECTIONSTART" ref="ebbb6944d058b48277d6ab33eceab4b0ebddd6096570dbdd51c8bf9b4ddbbfe4" args="" --> +<b>SCI_SETSELECTIONSTART</b> = 2142 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0e2afc7a7990cd0e2e52d5af4d5e6eb1d"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSELECTIONSTART" ref="ebbb6944d058b48277d6ab33eceab4b0e2afc7a7990cd0e2e52d5af4d5e6eb1d" args="" --> +<b>SCI_GETSELECTIONSTART</b> = 2143 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b00297ad7bc728ae5f8af528921e8ef1b9"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSELECTIONEND" ref="ebbb6944d058b48277d6ab33eceab4b00297ad7bc728ae5f8af528921e8ef1b9" args="" --> +<b>SCI_SETSELECTIONEND</b> = 2144 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0862b1659ab397f9113f46f2728d6e70c"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSELECTIONEND" ref="ebbb6944d058b48277d6ab33eceab4b0862b1659ab397f9113f46f2728d6e70c" args="" --> +<b>SCI_GETSELECTIONEND</b> = 2145 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d4fd865eb75093c05de411febe60fbe5"></a><!-- doxytag: member="QextScintillaBase::SCI_SETPRINTMAGNIFICATION" ref="ebbb6944d058b48277d6ab33eceab4b0d4fd865eb75093c05de411febe60fbe5" args="" --> +<b>SCI_SETPRINTMAGNIFICATION</b> = 2146 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0472bbaaddea6140cbae5221a7dfc11d5"></a><!-- doxytag: member="QextScintillaBase::SCI_GETPRINTMAGNIFICATION" ref="ebbb6944d058b48277d6ab33eceab4b0472bbaaddea6140cbae5221a7dfc11d5" args="" --> +<b>SCI_GETPRINTMAGNIFICATION</b> = 2147 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02e367813ffffe3d13fb6fc0269d09da8"></a><!-- doxytag: member="QextScintillaBase::SCI_SETPRINTCOLOURMODE" ref="ebbb6944d058b48277d6ab33eceab4b02e367813ffffe3d13fb6fc0269d09da8" args="" --> +<b>SCI_SETPRINTCOLOURMODE</b> = 2148 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b064cf7258af2930f890a82d46a3ca3978"></a><!-- doxytag: member="QextScintillaBase::SCI_GETPRINTCOLOURMODE" ref="ebbb6944d058b48277d6ab33eceab4b064cf7258af2930f890a82d46a3ca3978" args="" --> +<b>SCI_GETPRINTCOLOURMODE</b> = 2149 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03025f9f4c80c3daa08e55d2567d5e19c"></a><!-- doxytag: member="QextScintillaBase::SCI_FINDTEXT" ref="ebbb6944d058b48277d6ab33eceab4b03025f9f4c80c3daa08e55d2567d5e19c" args="" --> +<b>SCI_FINDTEXT</b> = 2150 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f665dcb3393e6fabc6bf8bdee270c8aa"></a><!-- doxytag: member="QextScintillaBase::SCI_FORMATRANGE" ref="ebbb6944d058b48277d6ab33eceab4b0f665dcb3393e6fabc6bf8bdee270c8aa" args="" --> +<b>SCI_FORMATRANGE</b> = 2151 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05419308da82fc46935e63c7a6b957592"></a><!-- doxytag: member="QextScintillaBase::SCI_GETFIRSTVISIBLELINE" ref="ebbb6944d058b48277d6ab33eceab4b05419308da82fc46935e63c7a6b957592" args="" --> +<b>SCI_GETFIRSTVISIBLELINE</b> = 2152 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02ed5ef91ea1b40172ef140c8e0fec022"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLINE" ref="ebbb6944d058b48277d6ab33eceab4b02ed5ef91ea1b40172ef140c8e0fec022" args="" --> +<b>SCI_GETLINE</b> = 2153 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0028e9d5a331e998eb7820d4845ad86c3"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLINECOUNT" ref="ebbb6944d058b48277d6ab33eceab4b0028e9d5a331e998eb7820d4845ad86c3" args="" --> +<b>SCI_GETLINECOUNT</b> = 2154 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04208509f4d060c6bbda202187e197be7"></a><!-- doxytag: member="QextScintillaBase::SCI_SETMARGINLEFT" ref="ebbb6944d058b48277d6ab33eceab4b04208509f4d060c6bbda202187e197be7" args="" --> +<b>SCI_SETMARGINLEFT</b> = 2155 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b091480e5ad6b015af59e016743fc7c9f2"></a><!-- doxytag: member="QextScintillaBase::SCI_GETMARGINLEFT" ref="ebbb6944d058b48277d6ab33eceab4b091480e5ad6b015af59e016743fc7c9f2" args="" --> +<b>SCI_GETMARGINLEFT</b> = 2156 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0cfa2b203d5d4a1f3fe1569d33d110596"></a><!-- doxytag: member="QextScintillaBase::SCI_SETMARGINRIGHT" ref="ebbb6944d058b48277d6ab33eceab4b0cfa2b203d5d4a1f3fe1569d33d110596" args="" --> +<b>SCI_SETMARGINRIGHT</b> = 2157 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0cf544d97f6707bdf28ebf9ae786298a6"></a><!-- doxytag: member="QextScintillaBase::SCI_GETMARGINRIGHT" ref="ebbb6944d058b48277d6ab33eceab4b0cf544d97f6707bdf28ebf9ae786298a6" args="" --> +<b>SCI_GETMARGINRIGHT</b> = 2158 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b076256f845570b29f335820a97bd158a5">SCI_GETMODIFY</a> = 2159 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0db43289d59d747a1f74e01cc9df29445"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSEL" ref="ebbb6944d058b48277d6ab33eceab4b0db43289d59d747a1f74e01cc9df29445" args="" --> +<b>SCI_SETSEL</b> = 2160 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0783b04880fa9dc866d5edf1bcd39c130"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSELTEXT" ref="ebbb6944d058b48277d6ab33eceab4b0783b04880fa9dc866d5edf1bcd39c130" args="" --> +<b>SCI_GETSELTEXT</b> = 2161 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c8639b2748f3f9a9c002a353c493384c"></a><!-- doxytag: member="QextScintillaBase::SCI_GETTEXTRANGE" ref="ebbb6944d058b48277d6ab33eceab4b0c8639b2748f3f9a9c002a353c493384c" args="" --> +<b>SCI_GETTEXTRANGE</b> = 2162 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0a791e13ac4e6ee2ef147366a1cdfade1"></a><!-- doxytag: member="QextScintillaBase::SCI_HIDESELECTION" ref="ebbb6944d058b48277d6ab33eceab4b0a791e13ac4e6ee2ef147366a1cdfade1" args="" --> +<b>SCI_HIDESELECTION</b> = 2163 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0793595c6f20cab32e74e6b719dde7e4d"></a><!-- doxytag: member="QextScintillaBase::SCI_POINTXFROMPOSITION" ref="ebbb6944d058b48277d6ab33eceab4b0793595c6f20cab32e74e6b719dde7e4d" args="" --> +<b>SCI_POINTXFROMPOSITION</b> = 2164 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0bea2c5f810163d5bad6d06ac2c56c5b0"></a><!-- doxytag: member="QextScintillaBase::SCI_POINTYFROMPOSITION" ref="ebbb6944d058b48277d6ab33eceab4b0bea2c5f810163d5bad6d06ac2c56c5b0" args="" --> +<b>SCI_POINTYFROMPOSITION</b> = 2165 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f02a69b9e853d4106fc9413d6b591fb7"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEFROMPOSITION" ref="ebbb6944d058b48277d6ab33eceab4b0f02a69b9e853d4106fc9413d6b591fb7" args="" --> +<b>SCI_LINEFROMPOSITION</b> = 2166 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b058addf5d31545304f465aef4e47be298"></a><!-- doxytag: member="QextScintillaBase::SCI_POSITIONFROMLINE" ref="ebbb6944d058b48277d6ab33eceab4b058addf5d31545304f465aef4e47be298" args="" --> +<b>SCI_POSITIONFROMLINE</b> = 2167 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0683ab76d5d3ab7945833745c36e193d4"></a><!-- doxytag: member="QextScintillaBase::SCI_LINESCROLL" ref="ebbb6944d058b48277d6ab33eceab4b0683ab76d5d3ab7945833745c36e193d4" args="" --> +<b>SCI_LINESCROLL</b> = 2168 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02636e892c3d7c7094da13d34eb1db5ab"></a><!-- doxytag: member="QextScintillaBase::SCI_SCROLLCARET" ref="ebbb6944d058b48277d6ab33eceab4b02636e892c3d7c7094da13d34eb1db5ab" args="" --> +<b>SCI_SCROLLCARET</b> = 2169 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b087484fd3d285a1b5aca5009f536478bb"></a><!-- doxytag: member="QextScintillaBase::SCI_REPLACESEL" ref="ebbb6944d058b48277d6ab33eceab4b087484fd3d285a1b5aca5009f536478bb" args="" --> +<b>SCI_REPLACESEL</b> = 2170 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b059b1bb6d9d65ac410be6b66b2c426f14">SCI_SETREADONLY</a> = 2171 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0a85fb57278a6f553fc13f9034c8e921b"></a><!-- doxytag: member="QextScintillaBase::SCI_NULL" ref="ebbb6944d058b48277d6ab33eceab4b0a85fb57278a6f553fc13f9034c8e921b" args="" --> +<b>SCI_NULL</b> = 2172 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06f2aa502e76f40d50647861b3b488493"></a><!-- doxytag: member="QextScintillaBase::SCI_CANPASTE" ref="ebbb6944d058b48277d6ab33eceab4b06f2aa502e76f40d50647861b3b488493" args="" --> +<b>SCI_CANPASTE</b> = 2173 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0af962c08352603aced067a6624be1967"></a><!-- doxytag: member="QextScintillaBase::SCI_CANUNDO" ref="ebbb6944d058b48277d6ab33eceab4b0af962c08352603aced067a6624be1967" args="" --> +<b>SCI_CANUNDO</b> = 2174 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d3351e3d838d0ecd57d7d9873364e219">SCI_EMPTYUNDOBUFFER</a> = 2175 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09467d4b097a5e936b12e318182784119"></a><!-- doxytag: member="QextScintillaBase::SCI_UNDO" ref="ebbb6944d058b48277d6ab33eceab4b09467d4b097a5e936b12e318182784119" args="" --> +<b>SCI_UNDO</b> = 2176 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08564010a72051cfde3bd5d2e1258ed80"></a><!-- doxytag: member="QextScintillaBase::SCI_CUT" ref="ebbb6944d058b48277d6ab33eceab4b08564010a72051cfde3bd5d2e1258ed80" args="" --> +<b>SCI_CUT</b> = 2177 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f8680a383042478dc0e03b40e2c2b4b7"></a><!-- doxytag: member="QextScintillaBase::SCI_COPY" ref="ebbb6944d058b48277d6ab33eceab4b0f8680a383042478dc0e03b40e2c2b4b7" args="" --> +<b>SCI_COPY</b> = 2178 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f0eedc11c6eea0381f3efaf1e9e9352a"></a><!-- doxytag: member="QextScintillaBase::SCI_PASTE" ref="ebbb6944d058b48277d6ab33eceab4b0f0eedc11c6eea0381f3efaf1e9e9352a" args="" --> +<b>SCI_PASTE</b> = 2179 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ae321af55c38af0f18cef701c321f679"></a><!-- doxytag: member="QextScintillaBase::SCI_CLEAR" ref="ebbb6944d058b48277d6ab33eceab4b0ae321af55c38af0f18cef701c321f679" args="" --> +<b>SCI_CLEAR</b> = 2180 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b004da7b8cb076eacef2372b9bbfe4dc14">SCI_SETTEXT</a> = 2181 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b09d5e442a3812d53ac8067628098fedb0">SCI_GETTEXT</a> = 2182 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b034122ac033e32308cf188f718b0107e9">SCI_GETTEXTLENGTH</a> = 2183 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04a855576eb7389054caf77e46d99990e"></a><!-- doxytag: member="QextScintillaBase::SCI_GETDIRECTFUNCTION" ref="ebbb6944d058b48277d6ab33eceab4b04a855576eb7389054caf77e46d99990e" args="" --> +<b>SCI_GETDIRECTFUNCTION</b> = 2184 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b048ca3b3cd9475c881d608dbe69810d78"></a><!-- doxytag: member="QextScintillaBase::SCI_GETDIRECTPOINTER" ref="ebbb6944d058b48277d6ab33eceab4b048ca3b3cd9475c881d608dbe69810d78" args="" --> +<b>SCI_GETDIRECTPOINTER</b> = 2185 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0adc27d75941a59e92449929af9f00d17"></a><!-- doxytag: member="QextScintillaBase::SCI_SETOVERTYPE" ref="ebbb6944d058b48277d6ab33eceab4b0adc27d75941a59e92449929af9f00d17" args="" --> +<b>SCI_SETOVERTYPE</b> = 2186 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b084413c286c4f50d99ad47aa40662f346"></a><!-- doxytag: member="QextScintillaBase::SCI_GETOVERTYPE" ref="ebbb6944d058b48277d6ab33eceab4b084413c286c4f50d99ad47aa40662f346" args="" --> +<b>SCI_GETOVERTYPE</b> = 2187 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03c41fc138588eb4a756d29f8da4fe173"></a><!-- doxytag: member="QextScintillaBase::SCI_SETCARETWIDTH" ref="ebbb6944d058b48277d6ab33eceab4b03c41fc138588eb4a756d29f8da4fe173" args="" --> +<b>SCI_SETCARETWIDTH</b> = 2188 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0e0a7aa93bb6e3c6969a7bd54e6c3951c"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCARETWIDTH" ref="ebbb6944d058b48277d6ab33eceab4b0e0a7aa93bb6e3c6969a7bd54e6c3951c" args="" --> +<b>SCI_GETCARETWIDTH</b> = 2189 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f4901b773ca51b9edf3cf424f9b7e8bf"></a><!-- doxytag: member="QextScintillaBase::SCI_SETTARGETSTART" ref="ebbb6944d058b48277d6ab33eceab4b0f4901b773ca51b9edf3cf424f9b7e8bf" args="" --> +<b>SCI_SETTARGETSTART</b> = 2190 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08a565bf716f491c3c0c66abde2b3936f"></a><!-- doxytag: member="QextScintillaBase::SCI_GETTARGETSTART" ref="ebbb6944d058b48277d6ab33eceab4b08a565bf716f491c3c0c66abde2b3936f" args="" --> +<b>SCI_GETTARGETSTART</b> = 2191 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b084cad5547ce770247eeb6953ecf842fd"></a><!-- doxytag: member="QextScintillaBase::SCI_SETTARGETEND" ref="ebbb6944d058b48277d6ab33eceab4b084cad5547ce770247eeb6953ecf842fd" args="" --> +<b>SCI_SETTARGETEND</b> = 2192 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0039a5eac0f1f30d057a7501dd4b0c914"></a><!-- doxytag: member="QextScintillaBase::SCI_GETTARGETEND" ref="ebbb6944d058b48277d6ab33eceab4b0039a5eac0f1f30d057a7501dd4b0c914" args="" --> +<b>SCI_GETTARGETEND</b> = 2193 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04874f969b93db3cb445718776a78e48e"></a><!-- doxytag: member="QextScintillaBase::SCI_REPLACETARGET" ref="ebbb6944d058b48277d6ab33eceab4b04874f969b93db3cb445718776a78e48e" args="" --> +<b>SCI_REPLACETARGET</b> = 2194 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08dd000c2e973a216bd13b27e0436733a"></a><!-- doxytag: member="QextScintillaBase::SCI_REPLACETARGETRE" ref="ebbb6944d058b48277d6ab33eceab4b08dd000c2e973a216bd13b27e0436733a" args="" --> +<b>SCI_REPLACETARGETRE</b> = 2195 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0da3d9e97ab6c9f0d7f1a7eed453cbf1d"></a><!-- doxytag: member="QextScintillaBase::SCI_SEARCHINTARGET" ref="ebbb6944d058b48277d6ab33eceab4b0da3d9e97ab6c9f0d7f1a7eed453cbf1d" args="" --> +<b>SCI_SEARCHINTARGET</b> = 2197 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09aab593dd46f2dbf3236c0b3d6100acc"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSEARCHFLAGS" ref="ebbb6944d058b48277d6ab33eceab4b09aab593dd46f2dbf3236c0b3d6100acc" args="" --> +<b>SCI_SETSEARCHFLAGS</b> = 2198 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0275f07e92596223ecdf726915884a28a"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSEARCHFLAGS" ref="ebbb6944d058b48277d6ab33eceab4b0275f07e92596223ecdf726915884a28a" args="" --> +<b>SCI_GETSEARCHFLAGS</b> = 2199 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b098bb77cfc865dee49c9ae6ad70666067"></a><!-- doxytag: member="QextScintillaBase::SCI_CALLTIPSHOW" ref="ebbb6944d058b48277d6ab33eceab4b098bb77cfc865dee49c9ae6ad70666067" args="" --> +<b>SCI_CALLTIPSHOW</b> = 2200 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05116ce19b8fd835ca206900581bdaa82"></a><!-- doxytag: member="QextScintillaBase::SCI_CALLTIPCANCEL" ref="ebbb6944d058b48277d6ab33eceab4b05116ce19b8fd835ca206900581bdaa82" args="" --> +<b>SCI_CALLTIPCANCEL</b> = 2201 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0b8e53fffb619569f466e5e203513e89f"></a><!-- doxytag: member="QextScintillaBase::SCI_CALLTIPACTIVE" ref="ebbb6944d058b48277d6ab33eceab4b0b8e53fffb619569f466e5e203513e89f" args="" --> +<b>SCI_CALLTIPACTIVE</b> = 2202 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b045d0b012195ba0a2f0074c91e0a3d142"></a><!-- doxytag: member="QextScintillaBase::SCI_CALLTIPPOSSTART" ref="ebbb6944d058b48277d6ab33eceab4b045d0b012195ba0a2f0074c91e0a3d142" args="" --> +<b>SCI_CALLTIPPOSSTART</b> = 2203 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c186512e9236af0bd6a4f4b69371fd86"></a><!-- doxytag: member="QextScintillaBase::SCI_CALLTIPSETHLT" ref="ebbb6944d058b48277d6ab33eceab4b0c186512e9236af0bd6a4f4b69371fd86" args="" --> +<b>SCI_CALLTIPSETHLT</b> = 2204 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08bca93366b871e8ebd3e4c7f7f200cfa"></a><!-- doxytag: member="QextScintillaBase::SCI_CALLTIPSETBACK" ref="ebbb6944d058b48277d6ab33eceab4b08bca93366b871e8ebd3e4c7f7f200cfa" args="" --> +<b>SCI_CALLTIPSETBACK</b> = 2205 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0741590b84315ffde3193ddbb3af8001d"></a><!-- doxytag: member="QextScintillaBase::SCI_CALLTIPSETFORE" ref="ebbb6944d058b48277d6ab33eceab4b0741590b84315ffde3193ddbb3af8001d" args="" --> +<b>SCI_CALLTIPSETFORE</b> = 2206 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0fab25b0118be2cd40190b7c56b34750a"></a><!-- doxytag: member="QextScintillaBase::SCI_CALLTIPSETFOREHLT" ref="ebbb6944d058b48277d6ab33eceab4b0fab25b0118be2cd40190b7c56b34750a" args="" --> +<b>SCI_CALLTIPSETFOREHLT</b> = 2207 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03ffb55dfd866d1f52b8ccd4ea9a38f53"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSETMAXWIDTH" ref="ebbb6944d058b48277d6ab33eceab4b03ffb55dfd866d1f52b8ccd4ea9a38f53" args="" --> +<b>SCI_AUTOCSETMAXWIDTH</b> = 2208 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06dbe0ce64bfa95b7195baa307e3a2b0a"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCGETMAXWIDTH" ref="ebbb6944d058b48277d6ab33eceab4b06dbe0ce64bfa95b7195baa307e3a2b0a" args="" --> +<b>SCI_AUTOCGETMAXWIDTH</b> = 2209 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b001a84cc870c82a3f72954536e73cef90"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSETMAXHEIGHT" ref="ebbb6944d058b48277d6ab33eceab4b001a84cc870c82a3f72954536e73cef90" args="" --> +<b>SCI_AUTOCSETMAXHEIGHT</b> = 2210 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c94ee1e24fa6e93b4bbad931d38e0deb"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCGETMAXHEIGHT" ref="ebbb6944d058b48277d6ab33eceab4b0c94ee1e24fa6e93b4bbad931d38e0deb" args="" --> +<b>SCI_AUTOCGETMAXHEIGHT</b> = 2211 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f9f23fe32e055e07afc74e8bf2abe066"></a><!-- doxytag: member="QextScintillaBase::SCI_CALLTIPUSESTYLE" ref="ebbb6944d058b48277d6ab33eceab4b0f9f23fe32e055e07afc74e8bf2abe066" args="" --> +<b>SCI_CALLTIPUSESTYLE</b> = 2212 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08aa08149f10265526629b4671a672cf4"></a><!-- doxytag: member="QextScintillaBase::SCI_VISIBLEFROMDOCLINE" ref="ebbb6944d058b48277d6ab33eceab4b08aa08149f10265526629b4671a672cf4" args="" --> +<b>SCI_VISIBLEFROMDOCLINE</b> = 2220 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0103dab82522938b914afc4e781ec4c83"></a><!-- doxytag: member="QextScintillaBase::SCI_DOCLINEFROMVISIBLE" ref="ebbb6944d058b48277d6ab33eceab4b0103dab82522938b914afc4e781ec4c83" args="" --> +<b>SCI_DOCLINEFROMVISIBLE</b> = 2221 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06a4ac27202ad8fb6770f8c8314ab29fb"></a><!-- doxytag: member="QextScintillaBase::SCI_SETFOLDLEVEL" ref="ebbb6944d058b48277d6ab33eceab4b06a4ac27202ad8fb6770f8c8314ab29fb" args="" --> +<b>SCI_SETFOLDLEVEL</b> = 2222 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09140834fe387706f32f8b7e95bce2f63"></a><!-- doxytag: member="QextScintillaBase::SCI_GETFOLDLEVEL" ref="ebbb6944d058b48277d6ab33eceab4b09140834fe387706f32f8b7e95bce2f63" args="" --> +<b>SCI_GETFOLDLEVEL</b> = 2223 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0cb3a119b7d571d47cdce1df8f86ab587"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLASTCHILD" ref="ebbb6944d058b48277d6ab33eceab4b0cb3a119b7d571d47cdce1df8f86ab587" args="" --> +<b>SCI_GETLASTCHILD</b> = 2224 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b037df7d5656505fba063da57dc3e420f9"></a><!-- doxytag: member="QextScintillaBase::SCI_GETFOLDPARENT" ref="ebbb6944d058b48277d6ab33eceab4b037df7d5656505fba063da57dc3e420f9" args="" --> +<b>SCI_GETFOLDPARENT</b> = 2225 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b042a3ab8d1ac2fa6f9a8002a36f5efb24"></a><!-- doxytag: member="QextScintillaBase::SCI_SHOWLINES" ref="ebbb6944d058b48277d6ab33eceab4b042a3ab8d1ac2fa6f9a8002a36f5efb24" args="" --> +<b>SCI_SHOWLINES</b> = 2226 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c04a706dd789c062b479fb1c6b36f70d"></a><!-- doxytag: member="QextScintillaBase::SCI_HIDELINES" ref="ebbb6944d058b48277d6ab33eceab4b0c04a706dd789c062b479fb1c6b36f70d" args="" --> +<b>SCI_HIDELINES</b> = 2227 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b063bfed0930ee4c9bf54a49682e6d9642"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLINEVISIBLE" ref="ebbb6944d058b48277d6ab33eceab4b063bfed0930ee4c9bf54a49682e6d9642" args="" --> +<b>SCI_GETLINEVISIBLE</b> = 2228 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b068c22e516a8fc5a9f6cbf268cb2ce1f5"></a><!-- doxytag: member="QextScintillaBase::SCI_SETFOLDEXPANDED" ref="ebbb6944d058b48277d6ab33eceab4b068c22e516a8fc5a9f6cbf268cb2ce1f5" args="" --> +<b>SCI_SETFOLDEXPANDED</b> = 2229 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b064ea96b64a2e7dd4605cc320a3be83b5"></a><!-- doxytag: member="QextScintillaBase::SCI_GETFOLDEXPANDED" ref="ebbb6944d058b48277d6ab33eceab4b064ea96b64a2e7dd4605cc320a3be83b5" args="" --> +<b>SCI_GETFOLDEXPANDED</b> = 2230 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b059ca4de86fce26258e2e1b7760d8ba0e"></a><!-- doxytag: member="QextScintillaBase::SCI_TOGGLEFOLD" ref="ebbb6944d058b48277d6ab33eceab4b059ca4de86fce26258e2e1b7760d8ba0e" args="" --> +<b>SCI_TOGGLEFOLD</b> = 2231 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0903101105b8fe71fcaac10691150d8b0"></a><!-- doxytag: member="QextScintillaBase::SCI_ENSUREVISIBLE" ref="ebbb6944d058b48277d6ab33eceab4b0903101105b8fe71fcaac10691150d8b0" args="" --> +<b>SCI_ENSUREVISIBLE</b> = 2232 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0eb806f777ba484f6bd04a37ba3a920d7"></a><!-- doxytag: member="QextScintillaBase::SCI_SETFOLDFLAGS" ref="ebbb6944d058b48277d6ab33eceab4b0eb806f777ba484f6bd04a37ba3a920d7" args="" --> +<b>SCI_SETFOLDFLAGS</b> = 2233 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0deb6da1fe5e2a8b009b54638ef931883"></a><!-- doxytag: member="QextScintillaBase::SCI_ENSUREVISIBLEENFORCEPOLICY" ref="ebbb6944d058b48277d6ab33eceab4b0deb6da1fe5e2a8b009b54638ef931883" args="" --> +<b>SCI_ENSUREVISIBLEENFORCEPOLICY</b> = 2234 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0410478b3fadab1a7aba71dd3e62e954b"></a><!-- doxytag: member="QextScintillaBase::SCI_WRAPCOUNT" ref="ebbb6944d058b48277d6ab33eceab4b0410478b3fadab1a7aba71dd3e62e954b" args="" --> +<b>SCI_WRAPCOUNT</b> = 2235 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b013bb24f1a3d1e03a62a1302e7f8aacd5"></a><!-- doxytag: member="QextScintillaBase::SCI_SETTABINDENTS" ref="ebbb6944d058b48277d6ab33eceab4b013bb24f1a3d1e03a62a1302e7f8aacd5" args="" --> +<b>SCI_SETTABINDENTS</b> = 2260 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0b7b4e83af6a34dda3673da939a6a541b"></a><!-- doxytag: member="QextScintillaBase::SCI_GETTABINDENTS" ref="ebbb6944d058b48277d6ab33eceab4b0b7b4e83af6a34dda3673da939a6a541b" args="" --> +<b>SCI_GETTABINDENTS</b> = 2261 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ad0432970bd35f7cd8c60ed220e29afa"></a><!-- doxytag: member="QextScintillaBase::SCI_SETBACKSPACEUNINDENTS" ref="ebbb6944d058b48277d6ab33eceab4b0ad0432970bd35f7cd8c60ed220e29afa" args="" --> +<b>SCI_SETBACKSPACEUNINDENTS</b> = 2262 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06c5e5ae910087d51c39317806a8c4301"></a><!-- doxytag: member="QextScintillaBase::SCI_GETBACKSPACEUNINDENTS" ref="ebbb6944d058b48277d6ab33eceab4b06c5e5ae910087d51c39317806a8c4301" args="" --> +<b>SCI_GETBACKSPACEUNINDENTS</b> = 2263 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b00ca7d8b90e243482a4a023f3ef77fce1"></a><!-- doxytag: member="QextScintillaBase::SCI_SETMOUSEDWELLTIME" ref="ebbb6944d058b48277d6ab33eceab4b00ca7d8b90e243482a4a023f3ef77fce1" args="" --> +<b>SCI_SETMOUSEDWELLTIME</b> = 2264 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b015abf15b3fba1f1a2556402bac373dce"></a><!-- doxytag: member="QextScintillaBase::SCI_GETMOUSEDWELLTIME" ref="ebbb6944d058b48277d6ab33eceab4b015abf15b3fba1f1a2556402bac373dce" args="" --> +<b>SCI_GETMOUSEDWELLTIME</b> = 2265 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ae329f2938fb491fb91bc84c9fd0c6bc"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDSTARTPOSITION" ref="ebbb6944d058b48277d6ab33eceab4b0ae329f2938fb491fb91bc84c9fd0c6bc" args="" --> +<b>SCI_WORDSTARTPOSITION</b> = 2266 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ce6ac3c3c9df05cbe935bba77f1767a0"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDENDPOSITION" ref="ebbb6944d058b48277d6ab33eceab4b0ce6ac3c3c9df05cbe935bba77f1767a0" args="" --> +<b>SCI_WORDENDPOSITION</b> = 2267 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0a4face19287a63e3aed193bdafda73c1"></a><!-- doxytag: member="QextScintillaBase::SCI_SETWRAPMODE" ref="ebbb6944d058b48277d6ab33eceab4b0a4face19287a63e3aed193bdafda73c1" args="" --> +<b>SCI_SETWRAPMODE</b> = 2268 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01f1ab28fde9def2c8a2ce61b74c85ea3"></a><!-- doxytag: member="QextScintillaBase::SCI_GETWRAPMODE" ref="ebbb6944d058b48277d6ab33eceab4b01f1ab28fde9def2c8a2ce61b74c85ea3" args="" --> +<b>SCI_GETWRAPMODE</b> = 2269 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0b74ef365428dcafe458d06447b0b908e"></a><!-- doxytag: member="QextScintillaBase::SCI_SETLAYOUTCACHE" ref="ebbb6944d058b48277d6ab33eceab4b0b74ef365428dcafe458d06447b0b908e" args="" --> +<b>SCI_SETLAYOUTCACHE</b> = 2272 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0431d17fa002636270a66a32671467c9e"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLAYOUTCACHE" ref="ebbb6944d058b48277d6ab33eceab4b0431d17fa002636270a66a32671467c9e" args="" --> +<b>SCI_GETLAYOUTCACHE</b> = 2273 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f5a57083a9eca06f1f343e2a90f396f9"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSCROLLWIDTH" ref="ebbb6944d058b48277d6ab33eceab4b0f5a57083a9eca06f1f343e2a90f396f9" args="" --> +<b>SCI_SETSCROLLWIDTH</b> = 2274 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04c118076ec377ba3976a4c4fc0d0e486"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSCROLLWIDTH" ref="ebbb6944d058b48277d6ab33eceab4b04c118076ec377ba3976a4c4fc0d0e486" args="" --> +<b>SCI_GETSCROLLWIDTH</b> = 2275 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05a873177612d3225d21459d889b51a20">SCI_TEXTWIDTH</a> = 2276 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0fc98f0ebd58508eec151282b993bc946"></a><!-- doxytag: member="QextScintillaBase::SCI_SETENDATLASTLINE" ref="ebbb6944d058b48277d6ab33eceab4b0fc98f0ebd58508eec151282b993bc946" args="" --> +<b>SCI_SETENDATLASTLINE</b> = 2277 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b00d86fd3126827beec8d405fa38e7a9c7"></a><!-- doxytag: member="QextScintillaBase::SCI_GETENDATLASTLINE" ref="ebbb6944d058b48277d6ab33eceab4b00d86fd3126827beec8d405fa38e7a9c7" args="" --> +<b>SCI_GETENDATLASTLINE</b> = 2278 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07bfc8b3280a16689258adfb30ea527ba"></a><!-- doxytag: member="QextScintillaBase::SCI_TEXTHEIGHT" ref="ebbb6944d058b48277d6ab33eceab4b07bfc8b3280a16689258adfb30ea527ba" args="" --> +<b>SCI_TEXTHEIGHT</b> = 2279 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09b779c8e6c8da8d15f98038b9327e924"></a><!-- doxytag: member="QextScintillaBase::SCI_SETVSCROLLBAR" ref="ebbb6944d058b48277d6ab33eceab4b09b779c8e6c8da8d15f98038b9327e924" args="" --> +<b>SCI_SETVSCROLLBAR</b> = 2280 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0078de244880fe22a9d2be80836bc7fe0"></a><!-- doxytag: member="QextScintillaBase::SCI_GETVSCROLLBAR" ref="ebbb6944d058b48277d6ab33eceab4b0078de244880fe22a9d2be80836bc7fe0" args="" --> +<b>SCI_GETVSCROLLBAR</b> = 2281 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01a2578f46d3a0af6375434b16494bc8c"></a><!-- doxytag: member="QextScintillaBase::SCI_APPENDTEXT" ref="ebbb6944d058b48277d6ab33eceab4b01a2578f46d3a0af6375434b16494bc8c" args="" --> +<b>SCI_APPENDTEXT</b> = 2282 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01231ff5fa21198fed257e4273e4e14ec"></a><!-- doxytag: member="QextScintillaBase::SCI_GETTWOPHASEDRAW" ref="ebbb6944d058b48277d6ab33eceab4b01231ff5fa21198fed257e4273e4e14ec" args="" --> +<b>SCI_GETTWOPHASEDRAW</b> = 2283 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0713e92f6680ff87261d48991bc3589dc"></a><!-- doxytag: member="QextScintillaBase::SCI_SETTWOPHASEDRAW" ref="ebbb6944d058b48277d6ab33eceab4b0713e92f6680ff87261d48991bc3589dc" args="" --> +<b>SCI_SETTWOPHASEDRAW</b> = 2284 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0735e0e77d4d3ee74f0923a8156093bfb"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCGETTYPESEPARATOR" ref="ebbb6944d058b48277d6ab33eceab4b0735e0e77d4d3ee74f0923a8156093bfb" args="" --> +<b>SCI_AUTOCGETTYPESEPARATOR</b> = 2285 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ddcc08b928791c084ec9257545d70c81"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCSETTYPESEPARATOR" ref="ebbb6944d058b48277d6ab33eceab4b0ddcc08b928791c084ec9257545d70c81" args="" --> +<b>SCI_AUTOCSETTYPESEPARATOR</b> = 2286 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b00672635a2e12eb846a2c8884a05ef455"></a><!-- doxytag: member="QextScintillaBase::SCI_TARGETFROMSELECTION" ref="ebbb6944d058b48277d6ab33eceab4b00672635a2e12eb846a2c8884a05ef455" args="" --> +<b>SCI_TARGETFROMSELECTION</b> = 2287 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04778e83b79b023ee83e42919a066c590"></a><!-- doxytag: member="QextScintillaBase::SCI_LINESJOIN" ref="ebbb6944d058b48277d6ab33eceab4b04778e83b79b023ee83e42919a066c590" args="" --> +<b>SCI_LINESJOIN</b> = 2288 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0adcff6c519ca19ee964f0eafc7e9ca2e"></a><!-- doxytag: member="QextScintillaBase::SCI_LINESSPLIT" ref="ebbb6944d058b48277d6ab33eceab4b0adcff6c519ca19ee964f0eafc7e9ca2e" args="" --> +<b>SCI_LINESSPLIT</b> = 2289 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b053e3646969db215760518b960fd1180f"></a><!-- doxytag: member="QextScintillaBase::SCI_SETFOLDMARGINCOLOUR" ref="ebbb6944d058b48277d6ab33eceab4b053e3646969db215760518b960fd1180f" args="" --> +<b>SCI_SETFOLDMARGINCOLOUR</b> = 2290 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08001a90910ff7b6aed4f5cf25ec78daa"></a><!-- doxytag: member="QextScintillaBase::SCI_SETFOLDMARGINHICOLOUR" ref="ebbb6944d058b48277d6ab33eceab4b08001a90910ff7b6aed4f5cf25ec78daa" args="" --> +<b>SCI_SETFOLDMARGINHICOLOUR</b> = 2291 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ef3d0d8d4397f20d9b2efeb6aa297a33"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEDOWN" ref="ebbb6944d058b48277d6ab33eceab4b0ef3d0d8d4397f20d9b2efeb6aa297a33" args="" --> +<b>SCI_LINEDOWN</b> = 2300 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d8ae970ee7944bc9914649b534cbc1ad"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEDOWNEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0d8ae970ee7944bc9914649b534cbc1ad" args="" --> +<b>SCI_LINEDOWNEXTEND</b> = 2301 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05dedb6ac1710993da3219d1c761e9a35"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEUP" ref="ebbb6944d058b48277d6ab33eceab4b05dedb6ac1710993da3219d1c761e9a35" args="" --> +<b>SCI_LINEUP</b> = 2302 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0b473b76f8388cfa7d6a45291bd90640f"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEUPEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0b473b76f8388cfa7d6a45291bd90640f" args="" --> +<b>SCI_LINEUPEXTEND</b> = 2303 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d3f904b015c3ca5b4523c8dea3eae958"></a><!-- doxytag: member="QextScintillaBase::SCI_CHARLEFT" ref="ebbb6944d058b48277d6ab33eceab4b0d3f904b015c3ca5b4523c8dea3eae958" args="" --> +<b>SCI_CHARLEFT</b> = 2304 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07cf369f5032762ed38c8964f419b2859"></a><!-- doxytag: member="QextScintillaBase::SCI_CHARLEFTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b07cf369f5032762ed38c8964f419b2859" args="" --> +<b>SCI_CHARLEFTEXTEND</b> = 2305 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c87925355da2ddb35b58175e9368a2dd"></a><!-- doxytag: member="QextScintillaBase::SCI_CHARRIGHT" ref="ebbb6944d058b48277d6ab33eceab4b0c87925355da2ddb35b58175e9368a2dd" args="" --> +<b>SCI_CHARRIGHT</b> = 2306 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f35c2dad6d392a72ff3eb171eb2cfa91"></a><!-- doxytag: member="QextScintillaBase::SCI_CHARRIGHTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0f35c2dad6d392a72ff3eb171eb2cfa91" args="" --> +<b>SCI_CHARRIGHTEXTEND</b> = 2307 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0824cfbb4482723020766102127f9e7d9"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDLEFT" ref="ebbb6944d058b48277d6ab33eceab4b0824cfbb4482723020766102127f9e7d9" args="" --> +<b>SCI_WORDLEFT</b> = 2308 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b094100e41d01d49c888a556ffc832f0a6"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDLEFTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b094100e41d01d49c888a556ffc832f0a6" args="" --> +<b>SCI_WORDLEFTEXTEND</b> = 2309 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03a0fe446310f5c5371bc4f6f3b2bd1e7"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDRIGHT" ref="ebbb6944d058b48277d6ab33eceab4b03a0fe446310f5c5371bc4f6f3b2bd1e7" args="" --> +<b>SCI_WORDRIGHT</b> = 2310 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0e609782f92c817678868a765ef37c152"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDRIGHTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0e609782f92c817678868a765ef37c152" args="" --> +<b>SCI_WORDRIGHTEXTEND</b> = 2311 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ded5ec9aeabc892cda4e8a5bbce351e3"></a><!-- doxytag: member="QextScintillaBase::SCI_HOME" ref="ebbb6944d058b48277d6ab33eceab4b0ded5ec9aeabc892cda4e8a5bbce351e3" args="" --> +<b>SCI_HOME</b> = 2312 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0018551082604b9d43290bdadc5693d26"></a><!-- doxytag: member="QextScintillaBase::SCI_HOMEEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0018551082604b9d43290bdadc5693d26" args="" --> +<b>SCI_HOMEEXTEND</b> = 2313 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05097c80f9ee78fedbcab18a7fb64b42e"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEEND" ref="ebbb6944d058b48277d6ab33eceab4b05097c80f9ee78fedbcab18a7fb64b42e" args="" --> +<b>SCI_LINEEND</b> = 2314 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b040074360615ef3561f687880c5371005"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEENDEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b040074360615ef3561f687880c5371005" args="" --> +<b>SCI_LINEENDEXTEND</b> = 2315 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07ec10deca36ff33bb05dfae439f17984"></a><!-- doxytag: member="QextScintillaBase::SCI_DOCUMENTSTART" ref="ebbb6944d058b48277d6ab33eceab4b07ec10deca36ff33bb05dfae439f17984" args="" --> +<b>SCI_DOCUMENTSTART</b> = 2316 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09bd2ac113428a76a7e6efeb916dbbc77"></a><!-- doxytag: member="QextScintillaBase::SCI_DOCUMENTSTARTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b09bd2ac113428a76a7e6efeb916dbbc77" args="" --> +<b>SCI_DOCUMENTSTARTEXTEND</b> = 2317 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04f3d39d042326db79cf7a761122e2174"></a><!-- doxytag: member="QextScintillaBase::SCI_DOCUMENTEND" ref="ebbb6944d058b48277d6ab33eceab4b04f3d39d042326db79cf7a761122e2174" args="" --> +<b>SCI_DOCUMENTEND</b> = 2318 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05c5ed401b85c896ef2a9b2a531603b21"></a><!-- doxytag: member="QextScintillaBase::SCI_DOCUMENTENDEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b05c5ed401b85c896ef2a9b2a531603b21" args="" --> +<b>SCI_DOCUMENTENDEXTEND</b> = 2319 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03f49f841e149468f5211434aa6b2cee2"></a><!-- doxytag: member="QextScintillaBase::SCI_PAGEUP" ref="ebbb6944d058b48277d6ab33eceab4b03f49f841e149468f5211434aa6b2cee2" args="" --> +<b>SCI_PAGEUP</b> = 2320 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ccb16a84be4f6c261ce79fdffcd27099"></a><!-- doxytag: member="QextScintillaBase::SCI_PAGEUPEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0ccb16a84be4f6c261ce79fdffcd27099" args="" --> +<b>SCI_PAGEUPEXTEND</b> = 2321 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b00d518c3479b568452bf90bf0c171f1b8"></a><!-- doxytag: member="QextScintillaBase::SCI_PAGEDOWN" ref="ebbb6944d058b48277d6ab33eceab4b00d518c3479b568452bf90bf0c171f1b8" args="" --> +<b>SCI_PAGEDOWN</b> = 2322 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b013bd3c74189e035fd41c51bf48c3d2df"></a><!-- doxytag: member="QextScintillaBase::SCI_PAGEDOWNEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b013bd3c74189e035fd41c51bf48c3d2df" args="" --> +<b>SCI_PAGEDOWNEXTEND</b> = 2323 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09dfa7aa3b68e398c2ae561674fd463bb"></a><!-- doxytag: member="QextScintillaBase::SCI_EDITTOGGLEOVERTYPE" ref="ebbb6944d058b48277d6ab33eceab4b09dfa7aa3b68e398c2ae561674fd463bb" args="" --> +<b>SCI_EDITTOGGLEOVERTYPE</b> = 2324 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ee149e7f03705486e580d9b0dc155128"></a><!-- doxytag: member="QextScintillaBase::SCI_CANCEL" ref="ebbb6944d058b48277d6ab33eceab4b0ee149e7f03705486e580d9b0dc155128" args="" --> +<b>SCI_CANCEL</b> = 2325 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0315bd7fb1e54b4b32e4ac15f8d8c6063"></a><!-- doxytag: member="QextScintillaBase::SCI_DELETEBACK" ref="ebbb6944d058b48277d6ab33eceab4b0315bd7fb1e54b4b32e4ac15f8d8c6063" args="" --> +<b>SCI_DELETEBACK</b> = 2326 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04fa4b7ffee93d91c4edec8e5738f635e"></a><!-- doxytag: member="QextScintillaBase::SCI_TAB" ref="ebbb6944d058b48277d6ab33eceab4b04fa4b7ffee93d91c4edec8e5738f635e" args="" --> +<b>SCI_TAB</b> = 2327 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f2a6ecc17768d587e29907f1eeb78768"></a><!-- doxytag: member="QextScintillaBase::SCI_BACKTAB" ref="ebbb6944d058b48277d6ab33eceab4b0f2a6ecc17768d587e29907f1eeb78768" args="" --> +<b>SCI_BACKTAB</b> = 2328 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09af1a32891d5e44d94edde369b9a5bd1"></a><!-- doxytag: member="QextScintillaBase::SCI_NEWLINE" ref="ebbb6944d058b48277d6ab33eceab4b09af1a32891d5e44d94edde369b9a5bd1" args="" --> +<b>SCI_NEWLINE</b> = 2329 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0bd38068d7c76153ded3f2f4804572b21"></a><!-- doxytag: member="QextScintillaBase::SCI_FORMFEED" ref="ebbb6944d058b48277d6ab33eceab4b0bd38068d7c76153ded3f2f4804572b21" args="" --> +<b>SCI_FORMFEED</b> = 2330 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d00c8ac530d4bbe833b33eaad62bf665"></a><!-- doxytag: member="QextScintillaBase::SCI_VCHOME" ref="ebbb6944d058b48277d6ab33eceab4b0d00c8ac530d4bbe833b33eaad62bf665" args="" --> +<b>SCI_VCHOME</b> = 2331 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07992a8effdc2e042fbd50becc8be9588"></a><!-- doxytag: member="QextScintillaBase::SCI_VCHOMEEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b07992a8effdc2e042fbd50becc8be9588" args="" --> +<b>SCI_VCHOMEEXTEND</b> = 2332 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04e664d46b1f5f89860293c6678d719ee"></a><!-- doxytag: member="QextScintillaBase::SCI_ZOOMIN" ref="ebbb6944d058b48277d6ab33eceab4b04e664d46b1f5f89860293c6678d719ee" args="" --> +<b>SCI_ZOOMIN</b> = 2333 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b060877c21423713bd216917aa531691a5"></a><!-- doxytag: member="QextScintillaBase::SCI_ZOOMOUT" ref="ebbb6944d058b48277d6ab33eceab4b060877c21423713bd216917aa531691a5" args="" --> +<b>SCI_ZOOMOUT</b> = 2334 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02e12341bcd3b7fe0a7658989a71c2136"></a><!-- doxytag: member="QextScintillaBase::SCI_DELWORDLEFT" ref="ebbb6944d058b48277d6ab33eceab4b02e12341bcd3b7fe0a7658989a71c2136" args="" --> +<b>SCI_DELWORDLEFT</b> = 2335 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b034fdaa036a834223f541732cce1e4fac"></a><!-- doxytag: member="QextScintillaBase::SCI_DELWORDRIGHT" ref="ebbb6944d058b48277d6ab33eceab4b034fdaa036a834223f541732cce1e4fac" args="" --> +<b>SCI_DELWORDRIGHT</b> = 2336 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b026e1a8d247aec5ef433144b1c10f3c3b"></a><!-- doxytag: member="QextScintillaBase::SCI_LINECUT" ref="ebbb6944d058b48277d6ab33eceab4b026e1a8d247aec5ef433144b1c10f3c3b" args="" --> +<b>SCI_LINECUT</b> = 2337 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b010fe99cffeb582e636417aa36cfa8123"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEDELETE" ref="ebbb6944d058b48277d6ab33eceab4b010fe99cffeb582e636417aa36cfa8123" args="" --> +<b>SCI_LINEDELETE</b> = 2338 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01e34b8aff1780cddc7bdd806b3925c88"></a><!-- doxytag: member="QextScintillaBase::SCI_LINETRANSPOSE" ref="ebbb6944d058b48277d6ab33eceab4b01e34b8aff1780cddc7bdd806b3925c88" args="" --> +<b>SCI_LINETRANSPOSE</b> = 2339 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0eb4701c2f0befe36e9ea1aec2f792226"></a><!-- doxytag: member="QextScintillaBase::SCI_LOWERCASE" ref="ebbb6944d058b48277d6ab33eceab4b0eb4701c2f0befe36e9ea1aec2f792226" args="" --> +<b>SCI_LOWERCASE</b> = 2340 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04ebb007705751635d55023060b03cb9f"></a><!-- doxytag: member="QextScintillaBase::SCI_UPPERCASE" ref="ebbb6944d058b48277d6ab33eceab4b04ebb007705751635d55023060b03cb9f" args="" --> +<b>SCI_UPPERCASE</b> = 2341 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0368e3fd6d99f87e92e68ccd63570c71e"></a><!-- doxytag: member="QextScintillaBase::SCI_LINESCROLLDOWN" ref="ebbb6944d058b48277d6ab33eceab4b0368e3fd6d99f87e92e68ccd63570c71e" args="" --> +<b>SCI_LINESCROLLDOWN</b> = 2342 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b066a5f8be985a68623402901b34b398d5"></a><!-- doxytag: member="QextScintillaBase::SCI_LINESCROLLUP" ref="ebbb6944d058b48277d6ab33eceab4b066a5f8be985a68623402901b34b398d5" args="" --> +<b>SCI_LINESCROLLUP</b> = 2343 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0a33305ffe38a7c76b75b01b97b8d0b63"></a><!-- doxytag: member="QextScintillaBase::SCI_DELETEBACKNOTLINE" ref="ebbb6944d058b48277d6ab33eceab4b0a33305ffe38a7c76b75b01b97b8d0b63" args="" --> +<b>SCI_DELETEBACKNOTLINE</b> = 2344 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f31fb54c11e73857a5d4af12a26e8094"></a><!-- doxytag: member="QextScintillaBase::SCI_HOMEDISPLAY" ref="ebbb6944d058b48277d6ab33eceab4b0f31fb54c11e73857a5d4af12a26e8094" args="" --> +<b>SCI_HOMEDISPLAY</b> = 2345 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0387195d29b5c6cbe1fe7d3bba303d27f"></a><!-- doxytag: member="QextScintillaBase::SCI_HOMEDISPLAYEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0387195d29b5c6cbe1fe7d3bba303d27f" args="" --> +<b>SCI_HOMEDISPLAYEXTEND</b> = 2346 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f4e8401d3c34de29047a6e2b92f56a30"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEENDDISPLAY" ref="ebbb6944d058b48277d6ab33eceab4b0f4e8401d3c34de29047a6e2b92f56a30" args="" --> +<b>SCI_LINEENDDISPLAY</b> = 2347 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b047e90178d2c9cc5b52345f95e0e6bd1d"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEENDDISPLAYEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b047e90178d2c9cc5b52345f95e0e6bd1d" args="" --> +<b>SCI_LINEENDDISPLAYEXTEND</b> = 2348 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05bcd08e9607264e4483dbb0352f59a9d"></a><!-- doxytag: member="QextScintillaBase::SCI_MOVECARETINSIDEVIEW" ref="ebbb6944d058b48277d6ab33eceab4b05bcd08e9607264e4483dbb0352f59a9d" args="" --> +<b>SCI_MOVECARETINSIDEVIEW</b> = 2401 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01eb2cb98612a419bd1be3045d9e2383d"></a><!-- doxytag: member="QextScintillaBase::SCI_LINELENGTH" ref="ebbb6944d058b48277d6ab33eceab4b01eb2cb98612a419bd1be3045d9e2383d" args="" --> +<b>SCI_LINELENGTH</b> = 2350 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b00f1b70b3e2f477d147817ca43a77a02e"></a><!-- doxytag: member="QextScintillaBase::SCI_BRACEHIGHLIGHT" ref="ebbb6944d058b48277d6ab33eceab4b00f1b70b3e2f477d147817ca43a77a02e" args="" --> +<b>SCI_BRACEHIGHLIGHT</b> = 2351 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05130d5ee0fb001b67e77c47fc460bcf7"></a><!-- doxytag: member="QextScintillaBase::SCI_BRACEBADLIGHT" ref="ebbb6944d058b48277d6ab33eceab4b05130d5ee0fb001b67e77c47fc460bcf7" args="" --> +<b>SCI_BRACEBADLIGHT</b> = 2352 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c2b65e20820c0470f374332796d22bc9"></a><!-- doxytag: member="QextScintillaBase::SCI_BRACEMATCH" ref="ebbb6944d058b48277d6ab33eceab4b0c2b65e20820c0470f374332796d22bc9" args="" --> +<b>SCI_BRACEMATCH</b> = 2353 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b073d49e9adfe644dc0dc82697b1f70733"></a><!-- doxytag: member="QextScintillaBase::SCI_GETVIEWEOL" ref="ebbb6944d058b48277d6ab33eceab4b073d49e9adfe644dc0dc82697b1f70733" args="" --> +<b>SCI_GETVIEWEOL</b> = 2355 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b001b93f6b27050201a88f8543b8670bbb"></a><!-- doxytag: member="QextScintillaBase::SCI_SETVIEWEOL" ref="ebbb6944d058b48277d6ab33eceab4b001b93f6b27050201a88f8543b8670bbb" args="" --> +<b>SCI_SETVIEWEOL</b> = 2356 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08731b13ac6f6825bdfae7b9ff830865f"></a><!-- doxytag: member="QextScintillaBase::SCI_GETDOCPOINTER" ref="ebbb6944d058b48277d6ab33eceab4b08731b13ac6f6825bdfae7b9ff830865f" args="" --> +<b>SCI_GETDOCPOINTER</b> = 2357 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02977c530b6d163ea51de56d80ba51258"></a><!-- doxytag: member="QextScintillaBase::SCI_SETDOCPOINTER" ref="ebbb6944d058b48277d6ab33eceab4b02977c530b6d163ea51de56d80ba51258" args="" --> +<b>SCI_SETDOCPOINTER</b> = 2358 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b017422b7cd417893e35052be8a53bec92"></a><!-- doxytag: member="QextScintillaBase::SCI_SETMODEVENTMASK" ref="ebbb6944d058b48277d6ab33eceab4b017422b7cd417893e35052be8a53bec92" args="" --> +<b>SCI_SETMODEVENTMASK</b> = 2359 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b085edf8b5ee50e42168e7e9da7a83e256"></a><!-- doxytag: member="QextScintillaBase::SCI_GETEDGECOLUMN" ref="ebbb6944d058b48277d6ab33eceab4b085edf8b5ee50e42168e7e9da7a83e256" args="" --> +<b>SCI_GETEDGECOLUMN</b> = 2360 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03f7ec38f5cbf72fe56f79cb7e2fb1630"></a><!-- doxytag: member="QextScintillaBase::SCI_SETEDGECOLUMN" ref="ebbb6944d058b48277d6ab33eceab4b03f7ec38f5cbf72fe56f79cb7e2fb1630" args="" --> +<b>SCI_SETEDGECOLUMN</b> = 2361 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c49d5b562e4da13c31e9f8fd43cc88b5"></a><!-- doxytag: member="QextScintillaBase::SCI_GETEDGEMODE" ref="ebbb6944d058b48277d6ab33eceab4b0c49d5b562e4da13c31e9f8fd43cc88b5" args="" --> +<b>SCI_GETEDGEMODE</b> = 2362 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0877e8c35c2e86551ade3dffa279c593c"></a><!-- doxytag: member="QextScintillaBase::SCI_SETEDGEMODE" ref="ebbb6944d058b48277d6ab33eceab4b0877e8c35c2e86551ade3dffa279c593c" args="" --> +<b>SCI_SETEDGEMODE</b> = 2363 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04123fd37c165c916cf896ac4cc4dea7f"></a><!-- doxytag: member="QextScintillaBase::SCI_GETEDGECOLOUR" ref="ebbb6944d058b48277d6ab33eceab4b04123fd37c165c916cf896ac4cc4dea7f" args="" --> +<b>SCI_GETEDGECOLOUR</b> = 2364 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d0963754a667853dc8f6734777b7eb36"></a><!-- doxytag: member="QextScintillaBase::SCI_SETEDGECOLOUR" ref="ebbb6944d058b48277d6ab33eceab4b0d0963754a667853dc8f6734777b7eb36" args="" --> +<b>SCI_SETEDGECOLOUR</b> = 2365 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07c7603a2133fd89b7f78558a391b5f0a"></a><!-- doxytag: member="QextScintillaBase::SCI_SEARCHANCHOR" ref="ebbb6944d058b48277d6ab33eceab4b07c7603a2133fd89b7f78558a391b5f0a" args="" --> +<b>SCI_SEARCHANCHOR</b> = 2366 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0a68f183ae19b82d06990b999f1bc8522"></a><!-- doxytag: member="QextScintillaBase::SCI_SEARCHNEXT" ref="ebbb6944d058b48277d6ab33eceab4b0a68f183ae19b82d06990b999f1bc8522" args="" --> +<b>SCI_SEARCHNEXT</b> = 2367 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0002e97e33b7c0b2128a2067aef5b003a"></a><!-- doxytag: member="QextScintillaBase::SCI_SEARCHPREV" ref="ebbb6944d058b48277d6ab33eceab4b0002e97e33b7c0b2128a2067aef5b003a" args="" --> +<b>SCI_SEARCHPREV</b> = 2368 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0717eee57d4af386b83ec3b24c76a57bc"></a><!-- doxytag: member="QextScintillaBase::SCI_LINESONSCREEN" ref="ebbb6944d058b48277d6ab33eceab4b0717eee57d4af386b83ec3b24c76a57bc" args="" --> +<b>SCI_LINESONSCREEN</b> = 2370 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06db22a294e289fa0593e1e3adbe095d1"></a><!-- doxytag: member="QextScintillaBase::SCI_USEPOPUP" ref="ebbb6944d058b48277d6ab33eceab4b06db22a294e289fa0593e1e3adbe095d1" args="" --> +<b>SCI_USEPOPUP</b> = 2371 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f57882469de245844f00052e5158ede7"></a><!-- doxytag: member="QextScintillaBase::SCI_SELECTIONISRECTANGLE" ref="ebbb6944d058b48277d6ab33eceab4b0f57882469de245844f00052e5158ede7" args="" --> +<b>SCI_SELECTIONISRECTANGLE</b> = 2372 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04f07234e1a919d4eacbe9739a9380fe3"></a><!-- doxytag: member="QextScintillaBase::SCI_SETZOOM" ref="ebbb6944d058b48277d6ab33eceab4b04f07234e1a919d4eacbe9739a9380fe3" args="" --> +<b>SCI_SETZOOM</b> = 2373 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ed1e3d6fa5528ba2d734850b7b3f89cd"></a><!-- doxytag: member="QextScintillaBase::SCI_GETZOOM" ref="ebbb6944d058b48277d6ab33eceab4b0ed1e3d6fa5528ba2d734850b7b3f89cd" args="" --> +<b>SCI_GETZOOM</b> = 2374 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07eafffa827f26202f0aae06f2adcd72b"></a><!-- doxytag: member="QextScintillaBase::SCI_CREATEDOCUMENT" ref="ebbb6944d058b48277d6ab33eceab4b07eafffa827f26202f0aae06f2adcd72b" args="" --> +<b>SCI_CREATEDOCUMENT</b> = 2375 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ca52e38dd9d2cd4351e0978f42f5472c"></a><!-- doxytag: member="QextScintillaBase::SCI_ADDREFDOCUMENT" ref="ebbb6944d058b48277d6ab33eceab4b0ca52e38dd9d2cd4351e0978f42f5472c" args="" --> +<b>SCI_ADDREFDOCUMENT</b> = 2376 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b00fa7aed4f0d84cf0ec48863cdb9e505c"></a><!-- doxytag: member="QextScintillaBase::SCI_RELEASEDOCUMENT" ref="ebbb6944d058b48277d6ab33eceab4b00fa7aed4f0d84cf0ec48863cdb9e505c" args="" --> +<b>SCI_RELEASEDOCUMENT</b> = 2377 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d66fb73549456e0f354a87bb508b514c"></a><!-- doxytag: member="QextScintillaBase::SCI_GETMODEVENTMASK" ref="ebbb6944d058b48277d6ab33eceab4b0d66fb73549456e0f354a87bb508b514c" args="" --> +<b>SCI_GETMODEVENTMASK</b> = 2378 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0bba51ea801c779c67afe711715b0eb2e"></a><!-- doxytag: member="QextScintillaBase::SCI_SETFOCUS" ref="ebbb6944d058b48277d6ab33eceab4b0bba51ea801c779c67afe711715b0eb2e" args="" --> +<b>SCI_SETFOCUS</b> = 2380 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b057d522c96310263e32473bf050e3ba71"></a><!-- doxytag: member="QextScintillaBase::SCI_GETFOCUS" ref="ebbb6944d058b48277d6ab33eceab4b057d522c96310263e32473bf050e3ba71" args="" --> +<b>SCI_GETFOCUS</b> = 2381 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0a0bfa556b53dd9e9194af5572a2f8daf"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSTATUS" ref="ebbb6944d058b48277d6ab33eceab4b0a0bfa556b53dd9e9194af5572a2f8daf" args="" --> +<b>SCI_SETSTATUS</b> = 2382 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08509ec22857b1895dfcc244282b22ccb"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSTATUS" ref="ebbb6944d058b48277d6ab33eceab4b08509ec22857b1895dfcc244282b22ccb" args="" --> +<b>SCI_GETSTATUS</b> = 2383 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0553e11be5b9d3d1a362a910b8690a985"></a><!-- doxytag: member="QextScintillaBase::SCI_SETMOUSEDOWNCAPTURES" ref="ebbb6944d058b48277d6ab33eceab4b0553e11be5b9d3d1a362a910b8690a985" args="" --> +<b>SCI_SETMOUSEDOWNCAPTURES</b> = 2384 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06406f8e26f0352c997d6dbb969fcb3d3"></a><!-- doxytag: member="QextScintillaBase::SCI_GETMOUSEDOWNCAPTURES" ref="ebbb6944d058b48277d6ab33eceab4b06406f8e26f0352c997d6dbb969fcb3d3" args="" --> +<b>SCI_GETMOUSEDOWNCAPTURES</b> = 2385 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0bd99345dae4993159e9f9d06ca8615da"></a><!-- doxytag: member="QextScintillaBase::SCI_SETCURSOR" ref="ebbb6944d058b48277d6ab33eceab4b0bd99345dae4993159e9f9d06ca8615da" args="" --> +<b>SCI_SETCURSOR</b> = 2386 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01225d6887fd53ae1e9eec4af7e039129"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCURSOR" ref="ebbb6944d058b48277d6ab33eceab4b01225d6887fd53ae1e9eec4af7e039129" args="" --> +<b>SCI_GETCURSOR</b> = 2387 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b044bb24c7aa65d2ddc3bd2cc37e58643b"></a><!-- doxytag: member="QextScintillaBase::SCI_SETCONTROLCHARSYMBOL" ref="ebbb6944d058b48277d6ab33eceab4b044bb24c7aa65d2ddc3bd2cc37e58643b" args="" --> +<b>SCI_SETCONTROLCHARSYMBOL</b> = 2388 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01fb0d0d406538a95a75184478d5ebcfb"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCONTROLCHARSYMBOL" ref="ebbb6944d058b48277d6ab33eceab4b01fb0d0d406538a95a75184478d5ebcfb" args="" --> +<b>SCI_GETCONTROLCHARSYMBOL</b> = 2389 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b026937583192dfba9f60a66e37ec1b163"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDPARTLEFT" ref="ebbb6944d058b48277d6ab33eceab4b026937583192dfba9f60a66e37ec1b163" args="" --> +<b>SCI_WORDPARTLEFT</b> = 2390 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0dd57a4ac231f2f7d41d9509dfb04f63a"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDPARTLEFTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0dd57a4ac231f2f7d41d9509dfb04f63a" args="" --> +<b>SCI_WORDPARTLEFTEXTEND</b> = 2391 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b049b4ff24308418e4b7168f954d9c264d"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDPARTRIGHT" ref="ebbb6944d058b48277d6ab33eceab4b049b4ff24308418e4b7168f954d9c264d" args="" --> +<b>SCI_WORDPARTRIGHT</b> = 2392 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b001a8792882f625a7e45436cefeb03ca8"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDPARTRIGHTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b001a8792882f625a7e45436cefeb03ca8" args="" --> +<b>SCI_WORDPARTRIGHTEXTEND</b> = 2393 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b00ed72e391648ef31ddc876ef30e4c0e1"></a><!-- doxytag: member="QextScintillaBase::SCI_SETVISIBLEPOLICY" ref="ebbb6944d058b48277d6ab33eceab4b00ed72e391648ef31ddc876ef30e4c0e1" args="" --> +<b>SCI_SETVISIBLEPOLICY</b> = 2394 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b012bca3cc9ce7fa26674b02d038229073"></a><!-- doxytag: member="QextScintillaBase::SCI_DELLINELEFT" ref="ebbb6944d058b48277d6ab33eceab4b012bca3cc9ce7fa26674b02d038229073" args="" --> +<b>SCI_DELLINELEFT</b> = 2395 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f4451d1785cf408eb56d7637cb700aba"></a><!-- doxytag: member="QextScintillaBase::SCI_DELLINERIGHT" ref="ebbb6944d058b48277d6ab33eceab4b0f4451d1785cf408eb56d7637cb700aba" args="" --> +<b>SCI_DELLINERIGHT</b> = 2396 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0e57a1990b29b23db534f0885e8380035"></a><!-- doxytag: member="QextScintillaBase::SCI_SETXOFFSET" ref="ebbb6944d058b48277d6ab33eceab4b0e57a1990b29b23db534f0885e8380035" args="" --> +<b>SCI_SETXOFFSET</b> = 2397 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0215cf512db2b2b9d53722f87e4f9f0b6"></a><!-- doxytag: member="QextScintillaBase::SCI_GETXOFFSET" ref="ebbb6944d058b48277d6ab33eceab4b0215cf512db2b2b9d53722f87e4f9f0b6" args="" --> +<b>SCI_GETXOFFSET</b> = 2398 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0792e0af62ea8790e5f71c5e1015ce75e"></a><!-- doxytag: member="QextScintillaBase::SCI_CHOOSECARETX" ref="ebbb6944d058b48277d6ab33eceab4b0792e0af62ea8790e5f71c5e1015ce75e" args="" --> +<b>SCI_CHOOSECARETX</b> = 2399 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02d4414520d6b0396b700f73e97cd6ed7"></a><!-- doxytag: member="QextScintillaBase::SCI_GRABFOCUS" ref="ebbb6944d058b48277d6ab33eceab4b02d4414520d6b0396b700f73e97cd6ed7" args="" --> +<b>SCI_GRABFOCUS</b> = 2400 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0971e48068e169646224f96061e90712e"></a><!-- doxytag: member="QextScintillaBase::SCI_SETXCARETPOLICY" ref="ebbb6944d058b48277d6ab33eceab4b0971e48068e169646224f96061e90712e" args="" --> +<b>SCI_SETXCARETPOLICY</b> = 2402 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02601e925732ea9444f0f504aabfc2435"></a><!-- doxytag: member="QextScintillaBase::SCI_SETYCARETPOLICY" ref="ebbb6944d058b48277d6ab33eceab4b02601e925732ea9444f0f504aabfc2435" args="" --> +<b>SCI_SETYCARETPOLICY</b> = 2403 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f201efd13448ce325042d49b482a8c2c"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEDUPLICATE" ref="ebbb6944d058b48277d6ab33eceab4b0f201efd13448ce325042d49b482a8c2c" args="" --> +<b>SCI_LINEDUPLICATE</b> = 2404 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b041ef59413dbfaeb8d13cde610dffb659">SCI_REGISTERIMAGE</a> = 2405 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0103009549a5e66052de9aada5f0525eb"></a><!-- doxytag: member="QextScintillaBase::SCI_SETPRINTWRAPMODE" ref="ebbb6944d058b48277d6ab33eceab4b0103009549a5e66052de9aada5f0525eb" args="" --> +<b>SCI_SETPRINTWRAPMODE</b> = 2406 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0aef0ecc10e0300b5dd3cf56862f37031"></a><!-- doxytag: member="QextScintillaBase::SCI_GETPRINTWRAPMODE" ref="ebbb6944d058b48277d6ab33eceab4b0aef0ecc10e0300b5dd3cf56862f37031" args="" --> +<b>SCI_GETPRINTWRAPMODE</b> = 2407 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0eb5af129108965033a6ae40eb45f7789">SCI_CLEARREGISTEREDIMAGES</a> = 2408 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09fc4db5a6449d1c33ce8a2924532a0f3"></a><!-- doxytag: member="QextScintillaBase::SCI_STYLESETHOTSPOT" ref="ebbb6944d058b48277d6ab33eceab4b09fc4db5a6449d1c33ce8a2924532a0f3" args="" --> +<b>SCI_STYLESETHOTSPOT</b> = 2409 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0eacfba54b58a8943c669b584a7804861"></a><!-- doxytag: member="QextScintillaBase::SCI_SETHOTSPOTACTIVEFORE" ref="ebbb6944d058b48277d6ab33eceab4b0eacfba54b58a8943c669b584a7804861" args="" --> +<b>SCI_SETHOTSPOTACTIVEFORE</b> = 2410 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0034f5fa462db7995dc9393bfd51d829c"></a><!-- doxytag: member="QextScintillaBase::SCI_SETHOTSPOTACTIVEBACK" ref="ebbb6944d058b48277d6ab33eceab4b0034f5fa462db7995dc9393bfd51d829c" args="" --> +<b>SCI_SETHOTSPOTACTIVEBACK</b> = 2411 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0fa48f985054b701877c7d3e7ae6fb7ac"></a><!-- doxytag: member="QextScintillaBase::SCI_SETHOTSPOTACTIVEUNDERLINE" ref="ebbb6944d058b48277d6ab33eceab4b0fa48f985054b701877c7d3e7ae6fb7ac" args="" --> +<b>SCI_SETHOTSPOTACTIVEUNDERLINE</b> = 2412 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d7091b04b566f82b7d1283e905b59a6b"></a><!-- doxytag: member="QextScintillaBase::SCI_PARADOWN" ref="ebbb6944d058b48277d6ab33eceab4b0d7091b04b566f82b7d1283e905b59a6b" args="" --> +<b>SCI_PARADOWN</b> = 2413 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c87ccc6883b19d5b90ad355acd69953a"></a><!-- doxytag: member="QextScintillaBase::SCI_PARADOWNEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0c87ccc6883b19d5b90ad355acd69953a" args="" --> +<b>SCI_PARADOWNEXTEND</b> = 2414 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b085ca3dab9de4b598dfc2ad7793e6aa03"></a><!-- doxytag: member="QextScintillaBase::SCI_PARAUP" ref="ebbb6944d058b48277d6ab33eceab4b085ca3dab9de4b598dfc2ad7793e6aa03" args="" --> +<b>SCI_PARAUP</b> = 2415 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0b66e41c9947e2c677aa13e9ae09edc71"></a><!-- doxytag: member="QextScintillaBase::SCI_PARAUPEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0b66e41c9947e2c677aa13e9ae09edc71" args="" --> +<b>SCI_PARAUPEXTEND</b> = 2416 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f4ef2996c5efc3f028f9bede7766d6a3"></a><!-- doxytag: member="QextScintillaBase::SCI_POSITIONBEFORE" ref="ebbb6944d058b48277d6ab33eceab4b0f4ef2996c5efc3f028f9bede7766d6a3" args="" --> +<b>SCI_POSITIONBEFORE</b> = 2417 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0832191e9f00dc8660324161115e17d8a"></a><!-- doxytag: member="QextScintillaBase::SCI_POSITIONAFTER" ref="ebbb6944d058b48277d6ab33eceab4b0832191e9f00dc8660324161115e17d8a" args="" --> +<b>SCI_POSITIONAFTER</b> = 2418 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0b480656ab571da98cac8d6ed28494ec5"></a><!-- doxytag: member="QextScintillaBase::SCI_COPYRANGE" ref="ebbb6944d058b48277d6ab33eceab4b0b480656ab571da98cac8d6ed28494ec5" args="" --> +<b>SCI_COPYRANGE</b> = 2419 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03777bdbd25a8dcf1b17d229de81eaa19"></a><!-- doxytag: member="QextScintillaBase::SCI_COPYTEXT" ref="ebbb6944d058b48277d6ab33eceab4b03777bdbd25a8dcf1b17d229de81eaa19" args="" --> +<b>SCI_COPYTEXT</b> = 2420 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0874c724470a6b5e62ff38dd0390ac6cc"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSELECTIONMODE" ref="ebbb6944d058b48277d6ab33eceab4b0874c724470a6b5e62ff38dd0390ac6cc" args="" --> +<b>SCI_SETSELECTIONMODE</b> = 2422 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06da95fcde76eabb71d52fb95da974920"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSELECTIONMODE" ref="ebbb6944d058b48277d6ab33eceab4b06da95fcde76eabb71d52fb95da974920" args="" --> +<b>SCI_GETSELECTIONMODE</b> = 2423 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b084085d3cbc5a0f036f3925c29c8333bb"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLINESELSTARTPOSITION" ref="ebbb6944d058b48277d6ab33eceab4b084085d3cbc5a0f036f3925c29c8333bb" args="" --> +<b>SCI_GETLINESELSTARTPOSITION</b> = 2424 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d3d3887fbe2415e395aa942dcca80ebf"></a><!-- doxytag: member="QextScintillaBase::SCI_GETLINESELENDPOSITION" ref="ebbb6944d058b48277d6ab33eceab4b0d3d3887fbe2415e395aa942dcca80ebf" args="" --> +<b>SCI_GETLINESELENDPOSITION</b> = 2425 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c6f2230033ee61efb583811f4f30a1c1"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEDOWNRECTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0c6f2230033ee61efb583811f4f30a1c1" args="" --> +<b>SCI_LINEDOWNRECTEXTEND</b> = 2426 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0057edb2c4c51d01e2bc7a75ad8ac831d"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEUPRECTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0057edb2c4c51d01e2bc7a75ad8ac831d" args="" --> +<b>SCI_LINEUPRECTEXTEND</b> = 2427 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0922d8cec322989f875255557c91b4de3"></a><!-- doxytag: member="QextScintillaBase::SCI_CHARLEFTRECTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0922d8cec322989f875255557c91b4de3" args="" --> +<b>SCI_CHARLEFTRECTEXTEND</b> = 2428 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d8f164bab5ac0d59e0e5590c6e4e5d08"></a><!-- doxytag: member="QextScintillaBase::SCI_CHARRIGHTRECTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0d8f164bab5ac0d59e0e5590c6e4e5d08" args="" --> +<b>SCI_CHARRIGHTRECTEXTEND</b> = 2429 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02f55a6ce8a92b18d4c638357563580d3"></a><!-- doxytag: member="QextScintillaBase::SCI_HOMERECTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b02f55a6ce8a92b18d4c638357563580d3" args="" --> +<b>SCI_HOMERECTEXTEND</b> = 2430 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b046fa7f43fe8e52f253d315b42ae23785"></a><!-- doxytag: member="QextScintillaBase::SCI_VCHOMERECTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b046fa7f43fe8e52f253d315b42ae23785" args="" --> +<b>SCI_VCHOMERECTEXTEND</b> = 2431 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b005bba2ba84ab69a05f268e4f8320ceb0"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEENDRECTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b005bba2ba84ab69a05f268e4f8320ceb0" args="" --> +<b>SCI_LINEENDRECTEXTEND</b> = 2432 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02d27ba2f8facb518879eaed7e5fed5bf"></a><!-- doxytag: member="QextScintillaBase::SCI_PAGEUPRECTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b02d27ba2f8facb518879eaed7e5fed5bf" args="" --> +<b>SCI_PAGEUPRECTEXTEND</b> = 2433 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0038185f1849e588c497108d4b5808e4b"></a><!-- doxytag: member="QextScintillaBase::SCI_PAGEDOWNRECTEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0038185f1849e588c497108d4b5808e4b" args="" --> +<b>SCI_PAGEDOWNRECTEXTEND</b> = 2434 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06e59b3a89ba12cdf9e6d6f4ed966a2ce"></a><!-- doxytag: member="QextScintillaBase::SCI_STUTTEREDPAGEUP" ref="ebbb6944d058b48277d6ab33eceab4b06e59b3a89ba12cdf9e6d6f4ed966a2ce" args="" --> +<b>SCI_STUTTEREDPAGEUP</b> = 2435 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0858443ca1ef67930f5c21bdd1bf2a580"></a><!-- doxytag: member="QextScintillaBase::SCI_STUTTEREDPAGEUPEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0858443ca1ef67930f5c21bdd1bf2a580" args="" --> +<b>SCI_STUTTEREDPAGEUPEXTEND</b> = 2436 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0690c40429fa3fa01f5acf5cc0f177799"></a><!-- doxytag: member="QextScintillaBase::SCI_STUTTEREDPAGEDOWN" ref="ebbb6944d058b48277d6ab33eceab4b0690c40429fa3fa01f5acf5cc0f177799" args="" --> +<b>SCI_STUTTEREDPAGEDOWN</b> = 2437 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0837b8a85b9b56ee0472397994f3c1e22"></a><!-- doxytag: member="QextScintillaBase::SCI_STUTTEREDPAGEDOWNEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0837b8a85b9b56ee0472397994f3c1e22" args="" --> +<b>SCI_STUTTEREDPAGEDOWNEXTEND</b> = 2438 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01a4dfe053178cd65980cf1241cfcda6c"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDLEFTEND" ref="ebbb6944d058b48277d6ab33eceab4b01a4dfe053178cd65980cf1241cfcda6c" args="" --> +<b>SCI_WORDLEFTEND</b> = 2439 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d565ab9c4d453833263b51256c82ce40"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDLEFTENDEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0d565ab9c4d453833263b51256c82ce40" args="" --> +<b>SCI_WORDLEFTENDEXTEND</b> = 2440 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d768aebd504d9b11fbc4b1dcfa982ed4"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDRIGHTEND" ref="ebbb6944d058b48277d6ab33eceab4b0d768aebd504d9b11fbc4b1dcfa982ed4" args="" --> +<b>SCI_WORDRIGHTEND</b> = 2441 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ee3fffe1f798f2b2e997785ada87e836"></a><!-- doxytag: member="QextScintillaBase::SCI_WORDRIGHTENDEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0ee3fffe1f798f2b2e997785ada87e836" args="" --> +<b>SCI_WORDRIGHTENDEXTEND</b> = 2442 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b031ad07969049e21cfb44cc359570c493"></a><!-- doxytag: member="QextScintillaBase::SCI_SETWHITESPACECHARS" ref="ebbb6944d058b48277d6ab33eceab4b031ad07969049e21cfb44cc359570c493" args="" --> +<b>SCI_SETWHITESPACECHARS</b> = 2443 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05f6725547a885a264dc9f10ffd2a74c8"></a><!-- doxytag: member="QextScintillaBase::SCI_SETCHARSDEFAULT" ref="ebbb6944d058b48277d6ab33eceab4b05f6725547a885a264dc9f10ffd2a74c8" args="" --> +<b>SCI_SETCHARSDEFAULT</b> = 2444 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b032a5787ac49c0aafc27e039cc5d1fff7"></a><!-- doxytag: member="QextScintillaBase::SCI_AUTOCGETCURRENT" ref="ebbb6944d058b48277d6ab33eceab4b032a5787ac49c0aafc27e039cc5d1fff7" args="" --> +<b>SCI_AUTOCGETCURRENT</b> = 2445 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b097212f28e370bb67e39fc458422c9030"></a><!-- doxytag: member="QextScintillaBase::SCI_ALLOCATE" ref="ebbb6944d058b48277d6ab33eceab4b097212f28e370bb67e39fc458422c9030" args="" --> +<b>SCI_ALLOCATE</b> = 2446 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0115baa9ca589653c459c176ef6489725"></a><!-- doxytag: member="QextScintillaBase::SCI_HOMEWRAP" ref="ebbb6944d058b48277d6ab33eceab4b0115baa9ca589653c459c176ef6489725" args="" --> +<b>SCI_HOMEWRAP</b> = 2349 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b051907fc214c4c8ec307d48a632b91664"></a><!-- doxytag: member="QextScintillaBase::SCI_HOMEWRAPEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b051907fc214c4c8ec307d48a632b91664" args="" --> +<b>SCI_HOMEWRAPEXTEND</b> = 2450 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06b0de6fd8565c2ab7d3bc52a773d92a4"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEENDWRAP" ref="ebbb6944d058b48277d6ab33eceab4b06b0de6fd8565c2ab7d3bc52a773d92a4" args="" --> +<b>SCI_LINEENDWRAP</b> = 2451 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0babeb9bc3575203df633d6565b341e49"></a><!-- doxytag: member="QextScintillaBase::SCI_LINEENDWRAPEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b0babeb9bc3575203df633d6565b341e49" args="" --> +<b>SCI_LINEENDWRAPEXTEND</b> = 2452 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c29a84c5fa61842f1d9ab8ec338af164"></a><!-- doxytag: member="QextScintillaBase::SCI_VCHOMEWRAP" ref="ebbb6944d058b48277d6ab33eceab4b0c29a84c5fa61842f1d9ab8ec338af164" args="" --> +<b>SCI_VCHOMEWRAP</b> = 2453 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09b5ba0311d315577f763e0a24a8a0a32"></a><!-- doxytag: member="QextScintillaBase::SCI_VCHOMEWRAPEXTEND" ref="ebbb6944d058b48277d6ab33eceab4b09b5ba0311d315577f763e0a24a8a0a32" args="" --> +<b>SCI_VCHOMEWRAPEXTEND</b> = 2454 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ed75bcaf522e48601f074b8d2e861706"></a><!-- doxytag: member="QextScintillaBase::SCI_LINECOPY" ref="ebbb6944d058b48277d6ab33eceab4b0ed75bcaf522e48601f074b8d2e861706" args="" --> +<b>SCI_LINECOPY</b> = 2455 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0712793f4c6fc75a85ea464a1e08efd58"></a><!-- doxytag: member="QextScintillaBase::SCI_FINDCOLUMN" ref="ebbb6944d058b48277d6ab33eceab4b0712793f4c6fc75a85ea464a1e08efd58" args="" --> +<b>SCI_FINDCOLUMN</b> = 2456 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07e3a6c6c06bfbe056be1e3d2f2f637d5"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCARETSTICKY" ref="ebbb6944d058b48277d6ab33eceab4b07e3a6c6c06bfbe056be1e3d2f2f637d5" args="" --> +<b>SCI_GETCARETSTICKY</b> = 2457 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b00e3f27b0c83225ebc0f0e2df58e2d398"></a><!-- doxytag: member="QextScintillaBase::SCI_SETCARETSTICKY" ref="ebbb6944d058b48277d6ab33eceab4b00e3f27b0c83225ebc0f0e2df58e2d398" args="" --> +<b>SCI_SETCARETSTICKY</b> = 2458 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07a83bf9165ded645cb2106c1966bf784"></a><!-- doxytag: member="QextScintillaBase::SCI_TOGGLECARETSTICKY" ref="ebbb6944d058b48277d6ab33eceab4b07a83bf9165ded645cb2106c1966bf784" args="" --> +<b>SCI_TOGGLECARETSTICKY</b> = 2459 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0e7b55a398b075456d8777a4af1fcbccd"></a><!-- doxytag: member="QextScintillaBase::SCI_SETWRAPVISUALFLAGS" ref="ebbb6944d058b48277d6ab33eceab4b0e7b55a398b075456d8777a4af1fcbccd" args="" --> +<b>SCI_SETWRAPVISUALFLAGS</b> = 2460 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09b6c2fc353dcff6e3b5477255830db18"></a><!-- doxytag: member="QextScintillaBase::SCI_GETWRAPVISUALFLAGS" ref="ebbb6944d058b48277d6ab33eceab4b09b6c2fc353dcff6e3b5477255830db18" args="" --> +<b>SCI_GETWRAPVISUALFLAGS</b> = 2461 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0b1d10d5a307926c2febd1cfc6cdb4bf4"></a><!-- doxytag: member="QextScintillaBase::SCI_SETWRAPVISUALFLAGSLOCATION" ref="ebbb6944d058b48277d6ab33eceab4b0b1d10d5a307926c2febd1cfc6cdb4bf4" args="" --> +<b>SCI_SETWRAPVISUALFLAGSLOCATION</b> = 2462 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b02c4dd6064ef88d43315d600e8649f5ec"></a><!-- doxytag: member="QextScintillaBase::SCI_GETWRAPVISUALFLAGSLOCATION" ref="ebbb6944d058b48277d6ab33eceab4b02c4dd6064ef88d43315d600e8649f5ec" args="" --> +<b>SCI_GETWRAPVISUALFLAGSLOCATION</b> = 2463 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0986bd4ec4d4854d4f7d4624566c6f053"></a><!-- doxytag: member="QextScintillaBase::SCI_SETWRAPSTARTINDENT" ref="ebbb6944d058b48277d6ab33eceab4b0986bd4ec4d4854d4f7d4624566c6f053" args="" --> +<b>SCI_SETWRAPSTARTINDENT</b> = 2464 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b010ad3afbf4cda4d448ea2802e817e63e"></a><!-- doxytag: member="QextScintillaBase::SCI_GETWRAPSTARTINDENT" ref="ebbb6944d058b48277d6ab33eceab4b010ad3afbf4cda4d448ea2802e817e63e" args="" --> +<b>SCI_GETWRAPSTARTINDENT</b> = 2465 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05027a61821b847441044d7ffd625537c"></a><!-- doxytag: member="QextScintillaBase::SCI_MARKERADDSET" ref="ebbb6944d058b48277d6ab33eceab4b05027a61821b847441044d7ffd625537c" args="" --> +<b>SCI_MARKERADDSET</b> = 2466 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09e04f0be5a596643750b168d6b2993ce"></a><!-- doxytag: member="QextScintillaBase::SCI_SETPASTECONVERTENDINGS" ref="ebbb6944d058b48277d6ab33eceab4b09e04f0be5a596643750b168d6b2993ce" args="" --> +<b>SCI_SETPASTECONVERTENDINGS</b> = 2467 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0e25cfb05a41d8532ec66abfa10b43bac"></a><!-- doxytag: member="QextScintillaBase::SCI_GETPASTECONVERTENDINGS" ref="ebbb6944d058b48277d6ab33eceab4b0e25cfb05a41d8532ec66abfa10b43bac" args="" --> +<b>SCI_GETPASTECONVERTENDINGS</b> = 2468 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0922a2ccc2012c0d57ba97da5a39d596e"></a><!-- doxytag: member="QextScintillaBase::SCI_SELECTIONDUPLICATE" ref="ebbb6944d058b48277d6ab33eceab4b0922a2ccc2012c0d57ba97da5a39d596e" args="" --> +<b>SCI_SELECTIONDUPLICATE</b> = 2469 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0566f98aeedd4431ffdb547e6e8498003"></a><!-- doxytag: member="QextScintillaBase::SCI_SETCARETLINEBACKALPHA" ref="ebbb6944d058b48277d6ab33eceab4b0566f98aeedd4431ffdb547e6e8498003" args="" --> +<b>SCI_SETCARETLINEBACKALPHA</b> = 2470 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b055076fbd1d6ad2a595f531ac6d05da31"></a><!-- doxytag: member="QextScintillaBase::SCI_GETCARETLINEBACKALPHA" ref="ebbb6944d058b48277d6ab33eceab4b055076fbd1d6ad2a595f531ac6d05da31" args="" --> +<b>SCI_GETCARETLINEBACKALPHA</b> = 2471 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06afe5ebd6379000b93da9e544d04bbd8"></a><!-- doxytag: member="QextScintillaBase::SCI_MARKERSETALPHA" ref="ebbb6944d058b48277d6ab33eceab4b06afe5ebd6379000b93da9e544d04bbd8" args="" --> +<b>SCI_MARKERSETALPHA</b> = 2476 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06d7b9ed1f5ddbea9068d4933481b7ab9"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSELALPHA" ref="ebbb6944d058b48277d6ab33eceab4b06d7b9ed1f5ddbea9068d4933481b7ab9" args="" --> +<b>SCI_GETSELALPHA</b> = 2477 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b090355b4a21b0189c53af5c468d653cbf"></a><!-- doxytag: member="QextScintillaBase::SCI_SETSELALPHA" ref="ebbb6944d058b48277d6ab33eceab4b090355b4a21b0189c53af5c468d653cbf" args="" --> +<b>SCI_SETSELALPHA</b> = 2478 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01bd17cb78dc9c3d13e364dc0abb7d83f"></a><!-- doxytag: member="QextScintillaBase::SCI_STARTRECORD" ref="ebbb6944d058b48277d6ab33eceab4b01bd17cb78dc9c3d13e364dc0abb7d83f" args="" --> +<b>SCI_STARTRECORD</b> = 3001 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ab86ac92e6d60dc777583192d72d3933"></a><!-- doxytag: member="QextScintillaBase::SCI_STOPRECORD" ref="ebbb6944d058b48277d6ab33eceab4b0ab86ac92e6d60dc777583192d72d3933" args="" --> +<b>SCI_STOPRECORD</b> = 3002 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0072c4ebd26abad84f3892a5aef4cf215">SCI_SETLEXER</a> = 4001 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0f2708d28f4c8b3d30bf4bea14b977945">SCI_GETLEXER</a> = 4002 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b014de5af7efebc4d2b6a4d913328f79ff"></a><!-- doxytag: member="QextScintillaBase::SCI_COLOURISE" ref="ebbb6944d058b48277d6ab33eceab4b014de5af7efebc4d2b6a4d913328f79ff" args="" --> +<b>SCI_COLOURISE</b> = 4003 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b079c108f20898075ed8f8a008bc2f519a"></a><!-- doxytag: member="QextScintillaBase::SCI_SETPROPERTY" ref="ebbb6944d058b48277d6ab33eceab4b079c108f20898075ed8f8a008bc2f519a" args="" --> +<b>SCI_SETPROPERTY</b> = 4004 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b01d65c096ce21aa6d6ea32ca46683a51b"></a><!-- doxytag: member="QextScintillaBase::SCI_SETKEYWORDS" ref="ebbb6944d058b48277d6ab33eceab4b01d65c096ce21aa6d6ea32ca46683a51b" args="" --> +<b>SCI_SETKEYWORDS</b> = 4005 +<li><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08512ebbc6a1341e1fb55f70e693fb8d0">SCI_SETLEXERLANGUAGE</a> = 4006 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03b7933b291fac1a672a254f76d411ff7"></a><!-- doxytag: member="QextScintillaBase::SCI_LOADLEXERLIBRARY" ref="ebbb6944d058b48277d6ab33eceab4b03b7933b291fac1a672a254f76d411ff7" args="" --> +<b>SCI_LOADLEXERLIBRARY</b> = 4007 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07c84786e9eba2b7220722d9f6612e516"></a><!-- doxytag: member="QextScintillaBase::SCI_GETPROPERTY" ref="ebbb6944d058b48277d6ab33eceab4b07c84786e9eba2b7220722d9f6612e516" args="" --> +<b>SCI_GETPROPERTY</b> = 4008 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b083958663d4eecadbe9cf5d532127629c"></a><!-- doxytag: member="QextScintillaBase::SCI_GETPROPERTYEXPANDED" ref="ebbb6944d058b48277d6ab33eceab4b083958663d4eecadbe9cf5d532127629c" args="" --> +<b>SCI_GETPROPERTYEXPANDED</b> = 4009 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0e4caf67ba6c6da72c6c2f11153e9d38a"></a><!-- doxytag: member="QextScintillaBase::SCI_GETPROPERTYINT" ref="ebbb6944d058b48277d6ab33eceab4b0e4caf67ba6c6da72c6c2f11153e9d38a" args="" --> +<b>SCI_GETPROPERTYINT</b> = 4010 +<li><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0bfbc750a413bca40d85b68b0b2bdf46a"></a><!-- doxytag: member="QextScintillaBase::SCI_GETSTYLEBITSNEEDED" ref="ebbb6944d058b48277d6ab33eceab4b0bfbc750a413bca40d85b68b0b2bdf46a" args="" --> +<b>SCI_GETSTYLEBITSNEEDED</b> = 4011 +<li><a class="anchor" name="2035b09760b6b70989cab0c300666c3b75c9677a41cf515de526b50a29f6cd52"></a><!-- doxytag: member="QextScintillaBase::SC_ALPHA_TRANSPARENT" ref="2035b09760b6b70989cab0c300666c3b75c9677a41cf515de526b50a29f6cd52" args="" --> +<b>SC_ALPHA_TRANSPARENT</b> = 0 +<li><a class="anchor" name="2035b09760b6b70989cab0c300666c3bf757c04a806a20b1e2b81006c87a8ccb"></a><!-- doxytag: member="QextScintillaBase::SC_ALPHA_OPAQUE" ref="2035b09760b6b70989cab0c300666c3bf757c04a806a20b1e2b81006c87a8ccb" args="" --> +<b>SC_ALPHA_OPAQUE</b> = 255 +<li><a class="anchor" name="2035b09760b6b70989cab0c300666c3b4c4bd238b79bcaa1604daa805845ab88"></a><!-- doxytag: member="QextScintillaBase::SC_ALPHA_NOALPHA" ref="2035b09760b6b70989cab0c300666c3b4c4bd238b79bcaa1604daa805845ab88" args="" --> +<b>SC_ALPHA_NOALPHA</b> = 256 +<li><a class="anchor" name="0a18446ffbbbaf76146eda1fa6059ff7ca5adfcd90e3d04810e7803dfa794595"></a><!-- doxytag: member="QextScintillaBase::SC_WRAPVISUALFLAG_NONE" ref="0a18446ffbbbaf76146eda1fa6059ff7ca5adfcd90e3d04810e7803dfa794595" args="" --> +<b>SC_WRAPVISUALFLAG_NONE</b> = 0x0000 +<li><a class="anchor" name="0a18446ffbbbaf76146eda1fa6059ff763a45f6b5fa57df51900c3e0330e0a87"></a><!-- doxytag: member="QextScintillaBase::SC_WRAPVISUALFLAG_END" ref="0a18446ffbbbaf76146eda1fa6059ff763a45f6b5fa57df51900c3e0330e0a87" args="" --> +<b>SC_WRAPVISUALFLAG_END</b> = 0x0001 +<li><a class="anchor" name="0a18446ffbbbaf76146eda1fa6059ff79ba89909eb9bf5f74e5d09bed84154e8"></a><!-- doxytag: member="QextScintillaBase::SC_WRAPVISUALFLAG_START" ref="0a18446ffbbbaf76146eda1fa6059ff79ba89909eb9bf5f74e5d09bed84154e8" args="" --> +<b>SC_WRAPVISUALFLAG_START</b> = 0x0002 +<li><a class="anchor" name="152b786582f6b5856575ff6e9c1ba10d6a1dbad1b333ba4644e6bf3a197a7e7b"></a><!-- doxytag: member="QextScintillaBase::SC_WRAPVISUALFLAGLOC_DEFAULT" ref="152b786582f6b5856575ff6e9c1ba10d6a1dbad1b333ba4644e6bf3a197a7e7b" args="" --> +<b>SC_WRAPVISUALFLAGLOC_DEFAULT</b> = 0x0000 +<li><a class="anchor" name="152b786582f6b5856575ff6e9c1ba10d02b3d1734ab66ffff528e4822c4c3000"></a><!-- doxytag: member="QextScintillaBase::SC_WRAPVISUALFLAGLOC_END_BY_TEXT" ref="152b786582f6b5856575ff6e9c1ba10d02b3d1734ab66ffff528e4822c4c3000" args="" --> +<b>SC_WRAPVISUALFLAGLOC_END_BY_TEXT</b> = 0x0001 +<li><a class="anchor" name="152b786582f6b5856575ff6e9c1ba10d563b478d70fb90cc635587f9cb7f2861"></a><!-- doxytag: member="QextScintillaBase::SC_WRAPVISUALFLAGLOC_START_BY_TEXT" ref="152b786582f6b5856575ff6e9c1ba10d563b478d70fb90cc635587f9cb7f2861" args="" --> +<b>SC_WRAPVISUALFLAGLOC_START_BY_TEXT</b> = 0x0002 +<li><a class="anchor" name="d8e6e59a8c16a42d2ac2c859678ccde1d11892ecad14f8360e7405e6303adf6e"></a><!-- doxytag: member="QextScintillaBase::SC_SEL_STREAM" ref="d8e6e59a8c16a42d2ac2c859678ccde1d11892ecad14f8360e7405e6303adf6e" args="" --> +<b>SC_SEL_STREAM</b> = 0 +<li><a class="anchor" name="d8e6e59a8c16a42d2ac2c859678ccde164e0710990f8946bde28a168f0f058e1"></a><!-- doxytag: member="QextScintillaBase::SC_SEL_RECTANGLE" ref="d8e6e59a8c16a42d2ac2c859678ccde164e0710990f8946bde28a168f0f058e1" args="" --> +<b>SC_SEL_RECTANGLE</b> = 1 +<li><a class="anchor" name="d8e6e59a8c16a42d2ac2c859678ccde19a599c269a06e9d3be9e338f110a400f"></a><!-- doxytag: member="QextScintillaBase::SC_SEL_LINES" ref="d8e6e59a8c16a42d2ac2c859678ccde19a599c269a06e9d3be9e338f110a400f" args="" --> +<b>SC_SEL_LINES</b> = 2 +<li><a class="anchor" name="d43808eeef1ef015ffecf8f42e20756e93ad04272903eb61aca2e92aeecde1cb"></a><!-- doxytag: member="QextScintillaBase::SCWS_INVISIBLE" ref="d43808eeef1ef015ffecf8f42e20756e93ad04272903eb61aca2e92aeecde1cb" args="" --> +<b>SCWS_INVISIBLE</b> = 0 +<li><a class="anchor" name="d43808eeef1ef015ffecf8f42e20756ee4000a957b9198ca9b3dbd22dc488de8"></a><!-- doxytag: member="QextScintillaBase::SCWS_VISIBLEALWAYS" ref="d43808eeef1ef015ffecf8f42e20756ee4000a957b9198ca9b3dbd22dc488de8" args="" --> +<b>SCWS_VISIBLEALWAYS</b> = 1 +<li><a class="anchor" name="d43808eeef1ef015ffecf8f42e20756e3af46529715adc76ee473d2402d5b9a8"></a><!-- doxytag: member="QextScintillaBase::SCWS_VISIBLEAFTERINDENT" ref="d43808eeef1ef015ffecf8f42e20756e3af46529715adc76ee473d2402d5b9a8" args="" --> +<b>SCWS_VISIBLEAFTERINDENT</b> = 2 +<li><a class="anchor" name="3b28fac64519ce6ea3c92d98ba54e50fbf1de06fc2048e8bc25951d5e846c9f8"></a><!-- doxytag: member="QextScintillaBase::SC_EOL_CRLF" ref="3b28fac64519ce6ea3c92d98ba54e50fbf1de06fc2048e8bc25951d5e846c9f8" args="" --> +<b>SC_EOL_CRLF</b> = 0 +<li><a class="anchor" name="3b28fac64519ce6ea3c92d98ba54e50fcaeb249830e8eaf317c51f019fd1c100"></a><!-- doxytag: member="QextScintillaBase::SC_EOL_CR" ref="3b28fac64519ce6ea3c92d98ba54e50fcaeb249830e8eaf317c51f019fd1c100" args="" --> +<b>SC_EOL_CR</b> = 1 +<li><a class="anchor" name="3b28fac64519ce6ea3c92d98ba54e50f2f3b1fb884fd80b7e9b302c26b607ae0"></a><!-- doxytag: member="QextScintillaBase::SC_EOL_LF" ref="3b28fac64519ce6ea3c92d98ba54e50f2f3b1fb884fd80b7e9b302c26b607ae0" args="" --> +<b>SC_EOL_LF</b> = 2 +<li><a class="anchor" name="daa4867b42a5503686d789e344790b5c0c42c10bc38383878204afbafad7ad72"></a><!-- doxytag: member="QextScintillaBase::SC_CP_DBCS" ref="daa4867b42a5503686d789e344790b5c0c42c10bc38383878204afbafad7ad72" args="" --> +<b>SC_CP_DBCS</b> = 1 +<li><a class="anchor" name="daa4867b42a5503686d789e344790b5c5c48511560a900a2b3ddf062367039ec"></a><!-- doxytag: member="QextScintillaBase::SC_CP_UTF8" ref="daa4867b42a5503686d789e344790b5c5c48511560a900a2b3ddf062367039ec" args="" --> +<b>SC_CP_UTF8</b> = 65001 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f434a6ab21669939553df7ea20efee63">SC_MARK_CIRCLE</a> = 0 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498c50cda1aa3ef885dd756384991ee61">SC_MARK_ROUNDRECT</a> = 1 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4e3b1de6390cc0af837be4f7d7fe2c874">SC_MARK_ARROW</a> = 2 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a7488c79a3800a9c8790763ed4adbef">SC_MARK_SMALLRECT</a> = 3 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498e14aa4f516be7f37574e209c1e663d">SC_MARK_SHORTARROW</a> = 4 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f42df2479d1baf9d5576639f46a1222346">SC_MARK_EMPTY</a> = 5 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4edad3abdf6caacb6b2e0aa6b5dcb2225">SC_MARK_ARROWDOWN</a> = 6 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f461a1e23b36a33e7dcbe60829fc9bc8cb">SC_MARK_MINUS</a> = 7 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4607f53e1b9693350dbf5317d22af3f36">SC_MARK_PLUS</a> = 8 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4723048b3e712e9165c6909e07d01295b">SC_MARK_VLINE</a> = 9 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f481d4d67f51f4ca1537ed49073485d9a7">SC_MARK_LCORNER</a> = 10 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7c7a88f1171999c0a794440ca52421">SC_MARK_TCORNER</a> = 11 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4b44cd3777c6526b38e43729f55d33d9f">SC_MARK_BOXPLUS</a> = 12 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a273fcfe1adb61f9209aae02dc0255e">SC_MARK_BOXPLUSCONNECTED</a> = 13 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4562a720141731259a0b103de4bd97d97">SC_MARK_BOXMINUS</a> = 14 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4796ee8aec20e6718fb0f64ed6842f788">SC_MARK_BOXMINUSCONNECTED</a> = 15 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ee7ddee38b57a705314bc6739e488bab">SC_MARK_LCORNERCURVE</a> = 16 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f724482fbd5d843bae330c83639aae34">SC_MARK_TCORNERCURVE</a> = 17 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7d571a7e7e48ae750c7a862e1bbaac">SC_MARK_CIRCLEPLUS</a> = 18 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f44be3bd3071b92f21bedeb38080297239">SC_MARK_CIRCLEPLUSCONNECTED</a> = 19 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4d8679bbada38b23e093aca2d7e181cf6">SC_MARK_CIRCLEMINUS</a> = 20 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ef80900cadb97b802077c229197a5cb3">SC_MARK_CIRCLEMINUSCONNECTED</a> = 21 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40299712b9cc948d89b63ccb57cc718b1">SC_MARK_BACKGROUND</a> = 22 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4bc5087b0b7079ec10079a8346c7f5034">SC_MARK_DOTDOTDOT</a> = 23 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f89256799c23918fda728e89cca33202">SC_MARK_ARROWS</a> = 24 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f45f1d4dcf4839e48bcd9a4e3f134ce7c6">SC_MARK_PIXMAP</a> = 25 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f427aabfe553646e9ab186017b26577a06">SC_MARK_FULLRECT</a> = 26 +<li><a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43b6b66013744d32a407bdfd6d09a5b51">SC_MARK_CHARACTER</a> = 10000 +<li><a class="anchor" name="5774f9c2fa73082984bc35ebe674ce6a82dce63c6b8fee2d51e1508c1b0a366d"></a><!-- doxytag: member="QextScintillaBase::SC_MARKNUM_FOLDEREND" ref="5774f9c2fa73082984bc35ebe674ce6a82dce63c6b8fee2d51e1508c1b0a366d" args="" --> +<b>SC_MARKNUM_FOLDEREND</b> = 25 +<li><a class="anchor" name="5774f9c2fa73082984bc35ebe674ce6a83cc5857d4eb5e3b4497354bc047b9c6"></a><!-- doxytag: member="QextScintillaBase::SC_MARKNUM_FOLDEROPENMID" ref="5774f9c2fa73082984bc35ebe674ce6a83cc5857d4eb5e3b4497354bc047b9c6" args="" --> +<b>SC_MARKNUM_FOLDEROPENMID</b> = 26 +<li><a class="anchor" name="5774f9c2fa73082984bc35ebe674ce6a2f8f603b92a68b45be09319a07f7b6e0"></a><!-- doxytag: member="QextScintillaBase::SC_MARKNUM_FOLDERMIDTAIL" ref="5774f9c2fa73082984bc35ebe674ce6a2f8f603b92a68b45be09319a07f7b6e0" args="" --> +<b>SC_MARKNUM_FOLDERMIDTAIL</b> = 27 +<li><a class="anchor" name="5774f9c2fa73082984bc35ebe674ce6a65c042f8227cf78949362545d249a491"></a><!-- doxytag: member="QextScintillaBase::SC_MARKNUM_FOLDERTAIL" ref="5774f9c2fa73082984bc35ebe674ce6a65c042f8227cf78949362545d249a491" args="" --> +<b>SC_MARKNUM_FOLDERTAIL</b> = 28 +<li><a class="anchor" name="5774f9c2fa73082984bc35ebe674ce6ae7715fe5a3a8a15302fb259ee800267a"></a><!-- doxytag: member="QextScintillaBase::SC_MARKNUM_FOLDERSUB" ref="5774f9c2fa73082984bc35ebe674ce6ae7715fe5a3a8a15302fb259ee800267a" args="" --> +<b>SC_MARKNUM_FOLDERSUB</b> = 29 +<li><a class="anchor" name="5774f9c2fa73082984bc35ebe674ce6a253ee17ac341b700d1223ae287a7a922"></a><!-- doxytag: member="QextScintillaBase::SC_MARKNUM_FOLDER" ref="5774f9c2fa73082984bc35ebe674ce6a253ee17ac341b700d1223ae287a7a922" args="" --> +<b>SC_MARKNUM_FOLDER</b> = 30 +<li><a class="anchor" name="5774f9c2fa73082984bc35ebe674ce6ab3804e934eb19d190390c0d3fb597ce2"></a><!-- doxytag: member="QextScintillaBase::SC_MARKNUM_FOLDEROPEN" ref="5774f9c2fa73082984bc35ebe674ce6ab3804e934eb19d190390c0d3fb597ce2" args="" --> +<b>SC_MARKNUM_FOLDEROPEN</b> = 31 +<li><a class="anchor" name="5774f9c2fa73082984bc35ebe674ce6a812f958a9cbac238e4afc7507a4b7128"></a><!-- doxytag: member="QextScintillaBase::SC_MASK_FOLDERS" ref="5774f9c2fa73082984bc35ebe674ce6a812f958a9cbac238e4afc7507a4b7128" args="" --> +<b>SC_MASK_FOLDERS</b> = 0xfe000000 +<li><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a27e7af608c20e4123e0c63a4cc773b363">SC_MARGIN_SYMBOL</a> = 0 +<li><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2ed8932da45c8172b8b9c8fdeca780f62">SC_MARGIN_NUMBER</a> = 1 +<li><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2202759936bafc4284957c4226f3042db">SC_MARGIN_BACK</a> = 2 +<li><a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a23d1e3bb214808a93cf72986b0b461027">SC_MARGIN_FORE</a> = 3 +<li><a class="anchor" name="3d485a6bb13f8ffd4ede9da6a36e258c961a1aed413640b2a4e80585eca50625"></a><!-- doxytag: member="QextScintillaBase::STYLE_DEFAULT" ref="3d485a6bb13f8ffd4ede9da6a36e258c961a1aed413640b2a4e80585eca50625" args="" --> +<b>STYLE_DEFAULT</b> = 32 +<li><a class="anchor" name="3d485a6bb13f8ffd4ede9da6a36e258c6729875169d8bcaed093b25e5e4adc66"></a><!-- doxytag: member="QextScintillaBase::STYLE_LINENUMBER" ref="3d485a6bb13f8ffd4ede9da6a36e258c6729875169d8bcaed093b25e5e4adc66" args="" --> +<b>STYLE_LINENUMBER</b> = 33 +<li><a class="anchor" name="3d485a6bb13f8ffd4ede9da6a36e258ca6acf688872fc8cb685f48393cdb4331"></a><!-- doxytag: member="QextScintillaBase::STYLE_BRACELIGHT" ref="3d485a6bb13f8ffd4ede9da6a36e258ca6acf688872fc8cb685f48393cdb4331" args="" --> +<b>STYLE_BRACELIGHT</b> = 34 +<li><a class="anchor" name="3d485a6bb13f8ffd4ede9da6a36e258c3783b1982e308918e84606c22e447e01"></a><!-- doxytag: member="QextScintillaBase::STYLE_BRACEBAD" ref="3d485a6bb13f8ffd4ede9da6a36e258c3783b1982e308918e84606c22e447e01" args="" --> +<b>STYLE_BRACEBAD</b> = 35 +<li><a class="anchor" name="3d485a6bb13f8ffd4ede9da6a36e258cff9b75ab21fc30b2c0f7b7abf7b95c33"></a><!-- doxytag: member="QextScintillaBase::STYLE_CONTROLCHAR" ref="3d485a6bb13f8ffd4ede9da6a36e258cff9b75ab21fc30b2c0f7b7abf7b95c33" args="" --> +<b>STYLE_CONTROLCHAR</b> = 36 +<li><a class="anchor" name="3d485a6bb13f8ffd4ede9da6a36e258cf9da47a98c0e690a6f6995b638cb2c52"></a><!-- doxytag: member="QextScintillaBase::STYLE_INDENTGUIDE" ref="3d485a6bb13f8ffd4ede9da6a36e258cf9da47a98c0e690a6f6995b638cb2c52" args="" --> +<b>STYLE_INDENTGUIDE</b> = 37 +<li><a class="anchor" name="3d485a6bb13f8ffd4ede9da6a36e258c2b724517120566ce69ec65c730382e3f"></a><!-- doxytag: member="QextScintillaBase::STYLE_CALLTIP" ref="3d485a6bb13f8ffd4ede9da6a36e258c2b724517120566ce69ec65c730382e3f" args="" --> +<b>STYLE_CALLTIP</b> = 38 +<li><a class="anchor" name="3d485a6bb13f8ffd4ede9da6a36e258caf2dddd130811d7f63a0585d75c740b9"></a><!-- doxytag: member="QextScintillaBase::STYLE_LASTPREDEFINED" ref="3d485a6bb13f8ffd4ede9da6a36e258caf2dddd130811d7f63a0585d75c740b9" args="" --> +<b>STYLE_LASTPREDEFINED</b> = 39 +<li><a class="anchor" name="3d485a6bb13f8ffd4ede9da6a36e258cab25311b3bb039f33f4c429c950dfab3"></a><!-- doxytag: member="QextScintillaBase::STYLE_MAX" ref="3d485a6bb13f8ffd4ede9da6a36e258cab25311b3bb039f33f4c429c950dfab3" args="" --> +<b>STYLE_MAX</b> = 127 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c52eb27209a9c72a033ea784e4e95f0c8"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_ANSI" ref="4bdb636e4832398b096b3375026bc06c52eb27209a9c72a033ea784e4e95f0c8" args="" --> +<b>SC_CHARSET_ANSI</b> = 0 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c70e6b8554ff66de36bfb7fa42c4993be"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_DEFAULT" ref="4bdb636e4832398b096b3375026bc06c70e6b8554ff66de36bfb7fa42c4993be" args="" --> +<b>SC_CHARSET_DEFAULT</b> = 1 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c0ad4a3767b7996beacd4966bd5970eeb"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_BALTIC" ref="4bdb636e4832398b096b3375026bc06c0ad4a3767b7996beacd4966bd5970eeb" args="" --> +<b>SC_CHARSET_BALTIC</b> = 186 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c3ec43eea4d226eb2e4e6e46a991f6b0b"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_CHINESEBIG5" ref="4bdb636e4832398b096b3375026bc06c3ec43eea4d226eb2e4e6e46a991f6b0b" args="" --> +<b>SC_CHARSET_CHINESEBIG5</b> = 136 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c6381eb6a941819d04151ab21468d4de1"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_EASTEUROPE" ref="4bdb636e4832398b096b3375026bc06c6381eb6a941819d04151ab21468d4de1" args="" --> +<b>SC_CHARSET_EASTEUROPE</b> = 238 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c17320b11e253f0a54d8a8077d540f876"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_GB2312" ref="4bdb636e4832398b096b3375026bc06c17320b11e253f0a54d8a8077d540f876" args="" --> +<b>SC_CHARSET_GB2312</b> = 134 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c0b440f174b5df08c9b347bd6dc91fb7d"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_GREEK" ref="4bdb636e4832398b096b3375026bc06c0b440f174b5df08c9b347bd6dc91fb7d" args="" --> +<b>SC_CHARSET_GREEK</b> = 161 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06ccb81723c1141f8e95f99ff18839f7b64"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_HANGUL" ref="4bdb636e4832398b096b3375026bc06ccb81723c1141f8e95f99ff18839f7b64" args="" --> +<b>SC_CHARSET_HANGUL</b> = 129 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c421916815ffffed073a4027a4e617e21"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_MAC" ref="4bdb636e4832398b096b3375026bc06c421916815ffffed073a4027a4e617e21" args="" --> +<b>SC_CHARSET_MAC</b> = 77 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c17490d08b1833c03caf051e4b6756a8e"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_OEM" ref="4bdb636e4832398b096b3375026bc06c17490d08b1833c03caf051e4b6756a8e" args="" --> +<b>SC_CHARSET_OEM</b> = 255 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06ce15533a07a1dcc4eb6abcad3234552cf"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_RUSSIAN" ref="4bdb636e4832398b096b3375026bc06ce15533a07a1dcc4eb6abcad3234552cf" args="" --> +<b>SC_CHARSET_RUSSIAN</b> = 204 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c978d62de34781af50531f320fdedb720"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_SHIFTJIS" ref="4bdb636e4832398b096b3375026bc06c978d62de34781af50531f320fdedb720" args="" --> +<b>SC_CHARSET_SHIFTJIS</b> = 128 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06cf3f5b75673b3f8518284237f15259b36"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_SYMBOL" ref="4bdb636e4832398b096b3375026bc06cf3f5b75673b3f8518284237f15259b36" args="" --> +<b>SC_CHARSET_SYMBOL</b> = 2 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06ce14571b27f51f52d210a79e7fa7033f9"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_TURKISH" ref="4bdb636e4832398b096b3375026bc06ce14571b27f51f52d210a79e7fa7033f9" args="" --> +<b>SC_CHARSET_TURKISH</b> = 162 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06ca0b2ccf705faf5cc100ad8961ba57792"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_JOHAB" ref="4bdb636e4832398b096b3375026bc06ca0b2ccf705faf5cc100ad8961ba57792" args="" --> +<b>SC_CHARSET_JOHAB</b> = 130 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06ca6c8278c5d95eae2f7b663b08dd0feac"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_HEBREW" ref="4bdb636e4832398b096b3375026bc06ca6c8278c5d95eae2f7b663b08dd0feac" args="" --> +<b>SC_CHARSET_HEBREW</b> = 177 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06cb174d2b55072001a53cf0c144a950c0c"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_ARABIC" ref="4bdb636e4832398b096b3375026bc06cb174d2b55072001a53cf0c144a950c0c" args="" --> +<b>SC_CHARSET_ARABIC</b> = 178 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c22080603740098f780c72c538a9152d3"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_VIETNAMESE" ref="4bdb636e4832398b096b3375026bc06c22080603740098f780c72c538a9152d3" args="" --> +<b>SC_CHARSET_VIETNAMESE</b> = 163 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06c5d5e645fa026430ac14537c309fbb082"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_THAI" ref="4bdb636e4832398b096b3375026bc06c5d5e645fa026430ac14537c309fbb082" args="" --> +<b>SC_CHARSET_THAI</b> = 222 +<li><a class="anchor" name="4bdb636e4832398b096b3375026bc06cbe2eb325117ae87b210c7c1bd663ae86"></a><!-- doxytag: member="QextScintillaBase::SC_CHARSET_8859_15" ref="4bdb636e4832398b096b3375026bc06cbe2eb325117ae87b210c7c1bd663ae86" args="" --> +<b>SC_CHARSET_8859_15</b> = 1000 +<li><a class="anchor" name="0ca091937cc15791ea01477d46a0be35d0c80fd1f4a0af1c6599c8c54a37c859"></a><!-- doxytag: member="QextScintillaBase::SC_CASE_MIXED" ref="0ca091937cc15791ea01477d46a0be35d0c80fd1f4a0af1c6599c8c54a37c859" args="" --> +<b>SC_CASE_MIXED</b> = 0 +<li><a class="anchor" name="0ca091937cc15791ea01477d46a0be35ac7d4bc8ad9a20615061d0aad42c7066"></a><!-- doxytag: member="QextScintillaBase::SC_CASE_UPPER" ref="0ca091937cc15791ea01477d46a0be35ac7d4bc8ad9a20615061d0aad42c7066" args="" --> +<b>SC_CASE_UPPER</b> = 1 +<li><a class="anchor" name="0ca091937cc15791ea01477d46a0be35841c3b3ba75b7b3f692baccccf0a24a0"></a><!-- doxytag: member="QextScintillaBase::SC_CASE_LOWER" ref="0ca091937cc15791ea01477d46a0be35841c3b3ba75b7b3f692baccccf0a24a0" args="" --> +<b>SC_CASE_LOWER</b> = 2 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e919b5bbdeb6c94d1fdfd66ba9d4c02326"></a><!-- doxytag: member="QextScintillaBase::INDIC_MAX" ref="f0ac599400a5a4c4e87bcc6f3a5e46e919b5bbdeb6c94d1fdfd66ba9d4c02326" args="" --> +<b>INDIC_MAX</b> = 7 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e99964f1af8196517a968b650be288dec6"></a><!-- doxytag: member="QextScintillaBase::INDIC_PLAIN" ref="f0ac599400a5a4c4e87bcc6f3a5e46e99964f1af8196517a968b650be288dec6" args="" --> +<b>INDIC_PLAIN</b> = 0 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e98b45e209c4c10f8a9000367b8362ae32"></a><!-- doxytag: member="QextScintillaBase::INDIC_SQUIGGLE" ref="f0ac599400a5a4c4e87bcc6f3a5e46e98b45e209c4c10f8a9000367b8362ae32" args="" --> +<b>INDIC_SQUIGGLE</b> = 1 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e9058cdeeca5dc565e845e8e30003b0b2c"></a><!-- doxytag: member="QextScintillaBase::INDIC_TT" ref="f0ac599400a5a4c4e87bcc6f3a5e46e9058cdeeca5dc565e845e8e30003b0b2c" args="" --> +<b>INDIC_TT</b> = 2 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e98e0b41acd0deff611a66050b0c1bfec2"></a><!-- doxytag: member="QextScintillaBase::INDIC_DIAGONAL" ref="f0ac599400a5a4c4e87bcc6f3a5e46e98e0b41acd0deff611a66050b0c1bfec2" args="" --> +<b>INDIC_DIAGONAL</b> = 3 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e994a3da59a1a8492c45fd4fd69ea0c7d8"></a><!-- doxytag: member="QextScintillaBase::INDIC_STRIKE" ref="f0ac599400a5a4c4e87bcc6f3a5e46e994a3da59a1a8492c45fd4fd69ea0c7d8" args="" --> +<b>INDIC_STRIKE</b> = 4 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e964b5f1d523c5dab89466e266dde5dcfe"></a><!-- doxytag: member="QextScintillaBase::INDIC_HIDDEN" ref="f0ac599400a5a4c4e87bcc6f3a5e46e964b5f1d523c5dab89466e266dde5dcfe" args="" --> +<b>INDIC_HIDDEN</b> = 5 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e921e5da72c65bf7cc50ccf59623fea21a"></a><!-- doxytag: member="QextScintillaBase::INDIC_BOX" ref="f0ac599400a5a4c4e87bcc6f3a5e46e921e5da72c65bf7cc50ccf59623fea21a" args="" --> +<b>INDIC_BOX</b> = 6 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e9e89be29ba8a3c8198ef3c9c4fba4a33c"></a><!-- doxytag: member="QextScintillaBase::INDIC_ROUNDBOX" ref="f0ac599400a5a4c4e87bcc6f3a5e46e9e89be29ba8a3c8198ef3c9c4fba4a33c" args="" --> +<b>INDIC_ROUNDBOX</b> = 7 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e945700aabb1c108ad3d9367165f16ef51"></a><!-- doxytag: member="QextScintillaBase::INDIC0_MASK" ref="f0ac599400a5a4c4e87bcc6f3a5e46e945700aabb1c108ad3d9367165f16ef51" args="" --> +<b>INDIC0_MASK</b> = 0x20 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e9c60eaeb8023f2be149ac1ecec23ad828"></a><!-- doxytag: member="QextScintillaBase::INDIC1_MASK" ref="f0ac599400a5a4c4e87bcc6f3a5e46e9c60eaeb8023f2be149ac1ecec23ad828" args="" --> +<b>INDIC1_MASK</b> = 0x40 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e902f753d050358a9fb1e782df81f03a79"></a><!-- doxytag: member="QextScintillaBase::INDIC2_MASK" ref="f0ac599400a5a4c4e87bcc6f3a5e46e902f753d050358a9fb1e782df81f03a79" args="" --> +<b>INDIC2_MASK</b> = 0x80 +<li><a class="anchor" name="f0ac599400a5a4c4e87bcc6f3a5e46e9c4a78cf6618bce1394eeb7055b8d309d"></a><!-- doxytag: member="QextScintillaBase::INDICS_MASK" ref="f0ac599400a5a4c4e87bcc6f3a5e46e9c4a78cf6618bce1394eeb7055b8d309d" args="" --> +<b>INDICS_MASK</b> = 0xe0 +<li><a class="anchor" name="28e3b14aee412f488b762141ea109fe874fc7f11a58bc387c2e8e278dbef64b8"></a><!-- doxytag: member="QextScintillaBase::SC_PRINT_NORMAL" ref="28e3b14aee412f488b762141ea109fe874fc7f11a58bc387c2e8e278dbef64b8" args="" --> +<b>SC_PRINT_NORMAL</b> = 0 +<li><a class="anchor" name="28e3b14aee412f488b762141ea109fe84881720c609631eda2ac08f89ba01b88"></a><!-- doxytag: member="QextScintillaBase::SC_PRINT_INVERTLIGHT" ref="28e3b14aee412f488b762141ea109fe84881720c609631eda2ac08f89ba01b88" args="" --> +<b>SC_PRINT_INVERTLIGHT</b> = 1 +<li><a class="anchor" name="28e3b14aee412f488b762141ea109fe8f80553d7f9166aa8cbcf6fb6e40e125a"></a><!-- doxytag: member="QextScintillaBase::SC_PRINT_BLACKONWHITE" ref="28e3b14aee412f488b762141ea109fe8f80553d7f9166aa8cbcf6fb6e40e125a" args="" --> +<b>SC_PRINT_BLACKONWHITE</b> = 2 +<li><a class="anchor" name="28e3b14aee412f488b762141ea109fe81e995908b6f9fc66ffbd3d2354b8441d"></a><!-- doxytag: member="QextScintillaBase::SC_PRINT_COLOURONWHITE" ref="28e3b14aee412f488b762141ea109fe81e995908b6f9fc66ffbd3d2354b8441d" args="" --> +<b>SC_PRINT_COLOURONWHITE</b> = 3 +<li><a class="anchor" name="28e3b14aee412f488b762141ea109fe83e6a804a3eabebf1637df7a4cec5e9c2"></a><!-- doxytag: member="QextScintillaBase::SC_PRINT_COLOURONWHITEDEFAULTBG" ref="28e3b14aee412f488b762141ea109fe83e6a804a3eabebf1637df7a4cec5e9c2" args="" --> +<b>SC_PRINT_COLOURONWHITEDEFAULTBG</b> = 4 +<li><a class="anchor" name="c313c8763078f988cf7f7c4fd6c474173e5dce2d76a78a0a9f7bce15c17a2b8e"></a><!-- doxytag: member="QextScintillaBase::SCFIND_WHOLEWORD" ref="c313c8763078f988cf7f7c4fd6c474173e5dce2d76a78a0a9f7bce15c17a2b8e" args="" --> +<b>SCFIND_WHOLEWORD</b> = 2 +<li><a class="anchor" name="c313c8763078f988cf7f7c4fd6c47417b89b79b307d3d10795c0c2f037cb66e8"></a><!-- doxytag: member="QextScintillaBase::SCFIND_MATCHCASE" ref="c313c8763078f988cf7f7c4fd6c47417b89b79b307d3d10795c0c2f037cb66e8" args="" --> +<b>SCFIND_MATCHCASE</b> = 4 +<li><a class="anchor" name="c313c8763078f988cf7f7c4fd6c47417b07868415619d6c5942b3d9f8d03d5a9"></a><!-- doxytag: member="QextScintillaBase::SCFIND_WORDSTART" ref="c313c8763078f988cf7f7c4fd6c47417b07868415619d6c5942b3d9f8d03d5a9" args="" --> +<b>SCFIND_WORDSTART</b> = 0x00100000 +<li><a class="anchor" name="c313c8763078f988cf7f7c4fd6c474176c884289c85c3bdf7913dc8d19b8530d"></a><!-- doxytag: member="QextScintillaBase::SCFIND_REGEXP" ref="c313c8763078f988cf7f7c4fd6c474176c884289c85c3bdf7913dc8d19b8530d" args="" --> +<b>SCFIND_REGEXP</b> = 0x00200000 +<li><a class="anchor" name="c313c8763078f988cf7f7c4fd6c474171a3098994cad97dc76b586c8d3593e40"></a><!-- doxytag: member="QextScintillaBase::SCFIND_POSIX" ref="c313c8763078f988cf7f7c4fd6c474171a3098994cad97dc76b586c8d3593e40" args="" --> +<b>SCFIND_POSIX</b> = 0x00400000 +<li><a class="anchor" name="a137d8a9b997c42c1dc6c7d93a4fc5f2df52f400f37e29079e3d1531771ad968"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDLEVELBASE" ref="a137d8a9b997c42c1dc6c7d93a4fc5f2df52f400f37e29079e3d1531771ad968" args="" --> +<b>SC_FOLDLEVELBASE</b> = 0x00400 +<li><a class="anchor" name="a137d8a9b997c42c1dc6c7d93a4fc5f240c4319d68c8bf37d651f27a4f70db7b"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDLEVELWHITEFLAG" ref="a137d8a9b997c42c1dc6c7d93a4fc5f240c4319d68c8bf37d651f27a4f70db7b" args="" --> +<b>SC_FOLDLEVELWHITEFLAG</b> = 0x01000 +<li><a class="anchor" name="a137d8a9b997c42c1dc6c7d93a4fc5f2127c2e2af440d0fe7a7ff0bb62c7aac0"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDLEVELHEADERFLAG" ref="a137d8a9b997c42c1dc6c7d93a4fc5f2127c2e2af440d0fe7a7ff0bb62c7aac0" args="" --> +<b>SC_FOLDLEVELHEADERFLAG</b> = 0x02000 +<li><a class="anchor" name="a137d8a9b997c42c1dc6c7d93a4fc5f26e2a15c61c8946f5a20fc4131d376621"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDLEVELBOXHEADERFLAG" ref="a137d8a9b997c42c1dc6c7d93a4fc5f26e2a15c61c8946f5a20fc4131d376621" args="" --> +<b>SC_FOLDLEVELBOXHEADERFLAG</b> = 0x04000 +<li><a class="anchor" name="a137d8a9b997c42c1dc6c7d93a4fc5f23fbd774976e67e98cdd3759959c98f67"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDLEVELBOXFOOTERFLAG" ref="a137d8a9b997c42c1dc6c7d93a4fc5f23fbd774976e67e98cdd3759959c98f67" args="" --> +<b>SC_FOLDLEVELBOXFOOTERFLAG</b> = 0x08000 +<li><a class="anchor" name="a137d8a9b997c42c1dc6c7d93a4fc5f24d8071a42b40a35ef5a0151deaddb5b4"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDLEVELCONTRACTED" ref="a137d8a9b997c42c1dc6c7d93a4fc5f24d8071a42b40a35ef5a0151deaddb5b4" args="" --> +<b>SC_FOLDLEVELCONTRACTED</b> = 0x10000 +<li><a class="anchor" name="a137d8a9b997c42c1dc6c7d93a4fc5f28f1160758a793df14d78b7b07e197b49"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDLEVELUNINDENT" ref="a137d8a9b997c42c1dc6c7d93a4fc5f28f1160758a793df14d78b7b07e197b49" args="" --> +<b>SC_FOLDLEVELUNINDENT</b> = 0x20000 +<li><a class="anchor" name="a137d8a9b997c42c1dc6c7d93a4fc5f25df64c1533b393000b31994aa3b35939"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDLEVELNUMBERMASK" ref="a137d8a9b997c42c1dc6c7d93a4fc5f25df64c1533b393000b31994aa3b35939" args="" --> +<b>SC_FOLDLEVELNUMBERMASK</b> = 0x00fff +<li><a class="anchor" name="2e0c2f58f69dfc76db7b8341a03a0cfb8377b6d6b3f6b4fcafaac185ed2742ff"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDFLAG_BOX" ref="2e0c2f58f69dfc76db7b8341a03a0cfb8377b6d6b3f6b4fcafaac185ed2742ff" args="" --> +<b>SC_FOLDFLAG_BOX</b> = 0x0001 +<li><a class="anchor" name="2e0c2f58f69dfc76db7b8341a03a0cfb50b2d376f59fd0892b0728b2eed467d3"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDFLAG_LINEBEFORE_EXPANDED" ref="2e0c2f58f69dfc76db7b8341a03a0cfb50b2d376f59fd0892b0728b2eed467d3" args="" --> +<b>SC_FOLDFLAG_LINEBEFORE_EXPANDED</b> = 0x0002 +<li><a class="anchor" name="2e0c2f58f69dfc76db7b8341a03a0cfb14c241025692b9c84b6373eaf0979ea2"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDFLAG_LINEBEFORE_CONTRACTED" ref="2e0c2f58f69dfc76db7b8341a03a0cfb14c241025692b9c84b6373eaf0979ea2" args="" --> +<b>SC_FOLDFLAG_LINEBEFORE_CONTRACTED</b> = 0x0004 +<li><a class="anchor" name="2e0c2f58f69dfc76db7b8341a03a0cfb734e0ad4145cd728a249e1d8c42abc7c"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDFLAG_LINEAFTER_EXPANDED" ref="2e0c2f58f69dfc76db7b8341a03a0cfb734e0ad4145cd728a249e1d8c42abc7c" args="" --> +<b>SC_FOLDFLAG_LINEAFTER_EXPANDED</b> = 0x0008 +<li><a class="anchor" name="2e0c2f58f69dfc76db7b8341a03a0cfb78add6d9180f81ae8efd6158585ba208"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDFLAG_LINEAFTER_CONTRACTED" ref="2e0c2f58f69dfc76db7b8341a03a0cfb78add6d9180f81ae8efd6158585ba208" args="" --> +<b>SC_FOLDFLAG_LINEAFTER_CONTRACTED</b> = 0x0010 +<li><a class="anchor" name="2e0c2f58f69dfc76db7b8341a03a0cfbba5a9d1daf159b4c691130867d441392"></a><!-- doxytag: member="QextScintillaBase::SC_FOLDFLAG_LEVELNUMBERS" ref="2e0c2f58f69dfc76db7b8341a03a0cfbba5a9d1daf159b4c691130867d441392" args="" --> +<b>SC_FOLDFLAG_LEVELNUMBERS</b> = 0x0040 +<li><a class="anchor" name="9004f01a7e653872d6d866ab2d264323d7baadc1c04ae0bf2533e05162ca818a"></a><!-- doxytag: member="QextScintillaBase::SC_TIME_FOREVER" ref="9004f01a7e653872d6d866ab2d264323d7baadc1c04ae0bf2533e05162ca818a" args="" --> +<b>SC_TIME_FOREVER</b> = 10000000 +<li><a class="anchor" name="414cefc1fd73d0c688d346a21b7a0422dd847448b6bc9e5f22d39520c1a37678"></a><!-- doxytag: member="QextScintillaBase::SC_WRAP_NONE" ref="414cefc1fd73d0c688d346a21b7a0422dd847448b6bc9e5f22d39520c1a37678" args="" --> +<b>SC_WRAP_NONE</b> = 0 +<li><a class="anchor" name="414cefc1fd73d0c688d346a21b7a0422bb14b69c0f7c2fec8c3d58eb2f20ecf8"></a><!-- doxytag: member="QextScintillaBase::SC_WRAP_WORD" ref="414cefc1fd73d0c688d346a21b7a0422bb14b69c0f7c2fec8c3d58eb2f20ecf8" args="" --> +<b>SC_WRAP_WORD</b> = 1 +<li><a class="anchor" name="414cefc1fd73d0c688d346a21b7a04223662dfc773f035029bf033b19790ac28"></a><!-- doxytag: member="QextScintillaBase::SC_WRAP_CHAR" ref="414cefc1fd73d0c688d346a21b7a04223662dfc773f035029bf033b19790ac28" args="" --> +<b>SC_WRAP_CHAR</b> = 2 +<li><a class="anchor" name="d991b2e9e51a02a1efdb7d58913f8f921c9ae94340b9d2702e2dd7318ec4d2ba"></a><!-- doxytag: member="QextScintillaBase::SC_CACHE_NONE" ref="d991b2e9e51a02a1efdb7d58913f8f921c9ae94340b9d2702e2dd7318ec4d2ba" args="" --> +<b>SC_CACHE_NONE</b> = 0 +<li><a class="anchor" name="d991b2e9e51a02a1efdb7d58913f8f9279a64d9039036d609f4cee4b410de616"></a><!-- doxytag: member="QextScintillaBase::SC_CACHE_CARET" ref="d991b2e9e51a02a1efdb7d58913f8f9279a64d9039036d609f4cee4b410de616" args="" --> +<b>SC_CACHE_CARET</b> = 1 +<li><a class="anchor" name="d991b2e9e51a02a1efdb7d58913f8f92ac19058a24d0a1ab4966a4567a01ee16"></a><!-- doxytag: member="QextScintillaBase::SC_CACHE_PAGE" ref="d991b2e9e51a02a1efdb7d58913f8f92ac19058a24d0a1ab4966a4567a01ee16" args="" --> +<b>SC_CACHE_PAGE</b> = 2 +<li><a class="anchor" name="d991b2e9e51a02a1efdb7d58913f8f926ecbf5129063a3d74a939b905274df4c"></a><!-- doxytag: member="QextScintillaBase::SC_CACHE_DOCUMENT" ref="d991b2e9e51a02a1efdb7d58913f8f926ecbf5129063a3d74a939b905274df4c" args="" --> +<b>SC_CACHE_DOCUMENT</b> = 3 +<li><a class="anchor" name="c4621874194737ca0dae73779491fd0ed1ad1da34fc7ffc10a67047c81abc003"></a><!-- doxytag: member="QextScintillaBase::EDGE_NONE" ref="c4621874194737ca0dae73779491fd0ed1ad1da34fc7ffc10a67047c81abc003" args="" --> +<b>EDGE_NONE</b> = 0 +<li><a class="anchor" name="c4621874194737ca0dae73779491fd0e9589c5218ae6951812bda549f8a3a7c1"></a><!-- doxytag: member="QextScintillaBase::EDGE_LINE" ref="c4621874194737ca0dae73779491fd0e9589c5218ae6951812bda549f8a3a7c1" args="" --> +<b>EDGE_LINE</b> = 1 +<li><a class="anchor" name="c4621874194737ca0dae73779491fd0eec2db2fc18d9eff17ec1e213fa589fa3"></a><!-- doxytag: member="QextScintillaBase::EDGE_BACKGROUND" ref="c4621874194737ca0dae73779491fd0eec2db2fc18d9eff17ec1e213fa589fa3" args="" --> +<b>EDGE_BACKGROUND</b> = 2 +<li><a class="anchor" name="7b42e04d3d92f7a4c8d33356ac67ad241ecee0be51c806f642d5cadf59fc8b57"></a><!-- doxytag: member="QextScintillaBase::SC_CURSORNORMAL" ref="7b42e04d3d92f7a4c8d33356ac67ad241ecee0be51c806f642d5cadf59fc8b57" args="" --> +<b>SC_CURSORNORMAL</b> = -1 +<li><a class="anchor" name="7b42e04d3d92f7a4c8d33356ac67ad2443bfb46ce24df189eb37f453041f8d0d"></a><!-- doxytag: member="QextScintillaBase::SC_CURSORWAIT" ref="7b42e04d3d92f7a4c8d33356ac67ad2443bfb46ce24df189eb37f453041f8d0d" args="" --> +<b>SC_CURSORWAIT</b> = 4 +<li><a class="anchor" name="11439d47f65308c801d53bb1a328366e6b5a15716d8c25e1d46864ec7f885d14"></a><!-- doxytag: member="QextScintillaBase::VISIBLE_SLOP" ref="11439d47f65308c801d53bb1a328366e6b5a15716d8c25e1d46864ec7f885d14" args="" --> +<b>VISIBLE_SLOP</b> = 0x01 +<li><a class="anchor" name="11439d47f65308c801d53bb1a328366efba0281e33116ff4fe1af3edc6667d86"></a><!-- doxytag: member="QextScintillaBase::VISIBLE_STRICT" ref="11439d47f65308c801d53bb1a328366efba0281e33116ff4fe1af3edc6667d86" args="" --> +<b>VISIBLE_STRICT</b> = 0x04 +<li><a class="anchor" name="c6473908ce087961406538b7412105affece5bff3125949650d31d6d99ad2747"></a><!-- doxytag: member="QextScintillaBase::CARET_SLOP" ref="c6473908ce087961406538b7412105affece5bff3125949650d31d6d99ad2747" args="" --> +<b>CARET_SLOP</b> = 0x01 +<li><a class="anchor" name="c6473908ce087961406538b7412105afc7fcc339309fd2bcc01a19660017a5de"></a><!-- doxytag: member="QextScintillaBase::CARET_STRICT" ref="c6473908ce087961406538b7412105afc7fcc339309fd2bcc01a19660017a5de" args="" --> +<b>CARET_STRICT</b> = 0x04 +<li><a class="anchor" name="c6473908ce087961406538b7412105afd0c37ef0b87bc94f6c0f3c79c9bfcb18"></a><!-- doxytag: member="QextScintillaBase::CARET_JUMPS" ref="c6473908ce087961406538b7412105afd0c37ef0b87bc94f6c0f3c79c9bfcb18" args="" --> +<b>CARET_JUMPS</b> = 0x10 +<li><a class="anchor" name="c6473908ce087961406538b7412105af4bb7566c3f16c97830f9136bd7dcadfc"></a><!-- doxytag: member="QextScintillaBase::CARET_EVEN" ref="c6473908ce087961406538b7412105af4bb7566c3f16c97830f9136bd7dcadfc" args="" --> +<b>CARET_EVEN</b> = 0x08 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02a9280c52e1afbe91dbbe832e82a91b069"></a><!-- doxytag: member="QextScintillaBase::SC_MOD_INSERTTEXT" ref="602bfc85a6c20622682b1cd054d2d02a9280c52e1afbe91dbbe832e82a91b069" args="" --> +<b>SC_MOD_INSERTTEXT</b> = 0x1 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02aff76bf2ed886f7c405246d7214a52c56"></a><!-- doxytag: member="QextScintillaBase::SC_MOD_DELETETEXT" ref="602bfc85a6c20622682b1cd054d2d02aff76bf2ed886f7c405246d7214a52c56" args="" --> +<b>SC_MOD_DELETETEXT</b> = 0x2 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02ae65a33b2ee8397ccafe7e3da7583e4e2"></a><!-- doxytag: member="QextScintillaBase::SC_MOD_CHANGESTYLE" ref="602bfc85a6c20622682b1cd054d2d02ae65a33b2ee8397ccafe7e3da7583e4e2" args="" --> +<b>SC_MOD_CHANGESTYLE</b> = 0x4 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02a91950ce56b9f6994da2adc0908c4e7e5"></a><!-- doxytag: member="QextScintillaBase::SC_MOD_CHANGEFOLD" ref="602bfc85a6c20622682b1cd054d2d02a91950ce56b9f6994da2adc0908c4e7e5" args="" --> +<b>SC_MOD_CHANGEFOLD</b> = 0x8 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02a8d6ceb6be92bd41145dcc7da5cfb0f84"></a><!-- doxytag: member="QextScintillaBase::SC_PERFORMED_USER" ref="602bfc85a6c20622682b1cd054d2d02a8d6ceb6be92bd41145dcc7da5cfb0f84" args="" --> +<b>SC_PERFORMED_USER</b> = 0x10 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02ad73573809fe625e647bcbe8f46453809"></a><!-- doxytag: member="QextScintillaBase::SC_PERFORMED_UNDO" ref="602bfc85a6c20622682b1cd054d2d02ad73573809fe625e647bcbe8f46453809" args="" --> +<b>SC_PERFORMED_UNDO</b> = 0x20 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02abf6594f677ba9f5b9b0799843af5d83d"></a><!-- doxytag: member="QextScintillaBase::SC_PERFORMED_REDO" ref="602bfc85a6c20622682b1cd054d2d02abf6594f677ba9f5b9b0799843af5d83d" args="" --> +<b>SC_PERFORMED_REDO</b> = 0x40 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02a1efa5bb95547c20393b9df16e0724301"></a><!-- doxytag: member="QextScintillaBase::SC_MULTISTEPUNDOREDO" ref="602bfc85a6c20622682b1cd054d2d02a1efa5bb95547c20393b9df16e0724301" args="" --> +<b>SC_MULTISTEPUNDOREDO</b> = 0x80 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02ac9d78fcdd0cb1d8bf7fdaee676053570"></a><!-- doxytag: member="QextScintillaBase::SC_LASTSTEPINUNDOREDO" ref="602bfc85a6c20622682b1cd054d2d02ac9d78fcdd0cb1d8bf7fdaee676053570" args="" --> +<b>SC_LASTSTEPINUNDOREDO</b> = 0x100 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02ae1c6b9a65f96fcd4b610301fbe100a81"></a><!-- doxytag: member="QextScintillaBase::SC_MOD_CHANGEMARKER" ref="602bfc85a6c20622682b1cd054d2d02ae1c6b9a65f96fcd4b610301fbe100a81" args="" --> +<b>SC_MOD_CHANGEMARKER</b> = 0x200 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02aea015093cd4fe4f592114c397b229b32"></a><!-- doxytag: member="QextScintillaBase::SC_MOD_BEFOREINSERT" ref="602bfc85a6c20622682b1cd054d2d02aea015093cd4fe4f592114c397b229b32" args="" --> +<b>SC_MOD_BEFOREINSERT</b> = 0x400 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02adbc3d008d1c54e90bae60d741d1b36fc"></a><!-- doxytag: member="QextScintillaBase::SC_MOD_BEFOREDELETE" ref="602bfc85a6c20622682b1cd054d2d02adbc3d008d1c54e90bae60d741d1b36fc" args="" --> +<b>SC_MOD_BEFOREDELETE</b> = 0x800 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02a76b0980993f5a355f6e1a31999cec351"></a><!-- doxytag: member="QextScintillaBase::SC_MULTILINEUNDOREDO" ref="602bfc85a6c20622682b1cd054d2d02a76b0980993f5a355f6e1a31999cec351" args="" --> +<b>SC_MULTILINEUNDOREDO</b> = 0x1000 +<li><a class="anchor" name="602bfc85a6c20622682b1cd054d2d02a805fdf6d458d8b0963e30e554ffccb0d"></a><!-- doxytag: member="QextScintillaBase::SC_MODEVENTMASKALL" ref="602bfc85a6c20622682b1cd054d2d02a805fdf6d458d8b0963e30e554ffccb0d" args="" --> +<b>SC_MODEVENTMASKALL</b> = 0x1fff +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c24ae3c464e381e40652e6e750e725330a6"></a><!-- doxytag: member="QextScintillaBase::SCK_DOWN" ref="4c711fa7588a447e19f87b47191a7c24ae3c464e381e40652e6e750e725330a6" args="" --> +<b>SCK_DOWN</b> = 300 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c24fdf4d02a5567b2dd7c7abd8644683b51"></a><!-- doxytag: member="QextScintillaBase::SCK_UP" ref="4c711fa7588a447e19f87b47191a7c24fdf4d02a5567b2dd7c7abd8644683b51" args="" --> +<b>SCK_UP</b> = 301 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c246f90a27162094f26a41647ff5db84ed7"></a><!-- doxytag: member="QextScintillaBase::SCK_LEFT" ref="4c711fa7588a447e19f87b47191a7c246f90a27162094f26a41647ff5db84ed7" args="" --> +<b>SCK_LEFT</b> = 302 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c24e1d18a4d9838ac576453cce252f063de"></a><!-- doxytag: member="QextScintillaBase::SCK_RIGHT" ref="4c711fa7588a447e19f87b47191a7c24e1d18a4d9838ac576453cce252f063de" args="" --> +<b>SCK_RIGHT</b> = 303 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c245119c09d5e09d8299d8ad1f8ff457981"></a><!-- doxytag: member="QextScintillaBase::SCK_HOME" ref="4c711fa7588a447e19f87b47191a7c245119c09d5e09d8299d8ad1f8ff457981" args="" --> +<b>SCK_HOME</b> = 304 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c24c131920d660d2563b85c7071e6223341"></a><!-- doxytag: member="QextScintillaBase::SCK_END" ref="4c711fa7588a447e19f87b47191a7c24c131920d660d2563b85c7071e6223341" args="" --> +<b>SCK_END</b> = 305 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c24242e44ec861a582bea807ad6175bf24e"></a><!-- doxytag: member="QextScintillaBase::SCK_PRIOR" ref="4c711fa7588a447e19f87b47191a7c24242e44ec861a582bea807ad6175bf24e" args="" --> +<b>SCK_PRIOR</b> = 306 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c24594d1883a75168170cde6810857c05bc"></a><!-- doxytag: member="QextScintillaBase::SCK_NEXT" ref="4c711fa7588a447e19f87b47191a7c24594d1883a75168170cde6810857c05bc" args="" --> +<b>SCK_NEXT</b> = 307 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c24e9bc11076093e98828706132504d3eaf"></a><!-- doxytag: member="QextScintillaBase::SCK_DELETE" ref="4c711fa7588a447e19f87b47191a7c24e9bc11076093e98828706132504d3eaf" args="" --> +<b>SCK_DELETE</b> = 308 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c249696d55d3c6e4de05d718e8948419e05"></a><!-- doxytag: member="QextScintillaBase::SCK_INSERT" ref="4c711fa7588a447e19f87b47191a7c249696d55d3c6e4de05d718e8948419e05" args="" --> +<b>SCK_INSERT</b> = 309 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c246cb7ec95179127e57d3e60ce2f02d895"></a><!-- doxytag: member="QextScintillaBase::SCK_ESCAPE" ref="4c711fa7588a447e19f87b47191a7c246cb7ec95179127e57d3e60ce2f02d895" args="" --> +<b>SCK_ESCAPE</b> = 7 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c240d2a9ffd607c6dec83f76903c35a137b"></a><!-- doxytag: member="QextScintillaBase::SCK_BACK" ref="4c711fa7588a447e19f87b47191a7c240d2a9ffd607c6dec83f76903c35a137b" args="" --> +<b>SCK_BACK</b> = 8 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c2407b9b7a1154d0c23ab57cc1d034698d5"></a><!-- doxytag: member="QextScintillaBase::SCK_TAB" ref="4c711fa7588a447e19f87b47191a7c2407b9b7a1154d0c23ab57cc1d034698d5" args="" --> +<b>SCK_TAB</b> = 9 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c24852c4afd4355fdcdd089ab888f553724"></a><!-- doxytag: member="QextScintillaBase::SCK_RETURN" ref="4c711fa7588a447e19f87b47191a7c24852c4afd4355fdcdd089ab888f553724" args="" --> +<b>SCK_RETURN</b> = 13 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c24211d2533154b5640e692d40aa1dc0d8c"></a><!-- doxytag: member="QextScintillaBase::SCK_ADD" ref="4c711fa7588a447e19f87b47191a7c24211d2533154b5640e692d40aa1dc0d8c" args="" --> +<b>SCK_ADD</b> = 310 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c241b994704613076c06fdd7f8f3167fb0a"></a><!-- doxytag: member="QextScintillaBase::SCK_SUBTRACT" ref="4c711fa7588a447e19f87b47191a7c241b994704613076c06fdd7f8f3167fb0a" args="" --> +<b>SCK_SUBTRACT</b> = 311 +<li><a class="anchor" name="4c711fa7588a447e19f87b47191a7c24c6b0756b13316bea715b9f935e52210b"></a><!-- doxytag: member="QextScintillaBase::SCK_DIVIDE" ref="4c711fa7588a447e19f87b47191a7c24c6b0756b13316bea715b9f935e52210b" args="" --> +<b>SCK_DIVIDE</b> = 312 +<li><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e881b5932870b621432a28e0d7a324695">SCMOD_NORM</a> = 0 +<li><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4eeb5363cad0f41ea5332418f63a3ad06f">SCMOD_SHIFT</a> = 1 +<li><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4ea69a17f5b83112750f8807a1516b8119">SCMOD_CTRL</a> = 2 +<li><a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e3d58fd86cb23274ec15615fe2c42961f">SCMOD_ALT</a> = 4 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df702befd903d9d65fa84af10461828a0">SCLEX_CONTAINER</a> = 0 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a51b24b990fe1e8e3680d25e1331dc6">SCLEX_NULL</a> = 1 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d70827e6b1710d76ca56fce165f726ad2">SCLEX_PYTHON</a> = 2 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d37233777b6512990ad985e41f1470ee0">SCLEX_CPP</a> = 3 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df2338400902a61d96c4057caa0c450a2">SCLEX_HTML</a> = 4 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de4a8bd95f6f567e44a246f46c3d2a7fe">SCLEX_XML</a> = 5 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0bd817c73cd4b9a00a81c04a8585804b">SCLEX_PERL</a> = 6 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d31b4c7ddbe672064514c775788f56f80">SCLEX_SQL</a> = 7 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d42e3b71bd069a7991e73b16a48d44fb3">SCLEX_VB</a> = 8 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d780544fc36639fc09690ad6dbb352f65">SCLEX_PROPERTIES</a> = 9 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da5ccd91896d4f60a1721f59baca56e13">SCLEX_ERRORLIST</a> = 10 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3569ea5aea72d6978fb61b6231c3b4da">SCLEX_MAKEFILE</a> = 11 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4f36017b6593f4740d006563caa5dd1a">SCLEX_BATCH</a> = 12 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8817495465d06d51a7f29663db3e307d">SCLEX_LATEX</a> = 14 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dda37fcab324043a52fc2b85399644454">SCLEX_LUA</a> = 15 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6842f7058b71411ab80bc1c33a63da63">SCLEX_DIFF</a> = 16 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f3a52fea3e08741ea664dedf5530fa5">SCLEX_CONF</a> = 17 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6210ca0cdb31e06c18ec14294238a3a4">SCLEX_PASCAL</a> = 18 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6edb4f9bc36f41d26f4a42a3410c7433">SCLEX_AVE</a> = 19 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8b9733c9dd7b20e68a1226cf9ed81f69">SCLEX_ADA</a> = 20 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d332fca6d318ec42f4db4191ad6deb193">SCLEX_LISP</a> = 21 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc062b29c7caa054f57b5b6aa54385f33">SCLEX_RUBY</a> = 22 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d348f60f0b617eed037b6110e42af0996">SCLEX_EIFFEL</a> = 23 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6d8490d0f99f6b329ab5f45c2234adf5">SCLEX_EIFFELKW</a> = 24 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e46782e8d9ccda555ec49cfca67e546">SCLEX_TCL</a> = 25 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8bbda96ce9f7e57aa479486a2d4edd94">SCLEX_NNCRONTAB</a> = 26 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0925a82889c406669e7293d180555159">SCLEX_BULLANT</a> = 27 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4e2037e23a835db605b0620f32511b87">SCLEX_VBSCRIPT</a> = 28 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded111ca524237de01b990c8aa9380542">SCLEX_ASP</a> = SCLEX_HTML +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dab90570deb68926f7c76339b9640bc25">SCLEX_PHP</a> = SCLEX_HTML +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3c9e1bf7b958e31d8ab870a95cab0851">SCLEX_BAAN</a> = 31 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dbd5db8ab589a9223d2e095dcf3855454">SCLEX_MATLAB</a> = 32 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d013005a7d7306628adbcdaa6bd41d24f">SCLEX_SCRIPTOL</a> = 33 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8c7ff8643a97b01c67a4a9271030d1ac">SCLEX_ASM</a> = 34 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddada03b169d0b52daa7c00181f03e897">SCLEX_CPPNOCASE</a> = 35 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d78c83128f5d3c8ed6b2d87a3c6f61e3d">SCLEX_FORTRAN</a> = 36 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb8b68e427523e7e7ac9bc7f20b4347b">SCLEX_F77</a> = 37 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc4b56223ccc682279fc18900fe650778">SCLEX_CSS</a> = 38 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d830f97f74f0966734a36579de53e7f9e">SCLEX_POV</a> = 39 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62db03b3fda38342d0470fab2357eac2ab0">SCLEX_LOUT</a> = 40 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d07f1b0054d239f968dece3bfb2017e6e">SCLEX_ESCRIPT</a> = 41 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d338ccc586737eb91dfc4333fea64b1f9">SCLEX_PS</a> = 42 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddd268ef9f9d4209dc241f55828257120">SCLEX_NSIS</a> = 43 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc09594aa860e17ddff434ba2883e552e">SCLEX_MMIXAL</a> = 44 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0651b9876e477b32d5a3825d298098ae">SCLEX_CLW</a> = 45 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dafaa399612f323eb30aa2ca13bc0e42a">SCLEX_CLWNOCASE</a> = 46 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2c42663d4d0f5e3ea1ea6667d467bf5f">SCLEX_LOT</a> = 47 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a3b27b45e2066a6dd275b613adb0a1d">SCLEX_YAML</a> = 48 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6b8c539414c4f2127c04e5bc2c9da03a">SCLEX_TEX</a> = 49 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8953cce4f69b05e263e1f47c617a70fd">SCLEX_METAPOST</a> = 50 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d055c632267a1a9e088e92893398ac0c2">SCLEX_POWERBASIC</a> = 51 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8cba676e4b42856ea6187a171dc74995">SCLEX_FORTH</a> = 52 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da96b775c8fe016a1e7541600f939e201">SCLEX_ERLANG</a> = 53 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d91d63a0032121624fdae20af80851828">SCLEX_OCTAVE</a> = 54 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d85f6c994156a3adcea37f321f8dd6a3d">SCLEX_MSSQL</a> = 55 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8142b07f7de61126fc5e4dd005f09c28">SCLEX_VERILOG</a> = 56 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb1d483ed2becbbe59887bb89f4014d0">SCLEX_KIX</a> = 57 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dd9dc2f753f14ca5ef729c2883dee1b0d">SCLEX_GUI4CLI</a> = 58 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2a598cbdc1084026ef09a46ac1832c62">SCLEX_SPECMAN</a> = 59 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8dc8d6b0189cd4d471264a824cf1c199">SCLEX_AU3</a> = 60 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc5a6e143f3b3db4c6b2e80fce8d4f8eb">SCLEX_APDL</a> = 61 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f9e5ea4e564ba6f8d1dae8d7ace454d">SCLEX_BASH</a> = 62 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da0b7eaa71bb78dd6d6fced870ba90f24">SCLEX_ASN1</a> = 63 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7d9f5bcf567a86ad19f28476539f3c76">SCLEX_VHDL</a> = 64 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d53e5454136a08b61270dfa0e49e471e6">SCLEX_CAML</a> = 65 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2696851be5e73938cc53b02903bf30c2">SCLEX_BLITZBASIC</a> = 66 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7764a265dd69743101b3a64e68ae5efa">SCLEX_PUREBASIC</a> = 67 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d351fd85d3fd522100386bfd9424e3a62">SCLEX_HASKELL</a> = 68 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e89b369bda35c4aebac67f7313a90f2">SCLEX_PHPSCRIPT</a> = 69 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dcabaa53d59287ebbdc977eeceb9c3e65">SCLEX_TADS3</a> = 70 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de5f83876b6fa6a6de26b655e281ffd16">SCLEX_REBOL</a> = 71 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3a1de57f409755a648a5755f914ed028">SCLEX_SMALLTALK</a> = 72 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d38bfecc4bc450106195200bf1724a84b">SCLEX_FLAGSHIP</a> = 73 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d046e55128e56aeeb7a72f994fb4e015b">SCLEX_CSOUND</a> = 74 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d276307014b9460c95ebe5076afa050f2">SCLEX_FREEBASIC</a> = 75 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0efec3f1d46af6f6a7924de1e19a5761">SCLEX_INNOSETUP</a> = 76 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded042730912f5111558955e09214d298">SCLEX_OPAL</a> = 77 +<li><a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d983672d8cd26e849c76717f754e59a80">SCLEX_SPICE</a> = 78 +<li>enum { <br> + <b>SCI_START</b> = 2000, +<b>SCI_OPTIONAL_START</b> = 3000, +<b>SCI_LEXER_START</b> = 4000, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0da963008bd0cd3ee5fafd3a033ba5570">SCI_ADDTEXT</a> = 2001, +<b>SCI_ADDSTYLEDTEXT</b> = 2002, +<b>SCI_INSERTTEXT</b> = 2003, +<br> + <b>SCI_CLEARALL</b> = 2004, +<b>SCI_CLEARDOCUMENTSTYLE</b> = 2005, +<b>SCI_GETLENGTH</b> = 2006, +<br> + <b>SCI_GETCHARAT</b> = 2007, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a1a628b61fa247d312e3f883fdcbc47">SCI_GETCURRENTPOS</a> = 2008, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0caa048913dfa4284aac9304e4d5e2d96">SCI_GETANCHOR</a> = 2009, +<br> + <b>SCI_GETSTYLEAT</b> = 2010, +<b>SCI_REDO</b> = 2011, +<b>SCI_SETUNDOCOLLECTION</b> = 2012, +<br> + <b>SCI_SELECTALL</b> = 2013, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0be33d4f870ce79d968106ae73cc431a0">SCI_SETSAVEPOINT</a> = 2014, +<b>SCI_GETSTYLEDTEXT</b> = 2015, +<br> + <b>SCI_CANREDO</b> = 2016, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0c7d428743df3c3270a93ef5458a9c9a4">SCI_MARKERLINEFROMHANDLE</a> = 2017, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04d4abb132cd5c624fb863a4e2e18cb48">SCI_MARKERDELETEHANDLE</a> = 2018, +<br> + <b>SCI_GETUNDOCOLLECTION</b> = 2019, +<b>SCI_GETVIEWWS</b> = 2020, +<b>SCI_SETVIEWWS</b> = 2021, +<br> + <b>SCI_POSITIONFROMPOINT</b> = 2022, +<b>SCI_POSITIONFROMPOINTCLOSE</b> = 2023, +<b>SCI_GOTOLINE</b> = 2024, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b00ac47051be6366994d747fd07b52077a">SCI_GOTOPOS</a> = 2025, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ddf73f24d674a7deda70e54f8418edcc">SCI_SETANCHOR</a> = 2026, +<b>SCI_GETCURLINE</b> = 2027, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05ff8be672f9810059ab924770ee7a710">SCI_GETENDSTYLED</a> = 2028, +<b>SCI_CONVERTEOLS</b> = 2029, +<b>SCI_GETEOLMODE</b> = 2030, +<br> + <b>SCI_SETEOLMODE</b> = 2031, +<b>SCI_STARTSTYLING</b> = 2032, +<b>SCI_SETSTYLING</b> = 2033, +<br> + <b>SCI_GETBUFFEREDDRAW</b> = 2034, +<b>SCI_SETBUFFEREDDRAW</b> = 2035, +<b>SCI_SETTABWIDTH</b> = 2036, +<br> + <b>SCI_GETTABWIDTH</b> = 2121, +<b>SCI_SETCODEPAGE</b> = 2037, +<b>SCI_SETUSEPALETTE</b> = 2039, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b053b5ad6db4f59a08f49888d1fe6014c9">SCI_MARKERDEFINE</a> = 2040, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06b0344c924e234c5a73466b86225e0af">SCI_MARKERSETFORE</a> = 2041, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fc75921a28636146af28a8f21ca5ff82">SCI_MARKERSETBACK</a> = 2042, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49">SCI_MARKERADD</a> = 2043, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0b21015787f6b3914e4d638dee15aa2db">SCI_MARKERDELETE</a> = 2044, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0daef3f1a3a46547eb9fdd1faa1dcabba">SCI_MARKERDELETEALL</a> = 2045, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03e011f5a6f9a1933ac95701cbe26e8f1">SCI_MARKERGET</a> = 2046, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f423984b7557eb8274ba46962d22021">SCI_MARKERNEXT</a> = 2047, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06f99e3d5fe686e7fc62ea33c7b142bed">SCI_MARKERPREVIOUS</a> = 2048, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08b2d54230a47a94bfb2ea2fd88cdabc8">SCI_MARKERDEFINEPIXMAP</a> = 2049, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f9b3a4194c3ee4d18f9efb8dcb91bb9">SCI_SETMARGINTYPEN</a> = 2240, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce">SCI_GETMARGINTYPEN</a> = 2241, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0681a357f18daa23daa1f6eaaeb0ea06c">SCI_SETMARGINWIDTHN</a> = 2242, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d301d4135e034067d2da57890708198e">SCI_GETMARGINWIDTHN</a> = 2243, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04bad9debaf35fc86b8899891bce53c38">SCI_SETMARGINMASKN</a> = 2244, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a9d75e0d511355318ab72cc7b7d0876">SCI_GETMARGINMASKN</a> = 2245, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ac5019b21e5be3cf19fcf999c3da833a">SCI_SETMARGINSENSITIVEN</a> = 2246, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fb5a01691811c1ad15519d7023f83df9">SCI_GETMARGINSENSITIVEN</a> = 2247, +<br> + <b>SCI_STYLECLEARALL</b> = 2050, +<b>SCI_STYLESETFORE</b> = 2051, +<b>SCI_STYLESETBACK</b> = 2052, +<br> + <b>SCI_STYLESETBOLD</b> = 2053, +<b>SCI_STYLESETITALIC</b> = 2054, +<b>SCI_STYLESETSIZE</b> = 2055, +<br> + <b>SCI_STYLESETFONT</b> = 2056, +<b>SCI_STYLESETEOLFILLED</b> = 2057, +<b>SCI_STYLERESETDEFAULT</b> = 2058, +<br> + <b>SCI_STYLESETUNDERLINE</b> = 2059, +<b>SCI_STYLESETCASE</b> = 2060, +<b>SCI_STYLESETCHARACTERSET</b> = 2066, +<br> + <b>SCI_SETSELFORE</b> = 2067, +<b>SCI_SETSELBACK</b> = 2068, +<b>SCI_SETCARETFORE</b> = 2069, +<br> + <b>SCI_ASSIGNCMDKEY</b> = 2070, +<b>SCI_CLEARCMDKEY</b> = 2071, +<b>SCI_CLEARALLCMDKEYS</b> = 2072, +<br> + <b>SCI_SETSTYLINGEX</b> = 2073, +<b>SCI_STYLESETVISIBLE</b> = 2074, +<b>SCI_GETCARETPERIOD</b> = 2075, +<br> + <b>SCI_SETCARETPERIOD</b> = 2076, +<b>SCI_SETWORDCHARS</b> = 2077, +<b>SCI_BEGINUNDOACTION</b> = 2078, +<br> + <b>SCI_ENDUNDOACTION</b> = 2079, +<b>SCI_INDICSETSTYLE</b> = 2080, +<b>SCI_INDICGETSTYLE</b> = 2081, +<br> + <b>SCI_INDICSETFORE</b> = 2082, +<b>SCI_INDICGETFORE</b> = 2083, +<b>SCI_SETWHITESPACEFORE</b> = 2084, +<br> + <b>SCI_SETWHITESPACEBACK</b> = 2085, +<b>SCI_SETSTYLEBITS</b> = 2090, +<b>SCI_GETSTYLEBITS</b> = 2091, +<br> + <b>SCI_SETLINESTATE</b> = 2092, +<b>SCI_GETLINESTATE</b> = 2093, +<b>SCI_GETMAXLINESTATE</b> = 2094, +<br> + <b>SCI_GETCARETLINEVISIBLE</b> = 2095, +<b>SCI_SETCARETLINEVISIBLE</b> = 2096, +<b>SCI_GETCARETLINEBACK</b> = 2097, +<br> + <b>SCI_SETCARETLINEBACK</b> = 2098, +<b>SCI_STYLESETCHANGEABLE</b> = 2099, +<b>SCI_AUTOCSHOW</b> = 2100, +<br> + <b>SCI_AUTOCCANCEL</b> = 2101, +<b>SCI_AUTOCACTIVE</b> = 2102, +<b>SCI_AUTOCPOSSTART</b> = 2103, +<br> + <b>SCI_AUTOCCOMPLETE</b> = 2104, +<b>SCI_AUTOCSTOPS</b> = 2105, +<b>SCI_AUTOCSETSEPARATOR</b> = 2106, +<br> + <b>SCI_AUTOCGETSEPARATOR</b> = 2107, +<b>SCI_AUTOCSELECT</b> = 2108, +<b>SCI_AUTOCSETCANCELATSTART</b> = 2110, +<br> + <b>SCI_AUTOCGETCANCELATSTART</b> = 2111, +<b>SCI_AUTOCSETFILLUPS</b> = 2112, +<b>SCI_AUTOCSETCHOOSESINGLE</b> = 2113, +<br> + <b>SCI_AUTOCGETCHOOSESINGLE</b> = 2114, +<b>SCI_AUTOCSETIGNORECASE</b> = 2115, +<b>SCI_AUTOCGETIGNORECASE</b> = 2116, +<br> + <b>SCI_USERLISTSHOW</b> = 2117, +<b>SCI_AUTOCSETAUTOHIDE</b> = 2118, +<b>SCI_AUTOCGETAUTOHIDE</b> = 2119, +<br> + <b>SCI_AUTOCSETDROPRESTOFWORD</b> = 2270, +<b>SCI_AUTOCGETDROPRESTOFWORD</b> = 2271, +<b>SCI_SETINDENT</b> = 2122, +<br> + <b>SCI_GETINDENT</b> = 2123, +<b>SCI_SETUSETABS</b> = 2124, +<b>SCI_GETUSETABS</b> = 2125, +<br> + <b>SCI_SETLINEINDENTATION</b> = 2126, +<b>SCI_GETLINEINDENTATION</b> = 2127, +<b>SCI_GETLINEINDENTPOSITION</b> = 2128, +<br> + <b>SCI_GETCOLUMN</b> = 2129, +<b>SCI_SETHSCROLLBAR</b> = 2130, +<b>SCI_GETHSCROLLBAR</b> = 2131, +<br> + <b>SCI_SETINDENTATIONGUIDES</b> = 2132, +<b>SCI_GETINDENTATIONGUIDES</b> = 2133, +<b>SCI_SETHIGHLIGHTGUIDE</b> = 2134, +<br> + <b>SCI_GETHIGHLIGHTGUIDE</b> = 2135, +<b>SCI_GETLINEENDPOSITION</b> = 2136, +<b>SCI_GETCODEPAGE</b> = 2137, +<br> + <b>SCI_GETCARETFORE</b> = 2138, +<b>SCI_GETUSEPALETTE</b> = 2139, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0918f3e57dfd152bfe12469d2d27de9db">SCI_GETREADONLY</a> = 2140, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08f8198351235bce8efe1c9fa4b69419e">SCI_SETCURRENTPOS</a> = 2141, +<b>SCI_SETSELECTIONSTART</b> = 2142, +<b>SCI_GETSELECTIONSTART</b> = 2143, +<br> + <b>SCI_SETSELECTIONEND</b> = 2144, +<b>SCI_GETSELECTIONEND</b> = 2145, +<b>SCI_SETPRINTMAGNIFICATION</b> = 2146, +<br> + <b>SCI_GETPRINTMAGNIFICATION</b> = 2147, +<b>SCI_SETPRINTCOLOURMODE</b> = 2148, +<b>SCI_GETPRINTCOLOURMODE</b> = 2149, +<br> + <b>SCI_FINDTEXT</b> = 2150, +<b>SCI_FORMATRANGE</b> = 2151, +<b>SCI_GETFIRSTVISIBLELINE</b> = 2152, +<br> + <b>SCI_GETLINE</b> = 2153, +<b>SCI_GETLINECOUNT</b> = 2154, +<b>SCI_SETMARGINLEFT</b> = 2155, +<br> + <b>SCI_GETMARGINLEFT</b> = 2156, +<b>SCI_SETMARGINRIGHT</b> = 2157, +<b>SCI_GETMARGINRIGHT</b> = 2158, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b076256f845570b29f335820a97bd158a5">SCI_GETMODIFY</a> = 2159, +<b>SCI_SETSEL</b> = 2160, +<b>SCI_GETSELTEXT</b> = 2161, +<br> + <b>SCI_GETTEXTRANGE</b> = 2162, +<b>SCI_HIDESELECTION</b> = 2163, +<b>SCI_POINTXFROMPOSITION</b> = 2164, +<br> + <b>SCI_POINTYFROMPOSITION</b> = 2165, +<b>SCI_LINEFROMPOSITION</b> = 2166, +<b>SCI_POSITIONFROMLINE</b> = 2167, +<br> + <b>SCI_LINESCROLL</b> = 2168, +<b>SCI_SCROLLCARET</b> = 2169, +<b>SCI_REPLACESEL</b> = 2170, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b059b1bb6d9d65ac410be6b66b2c426f14">SCI_SETREADONLY</a> = 2171, +<b>SCI_NULL</b> = 2172, +<b>SCI_CANPASTE</b> = 2173, +<br> + <b>SCI_CANUNDO</b> = 2174, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d3351e3d838d0ecd57d7d9873364e219">SCI_EMPTYUNDOBUFFER</a> = 2175, +<b>SCI_UNDO</b> = 2176, +<br> + <b>SCI_CUT</b> = 2177, +<b>SCI_COPY</b> = 2178, +<b>SCI_PASTE</b> = 2179, +<br> + <b>SCI_CLEAR</b> = 2180, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b004da7b8cb076eacef2372b9bbfe4dc14">SCI_SETTEXT</a> = 2181, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b09d5e442a3812d53ac8067628098fedb0">SCI_GETTEXT</a> = 2182, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b034122ac033e32308cf188f718b0107e9">SCI_GETTEXTLENGTH</a> = 2183, +<b>SCI_GETDIRECTFUNCTION</b> = 2184, +<b>SCI_GETDIRECTPOINTER</b> = 2185, +<br> + <b>SCI_SETOVERTYPE</b> = 2186, +<b>SCI_GETOVERTYPE</b> = 2187, +<b>SCI_SETCARETWIDTH</b> = 2188, +<br> + <b>SCI_GETCARETWIDTH</b> = 2189, +<b>SCI_SETTARGETSTART</b> = 2190, +<b>SCI_GETTARGETSTART</b> = 2191, +<br> + <b>SCI_SETTARGETEND</b> = 2192, +<b>SCI_GETTARGETEND</b> = 2193, +<b>SCI_REPLACETARGET</b> = 2194, +<br> + <b>SCI_REPLACETARGETRE</b> = 2195, +<b>SCI_SEARCHINTARGET</b> = 2197, +<b>SCI_SETSEARCHFLAGS</b> = 2198, +<br> + <b>SCI_GETSEARCHFLAGS</b> = 2199, +<b>SCI_CALLTIPSHOW</b> = 2200, +<b>SCI_CALLTIPCANCEL</b> = 2201, +<br> + <b>SCI_CALLTIPACTIVE</b> = 2202, +<b>SCI_CALLTIPPOSSTART</b> = 2203, +<b>SCI_CALLTIPSETHLT</b> = 2204, +<br> + <b>SCI_CALLTIPSETBACK</b> = 2205, +<b>SCI_CALLTIPSETFORE</b> = 2206, +<b>SCI_CALLTIPSETFOREHLT</b> = 2207, +<br> + <b>SCI_AUTOCSETMAXWIDTH</b> = 2208, +<b>SCI_AUTOCGETMAXWIDTH</b> = 2209, +<b>SCI_AUTOCSETMAXHEIGHT</b> = 2210, +<br> + <b>SCI_AUTOCGETMAXHEIGHT</b> = 2211, +<b>SCI_CALLTIPUSESTYLE</b> = 2212, +<b>SCI_VISIBLEFROMDOCLINE</b> = 2220, +<br> + <b>SCI_DOCLINEFROMVISIBLE</b> = 2221, +<b>SCI_SETFOLDLEVEL</b> = 2222, +<b>SCI_GETFOLDLEVEL</b> = 2223, +<br> + <b>SCI_GETLASTCHILD</b> = 2224, +<b>SCI_GETFOLDPARENT</b> = 2225, +<b>SCI_SHOWLINES</b> = 2226, +<br> + <b>SCI_HIDELINES</b> = 2227, +<b>SCI_GETLINEVISIBLE</b> = 2228, +<b>SCI_SETFOLDEXPANDED</b> = 2229, +<br> + <b>SCI_GETFOLDEXPANDED</b> = 2230, +<b>SCI_TOGGLEFOLD</b> = 2231, +<b>SCI_ENSUREVISIBLE</b> = 2232, +<br> + <b>SCI_SETFOLDFLAGS</b> = 2233, +<b>SCI_ENSUREVISIBLEENFORCEPOLICY</b> = 2234, +<b>SCI_WRAPCOUNT</b> = 2235, +<br> + <b>SCI_SETTABINDENTS</b> = 2260, +<b>SCI_GETTABINDENTS</b> = 2261, +<b>SCI_SETBACKSPACEUNINDENTS</b> = 2262, +<br> + <b>SCI_GETBACKSPACEUNINDENTS</b> = 2263, +<b>SCI_SETMOUSEDWELLTIME</b> = 2264, +<b>SCI_GETMOUSEDWELLTIME</b> = 2265, +<br> + <b>SCI_WORDSTARTPOSITION</b> = 2266, +<b>SCI_WORDENDPOSITION</b> = 2267, +<b>SCI_SETWRAPMODE</b> = 2268, +<br> + <b>SCI_GETWRAPMODE</b> = 2269, +<b>SCI_SETLAYOUTCACHE</b> = 2272, +<b>SCI_GETLAYOUTCACHE</b> = 2273, +<br> + <b>SCI_SETSCROLLWIDTH</b> = 2274, +<b>SCI_GETSCROLLWIDTH</b> = 2275, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05a873177612d3225d21459d889b51a20">SCI_TEXTWIDTH</a> = 2276, +<br> + <b>SCI_SETENDATLASTLINE</b> = 2277, +<b>SCI_GETENDATLASTLINE</b> = 2278, +<b>SCI_TEXTHEIGHT</b> = 2279, +<br> + <b>SCI_SETVSCROLLBAR</b> = 2280, +<b>SCI_GETVSCROLLBAR</b> = 2281, +<b>SCI_APPENDTEXT</b> = 2282, +<br> + <b>SCI_GETTWOPHASEDRAW</b> = 2283, +<b>SCI_SETTWOPHASEDRAW</b> = 2284, +<b>SCI_AUTOCGETTYPESEPARATOR</b> = 2285, +<br> + <b>SCI_AUTOCSETTYPESEPARATOR</b> = 2286, +<b>SCI_TARGETFROMSELECTION</b> = 2287, +<b>SCI_LINESJOIN</b> = 2288, +<br> + <b>SCI_LINESSPLIT</b> = 2289, +<b>SCI_SETFOLDMARGINCOLOUR</b> = 2290, +<b>SCI_SETFOLDMARGINHICOLOUR</b> = 2291, +<br> + <b>SCI_LINEDOWN</b> = 2300, +<b>SCI_LINEDOWNEXTEND</b> = 2301, +<b>SCI_LINEUP</b> = 2302, +<br> + <b>SCI_LINEUPEXTEND</b> = 2303, +<b>SCI_CHARLEFT</b> = 2304, +<b>SCI_CHARLEFTEXTEND</b> = 2305, +<br> + <b>SCI_CHARRIGHT</b> = 2306, +<b>SCI_CHARRIGHTEXTEND</b> = 2307, +<b>SCI_WORDLEFT</b> = 2308, +<br> + <b>SCI_WORDLEFTEXTEND</b> = 2309, +<b>SCI_WORDRIGHT</b> = 2310, +<b>SCI_WORDRIGHTEXTEND</b> = 2311, +<br> + <b>SCI_HOME</b> = 2312, +<b>SCI_HOMEEXTEND</b> = 2313, +<b>SCI_LINEEND</b> = 2314, +<br> + <b>SCI_LINEENDEXTEND</b> = 2315, +<b>SCI_DOCUMENTSTART</b> = 2316, +<b>SCI_DOCUMENTSTARTEXTEND</b> = 2317, +<br> + <b>SCI_DOCUMENTEND</b> = 2318, +<b>SCI_DOCUMENTENDEXTEND</b> = 2319, +<b>SCI_PAGEUP</b> = 2320, +<br> + <b>SCI_PAGEUPEXTEND</b> = 2321, +<b>SCI_PAGEDOWN</b> = 2322, +<b>SCI_PAGEDOWNEXTEND</b> = 2323, +<br> + <b>SCI_EDITTOGGLEOVERTYPE</b> = 2324, +<b>SCI_CANCEL</b> = 2325, +<b>SCI_DELETEBACK</b> = 2326, +<br> + <b>SCI_TAB</b> = 2327, +<b>SCI_BACKTAB</b> = 2328, +<b>SCI_NEWLINE</b> = 2329, +<br> + <b>SCI_FORMFEED</b> = 2330, +<b>SCI_VCHOME</b> = 2331, +<b>SCI_VCHOMEEXTEND</b> = 2332, +<br> + <b>SCI_ZOOMIN</b> = 2333, +<b>SCI_ZOOMOUT</b> = 2334, +<b>SCI_DELWORDLEFT</b> = 2335, +<br> + <b>SCI_DELWORDRIGHT</b> = 2336, +<b>SCI_LINECUT</b> = 2337, +<b>SCI_LINEDELETE</b> = 2338, +<br> + <b>SCI_LINETRANSPOSE</b> = 2339, +<b>SCI_LOWERCASE</b> = 2340, +<b>SCI_UPPERCASE</b> = 2341, +<br> + <b>SCI_LINESCROLLDOWN</b> = 2342, +<b>SCI_LINESCROLLUP</b> = 2343, +<b>SCI_DELETEBACKNOTLINE</b> = 2344, +<br> + <b>SCI_HOMEDISPLAY</b> = 2345, +<b>SCI_HOMEDISPLAYEXTEND</b> = 2346, +<b>SCI_LINEENDDISPLAY</b> = 2347, +<br> + <b>SCI_LINEENDDISPLAYEXTEND</b> = 2348, +<b>SCI_MOVECARETINSIDEVIEW</b> = 2401, +<b>SCI_LINELENGTH</b> = 2350, +<br> + <b>SCI_BRACEHIGHLIGHT</b> = 2351, +<b>SCI_BRACEBADLIGHT</b> = 2352, +<b>SCI_BRACEMATCH</b> = 2353, +<br> + <b>SCI_GETVIEWEOL</b> = 2355, +<b>SCI_SETVIEWEOL</b> = 2356, +<b>SCI_GETDOCPOINTER</b> = 2357, +<br> + <b>SCI_SETDOCPOINTER</b> = 2358, +<b>SCI_SETMODEVENTMASK</b> = 2359, +<b>SCI_GETEDGECOLUMN</b> = 2360, +<br> + <b>SCI_SETEDGECOLUMN</b> = 2361, +<b>SCI_GETEDGEMODE</b> = 2362, +<b>SCI_SETEDGEMODE</b> = 2363, +<br> + <b>SCI_GETEDGECOLOUR</b> = 2364, +<b>SCI_SETEDGECOLOUR</b> = 2365, +<b>SCI_SEARCHANCHOR</b> = 2366, +<br> + <b>SCI_SEARCHNEXT</b> = 2367, +<b>SCI_SEARCHPREV</b> = 2368, +<b>SCI_LINESONSCREEN</b> = 2370, +<br> + <b>SCI_USEPOPUP</b> = 2371, +<b>SCI_SELECTIONISRECTANGLE</b> = 2372, +<b>SCI_SETZOOM</b> = 2373, +<br> + <b>SCI_GETZOOM</b> = 2374, +<b>SCI_CREATEDOCUMENT</b> = 2375, +<b>SCI_ADDREFDOCUMENT</b> = 2376, +<br> + <b>SCI_RELEASEDOCUMENT</b> = 2377, +<b>SCI_GETMODEVENTMASK</b> = 2378, +<b>SCI_SETFOCUS</b> = 2380, +<br> + <b>SCI_GETFOCUS</b> = 2381, +<b>SCI_SETSTATUS</b> = 2382, +<b>SCI_GETSTATUS</b> = 2383, +<br> + <b>SCI_SETMOUSEDOWNCAPTURES</b> = 2384, +<b>SCI_GETMOUSEDOWNCAPTURES</b> = 2385, +<b>SCI_SETCURSOR</b> = 2386, +<br> + <b>SCI_GETCURSOR</b> = 2387, +<b>SCI_SETCONTROLCHARSYMBOL</b> = 2388, +<b>SCI_GETCONTROLCHARSYMBOL</b> = 2389, +<br> + <b>SCI_WORDPARTLEFT</b> = 2390, +<b>SCI_WORDPARTLEFTEXTEND</b> = 2391, +<b>SCI_WORDPARTRIGHT</b> = 2392, +<br> + <b>SCI_WORDPARTRIGHTEXTEND</b> = 2393, +<b>SCI_SETVISIBLEPOLICY</b> = 2394, +<b>SCI_DELLINELEFT</b> = 2395, +<br> + <b>SCI_DELLINERIGHT</b> = 2396, +<b>SCI_SETXOFFSET</b> = 2397, +<b>SCI_GETXOFFSET</b> = 2398, +<br> + <b>SCI_CHOOSECARETX</b> = 2399, +<b>SCI_GRABFOCUS</b> = 2400, +<b>SCI_SETXCARETPOLICY</b> = 2402, +<br> + <b>SCI_SETYCARETPOLICY</b> = 2403, +<b>SCI_LINEDUPLICATE</b> = 2404, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b041ef59413dbfaeb8d13cde610dffb659">SCI_REGISTERIMAGE</a> = 2405, +<br> + <b>SCI_SETPRINTWRAPMODE</b> = 2406, +<b>SCI_GETPRINTWRAPMODE</b> = 2407, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0eb5af129108965033a6ae40eb45f7789">SCI_CLEARREGISTEREDIMAGES</a> = 2408, +<br> + <b>SCI_STYLESETHOTSPOT</b> = 2409, +<b>SCI_SETHOTSPOTACTIVEFORE</b> = 2410, +<b>SCI_SETHOTSPOTACTIVEBACK</b> = 2411, +<br> + <b>SCI_SETHOTSPOTACTIVEUNDERLINE</b> = 2412, +<b>SCI_PARADOWN</b> = 2413, +<b>SCI_PARADOWNEXTEND</b> = 2414, +<br> + <b>SCI_PARAUP</b> = 2415, +<b>SCI_PARAUPEXTEND</b> = 2416, +<b>SCI_POSITIONBEFORE</b> = 2417, +<br> + <b>SCI_POSITIONAFTER</b> = 2418, +<b>SCI_COPYRANGE</b> = 2419, +<b>SCI_COPYTEXT</b> = 2420, +<br> + <b>SCI_SETSELECTIONMODE</b> = 2422, +<b>SCI_GETSELECTIONMODE</b> = 2423, +<b>SCI_GETLINESELSTARTPOSITION</b> = 2424, +<br> + <b>SCI_GETLINESELENDPOSITION</b> = 2425, +<b>SCI_LINEDOWNRECTEXTEND</b> = 2426, +<b>SCI_LINEUPRECTEXTEND</b> = 2427, +<br> + <b>SCI_CHARLEFTRECTEXTEND</b> = 2428, +<b>SCI_CHARRIGHTRECTEXTEND</b> = 2429, +<b>SCI_HOMERECTEXTEND</b> = 2430, +<br> + <b>SCI_VCHOMERECTEXTEND</b> = 2431, +<b>SCI_LINEENDRECTEXTEND</b> = 2432, +<b>SCI_PAGEUPRECTEXTEND</b> = 2433, +<br> + <b>SCI_PAGEDOWNRECTEXTEND</b> = 2434, +<b>SCI_STUTTEREDPAGEUP</b> = 2435, +<b>SCI_STUTTEREDPAGEUPEXTEND</b> = 2436, +<br> + <b>SCI_STUTTEREDPAGEDOWN</b> = 2437, +<b>SCI_STUTTEREDPAGEDOWNEXTEND</b> = 2438, +<b>SCI_WORDLEFTEND</b> = 2439, +<br> + <b>SCI_WORDLEFTENDEXTEND</b> = 2440, +<b>SCI_WORDRIGHTEND</b> = 2441, +<b>SCI_WORDRIGHTENDEXTEND</b> = 2442, +<br> + <b>SCI_SETWHITESPACECHARS</b> = 2443, +<b>SCI_SETCHARSDEFAULT</b> = 2444, +<b>SCI_AUTOCGETCURRENT</b> = 2445, +<br> + <b>SCI_ALLOCATE</b> = 2446, +<b>SCI_HOMEWRAP</b> = 2349, +<b>SCI_HOMEWRAPEXTEND</b> = 2450, +<br> + <b>SCI_LINEENDWRAP</b> = 2451, +<b>SCI_LINEENDWRAPEXTEND</b> = 2452, +<b>SCI_VCHOMEWRAP</b> = 2453, +<br> + <b>SCI_VCHOMEWRAPEXTEND</b> = 2454, +<b>SCI_LINECOPY</b> = 2455, +<b>SCI_FINDCOLUMN</b> = 2456, +<br> + <b>SCI_GETCARETSTICKY</b> = 2457, +<b>SCI_SETCARETSTICKY</b> = 2458, +<b>SCI_TOGGLECARETSTICKY</b> = 2459, +<br> + <b>SCI_SETWRAPVISUALFLAGS</b> = 2460, +<b>SCI_GETWRAPVISUALFLAGS</b> = 2461, +<b>SCI_SETWRAPVISUALFLAGSLOCATION</b> = 2462, +<br> + <b>SCI_GETWRAPVISUALFLAGSLOCATION</b> = 2463, +<b>SCI_SETWRAPSTARTINDENT</b> = 2464, +<b>SCI_GETWRAPSTARTINDENT</b> = 2465, +<br> + <b>SCI_MARKERADDSET</b> = 2466, +<b>SCI_SETPASTECONVERTENDINGS</b> = 2467, +<b>SCI_GETPASTECONVERTENDINGS</b> = 2468, +<br> + <b>SCI_SELECTIONDUPLICATE</b> = 2469, +<b>SCI_SETCARETLINEBACKALPHA</b> = 2470, +<b>SCI_GETCARETLINEBACKALPHA</b> = 2471, +<br> + <b>SCI_MARKERSETALPHA</b> = 2476, +<b>SCI_GETSELALPHA</b> = 2477, +<b>SCI_SETSELALPHA</b> = 2478, +<br> + <b>SCI_STARTRECORD</b> = 3001, +<b>SCI_STOPRECORD</b> = 3002, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0072c4ebd26abad84f3892a5aef4cf215">SCI_SETLEXER</a> = 4001, +<br> + <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0f2708d28f4c8b3d30bf4bea14b977945">SCI_GETLEXER</a> = 4002, +<b>SCI_COLOURISE</b> = 4003, +<b>SCI_SETPROPERTY</b> = 4004, +<br> + <b>SCI_SETKEYWORDS</b> = 4005, +<a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08512ebbc6a1341e1fb55f70e693fb8d0">SCI_SETLEXERLANGUAGE</a> = 4006, +<b>SCI_LOADLEXERLIBRARY</b> = 4007, +<br> + <b>SCI_GETPROPERTY</b> = 4008, +<b>SCI_GETPROPERTYEXPANDED</b> = 4009, +<b>SCI_GETPROPERTYINT</b> = 4010, +<br> + <b>SCI_GETSTYLEBITSNEEDED</b> = 4011 +<br> + } +<li>enum { <b>SC_ALPHA_TRANSPARENT</b> = 0, +<b>SC_ALPHA_OPAQUE</b> = 255, +<b>SC_ALPHA_NOALPHA</b> = 256 + } +<li>enum { <b>SC_WRAPVISUALFLAG_NONE</b> = 0x0000, +<b>SC_WRAPVISUALFLAG_END</b> = 0x0001, +<b>SC_WRAPVISUALFLAG_START</b> = 0x0002 + } +<li>enum { <b>SC_WRAPVISUALFLAGLOC_DEFAULT</b> = 0x0000, +<b>SC_WRAPVISUALFLAGLOC_END_BY_TEXT</b> = 0x0001, +<b>SC_WRAPVISUALFLAGLOC_START_BY_TEXT</b> = 0x0002 + } +<li>enum { <b>SC_SEL_STREAM</b> = 0, +<b>SC_SEL_RECTANGLE</b> = 1, +<b>SC_SEL_LINES</b> = 2 + } +<li>enum { <b>SCWS_INVISIBLE</b> = 0, +<b>SCWS_VISIBLEALWAYS</b> = 1, +<b>SCWS_VISIBLEAFTERINDENT</b> = 2 + } +<li>enum { <b>SC_EOL_CRLF</b> = 0, +<b>SC_EOL_CR</b> = 1, +<b>SC_EOL_LF</b> = 2 + } +<li>enum { <b>SC_CP_DBCS</b> = 1, +<b>SC_CP_UTF8</b> = 65001 + } +<li>enum { <br> + <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f434a6ab21669939553df7ea20efee63">SC_MARK_CIRCLE</a> = 0, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498c50cda1aa3ef885dd756384991ee61">SC_MARK_ROUNDRECT</a> = 1, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4e3b1de6390cc0af837be4f7d7fe2c874">SC_MARK_ARROW</a> = 2, +<br> + <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a7488c79a3800a9c8790763ed4adbef">SC_MARK_SMALLRECT</a> = 3, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498e14aa4f516be7f37574e209c1e663d">SC_MARK_SHORTARROW</a> = 4, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f42df2479d1baf9d5576639f46a1222346">SC_MARK_EMPTY</a> = 5, +<br> + <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4edad3abdf6caacb6b2e0aa6b5dcb2225">SC_MARK_ARROWDOWN</a> = 6, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f461a1e23b36a33e7dcbe60829fc9bc8cb">SC_MARK_MINUS</a> = 7, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4607f53e1b9693350dbf5317d22af3f36">SC_MARK_PLUS</a> = 8, +<br> + <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4723048b3e712e9165c6909e07d01295b">SC_MARK_VLINE</a> = 9, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f481d4d67f51f4ca1537ed49073485d9a7">SC_MARK_LCORNER</a> = 10, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7c7a88f1171999c0a794440ca52421">SC_MARK_TCORNER</a> = 11, +<br> + <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4b44cd3777c6526b38e43729f55d33d9f">SC_MARK_BOXPLUS</a> = 12, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a273fcfe1adb61f9209aae02dc0255e">SC_MARK_BOXPLUSCONNECTED</a> = 13, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4562a720141731259a0b103de4bd97d97">SC_MARK_BOXMINUS</a> = 14, +<br> + <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4796ee8aec20e6718fb0f64ed6842f788">SC_MARK_BOXMINUSCONNECTED</a> = 15, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ee7ddee38b57a705314bc6739e488bab">SC_MARK_LCORNERCURVE</a> = 16, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f724482fbd5d843bae330c83639aae34">SC_MARK_TCORNERCURVE</a> = 17, +<br> + <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7d571a7e7e48ae750c7a862e1bbaac">SC_MARK_CIRCLEPLUS</a> = 18, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f44be3bd3071b92f21bedeb38080297239">SC_MARK_CIRCLEPLUSCONNECTED</a> = 19, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4d8679bbada38b23e093aca2d7e181cf6">SC_MARK_CIRCLEMINUS</a> = 20, +<br> + <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ef80900cadb97b802077c229197a5cb3">SC_MARK_CIRCLEMINUSCONNECTED</a> = 21, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40299712b9cc948d89b63ccb57cc718b1">SC_MARK_BACKGROUND</a> = 22, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4bc5087b0b7079ec10079a8346c7f5034">SC_MARK_DOTDOTDOT</a> = 23, +<br> + <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f89256799c23918fda728e89cca33202">SC_MARK_ARROWS</a> = 24, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f45f1d4dcf4839e48bcd9a4e3f134ce7c6">SC_MARK_PIXMAP</a> = 25, +<a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f427aabfe553646e9ab186017b26577a06">SC_MARK_FULLRECT</a> = 26, +<br> + <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43b6b66013744d32a407bdfd6d09a5b51">SC_MARK_CHARACTER</a> = 10000 +<br> + } +<li>enum { <br> + <b>SC_MARKNUM_FOLDEREND</b> = 25, +<b>SC_MARKNUM_FOLDEROPENMID</b> = 26, +<b>SC_MARKNUM_FOLDERMIDTAIL</b> = 27, +<br> + <b>SC_MARKNUM_FOLDERTAIL</b> = 28, +<b>SC_MARKNUM_FOLDERSUB</b> = 29, +<b>SC_MARKNUM_FOLDER</b> = 30, +<br> + <b>SC_MARKNUM_FOLDEROPEN</b> = 31, +<b>SC_MASK_FOLDERS</b> = 0xfe000000 +<br> + } +<li>enum { <br> + <a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a27e7af608c20e4123e0c63a4cc773b363">SC_MARGIN_SYMBOL</a> = 0, +<a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2ed8932da45c8172b8b9c8fdeca780f62">SC_MARGIN_NUMBER</a> = 1, +<a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2202759936bafc4284957c4226f3042db">SC_MARGIN_BACK</a> = 2, +<br> + <a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a23d1e3bb214808a93cf72986b0b461027">SC_MARGIN_FORE</a> = 3 +<br> + } +<li>enum { <br> + <b>STYLE_DEFAULT</b> = 32, +<b>STYLE_LINENUMBER</b> = 33, +<b>STYLE_BRACELIGHT</b> = 34, +<br> + <b>STYLE_BRACEBAD</b> = 35, +<b>STYLE_CONTROLCHAR</b> = 36, +<b>STYLE_INDENTGUIDE</b> = 37, +<br> + <b>STYLE_CALLTIP</b> = 38, +<b>STYLE_LASTPREDEFINED</b> = 39, +<b>STYLE_MAX</b> = 127 +<br> + } +<li>enum { <br> + <b>SC_CHARSET_ANSI</b> = 0, +<b>SC_CHARSET_DEFAULT</b> = 1, +<b>SC_CHARSET_BALTIC</b> = 186, +<br> + <b>SC_CHARSET_CHINESEBIG5</b> = 136, +<b>SC_CHARSET_EASTEUROPE</b> = 238, +<b>SC_CHARSET_GB2312</b> = 134, +<br> + <b>SC_CHARSET_GREEK</b> = 161, +<b>SC_CHARSET_HANGUL</b> = 129, +<b>SC_CHARSET_MAC</b> = 77, +<br> + <b>SC_CHARSET_OEM</b> = 255, +<b>SC_CHARSET_RUSSIAN</b> = 204, +<b>SC_CHARSET_SHIFTJIS</b> = 128, +<br> + <b>SC_CHARSET_SYMBOL</b> = 2, +<b>SC_CHARSET_TURKISH</b> = 162, +<b>SC_CHARSET_JOHAB</b> = 130, +<br> + <b>SC_CHARSET_HEBREW</b> = 177, +<b>SC_CHARSET_ARABIC</b> = 178, +<b>SC_CHARSET_VIETNAMESE</b> = 163, +<br> + <b>SC_CHARSET_THAI</b> = 222, +<b>SC_CHARSET_8859_15</b> = 1000 +<br> + } +<li>enum { <b>SC_CASE_MIXED</b> = 0, +<b>SC_CASE_UPPER</b> = 1, +<b>SC_CASE_LOWER</b> = 2 + } +<li>enum { <br> + <b>INDIC_MAX</b> = 7, +<b>INDIC_PLAIN</b> = 0, +<b>INDIC_SQUIGGLE</b> = 1, +<br> + <b>INDIC_TT</b> = 2, +<b>INDIC_DIAGONAL</b> = 3, +<b>INDIC_STRIKE</b> = 4, +<br> + <b>INDIC_HIDDEN</b> = 5, +<b>INDIC_BOX</b> = 6, +<b>INDIC_ROUNDBOX</b> = 7, +<br> + <b>INDIC0_MASK</b> = 0x20, +<b>INDIC1_MASK</b> = 0x40, +<b>INDIC2_MASK</b> = 0x80, +<br> + <b>INDICS_MASK</b> = 0xe0 +<br> + } +<li>enum { <br> + <b>SC_PRINT_NORMAL</b> = 0, +<b>SC_PRINT_INVERTLIGHT</b> = 1, +<b>SC_PRINT_BLACKONWHITE</b> = 2, +<br> + <b>SC_PRINT_COLOURONWHITE</b> = 3, +<b>SC_PRINT_COLOURONWHITEDEFAULTBG</b> = 4 +<br> + } +<li>enum { <br> + <b>SCFIND_WHOLEWORD</b> = 2, +<b>SCFIND_MATCHCASE</b> = 4, +<b>SCFIND_WORDSTART</b> = 0x00100000, +<br> + <b>SCFIND_REGEXP</b> = 0x00200000, +<b>SCFIND_POSIX</b> = 0x00400000 +<br> + } +<li>enum { <br> + <b>SC_FOLDLEVELBASE</b> = 0x00400, +<b>SC_FOLDLEVELWHITEFLAG</b> = 0x01000, +<b>SC_FOLDLEVELHEADERFLAG</b> = 0x02000, +<br> + <b>SC_FOLDLEVELBOXHEADERFLAG</b> = 0x04000, +<b>SC_FOLDLEVELBOXFOOTERFLAG</b> = 0x08000, +<b>SC_FOLDLEVELCONTRACTED</b> = 0x10000, +<br> + <b>SC_FOLDLEVELUNINDENT</b> = 0x20000, +<b>SC_FOLDLEVELNUMBERMASK</b> = 0x00fff +<br> + } +<li>enum { <br> + <b>SC_FOLDFLAG_BOX</b> = 0x0001, +<b>SC_FOLDFLAG_LINEBEFORE_EXPANDED</b> = 0x0002, +<b>SC_FOLDFLAG_LINEBEFORE_CONTRACTED</b> = 0x0004, +<br> + <b>SC_FOLDFLAG_LINEAFTER_EXPANDED</b> = 0x0008, +<b>SC_FOLDFLAG_LINEAFTER_CONTRACTED</b> = 0x0010, +<b>SC_FOLDFLAG_LEVELNUMBERS</b> = 0x0040 +<br> + } +<li>enum { <b>SC_TIME_FOREVER</b> = 10000000 + } +<li>enum { <b>SC_WRAP_NONE</b> = 0, +<b>SC_WRAP_WORD</b> = 1, +<b>SC_WRAP_CHAR</b> = 2 + } +<li>enum { <br> + <b>SC_CACHE_NONE</b> = 0, +<b>SC_CACHE_CARET</b> = 1, +<b>SC_CACHE_PAGE</b> = 2, +<br> + <b>SC_CACHE_DOCUMENT</b> = 3 +<br> + } +<li>enum { <b>EDGE_NONE</b> = 0, +<b>EDGE_LINE</b> = 1, +<b>EDGE_BACKGROUND</b> = 2 + } +<li>enum { <b>SC_CURSORNORMAL</b> = -1, +<b>SC_CURSORWAIT</b> = 4 + } +<li>enum { <b>VISIBLE_SLOP</b> = 0x01, +<b>VISIBLE_STRICT</b> = 0x04 + } +<li>enum { <br> + <b>CARET_SLOP</b> = 0x01, +<b>CARET_STRICT</b> = 0x04, +<b>CARET_JUMPS</b> = 0x10, +<br> + <b>CARET_EVEN</b> = 0x08 +<br> + } +<li>enum { <br> + <b>SC_MOD_INSERTTEXT</b> = 0x1, +<b>SC_MOD_DELETETEXT</b> = 0x2, +<b>SC_MOD_CHANGESTYLE</b> = 0x4, +<br> + <b>SC_MOD_CHANGEFOLD</b> = 0x8, +<b>SC_PERFORMED_USER</b> = 0x10, +<b>SC_PERFORMED_UNDO</b> = 0x20, +<br> + <b>SC_PERFORMED_REDO</b> = 0x40, +<b>SC_MULTISTEPUNDOREDO</b> = 0x80, +<b>SC_LASTSTEPINUNDOREDO</b> = 0x100, +<br> + <b>SC_MOD_CHANGEMARKER</b> = 0x200, +<b>SC_MOD_BEFOREINSERT</b> = 0x400, +<b>SC_MOD_BEFOREDELETE</b> = 0x800, +<br> + <b>SC_MULTILINEUNDOREDO</b> = 0x1000, +<b>SC_MODEVENTMASKALL</b> = 0x1fff +<br> + } +<li>enum { <br> + <b>SCK_DOWN</b> = 300, +<b>SCK_UP</b> = 301, +<b>SCK_LEFT</b> = 302, +<br> + <b>SCK_RIGHT</b> = 303, +<b>SCK_HOME</b> = 304, +<b>SCK_END</b> = 305, +<br> + <b>SCK_PRIOR</b> = 306, +<b>SCK_NEXT</b> = 307, +<b>SCK_DELETE</b> = 308, +<br> + <b>SCK_INSERT</b> = 309, +<b>SCK_ESCAPE</b> = 7, +<b>SCK_BACK</b> = 8, +<br> + <b>SCK_TAB</b> = 9, +<b>SCK_RETURN</b> = 13, +<b>SCK_ADD</b> = 310, +<br> + <b>SCK_SUBTRACT</b> = 311, +<b>SCK_DIVIDE</b> = 312 +<br> + } +<li>enum { <br> + <a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e881b5932870b621432a28e0d7a324695">SCMOD_NORM</a> = 0, +<a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4eeb5363cad0f41ea5332418f63a3ad06f">SCMOD_SHIFT</a> = 1, +<a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4ea69a17f5b83112750f8807a1516b8119">SCMOD_CTRL</a> = 2, +<br> + <a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e3d58fd86cb23274ec15615fe2c42961f">SCMOD_ALT</a> = 4 +<br> + } +<li>enum { <br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df702befd903d9d65fa84af10461828a0">SCLEX_CONTAINER</a> = 0, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a51b24b990fe1e8e3680d25e1331dc6">SCLEX_NULL</a> = 1, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d70827e6b1710d76ca56fce165f726ad2">SCLEX_PYTHON</a> = 2, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d37233777b6512990ad985e41f1470ee0">SCLEX_CPP</a> = 3, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df2338400902a61d96c4057caa0c450a2">SCLEX_HTML</a> = 4, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de4a8bd95f6f567e44a246f46c3d2a7fe">SCLEX_XML</a> = 5, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0bd817c73cd4b9a00a81c04a8585804b">SCLEX_PERL</a> = 6, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d31b4c7ddbe672064514c775788f56f80">SCLEX_SQL</a> = 7, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d42e3b71bd069a7991e73b16a48d44fb3">SCLEX_VB</a> = 8, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d780544fc36639fc09690ad6dbb352f65">SCLEX_PROPERTIES</a> = 9, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da5ccd91896d4f60a1721f59baca56e13">SCLEX_ERRORLIST</a> = 10, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3569ea5aea72d6978fb61b6231c3b4da">SCLEX_MAKEFILE</a> = 11, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4f36017b6593f4740d006563caa5dd1a">SCLEX_BATCH</a> = 12, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8817495465d06d51a7f29663db3e307d">SCLEX_LATEX</a> = 14, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dda37fcab324043a52fc2b85399644454">SCLEX_LUA</a> = 15, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6842f7058b71411ab80bc1c33a63da63">SCLEX_DIFF</a> = 16, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f3a52fea3e08741ea664dedf5530fa5">SCLEX_CONF</a> = 17, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6210ca0cdb31e06c18ec14294238a3a4">SCLEX_PASCAL</a> = 18, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6edb4f9bc36f41d26f4a42a3410c7433">SCLEX_AVE</a> = 19, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8b9733c9dd7b20e68a1226cf9ed81f69">SCLEX_ADA</a> = 20, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d332fca6d318ec42f4db4191ad6deb193">SCLEX_LISP</a> = 21, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc062b29c7caa054f57b5b6aa54385f33">SCLEX_RUBY</a> = 22, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d348f60f0b617eed037b6110e42af0996">SCLEX_EIFFEL</a> = 23, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6d8490d0f99f6b329ab5f45c2234adf5">SCLEX_EIFFELKW</a> = 24, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e46782e8d9ccda555ec49cfca67e546">SCLEX_TCL</a> = 25, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8bbda96ce9f7e57aa479486a2d4edd94">SCLEX_NNCRONTAB</a> = 26, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0925a82889c406669e7293d180555159">SCLEX_BULLANT</a> = 27, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4e2037e23a835db605b0620f32511b87">SCLEX_VBSCRIPT</a> = 28, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded111ca524237de01b990c8aa9380542">SCLEX_ASP</a> = SCLEX_HTML, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dab90570deb68926f7c76339b9640bc25">SCLEX_PHP</a> = SCLEX_HTML, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3c9e1bf7b958e31d8ab870a95cab0851">SCLEX_BAAN</a> = 31, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dbd5db8ab589a9223d2e095dcf3855454">SCLEX_MATLAB</a> = 32, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d013005a7d7306628adbcdaa6bd41d24f">SCLEX_SCRIPTOL</a> = 33, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8c7ff8643a97b01c67a4a9271030d1ac">SCLEX_ASM</a> = 34, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddada03b169d0b52daa7c00181f03e897">SCLEX_CPPNOCASE</a> = 35, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d78c83128f5d3c8ed6b2d87a3c6f61e3d">SCLEX_FORTRAN</a> = 36, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb8b68e427523e7e7ac9bc7f20b4347b">SCLEX_F77</a> = 37, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc4b56223ccc682279fc18900fe650778">SCLEX_CSS</a> = 38, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d830f97f74f0966734a36579de53e7f9e">SCLEX_POV</a> = 39, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62db03b3fda38342d0470fab2357eac2ab0">SCLEX_LOUT</a> = 40, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d07f1b0054d239f968dece3bfb2017e6e">SCLEX_ESCRIPT</a> = 41, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d338ccc586737eb91dfc4333fea64b1f9">SCLEX_PS</a> = 42, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddd268ef9f9d4209dc241f55828257120">SCLEX_NSIS</a> = 43, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc09594aa860e17ddff434ba2883e552e">SCLEX_MMIXAL</a> = 44, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0651b9876e477b32d5a3825d298098ae">SCLEX_CLW</a> = 45, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dafaa399612f323eb30aa2ca13bc0e42a">SCLEX_CLWNOCASE</a> = 46, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2c42663d4d0f5e3ea1ea6667d467bf5f">SCLEX_LOT</a> = 47, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a3b27b45e2066a6dd275b613adb0a1d">SCLEX_YAML</a> = 48, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6b8c539414c4f2127c04e5bc2c9da03a">SCLEX_TEX</a> = 49, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8953cce4f69b05e263e1f47c617a70fd">SCLEX_METAPOST</a> = 50, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d055c632267a1a9e088e92893398ac0c2">SCLEX_POWERBASIC</a> = 51, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8cba676e4b42856ea6187a171dc74995">SCLEX_FORTH</a> = 52, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da96b775c8fe016a1e7541600f939e201">SCLEX_ERLANG</a> = 53, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d91d63a0032121624fdae20af80851828">SCLEX_OCTAVE</a> = 54, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d85f6c994156a3adcea37f321f8dd6a3d">SCLEX_MSSQL</a> = 55, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8142b07f7de61126fc5e4dd005f09c28">SCLEX_VERILOG</a> = 56, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb1d483ed2becbbe59887bb89f4014d0">SCLEX_KIX</a> = 57, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dd9dc2f753f14ca5ef729c2883dee1b0d">SCLEX_GUI4CLI</a> = 58, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2a598cbdc1084026ef09a46ac1832c62">SCLEX_SPECMAN</a> = 59, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8dc8d6b0189cd4d471264a824cf1c199">SCLEX_AU3</a> = 60, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc5a6e143f3b3db4c6b2e80fce8d4f8eb">SCLEX_APDL</a> = 61, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f9e5ea4e564ba6f8d1dae8d7ace454d">SCLEX_BASH</a> = 62, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da0b7eaa71bb78dd6d6fced870ba90f24">SCLEX_ASN1</a> = 63, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7d9f5bcf567a86ad19f28476539f3c76">SCLEX_VHDL</a> = 64, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d53e5454136a08b61270dfa0e49e471e6">SCLEX_CAML</a> = 65, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2696851be5e73938cc53b02903bf30c2">SCLEX_BLITZBASIC</a> = 66, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7764a265dd69743101b3a64e68ae5efa">SCLEX_PUREBASIC</a> = 67, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d351fd85d3fd522100386bfd9424e3a62">SCLEX_HASKELL</a> = 68, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e89b369bda35c4aebac67f7313a90f2">SCLEX_PHPSCRIPT</a> = 69, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dcabaa53d59287ebbdc977eeceb9c3e65">SCLEX_TADS3</a> = 70, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de5f83876b6fa6a6de26b655e281ffd16">SCLEX_REBOL</a> = 71, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3a1de57f409755a648a5755f914ed028">SCLEX_SMALLTALK</a> = 72, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d38bfecc4bc450106195200bf1724a84b">SCLEX_FLAGSHIP</a> = 73, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d046e55128e56aeeb7a72f994fb4e015b">SCLEX_CSOUND</a> = 74, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d276307014b9460c95ebe5076afa050f2">SCLEX_FREEBASIC</a> = 75, +<br> + <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0efec3f1d46af6f6a7924de1e19a5761">SCLEX_INNOSETUP</a> = 76, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded042730912f5111558955e09214d298">SCLEX_OPAL</a> = 77, +<a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d983672d8cd26e849c76717f754e59a80">SCLEX_SPICE</a> = 78 +<br> + } +</ul> +<h2>Signals</h2> +<ul> +<li>void <a class="el" href="classQextScintillaBase.html#98a9d6ccb14bf28e9bf75dc069577b9b">QSCN_SELCHANGED</a> (bool yes) +<li>void <a class="el" href="classQextScintillaBase.html#8201e4d6beab5edbb64515d6d52b1fd7">SCN_AUTOCSELECTION</a> (const char *selection, int position) +<li>void <a class="el" href="classQextScintillaBase.html#13a80e946a24ed608742e90e976b770b">SCEN_CHANGE</a> () +<li>void <a class="el" href="classQextScintillaBase.html#dccbc9d664a8bffc9d59971a362febf2">SCN_CALLTIPCLICK</a> (int direction) +<li>void <a class="el" href="classQextScintillaBase.html#3af676a6edd1f511a0c46cbc9bbb2cbb">SCN_CHARADDED</a> (int charadded) +<li><a class="anchor" name="33213d3c0837126adc641b37c10fdde2"></a><!-- doxytag: member="QextScintillaBase::SCN_DOUBLECLICK" ref="33213d3c0837126adc641b37c10fdde2" args="()" --> +void <b>SCN_DOUBLECLICK</b> () +<li><a class="anchor" name="2ac91e2f474cb7fdcf27f6e8c858730a"></a><!-- doxytag: member="QextScintillaBase::SCN_DWELLEND" ref="2ac91e2f474cb7fdcf27f6e8c858730a" args="(int, int, int)" --> +void <b>SCN_DWELLEND</b> (int, int, int) +<li><a class="anchor" name="a92fd7d7f7f5c0987c2cd1ca1fe397fa"></a><!-- doxytag: member="QextScintillaBase::SCN_DWELLSTART" ref="a92fd7d7f7f5c0987c2cd1ca1fe397fa" args="(int, int, int)" --> +void <b>SCN_DWELLSTART</b> (int, int, int) +<li>void <a class="el" href="classQextScintillaBase.html#c5a9f540a31b8fa2614eb81ee83a3ca4">SCN_HOTSPOTCLICK</a> (int position, int modifiers) +<li>void <a class="el" href="classQextScintillaBase.html#1ef454f2acaccaa53dcce7e542cdb006">SCN_HOTSPOTDOUBLECLICK</a> (int position, int modifiers) +<li>void <a class="el" href="classQextScintillaBase.html#48c3b55133b4f2fe40f4a8ad48c8464a">SCN_MACRORECORD</a> (unsigned int, unsigned long, long) +<li>void <a class="el" href="classQextScintillaBase.html#5d37a34b0254cfe015056c25b1b486a5">SCN_MARGINCLICK</a> (int position, int modifiers, int margin) +<li><a class="anchor" name="eb0a941210082db556ea783f8b0cd978"></a><!-- doxytag: member="QextScintillaBase::SCN_MODIFIED" ref="eb0a941210082db556ea783f8b0cd978" args="(int, int, const char *, int, int, int, int, int)" --> +void <b>SCN_MODIFIED</b> (int, int, const char *, int, int, int, int, int) +<li>void <a class="el" href="classQextScintillaBase.html#50b6b16bf671969a8e0034b8763a55b2">SCN_MODIFYATTEMPTRO</a> () +<li><a class="anchor" name="2599ebc12413dc502975a99cb686ae14"></a><!-- doxytag: member="QextScintillaBase::SCN_NEEDSHOWN" ref="2599ebc12413dc502975a99cb686ae14" args="(int, int)" --> +void <b>SCN_NEEDSHOWN</b> (int, int) +<li>void <a class="el" href="classQextScintillaBase.html#0812c4c0f7a05df4ede492e5b81c0c5d">SCN_PAINTED</a> () +<li>void <a class="el" href="classQextScintillaBase.html#2b5ad5e9701145883210c588caa60859">SCN_SAVEPOINTLEFT</a> () +<li>void <a class="el" href="classQextScintillaBase.html#72a342de3e6973e7bfee0403bc002585">SCN_SAVEPOINTREACHED</a> () +<li>void <a class="el" href="classQextScintillaBase.html#091c3669666a8d479e8dea5b803f63d7">SCN_STYLENEEDED</a> (int position) +<li><a class="anchor" name="ce24b8a8e705c39c6e32b65188faa24d"></a><!-- doxytag: member="QextScintillaBase::SCN_UPDATEUI" ref="ce24b8a8e705c39c6e32b65188faa24d" args="()" --> +void <b>SCN_UPDATEUI</b> () +<li><a class="anchor" name="8aaa55c2e1f269dae788529689cc2e53"></a><!-- doxytag: member="QextScintillaBase::SCN_USERLISTSELECTION" ref="8aaa55c2e1f269dae788529689cc2e53" args="(const char *, int)" --> +void <b>SCN_USERLISTSELECTION</b> (const char *, int) +<li><a class="anchor" name="5a7c0bcae62f3eee60bdf3a960ad7526"></a><!-- doxytag: member="QextScintillaBase::SCN_ZOOM" ref="5a7c0bcae62f3eee60bdf3a960ad7526" args="()" --> +void <b>SCN_ZOOM</b> () +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaBase.html#e54a418ee8c182e1ddfa404b59a34149">QextScintillaBase</a> (QWidget *parent=0, const char *name=0, WFlags f=0) +<li>virtual <a class="el" href="classQextScintillaBase.html#f22e6dadb040870209e511018a4aa0b8">~QextScintillaBase</a> () +<li>long <a class="el" href="classQextScintillaBase.html#35ba57ee3832cf695531cc997b24d821">SendScintilla</a> (unsigned int msg, unsigned long wParam=0, long lParam=0) +<li><a class="anchor" name="cf89bf4f1ea30240e7bd4be919afa471"></a><!-- doxytag: member="QextScintillaBase::SendScintilla" ref="cf89bf4f1ea30240e7bd4be919afa471" args="(unsigned int msg, unsigned long wParam, const char *lParam)" --> +long <b>SendScintilla</b> (unsigned int msg, unsigned long wParam, const char *lParam) +<li><a class="anchor" name="fbe7042341c0e9396b5cffeb432d2786"></a><!-- doxytag: member="QextScintillaBase::SendScintilla" ref="fbe7042341c0e9396b5cffeb432d2786" args="(unsigned int msg, const char *lParam)" --> +long <b>SendScintilla</b> (unsigned int msg, const char *lParam) +<li><a class="anchor" name="077287d1e3ad297080b0a149bc9eeaf3"></a><!-- doxytag: member="QextScintillaBase::SendScintilla" ref="077287d1e3ad297080b0a149bc9eeaf3" args="(unsigned int msg, const char *wParam, const char *lParam)" --> +long <b>SendScintilla</b> (unsigned int msg, const char *wParam, const char *lParam) +<li><a class="anchor" name="fd04c411e29047e2104559ac5d1c74b4"></a><!-- doxytag: member="QextScintillaBase::SendScintilla" ref="fd04c411e29047e2104559ac5d1c74b4" args="(unsigned int msg, long wParam)" --> +long <b>SendScintilla</b> (unsigned int msg, long wParam) +<li><a class="anchor" name="3ad0efd65969a4f063f3a799a3fbd486"></a><!-- doxytag: member="QextScintillaBase::SendScintilla" ref="3ad0efd65969a4f063f3a799a3fbd486" args="(unsigned int msg, int wParam)" --> +long <b>SendScintilla</b> (unsigned int msg, int wParam) +<li><a class="anchor" name="06eb7c593856f072293fe9c39df7306c"></a><!-- doxytag: member="QextScintillaBase::SendScintilla" ref="06eb7c593856f072293fe9c39df7306c" args="(unsigned int msg, long cpMin, long cpMax, char *lpstrText)" --> +long <b>SendScintilla</b> (unsigned int msg, long cpMin, long cpMax, char *lpstrText) +<li><a class="anchor" name="804996aa383fd519cbefeaaa77627343"></a><!-- doxytag: member="QextScintillaBase::SendScintilla" ref="804996aa383fd519cbefeaaa77627343" args="(unsigned int msg, unsigned long wParam, const QColor &col)" --> +long <b>SendScintilla</b> (unsigned int msg, unsigned long wParam, const QColor &col) +<li><a class="anchor" name="9c037b6421a5ba6b33e1ea1813ad56a9"></a><!-- doxytag: member="QextScintillaBase::SendScintilla" ref="9c037b6421a5ba6b33e1ea1813ad56a9" args="(unsigned int msg, const QColor &col)" --> +long <b>SendScintilla</b> (unsigned int msg, const QColor &col) +<li><a class="anchor" name="07dac1922b49ac698db799a30cecc62d"></a><!-- doxytag: member="QextScintillaBase::SendScintilla" ref="07dac1922b49ac698db799a30cecc62d" args="(unsigned int msg, unsigned long wParam, QPainter *hdc, const QRect &rc, long cpMin, long cpMax)" --> +long <b>SendScintilla</b> (unsigned int msg, unsigned long wParam, QPainter *hdc, const QRect &rc, long cpMin, long cpMax) +<li><a class="anchor" name="10a88dc5c6aa9d423eeea62b21843264"></a><!-- doxytag: member="QextScintillaBase::SendScintilla" ref="10a88dc5c6aa9d423eeea62b21843264" args="(unsigned int msg, unsigned long wParam, const QPixmap *lParam)" --> +long <b>SendScintilla</b> (unsigned int msg, unsigned long wParam, const QPixmap *lParam) +<li>virtual QSize <a class="el" href="classQextScintillaBase.html#171ce27ddcfabf024cc5539181f253dd">sizeHint</a> () const +<li>QWidget * <a class="el" href="classQextScintillaBase.html#7c7723d64865b462ecfbf4152d836cae">viewport</a> () const +</ul> +<h2>Static Public Member Functions</h2> +<ul> +<li>static <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a> * <a class="el" href="classQextScintillaBase.html#e9a2e982760ae835cdecfcfe6b92c416">pool</a> () +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaBase.html#a31a4b262617ad472c95f700de47a84b">eventFilter</a> (QObject *o, QEvent *e) +<li>virtual void <a class="el" href="classQextScintillaBase.html#f2973f7bf587f7e71902a1b7909a7c60">keyPressEvent</a> (QKeyEvent *ke) +<li>virtual void <a class="el" href="classQextScintillaBase.html#85e6877f9aad613a869fe5b7d97f9035">focusInEvent</a> (QFocusEvent *) +<li>virtual void <a class="el" href="classQextScintillaBase.html#f87a97050d71a323d47d666fe4a5547b">focusOutEvent</a> (QFocusEvent *) +<li>virtual bool <a class="el" href="classQextScintillaBase.html#9516bc2125ea51a8de4c21f6af42a4b1">focusNextPrevChild</a> (bool) +<li>virtual void <a class="el" href="classQextScintillaBase.html#7c1be000329c8f9e328999cbc03ba9a7">startDrag</a> () +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a> class implements the Scintilla editor widget and its low-level API. +<p> +Scintilla (<a href="http://www.scintilla.org">http://www.scintilla.org</a>) is a powerful C++ editor class that supports many features including syntax styling, error indicators, code completion and call tips. It is particularly useful as a programmer's editor.<p> +<a class="el" href="classQextScintillaBase.html">QextScintillaBase</a> is a port to Qt of Scintilla. It implements the standard Scintilla API which consists of a number of messages each taking up to two arguments.<p> +See <a class="el" href="classQextScintilla.html">QextScintilla</a> for the implementation of a higher level API that is more consistent with the rest of the Qt toolkit. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0"></a><!-- doxytag: member="QextScintillaBase::@1" ref="ebbb6944d058b48277d6ab33eceab4b0" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The low-level Scintilla API is implemented as a set of messages each of which takes up to two parameters (<em>wParam</em> and <em>lParam</em>) and optionally return a value. This enum defines all the possible messages.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#35ba57ee3832cf695531cc997b24d821">SendScintilla()</a> </dd></dl> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0da963008bd0cd3ee5fafd3a033ba5570"></a><!-- doxytag: member="SCI_ADDTEXT" ref="ebbb6944d058b48277d6ab33eceab4b0da963008bd0cd3ee5fafd3a033ba5570" args="" -->SCI_ADDTEXT</em> </td><td> +This message appends some text to the end of the document. <em>wParam</em> is the length of the text. <em>lParam</em> is the text to be appended. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07a1a628b61fa247d312e3f883fdcbc47"></a><!-- doxytag: member="SCI_GETCURRENTPOS" ref="ebbb6944d058b48277d6ab33eceab4b07a1a628b61fa247d312e3f883fdcbc47" args="" -->SCI_GETCURRENTPOS</em> </td><td> +This message returns the current position.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08f8198351235bce8efe1c9fa4b69419e">SCI_SETCURRENTPOS</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0caa048913dfa4284aac9304e4d5e2d96"></a><!-- doxytag: member="SCI_GETANCHOR" ref="ebbb6944d058b48277d6ab33eceab4b0caa048913dfa4284aac9304e4d5e2d96" args="" -->SCI_GETANCHOR</em> </td><td> +This message returns the anchor.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ddf73f24d674a7deda70e54f8418edcc">SCI_SETANCHOR</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0be33d4f870ce79d968106ae73cc431a0"></a><!-- doxytag: member="SCI_SETSAVEPOINT" ref="ebbb6944d058b48277d6ab33eceab4b0be33d4f870ce79d968106ae73cc431a0" args="" -->SCI_SETSAVEPOINT</em> </td><td> +This message marks the current state of the text as the the save point. This is usually done when the text is saved or loaded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#72a342de3e6973e7bfee0403bc002585">SCN_SAVEPOINTREACHED()</a>, <a class="el" href="classQextScintillaBase.html#2b5ad5e9701145883210c588caa60859">SCN_SAVEPOINTLEFT()</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0c7d428743df3c3270a93ef5458a9c9a4"></a><!-- doxytag: member="SCI_MARKERLINEFROMHANDLE" ref="ebbb6944d058b48277d6ab33eceab4b0c7d428743df3c3270a93ef5458a9c9a4" args="" -->SCI_MARKERLINEFROMHANDLE</em> </td><td> +This message returns the line that contains a particular instance of a marker. <em>wParam</em> is the handle of the marker.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49">SCI_MARKERADD</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04d4abb132cd5c624fb863a4e2e18cb48"></a><!-- doxytag: member="SCI_MARKERDELETEHANDLE" ref="ebbb6944d058b48277d6ab33eceab4b04d4abb132cd5c624fb863a4e2e18cb48" args="" -->SCI_MARKERDELETEHANDLE</em> </td><td> +This message removes a particular instance of a marker. <em>wParam</em> is the handle of the marker.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49">SCI_MARKERADD</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b00ac47051be6366994d747fd07b52077a"></a><!-- doxytag: member="SCI_GOTOPOS" ref="ebbb6944d058b48277d6ab33eceab4b00ac47051be6366994d747fd07b52077a" args="" -->SCI_GOTOPOS</em> </td><td> +This message clears the current selection and sets the current position. <em>wParam</em> is the new current position.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08f8198351235bce8efe1c9fa4b69419e">SCI_SETCURRENTPOS</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ddf73f24d674a7deda70e54f8418edcc"></a><!-- doxytag: member="SCI_SETANCHOR" ref="ebbb6944d058b48277d6ab33eceab4b0ddf73f24d674a7deda70e54f8418edcc" args="" -->SCI_SETANCHOR</em> </td><td> +This message sets the anchor. <em>wParam</em> is the new anchor.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0caa048913dfa4284aac9304e4d5e2d96">SCI_GETANCHOR</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05ff8be672f9810059ab924770ee7a710"></a><!-- doxytag: member="SCI_GETENDSTYLED" ref="ebbb6944d058b48277d6ab33eceab4b05ff8be672f9810059ab924770ee7a710" args="" -->SCI_GETENDSTYLED</em> </td><td> +This message returns the character position of the start of the text that needs to be syntax styled.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#091c3669666a8d479e8dea5b803f63d7">SCN_STYLENEEDED()</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b053b5ad6db4f59a08f49888d1fe6014c9"></a><!-- doxytag: member="SCI_MARKERDEFINE" ref="ebbb6944d058b48277d6ab33eceab4b053b5ad6db4f59a08f49888d1fe6014c9" args="" -->SCI_MARKERDEFINE</em> </td><td> +This message sets the symbol used to draw one of 32 markers. Some markers have pre-defined uses, see the SC_MARKNUM_* values. <em>wParam</em> is the number of the marker. <em>lParam</em> is the marker symbol and is one of the SC_MARK_* values.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49">SCI_MARKERADD</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08b2d54230a47a94bfb2ea2fd88cdabc8">SCI_MARKERDEFINEPIXMAP</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06b0344c924e234c5a73466b86225e0af"></a><!-- doxytag: member="SCI_MARKERSETFORE" ref="ebbb6944d058b48277d6ab33eceab4b06b0344c924e234c5a73466b86225e0af" args="" -->SCI_MARKERSETFORE</em> </td><td> +This message sets the foreground colour used to draw a marker. A colour is represented as a 24 bit value. The 8 least significant bits correspond to red, the middle 8 bits correspond to green, and the 8 most significant bits correspond to blue. The default value is 0x000000. <em>wParam</em> is the number of the marker. <em>lParam</em> is the colour.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fc75921a28636146af28a8f21ca5ff82">SCI_MARKERSETBACK</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0fc75921a28636146af28a8f21ca5ff82"></a><!-- doxytag: member="SCI_MARKERSETBACK" ref="ebbb6944d058b48277d6ab33eceab4b0fc75921a28636146af28a8f21ca5ff82" args="" -->SCI_MARKERSETBACK</em> </td><td> +This message sets the background colour used to draw a marker. A colour is represented as a 24 bit value. The 8 least significant bits correspond to red, the middle 8 bits correspond to green, and the 8 most significant bits correspond to blue. The default value is 0xffffff. <em>wParam</em> is the number of the marker. <em>lParam</em> is the colour.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06b0344c924e234c5a73466b86225e0af">SCI_MARKERSETFORE</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49"></a><!-- doxytag: member="SCI_MARKERADD" ref="ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49" args="" -->SCI_MARKERADD</em> </td><td> +This message adds a marker to a line. A handle for the marker is returned which can be used to track the marker's position. <em>wParam</em> is the line number. <em>lParam</em> is the number of the marker.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0b21015787f6b3914e4d638dee15aa2db">SCI_MARKERDELETE</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0daef3f1a3a46547eb9fdd1faa1dcabba">SCI_MARKERDELETEALL</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04d4abb132cd5c624fb863a4e2e18cb48">SCI_MARKERDELETEHANDLE</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0b21015787f6b3914e4d638dee15aa2db"></a><!-- doxytag: member="SCI_MARKERDELETE" ref="ebbb6944d058b48277d6ab33eceab4b0b21015787f6b3914e4d638dee15aa2db" args="" -->SCI_MARKERDELETE</em> </td><td> +This message deletes a marker from a line. <em>wParam</em> is the line number. <em>lParam</em> is the number of the marker.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49">SCI_MARKERADD</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0daef3f1a3a46547eb9fdd1faa1dcabba">SCI_MARKERDELETEALL</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0daef3f1a3a46547eb9fdd1faa1dcabba"></a><!-- doxytag: member="SCI_MARKERDELETEALL" ref="ebbb6944d058b48277d6ab33eceab4b0daef3f1a3a46547eb9fdd1faa1dcabba" args="" -->SCI_MARKERDELETEALL</em> </td><td> +This message deletes all occurences of a marker. <em>wParam</em> is the number of the marker. If <em>wParam</em> is -1 then all markers are removed.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49">SCI_MARKERADD</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0b21015787f6b3914e4d638dee15aa2db">SCI_MARKERDELETE</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03e011f5a6f9a1933ac95701cbe26e8f1"></a><!-- doxytag: member="SCI_MARKERGET" ref="ebbb6944d058b48277d6ab33eceab4b03e011f5a6f9a1933ac95701cbe26e8f1" args="" -->SCI_MARKERGET</em> </td><td> +This message returns the 32 bit mask of markers at a line. <em>wParam</em> is the line number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05f423984b7557eb8274ba46962d22021"></a><!-- doxytag: member="SCI_MARKERNEXT" ref="ebbb6944d058b48277d6ab33eceab4b05f423984b7557eb8274ba46962d22021" args="" -->SCI_MARKERNEXT</em> </td><td> +This message looks for the next line to contain at least one marker contained in a 32 bit mask of markers and returns the line number. <em>wParam</em> is the line number to start the search from. <em>lParam</em> is the mask of markers to search for.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06f99e3d5fe686e7fc62ea33c7b142bed">SCI_MARKERPREVIOUS</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b06f99e3d5fe686e7fc62ea33c7b142bed"></a><!-- doxytag: member="SCI_MARKERPREVIOUS" ref="ebbb6944d058b48277d6ab33eceab4b06f99e3d5fe686e7fc62ea33c7b142bed" args="" -->SCI_MARKERPREVIOUS</em> </td><td> +This message looks for the previous line to contain at least one marker contained in a 32 bit mask of markers and returns the line number. <em>wParam</em> is the line number to start the search from. <em>lParam</em> is the mask of markers to search for.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f423984b7557eb8274ba46962d22021">SCI_MARKERNEXT</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08b2d54230a47a94bfb2ea2fd88cdabc8"></a><!-- doxytag: member="SCI_MARKERDEFINEPIXMAP" ref="ebbb6944d058b48277d6ab33eceab4b08b2d54230a47a94bfb2ea2fd88cdabc8" args="" -->SCI_MARKERDEFINEPIXMAP</em> </td><td> +This message sets the symbol used to draw one of the 32 markers to a pixmap. Pixmaps use the SC_MARK_PIXMAP marker symbol. <em>wParam</em> is the number of the marker. <em>lParam</em> is a pointer to a QPixmap instance. Note that in other ports of Scintilla this is a pointer to either raw or textual XPM image data.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b053b5ad6db4f59a08f49888d1fe6014c9">SCI_MARKERDEFINE</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05f9b3a4194c3ee4d18f9efb8dcb91bb9"></a><!-- doxytag: member="SCI_SETMARGINTYPEN" ref="ebbb6944d058b48277d6ab33eceab4b05f9b3a4194c3ee4d18f9efb8dcb91bb9" args="" -->SCI_SETMARGINTYPEN</em> </td><td> +This message sets what can be displayed in a margin. <em>wParam</em> is the number of the margin: 0, 1 or 2. <em>lParam</em> is the logical or of the SC_MARGIN_* values.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce">SCI_GETMARGINTYPEN</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce"></a><!-- doxytag: member="SCI_GETMARGINTYPEN" ref="ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce" args="" -->SCI_GETMARGINTYPEN</em> </td><td> +This message returns what can be displayed in a margin. <em>wParam</em> is the number of the margin: 0, 1 or 2.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f9b3a4194c3ee4d18f9efb8dcb91bb9">SCI_SETMARGINTYPEN</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0681a357f18daa23daa1f6eaaeb0ea06c"></a><!-- doxytag: member="SCI_SETMARGINWIDTHN" ref="ebbb6944d058b48277d6ab33eceab4b0681a357f18daa23daa1f6eaaeb0ea06c" args="" -->SCI_SETMARGINWIDTHN</em> </td><td> +This message sets the width of a margin in pixels. <em>wParam</em> is the number of the margin: 0, 1 or 2. <em>lParam</em> is the new margin width.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d301d4135e034067d2da57890708198e">SCI_GETMARGINWIDTHN</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d301d4135e034067d2da57890708198e"></a><!-- doxytag: member="SCI_GETMARGINWIDTHN" ref="ebbb6944d058b48277d6ab33eceab4b0d301d4135e034067d2da57890708198e" args="" -->SCI_GETMARGINWIDTHN</em> </td><td> +This message returns the width of a margin in pixels. <em>wParam</em> is the number of the margin: 0, 1 or 2.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0681a357f18daa23daa1f6eaaeb0ea06c">SCI_SETMARGINWIDTHN</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b04bad9debaf35fc86b8899891bce53c38"></a><!-- doxytag: member="SCI_SETMARGINMASKN" ref="ebbb6944d058b48277d6ab33eceab4b04bad9debaf35fc86b8899891bce53c38" args="" -->SCI_SETMARGINMASKN</em> </td><td> +This message sets the mask of a margin. The mask is a 32 value with one bit for each possible marker. If a bit is set then the corresponding marker is displayed. By default, all markers are displayed. <em>wParam</em> is the number of the margin: 0, 1 or 2. <em>lParam</em> is the new margin mask.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a9d75e0d511355318ab72cc7b7d0876">SCI_GETMARGINMASKN</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b053b5ad6db4f59a08f49888d1fe6014c9">SCI_MARKERDEFINE</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b07a9d75e0d511355318ab72cc7b7d0876"></a><!-- doxytag: member="SCI_GETMARGINMASKN" ref="ebbb6944d058b48277d6ab33eceab4b07a9d75e0d511355318ab72cc7b7d0876" args="" -->SCI_GETMARGINMASKN</em> </td><td> +This message returns the mask of a margin. <em>wParam</em> is the number of the margin: 0, 1 or 2.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04bad9debaf35fc86b8899891bce53c38">SCI_SETMARGINMASKN</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0ac5019b21e5be3cf19fcf999c3da833a"></a><!-- doxytag: member="SCI_SETMARGINSENSITIVEN" ref="ebbb6944d058b48277d6ab33eceab4b0ac5019b21e5be3cf19fcf999c3da833a" args="" -->SCI_SETMARGINSENSITIVEN</em> </td><td> +This message sets the sensitivity of a margin to mouse clicks. <em>wParam</em> is the number of the margin: 0, 1 or 2. <em>lParam</em> is non-zero to make the margin sensitive to mouse clicks. When the mouse is clicked the <a class="el" href="classQextScintillaBase.html#5d37a34b0254cfe015056c25b1b486a5">SCN_MARGINCLICK()</a> signal is emitted.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fb5a01691811c1ad15519d7023f83df9">SCI_GETMARGINSENSITIVEN</a>, <a class="el" href="classQextScintillaBase.html#5d37a34b0254cfe015056c25b1b486a5">SCN_MARGINCLICK()</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0fb5a01691811c1ad15519d7023f83df9"></a><!-- doxytag: member="SCI_GETMARGINSENSITIVEN" ref="ebbb6944d058b48277d6ab33eceab4b0fb5a01691811c1ad15519d7023f83df9" args="" -->SCI_GETMARGINSENSITIVEN</em> </td><td> +This message returns the sensitivity of a margin to mouse clicks. <em>wParam</em> is the number of the margin: 0, 1 or 2.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ac5019b21e5be3cf19fcf999c3da833a">SCI_SETMARGINSENSITIVEN</a>, <a class="el" href="classQextScintillaBase.html#5d37a34b0254cfe015056c25b1b486a5">SCN_MARGINCLICK()</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0918f3e57dfd152bfe12469d2d27de9db"></a><!-- doxytag: member="SCI_GETREADONLY" ref="ebbb6944d058b48277d6ab33eceab4b0918f3e57dfd152bfe12469d2d27de9db" args="" -->SCI_GETREADONLY</em> </td><td> +This message returns a non-zero value if the document is read-only.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b059b1bb6d9d65ac410be6b66b2c426f14">SCI_SETREADONLY</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08f8198351235bce8efe1c9fa4b69419e"></a><!-- doxytag: member="SCI_SETCURRENTPOS" ref="ebbb6944d058b48277d6ab33eceab4b08f8198351235bce8efe1c9fa4b69419e" args="" -->SCI_SETCURRENTPOS</em> </td><td> +This message sets the current position. <em>wParam</em> is the new current position.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a1a628b61fa247d312e3f883fdcbc47">SCI_GETCURRENTPOS</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b076256f845570b29f335820a97bd158a5"></a><!-- doxytag: member="SCI_GETMODIFY" ref="ebbb6944d058b48277d6ab33eceab4b076256f845570b29f335820a97bd158a5" args="" -->SCI_GETMODIFY</em> </td><td> +This message returns a non-zero value if the document has been modified. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b059b1bb6d9d65ac410be6b66b2c426f14"></a><!-- doxytag: member="SCI_SETREADONLY" ref="ebbb6944d058b48277d6ab33eceab4b059b1bb6d9d65ac410be6b66b2c426f14" args="" -->SCI_SETREADONLY</em> </td><td> +This message sets the read-only state of the document. <em>wParam</em> is the new read-only state of the document.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0918f3e57dfd152bfe12469d2d27de9db">SCI_GETREADONLY</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0d3351e3d838d0ecd57d7d9873364e219"></a><!-- doxytag: member="SCI_EMPTYUNDOBUFFER" ref="ebbb6944d058b48277d6ab33eceab4b0d3351e3d838d0ecd57d7d9873364e219" args="" -->SCI_EMPTYUNDOBUFFER</em> </td><td> +This message empties the undo buffer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b004da7b8cb076eacef2372b9bbfe4dc14"></a><!-- doxytag: member="SCI_SETTEXT" ref="ebbb6944d058b48277d6ab33eceab4b004da7b8cb076eacef2372b9bbfe4dc14" args="" -->SCI_SETTEXT</em> </td><td> +This message sets the text of the document. <em>wParam</em> is unused. <em>lParam</em> is the new text of the document.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b09d5e442a3812d53ac8067628098fedb0">SCI_GETTEXT</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b09d5e442a3812d53ac8067628098fedb0"></a><!-- doxytag: member="SCI_GETTEXT" ref="ebbb6944d058b48277d6ab33eceab4b09d5e442a3812d53ac8067628098fedb0" args="" -->SCI_GETTEXT</em> </td><td> +This message gets the text of the document. <em>wParam</em> is size of the buffer that the text is copied to. <em>lParam</em> is the address of the buffer that the text is copied to.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b004da7b8cb076eacef2372b9bbfe4dc14">SCI_SETTEXT</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b034122ac033e32308cf188f718b0107e9"></a><!-- doxytag: member="SCI_GETTEXTLENGTH" ref="ebbb6944d058b48277d6ab33eceab4b034122ac033e32308cf188f718b0107e9" args="" -->SCI_GETTEXTLENGTH</em> </td><td> +This message returns the length of the document. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b05a873177612d3225d21459d889b51a20"></a><!-- doxytag: member="SCI_TEXTWIDTH" ref="ebbb6944d058b48277d6ab33eceab4b05a873177612d3225d21459d889b51a20" args="" -->SCI_TEXTWIDTH</em> </td><td> +This message returns the width of some text when rendered in a particular style. <em>wParam</em> is the style number and is one of the STYLE_* values or one of the styles defined by a lexer. <em>lParam</em> is a pointer to the text. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b041ef59413dbfaeb8d13cde610dffb659"></a><!-- doxytag: member="SCI_REGISTERIMAGE" ref="ebbb6944d058b48277d6ab33eceab4b041ef59413dbfaeb8d13cde610dffb659" args="" -->SCI_REGISTERIMAGE</em> </td><td> +This message takes a copy of an image and registers it so that it can be refered to by a unique integer identifier. <em>wParam</em> is the image's identifier. <em>lParam</em> is a pointer to a QPixmap instance. Note that in other ports of Scintilla this is a pointer to either raw or textual XPM image data.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0eb5af129108965033a6ae40eb45f7789">SCI_CLEARREGISTEREDIMAGES</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0eb5af129108965033a6ae40eb45f7789"></a><!-- doxytag: member="SCI_CLEARREGISTEREDIMAGES" ref="ebbb6944d058b48277d6ab33eceab4b0eb5af129108965033a6ae40eb45f7789" args="" -->SCI_CLEARREGISTEREDIMAGES</em> </td><td> +This message de-registers all currently registered images.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b041ef59413dbfaeb8d13cde610dffb659">SCI_REGISTERIMAGE</a> </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0072c4ebd26abad84f3892a5aef4cf215"></a><!-- doxytag: member="SCI_SETLEXER" ref="ebbb6944d058b48277d6ab33eceab4b0072c4ebd26abad84f3892a5aef4cf215" args="" -->SCI_SETLEXER</em> </td><td> +This message sets the number of the lexer to use for syntax styling. <em>wParam</em> is the number of the lexer and is one of the SCLEX_* values. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b0f2708d28f4c8b3d30bf4bea14b977945"></a><!-- doxytag: member="SCI_GETLEXER" ref="ebbb6944d058b48277d6ab33eceab4b0f2708d28f4c8b3d30bf4bea14b977945" args="" -->SCI_GETLEXER</em> </td><td> +This message returns the number of the lexer being used for syntax styling. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ebbb6944d058b48277d6ab33eceab4b08512ebbc6a1341e1fb55f70e693fb8d0"></a><!-- doxytag: member="SCI_SETLEXERLANGUAGE" ref="ebbb6944d058b48277d6ab33eceab4b08512ebbc6a1341e1fb55f70e693fb8d0" args="" -->SCI_SETLEXERLANGUAGE</em> </td><td> +This message sets the name of the lexer to use for syntax styling. <em>wParam</em> is unused. <em>lParam</em> is the name of the lexer. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="d8e6e59a8c16a42d2ac2c859678ccde1"></a><!-- doxytag: member="QextScintillaBase::@5" ref="d8e6e59a8c16a42d2ac2c859678ccde1" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different selection modes.<p> +<dl compact><dt><b>See also:</b></dt><dd>SCI_GETSELECTIONMODE, SCI_SETSELECTIONMODE </dd></dl> + +</div> +</div><p> +<a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4"></a><!-- doxytag: member="QextScintillaBase::@9" ref="b36bd55b33e6bd129af4c01ba58442f4" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different marker symbols.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b053b5ad6db4f59a08f49888d1fe6014c9">SCI_MARKERDEFINE</a> </dd></dl> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4f434a6ab21669939553df7ea20efee63"></a><!-- doxytag: member="SC_MARK_CIRCLE" ref="b36bd55b33e6bd129af4c01ba58442f4f434a6ab21669939553df7ea20efee63" args="" -->SC_MARK_CIRCLE</em> </td><td> +A circle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f498c50cda1aa3ef885dd756384991ee61"></a><!-- doxytag: member="SC_MARK_ROUNDRECT" ref="b36bd55b33e6bd129af4c01ba58442f498c50cda1aa3ef885dd756384991ee61" args="" -->SC_MARK_ROUNDRECT</em> </td><td> +A rectangle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4e3b1de6390cc0af837be4f7d7fe2c874"></a><!-- doxytag: member="SC_MARK_ARROW" ref="b36bd55b33e6bd129af4c01ba58442f4e3b1de6390cc0af837be4f7d7fe2c874" args="" -->SC_MARK_ARROW</em> </td><td> +A triangle pointing to the right. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f40a7488c79a3800a9c8790763ed4adbef"></a><!-- doxytag: member="SC_MARK_SMALLRECT" ref="b36bd55b33e6bd129af4c01ba58442f40a7488c79a3800a9c8790763ed4adbef" args="" -->SC_MARK_SMALLRECT</em> </td><td> +A smaller rectangle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f498e14aa4f516be7f37574e209c1e663d"></a><!-- doxytag: member="SC_MARK_SHORTARROW" ref="b36bd55b33e6bd129af4c01ba58442f498e14aa4f516be7f37574e209c1e663d" args="" -->SC_MARK_SHORTARROW</em> </td><td> +An arrow pointing to the right. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f42df2479d1baf9d5576639f46a1222346"></a><!-- doxytag: member="SC_MARK_EMPTY" ref="b36bd55b33e6bd129af4c01ba58442f42df2479d1baf9d5576639f46a1222346" args="" -->SC_MARK_EMPTY</em> </td><td> +An invisible marker that allows code to track the movement of lines. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4edad3abdf6caacb6b2e0aa6b5dcb2225"></a><!-- doxytag: member="SC_MARK_ARROWDOWN" ref="b36bd55b33e6bd129af4c01ba58442f4edad3abdf6caacb6b2e0aa6b5dcb2225" args="" -->SC_MARK_ARROWDOWN</em> </td><td> +A triangle pointing down. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f461a1e23b36a33e7dcbe60829fc9bc8cb"></a><!-- doxytag: member="SC_MARK_MINUS" ref="b36bd55b33e6bd129af4c01ba58442f461a1e23b36a33e7dcbe60829fc9bc8cb" args="" -->SC_MARK_MINUS</em> </td><td> +A drawn minus sign. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4607f53e1b9693350dbf5317d22af3f36"></a><!-- doxytag: member="SC_MARK_PLUS" ref="b36bd55b33e6bd129af4c01ba58442f4607f53e1b9693350dbf5317d22af3f36" args="" -->SC_MARK_PLUS</em> </td><td> +A drawn plus sign. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4723048b3e712e9165c6909e07d01295b"></a><!-- doxytag: member="SC_MARK_VLINE" ref="b36bd55b33e6bd129af4c01ba58442f4723048b3e712e9165c6909e07d01295b" args="" -->SC_MARK_VLINE</em> </td><td> +A vertical line drawn in the background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f481d4d67f51f4ca1537ed49073485d9a7"></a><!-- doxytag: member="SC_MARK_LCORNER" ref="b36bd55b33e6bd129af4c01ba58442f481d4d67f51f4ca1537ed49073485d9a7" args="" -->SC_MARK_LCORNER</em> </td><td> +A bottom left corner drawn in the background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f43f7c7a88f1171999c0a794440ca52421"></a><!-- doxytag: member="SC_MARK_TCORNER" ref="b36bd55b33e6bd129af4c01ba58442f43f7c7a88f1171999c0a794440ca52421" args="" -->SC_MARK_TCORNER</em> </td><td> +A vertical line with a centre right horizontal line drawn in the background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4b44cd3777c6526b38e43729f55d33d9f"></a><!-- doxytag: member="SC_MARK_BOXPLUS" ref="b36bd55b33e6bd129af4c01ba58442f4b44cd3777c6526b38e43729f55d33d9f" args="" -->SC_MARK_BOXPLUS</em> </td><td> +A drawn plus sign in a box. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f40a273fcfe1adb61f9209aae02dc0255e"></a><!-- doxytag: member="SC_MARK_BOXPLUSCONNECTED" ref="b36bd55b33e6bd129af4c01ba58442f40a273fcfe1adb61f9209aae02dc0255e" args="" -->SC_MARK_BOXPLUSCONNECTED</em> </td><td> +A drawn plus sign in a connected box. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4562a720141731259a0b103de4bd97d97"></a><!-- doxytag: member="SC_MARK_BOXMINUS" ref="b36bd55b33e6bd129af4c01ba58442f4562a720141731259a0b103de4bd97d97" args="" -->SC_MARK_BOXMINUS</em> </td><td> +A drawn minus sign in a box. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4796ee8aec20e6718fb0f64ed6842f788"></a><!-- doxytag: member="SC_MARK_BOXMINUSCONNECTED" ref="b36bd55b33e6bd129af4c01ba58442f4796ee8aec20e6718fb0f64ed6842f788" args="" -->SC_MARK_BOXMINUSCONNECTED</em> </td><td> +A drawn minus sign in a connected box. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4ee7ddee38b57a705314bc6739e488bab"></a><!-- doxytag: member="SC_MARK_LCORNERCURVE" ref="b36bd55b33e6bd129af4c01ba58442f4ee7ddee38b57a705314bc6739e488bab" args="" -->SC_MARK_LCORNERCURVE</em> </td><td> +A rounded bottom left corner drawn in the background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4f724482fbd5d843bae330c83639aae34"></a><!-- doxytag: member="SC_MARK_TCORNERCURVE" ref="b36bd55b33e6bd129af4c01ba58442f4f724482fbd5d843bae330c83639aae34" args="" -->SC_MARK_TCORNERCURVE</em> </td><td> +A vertical line with a centre right curved line drawn in the background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f43f7d571a7e7e48ae750c7a862e1bbaac"></a><!-- doxytag: member="SC_MARK_CIRCLEPLUS" ref="b36bd55b33e6bd129af4c01ba58442f43f7d571a7e7e48ae750c7a862e1bbaac" args="" -->SC_MARK_CIRCLEPLUS</em> </td><td> +A drawn plus sign in a circle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f44be3bd3071b92f21bedeb38080297239"></a><!-- doxytag: member="SC_MARK_CIRCLEPLUSCONNECTED" ref="b36bd55b33e6bd129af4c01ba58442f44be3bd3071b92f21bedeb38080297239" args="" -->SC_MARK_CIRCLEPLUSCONNECTED</em> </td><td> +A drawn plus sign in a connected box. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4d8679bbada38b23e093aca2d7e181cf6"></a><!-- doxytag: member="SC_MARK_CIRCLEMINUS" ref="b36bd55b33e6bd129af4c01ba58442f4d8679bbada38b23e093aca2d7e181cf6" args="" -->SC_MARK_CIRCLEMINUS</em> </td><td> +A drawn minus sign in a circle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4ef80900cadb97b802077c229197a5cb3"></a><!-- doxytag: member="SC_MARK_CIRCLEMINUSCONNECTED" ref="b36bd55b33e6bd129af4c01ba58442f4ef80900cadb97b802077c229197a5cb3" args="" -->SC_MARK_CIRCLEMINUSCONNECTED</em> </td><td> +A drawn minus sign in a connected circle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f40299712b9cc948d89b63ccb57cc718b1"></a><!-- doxytag: member="SC_MARK_BACKGROUND" ref="b36bd55b33e6bd129af4c01ba58442f40299712b9cc948d89b63ccb57cc718b1" args="" -->SC_MARK_BACKGROUND</em> </td><td> +No symbol is drawn but the line of text is drawn with the same background colour. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4bc5087b0b7079ec10079a8346c7f5034"></a><!-- doxytag: member="SC_MARK_DOTDOTDOT" ref="b36bd55b33e6bd129af4c01ba58442f4bc5087b0b7079ec10079a8346c7f5034" args="" -->SC_MARK_DOTDOTDOT</em> </td><td> +Three drawn dots. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f4f89256799c23918fda728e89cca33202"></a><!-- doxytag: member="SC_MARK_ARROWS" ref="b36bd55b33e6bd129af4c01ba58442f4f89256799c23918fda728e89cca33202" args="" -->SC_MARK_ARROWS</em> </td><td> +Three drawn arrows pointing right. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f45f1d4dcf4839e48bcd9a4e3f134ce7c6"></a><!-- doxytag: member="SC_MARK_PIXMAP" ref="b36bd55b33e6bd129af4c01ba58442f45f1d4dcf4839e48bcd9a4e3f134ce7c6" args="" -->SC_MARK_PIXMAP</em> </td><td> +An XPM format pixmap. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f427aabfe553646e9ab186017b26577a06"></a><!-- doxytag: member="SC_MARK_FULLRECT" ref="b36bd55b33e6bd129af4c01ba58442f427aabfe553646e9ab186017b26577a06" args="" -->SC_MARK_FULLRECT</em> </td><td> +A full rectangle. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="b36bd55b33e6bd129af4c01ba58442f43b6b66013744d32a407bdfd6d09a5b51"></a><!-- doxytag: member="SC_MARK_CHARACTER" ref="b36bd55b33e6bd129af4c01ba58442f43b6b66013744d32a407bdfd6d09a5b51" args="" -->SC_MARK_CHARACTER</em> </td><td> +Characters can be used as symbols by adding this to the ASCII value of the character. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="40a5837c85a0ebfd35da641f6bc270a2"></a><!-- doxytag: member="QextScintillaBase::@11" ref="40a5837c85a0ebfd35da641f6bc270a2" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines what can be displayed in a margin.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce">SCI_GETMARGINTYPEN</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f9b3a4194c3ee4d18f9efb8dcb91bb9">SCI_SETMARGINTYPEN</a> </dd></dl> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="40a5837c85a0ebfd35da641f6bc270a27e7af608c20e4123e0c63a4cc773b363"></a><!-- doxytag: member="SC_MARGIN_SYMBOL" ref="40a5837c85a0ebfd35da641f6bc270a27e7af608c20e4123e0c63a4cc773b363" args="" -->SC_MARGIN_SYMBOL</em> </td><td> +The margin can display symbols. Note that all margins can display symbols. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="40a5837c85a0ebfd35da641f6bc270a2ed8932da45c8172b8b9c8fdeca780f62"></a><!-- doxytag: member="SC_MARGIN_NUMBER" ref="40a5837c85a0ebfd35da641f6bc270a2ed8932da45c8172b8b9c8fdeca780f62" args="" -->SC_MARGIN_NUMBER</em> </td><td> +The margin will display line numbers. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="40a5837c85a0ebfd35da641f6bc270a2202759936bafc4284957c4226f3042db"></a><!-- doxytag: member="SC_MARGIN_BACK" ref="40a5837c85a0ebfd35da641f6bc270a2202759936bafc4284957c4226f3042db" args="" -->SC_MARGIN_BACK</em> </td><td> +The margin's background color will be set to the default background color. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="40a5837c85a0ebfd35da641f6bc270a23d1e3bb214808a93cf72986b0b461027"></a><!-- doxytag: member="SC_MARGIN_FORE" ref="40a5837c85a0ebfd35da641f6bc270a23d1e3bb214808a93cf72986b0b461027" args="" -->SC_MARGIN_FORE</em> </td><td> +The margin's background color will be set to the default foreground color. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="bc20c6a555ed33ec7ecae295514e1a4e"></a><!-- doxytag: member="QextScintillaBase::@29" ref="bc20c6a555ed33ec7ecae295514e1a4e" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different modifier keys. +<p> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="bc20c6a555ed33ec7ecae295514e1a4e881b5932870b621432a28e0d7a324695"></a><!-- doxytag: member="SCMOD_NORM" ref="bc20c6a555ed33ec7ecae295514e1a4e881b5932870b621432a28e0d7a324695" args="" -->SCMOD_NORM</em> </td><td> +No modifier key. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="bc20c6a555ed33ec7ecae295514e1a4eeb5363cad0f41ea5332418f63a3ad06f"></a><!-- doxytag: member="SCMOD_SHIFT" ref="bc20c6a555ed33ec7ecae295514e1a4eeb5363cad0f41ea5332418f63a3ad06f" args="" -->SCMOD_SHIFT</em> </td><td> +Shift key. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="bc20c6a555ed33ec7ecae295514e1a4ea69a17f5b83112750f8807a1516b8119"></a><!-- doxytag: member="SCMOD_CTRL" ref="bc20c6a555ed33ec7ecae295514e1a4ea69a17f5b83112750f8807a1516b8119" args="" -->SCMOD_CTRL</em> </td><td> +Control key. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="bc20c6a555ed33ec7ecae295514e1a4e3d58fd86cb23274ec15615fe2c42961f"></a><!-- doxytag: member="SCMOD_ALT" ref="bc20c6a555ed33ec7ecae295514e1a4e3d58fd86cb23274ec15615fe2c42961f" args="" -->SCMOD_ALT</em> </td><td> +Alt key. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="6ea255954758cdd35e093fa8208bb62d"></a><!-- doxytag: member="QextScintillaBase::@30" ref="6ea255954758cdd35e093fa8208bb62d" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different language lexers.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0f2708d28f4c8b3d30bf4bea14b977945">SCI_GETLEXER</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0072c4ebd26abad84f3892a5aef4cf215">SCI_SETLEXER</a> </dd></dl> +<dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62df702befd903d9d65fa84af10461828a0"></a><!-- doxytag: member="SCLEX_CONTAINER" ref="6ea255954758cdd35e093fa8208bb62df702befd903d9d65fa84af10461828a0" args="" -->SCLEX_CONTAINER</em> </td><td> +No lexer is selected and the SCN_STYLENEEDED signal is emitted so that the application can style the text as needed. This is the default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d8a51b24b990fe1e8e3680d25e1331dc6"></a><!-- doxytag: member="SCLEX_NULL" ref="6ea255954758cdd35e093fa8208bb62d8a51b24b990fe1e8e3680d25e1331dc6" args="" -->SCLEX_NULL</em> </td><td> +Select the null lexer that does no syntax styling. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d70827e6b1710d76ca56fce165f726ad2"></a><!-- doxytag: member="SCLEX_PYTHON" ref="6ea255954758cdd35e093fa8208bb62d70827e6b1710d76ca56fce165f726ad2" args="" -->SCLEX_PYTHON</em> </td><td> +Select the Python lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d37233777b6512990ad985e41f1470ee0"></a><!-- doxytag: member="SCLEX_CPP" ref="6ea255954758cdd35e093fa8208bb62d37233777b6512990ad985e41f1470ee0" args="" -->SCLEX_CPP</em> </td><td> +Select the C++ lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62df2338400902a61d96c4057caa0c450a2"></a><!-- doxytag: member="SCLEX_HTML" ref="6ea255954758cdd35e093fa8208bb62df2338400902a61d96c4057caa0c450a2" args="" -->SCLEX_HTML</em> </td><td> +Select the HTML lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62de4a8bd95f6f567e44a246f46c3d2a7fe"></a><!-- doxytag: member="SCLEX_XML" ref="6ea255954758cdd35e093fa8208bb62de4a8bd95f6f567e44a246f46c3d2a7fe" args="" -->SCLEX_XML</em> </td><td> +Select the XML lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d0bd817c73cd4b9a00a81c04a8585804b"></a><!-- doxytag: member="SCLEX_PERL" ref="6ea255954758cdd35e093fa8208bb62d0bd817c73cd4b9a00a81c04a8585804b" args="" -->SCLEX_PERL</em> </td><td> +Select the Perl lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d31b4c7ddbe672064514c775788f56f80"></a><!-- doxytag: member="SCLEX_SQL" ref="6ea255954758cdd35e093fa8208bb62d31b4c7ddbe672064514c775788f56f80" args="" -->SCLEX_SQL</em> </td><td> +Select the SQL lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d42e3b71bd069a7991e73b16a48d44fb3"></a><!-- doxytag: member="SCLEX_VB" ref="6ea255954758cdd35e093fa8208bb62d42e3b71bd069a7991e73b16a48d44fb3" args="" -->SCLEX_VB</em> </td><td> +Select the Visual Basic lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d780544fc36639fc09690ad6dbb352f65"></a><!-- doxytag: member="SCLEX_PROPERTIES" ref="6ea255954758cdd35e093fa8208bb62d780544fc36639fc09690ad6dbb352f65" args="" -->SCLEX_PROPERTIES</em> </td><td> +Select the lexer for properties style files. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62da5ccd91896d4f60a1721f59baca56e13"></a><!-- doxytag: member="SCLEX_ERRORLIST" ref="6ea255954758cdd35e093fa8208bb62da5ccd91896d4f60a1721f59baca56e13" args="" -->SCLEX_ERRORLIST</em> </td><td> +Select the lexer for error list style files. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d3569ea5aea72d6978fb61b6231c3b4da"></a><!-- doxytag: member="SCLEX_MAKEFILE" ref="6ea255954758cdd35e093fa8208bb62d3569ea5aea72d6978fb61b6231c3b4da" args="" -->SCLEX_MAKEFILE</em> </td><td> +Select the Makefile lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d4f36017b6593f4740d006563caa5dd1a"></a><!-- doxytag: member="SCLEX_BATCH" ref="6ea255954758cdd35e093fa8208bb62d4f36017b6593f4740d006563caa5dd1a" args="" -->SCLEX_BATCH</em> </td><td> +Select the Windows batch file lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d8817495465d06d51a7f29663db3e307d"></a><!-- doxytag: member="SCLEX_LATEX" ref="6ea255954758cdd35e093fa8208bb62d8817495465d06d51a7f29663db3e307d" args="" -->SCLEX_LATEX</em> </td><td> +Select the LaTex lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dda37fcab324043a52fc2b85399644454"></a><!-- doxytag: member="SCLEX_LUA" ref="6ea255954758cdd35e093fa8208bb62dda37fcab324043a52fc2b85399644454" args="" -->SCLEX_LUA</em> </td><td> +Select the Lua lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d6842f7058b71411ab80bc1c33a63da63"></a><!-- doxytag: member="SCLEX_DIFF" ref="6ea255954758cdd35e093fa8208bb62d6842f7058b71411ab80bc1c33a63da63" args="" -->SCLEX_DIFF</em> </td><td> +Select the lexer for diff output. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d3f3a52fea3e08741ea664dedf5530fa5"></a><!-- doxytag: member="SCLEX_CONF" ref="6ea255954758cdd35e093fa8208bb62d3f3a52fea3e08741ea664dedf5530fa5" args="" -->SCLEX_CONF</em> </td><td> +Select the lexer for Apache configuration files. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d6210ca0cdb31e06c18ec14294238a3a4"></a><!-- doxytag: member="SCLEX_PASCAL" ref="6ea255954758cdd35e093fa8208bb62d6210ca0cdb31e06c18ec14294238a3a4" args="" -->SCLEX_PASCAL</em> </td><td> +Select the Pascal lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d6edb4f9bc36f41d26f4a42a3410c7433"></a><!-- doxytag: member="SCLEX_AVE" ref="6ea255954758cdd35e093fa8208bb62d6edb4f9bc36f41d26f4a42a3410c7433" args="" -->SCLEX_AVE</em> </td><td> +Select the Avenue lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d8b9733c9dd7b20e68a1226cf9ed81f69"></a><!-- doxytag: member="SCLEX_ADA" ref="6ea255954758cdd35e093fa8208bb62d8b9733c9dd7b20e68a1226cf9ed81f69" args="" -->SCLEX_ADA</em> </td><td> +Select the Ada lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d332fca6d318ec42f4db4191ad6deb193"></a><!-- doxytag: member="SCLEX_LISP" ref="6ea255954758cdd35e093fa8208bb62d332fca6d318ec42f4db4191ad6deb193" args="" -->SCLEX_LISP</em> </td><td> +Select the Lisp lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dc062b29c7caa054f57b5b6aa54385f33"></a><!-- doxytag: member="SCLEX_RUBY" ref="6ea255954758cdd35e093fa8208bb62dc062b29c7caa054f57b5b6aa54385f33" args="" -->SCLEX_RUBY</em> </td><td> +Select the Ruby lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d348f60f0b617eed037b6110e42af0996"></a><!-- doxytag: member="SCLEX_EIFFEL" ref="6ea255954758cdd35e093fa8208bb62d348f60f0b617eed037b6110e42af0996" args="" -->SCLEX_EIFFEL</em> </td><td> +Select the Eiffel lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d6d8490d0f99f6b329ab5f45c2234adf5"></a><!-- doxytag: member="SCLEX_EIFFELKW" ref="6ea255954758cdd35e093fa8208bb62d6d8490d0f99f6b329ab5f45c2234adf5" args="" -->SCLEX_EIFFELKW</em> </td><td> +Select the Eiffel lexer folding at keywords. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d6e46782e8d9ccda555ec49cfca67e546"></a><!-- doxytag: member="SCLEX_TCL" ref="6ea255954758cdd35e093fa8208bb62d6e46782e8d9ccda555ec49cfca67e546" args="" -->SCLEX_TCL</em> </td><td> +Select the Tcl lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d8bbda96ce9f7e57aa479486a2d4edd94"></a><!-- doxytag: member="SCLEX_NNCRONTAB" ref="6ea255954758cdd35e093fa8208bb62d8bbda96ce9f7e57aa479486a2d4edd94" args="" -->SCLEX_NNCRONTAB</em> </td><td> +Select the lexer for nnCron files. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d0925a82889c406669e7293d180555159"></a><!-- doxytag: member="SCLEX_BULLANT" ref="6ea255954758cdd35e093fa8208bb62d0925a82889c406669e7293d180555159" args="" -->SCLEX_BULLANT</em> </td><td> +Select the Bullant lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d4e2037e23a835db605b0620f32511b87"></a><!-- doxytag: member="SCLEX_VBSCRIPT" ref="6ea255954758cdd35e093fa8208bb62d4e2037e23a835db605b0620f32511b87" args="" -->SCLEX_VBSCRIPT</em> </td><td> +Select the VBScript lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62ded111ca524237de01b990c8aa9380542"></a><!-- doxytag: member="SCLEX_ASP" ref="6ea255954758cdd35e093fa8208bb62ded111ca524237de01b990c8aa9380542" args="" -->SCLEX_ASP</em> </td><td> +Select the ASP lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dab90570deb68926f7c76339b9640bc25"></a><!-- doxytag: member="SCLEX_PHP" ref="6ea255954758cdd35e093fa8208bb62dab90570deb68926f7c76339b9640bc25" args="" -->SCLEX_PHP</em> </td><td> +Select the PHP lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d3c9e1bf7b958e31d8ab870a95cab0851"></a><!-- doxytag: member="SCLEX_BAAN" ref="6ea255954758cdd35e093fa8208bb62d3c9e1bf7b958e31d8ab870a95cab0851" args="" -->SCLEX_BAAN</em> </td><td> +Select the Baan lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dbd5db8ab589a9223d2e095dcf3855454"></a><!-- doxytag: member="SCLEX_MATLAB" ref="6ea255954758cdd35e093fa8208bb62dbd5db8ab589a9223d2e095dcf3855454" args="" -->SCLEX_MATLAB</em> </td><td> +Select the Matlab lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d013005a7d7306628adbcdaa6bd41d24f"></a><!-- doxytag: member="SCLEX_SCRIPTOL" ref="6ea255954758cdd35e093fa8208bb62d013005a7d7306628adbcdaa6bd41d24f" args="" -->SCLEX_SCRIPTOL</em> </td><td> +Select the Scriptol lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d8c7ff8643a97b01c67a4a9271030d1ac"></a><!-- doxytag: member="SCLEX_ASM" ref="6ea255954758cdd35e093fa8208bb62d8c7ff8643a97b01c67a4a9271030d1ac" args="" -->SCLEX_ASM</em> </td><td> +Select the assembler lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62ddada03b169d0b52daa7c00181f03e897"></a><!-- doxytag: member="SCLEX_CPPNOCASE" ref="6ea255954758cdd35e093fa8208bb62ddada03b169d0b52daa7c00181f03e897" args="" -->SCLEX_CPPNOCASE</em> </td><td> +Select the C++ lexer with case insensitive keywords. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d78c83128f5d3c8ed6b2d87a3c6f61e3d"></a><!-- doxytag: member="SCLEX_FORTRAN" ref="6ea255954758cdd35e093fa8208bb62d78c83128f5d3c8ed6b2d87a3c6f61e3d" args="" -->SCLEX_FORTRAN</em> </td><td> +Select the FORTRAN lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dfb8b68e427523e7e7ac9bc7f20b4347b"></a><!-- doxytag: member="SCLEX_F77" ref="6ea255954758cdd35e093fa8208bb62dfb8b68e427523e7e7ac9bc7f20b4347b" args="" -->SCLEX_F77</em> </td><td> +Select the FORTRAN77 lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dc4b56223ccc682279fc18900fe650778"></a><!-- doxytag: member="SCLEX_CSS" ref="6ea255954758cdd35e093fa8208bb62dc4b56223ccc682279fc18900fe650778" args="" -->SCLEX_CSS</em> </td><td> +Select the CSS lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d830f97f74f0966734a36579de53e7f9e"></a><!-- doxytag: member="SCLEX_POV" ref="6ea255954758cdd35e093fa8208bb62d830f97f74f0966734a36579de53e7f9e" args="" -->SCLEX_POV</em> </td><td> +Select the POV lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62db03b3fda38342d0470fab2357eac2ab0"></a><!-- doxytag: member="SCLEX_LOUT" ref="6ea255954758cdd35e093fa8208bb62db03b3fda38342d0470fab2357eac2ab0" args="" -->SCLEX_LOUT</em> </td><td> +Select the Basser Lout typesetting language lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d07f1b0054d239f968dece3bfb2017e6e"></a><!-- doxytag: member="SCLEX_ESCRIPT" ref="6ea255954758cdd35e093fa8208bb62d07f1b0054d239f968dece3bfb2017e6e" args="" -->SCLEX_ESCRIPT</em> </td><td> +Select the EScript lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d338ccc586737eb91dfc4333fea64b1f9"></a><!-- doxytag: member="SCLEX_PS" ref="6ea255954758cdd35e093fa8208bb62d338ccc586737eb91dfc4333fea64b1f9" args="" -->SCLEX_PS</em> </td><td> +Select the PostScript lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62ddd268ef9f9d4209dc241f55828257120"></a><!-- doxytag: member="SCLEX_NSIS" ref="6ea255954758cdd35e093fa8208bb62ddd268ef9f9d4209dc241f55828257120" args="" -->SCLEX_NSIS</em> </td><td> +Select the NSIS lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dc09594aa860e17ddff434ba2883e552e"></a><!-- doxytag: member="SCLEX_MMIXAL" ref="6ea255954758cdd35e093fa8208bb62dc09594aa860e17ddff434ba2883e552e" args="" -->SCLEX_MMIXAL</em> </td><td> +Select the MMIX assembly language lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d0651b9876e477b32d5a3825d298098ae"></a><!-- doxytag: member="SCLEX_CLW" ref="6ea255954758cdd35e093fa8208bb62d0651b9876e477b32d5a3825d298098ae" args="" -->SCLEX_CLW</em> </td><td> +Select the Clarion lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dafaa399612f323eb30aa2ca13bc0e42a"></a><!-- doxytag: member="SCLEX_CLWNOCASE" ref="6ea255954758cdd35e093fa8208bb62dafaa399612f323eb30aa2ca13bc0e42a" args="" -->SCLEX_CLWNOCASE</em> </td><td> +Select the Clarion lexer with case insensitive keywords. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d2c42663d4d0f5e3ea1ea6667d467bf5f"></a><!-- doxytag: member="SCLEX_LOT" ref="6ea255954758cdd35e093fa8208bb62d2c42663d4d0f5e3ea1ea6667d467bf5f" args="" -->SCLEX_LOT</em> </td><td> +Select the MPT text log file lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d8a3b27b45e2066a6dd275b613adb0a1d"></a><!-- doxytag: member="SCLEX_YAML" ref="6ea255954758cdd35e093fa8208bb62d8a3b27b45e2066a6dd275b613adb0a1d" args="" -->SCLEX_YAML</em> </td><td> +Select the YAML lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d6b8c539414c4f2127c04e5bc2c9da03a"></a><!-- doxytag: member="SCLEX_TEX" ref="6ea255954758cdd35e093fa8208bb62d6b8c539414c4f2127c04e5bc2c9da03a" args="" -->SCLEX_TEX</em> </td><td> +Select the TeX lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d8953cce4f69b05e263e1f47c617a70fd"></a><!-- doxytag: member="SCLEX_METAPOST" ref="6ea255954758cdd35e093fa8208bb62d8953cce4f69b05e263e1f47c617a70fd" args="" -->SCLEX_METAPOST</em> </td><td> +Select the Metapost lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d055c632267a1a9e088e92893398ac0c2"></a><!-- doxytag: member="SCLEX_POWERBASIC" ref="6ea255954758cdd35e093fa8208bb62d055c632267a1a9e088e92893398ac0c2" args="" -->SCLEX_POWERBASIC</em> </td><td> +Select the PowerBASIC lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d8cba676e4b42856ea6187a171dc74995"></a><!-- doxytag: member="SCLEX_FORTH" ref="6ea255954758cdd35e093fa8208bb62d8cba676e4b42856ea6187a171dc74995" args="" -->SCLEX_FORTH</em> </td><td> +Select the Forth lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62da96b775c8fe016a1e7541600f939e201"></a><!-- doxytag: member="SCLEX_ERLANG" ref="6ea255954758cdd35e093fa8208bb62da96b775c8fe016a1e7541600f939e201" args="" -->SCLEX_ERLANG</em> </td><td> +Select the Erlang lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d91d63a0032121624fdae20af80851828"></a><!-- doxytag: member="SCLEX_OCTAVE" ref="6ea255954758cdd35e093fa8208bb62d91d63a0032121624fdae20af80851828" args="" -->SCLEX_OCTAVE</em> </td><td> +Select the Octave lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d85f6c994156a3adcea37f321f8dd6a3d"></a><!-- doxytag: member="SCLEX_MSSQL" ref="6ea255954758cdd35e093fa8208bb62d85f6c994156a3adcea37f321f8dd6a3d" args="" -->SCLEX_MSSQL</em> </td><td> +Select the MS SQL lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d8142b07f7de61126fc5e4dd005f09c28"></a><!-- doxytag: member="SCLEX_VERILOG" ref="6ea255954758cdd35e093fa8208bb62d8142b07f7de61126fc5e4dd005f09c28" args="" -->SCLEX_VERILOG</em> </td><td> +Select the Verilog lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dfb1d483ed2becbbe59887bb89f4014d0"></a><!-- doxytag: member="SCLEX_KIX" ref="6ea255954758cdd35e093fa8208bb62dfb1d483ed2becbbe59887bb89f4014d0" args="" -->SCLEX_KIX</em> </td><td> +Select the KIX-Scripts lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dd9dc2f753f14ca5ef729c2883dee1b0d"></a><!-- doxytag: member="SCLEX_GUI4CLI" ref="6ea255954758cdd35e093fa8208bb62dd9dc2f753f14ca5ef729c2883dee1b0d" args="" -->SCLEX_GUI4CLI</em> </td><td> +Select the Gui4Cli lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d2a598cbdc1084026ef09a46ac1832c62"></a><!-- doxytag: member="SCLEX_SPECMAN" ref="6ea255954758cdd35e093fa8208bb62d2a598cbdc1084026ef09a46ac1832c62" args="" -->SCLEX_SPECMAN</em> </td><td> +Select the Specman E lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d8dc8d6b0189cd4d471264a824cf1c199"></a><!-- doxytag: member="SCLEX_AU3" ref="6ea255954758cdd35e093fa8208bb62d8dc8d6b0189cd4d471264a824cf1c199" args="" -->SCLEX_AU3</em> </td><td> +Select the AutoIt3 lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dc5a6e143f3b3db4c6b2e80fce8d4f8eb"></a><!-- doxytag: member="SCLEX_APDL" ref="6ea255954758cdd35e093fa8208bb62dc5a6e143f3b3db4c6b2e80fce8d4f8eb" args="" -->SCLEX_APDL</em> </td><td> +Select the APDL lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d3f9e5ea4e564ba6f8d1dae8d7ace454d"></a><!-- doxytag: member="SCLEX_BASH" ref="6ea255954758cdd35e093fa8208bb62d3f9e5ea4e564ba6f8d1dae8d7ace454d" args="" -->SCLEX_BASH</em> </td><td> +Select the Bash lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62da0b7eaa71bb78dd6d6fced870ba90f24"></a><!-- doxytag: member="SCLEX_ASN1" ref="6ea255954758cdd35e093fa8208bb62da0b7eaa71bb78dd6d6fced870ba90f24" args="" -->SCLEX_ASN1</em> </td><td> +Select the ASN.1 lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d7d9f5bcf567a86ad19f28476539f3c76"></a><!-- doxytag: member="SCLEX_VHDL" ref="6ea255954758cdd35e093fa8208bb62d7d9f5bcf567a86ad19f28476539f3c76" args="" -->SCLEX_VHDL</em> </td><td> +Select the VHDL lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d53e5454136a08b61270dfa0e49e471e6"></a><!-- doxytag: member="SCLEX_CAML" ref="6ea255954758cdd35e093fa8208bb62d53e5454136a08b61270dfa0e49e471e6" args="" -->SCLEX_CAML</em> </td><td> +Select the Caml lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d2696851be5e73938cc53b02903bf30c2"></a><!-- doxytag: member="SCLEX_BLITZBASIC" ref="6ea255954758cdd35e093fa8208bb62d2696851be5e73938cc53b02903bf30c2" args="" -->SCLEX_BLITZBASIC</em> </td><td> +Select the BlitzBasic lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d7764a265dd69743101b3a64e68ae5efa"></a><!-- doxytag: member="SCLEX_PUREBASIC" ref="6ea255954758cdd35e093fa8208bb62d7764a265dd69743101b3a64e68ae5efa" args="" -->SCLEX_PUREBASIC</em> </td><td> +Select the PureBasic lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d351fd85d3fd522100386bfd9424e3a62"></a><!-- doxytag: member="SCLEX_HASKELL" ref="6ea255954758cdd35e093fa8208bb62d351fd85d3fd522100386bfd9424e3a62" args="" -->SCLEX_HASKELL</em> </td><td> +Select the Haskell lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d6e89b369bda35c4aebac67f7313a90f2"></a><!-- doxytag: member="SCLEX_PHPSCRIPT" ref="6ea255954758cdd35e093fa8208bb62d6e89b369bda35c4aebac67f7313a90f2" args="" -->SCLEX_PHPSCRIPT</em> </td><td> +Select the PHPScript lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62dcabaa53d59287ebbdc977eeceb9c3e65"></a><!-- doxytag: member="SCLEX_TADS3" ref="6ea255954758cdd35e093fa8208bb62dcabaa53d59287ebbdc977eeceb9c3e65" args="" -->SCLEX_TADS3</em> </td><td> +Select the TADS3 lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62de5f83876b6fa6a6de26b655e281ffd16"></a><!-- doxytag: member="SCLEX_REBOL" ref="6ea255954758cdd35e093fa8208bb62de5f83876b6fa6a6de26b655e281ffd16" args="" -->SCLEX_REBOL</em> </td><td> +Select the REBOL lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d3a1de57f409755a648a5755f914ed028"></a><!-- doxytag: member="SCLEX_SMALLTALK" ref="6ea255954758cdd35e093fa8208bb62d3a1de57f409755a648a5755f914ed028" args="" -->SCLEX_SMALLTALK</em> </td><td> +Select the Smalltalk lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d38bfecc4bc450106195200bf1724a84b"></a><!-- doxytag: member="SCLEX_FLAGSHIP" ref="6ea255954758cdd35e093fa8208bb62d38bfecc4bc450106195200bf1724a84b" args="" -->SCLEX_FLAGSHIP</em> </td><td> +Select the FlagShip lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d046e55128e56aeeb7a72f994fb4e015b"></a><!-- doxytag: member="SCLEX_CSOUND" ref="6ea255954758cdd35e093fa8208bb62d046e55128e56aeeb7a72f994fb4e015b" args="" -->SCLEX_CSOUND</em> </td><td> +Select the Csound lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d276307014b9460c95ebe5076afa050f2"></a><!-- doxytag: member="SCLEX_FREEBASIC" ref="6ea255954758cdd35e093fa8208bb62d276307014b9460c95ebe5076afa050f2" args="" -->SCLEX_FREEBASIC</em> </td><td> +Select the FreeBasic lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d0efec3f1d46af6f6a7924de1e19a5761"></a><!-- doxytag: member="SCLEX_INNOSETUP" ref="6ea255954758cdd35e093fa8208bb62d0efec3f1d46af6f6a7924de1e19a5761" args="" -->SCLEX_INNOSETUP</em> </td><td> +Select the InnoSetup lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62ded042730912f5111558955e09214d298"></a><!-- doxytag: member="SCLEX_OPAL" ref="6ea255954758cdd35e093fa8208bb62ded042730912f5111558955e09214d298" args="" -->SCLEX_OPAL</em> </td><td> +Select the Opal lexer. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="6ea255954758cdd35e093fa8208bb62d983672d8cd26e849c76717f754e59a80"></a><!-- doxytag: member="SCLEX_SPICE" ref="6ea255954758cdd35e093fa8208bb62d983672d8cd26e849c76717f754e59a80" args="" -->SCLEX_SPICE</em> </td><td> +Select the Spice lexer. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="e54a418ee8c182e1ddfa404b59a34149"></a><!-- doxytag: member="QextScintillaBase::QextScintillaBase" ref="e54a418ee8c182e1ddfa404b59a34149" args="(QWidget *parent=0, const char *name=0, WFlags f=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaBase::QextScintillaBase </td> + <td>(</td> + <td class="paramtype">QWidget * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">WFlags </td> + <td class="paramname"> <em>f</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct an empty <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a> with parent <em>parent</em>, name <em>name</em>, and widget flags <em>f</em>. +</div> +</div><p> +<a class="anchor" name="f22e6dadb040870209e511018a4aa0b8"></a><!-- doxytag: member="QextScintillaBase::~QextScintillaBase" ref="f22e6dadb040870209e511018a4aa0b8" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaBase::~QextScintillaBase </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="e9a2e982760ae835cdecfcfe6b92c416"></a><!-- doxytag: member="QextScintillaBase::pool" ref="e9a2e982760ae835cdecfcfe6b92c416" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">static <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a>* QextScintillaBase::pool </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [static]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns a pointer to a <a class="el" href="classQextScintillaBase.html">QextScintillaBase</a> instance, or 0 if there isn't one. This can be used by the higher level API to send messages that aren't associated with a particular instance. +</div> +</div><p> +<a class="anchor" name="35ba57ee3832cf695531cc997b24d821"></a><!-- doxytag: member="QextScintillaBase::SendScintilla" ref="35ba57ee3832cf695531cc997b24d821" args="(unsigned int msg, unsigned long wParam=0, long lParam=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">long QextScintillaBase::SendScintilla </td> + <td>(</td> + <td class="paramtype">unsigned int </td> + <td class="paramname"> <em>msg</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">unsigned long </td> + <td class="paramname"> <em>wParam</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">long </td> + <td class="paramname"> <em>lParam</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Send the Scintilla message <em>msg</em> with the optional parameters <em>wParam</em> and <em>lParam</em>. +</div> +</div><p> +<a class="anchor" name="171ce27ddcfabf024cc5539181f253dd"></a><!-- doxytag: member="QextScintillaBase::sizeHint" ref="171ce27ddcfabf024cc5539181f253dd" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QSize QextScintillaBase::sizeHint </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the recommended size of the widget. +<p> + +</div> +</div><p> +<a class="anchor" name="7c7723d64865b462ecfbf4152d836cae"></a><!-- doxytag: member="QextScintillaBase::viewport" ref="7c7723d64865b462ecfbf4152d836cae" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QWidget* QextScintillaBase::viewport </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the viewport widget. This is the widget that actually contains the text. +</div> +</div><p> +<a class="anchor" name="98a9d6ccb14bf28e9bf75dc069577b9b"></a><!-- doxytag: member="QextScintillaBase::QSCN_SELCHANGED" ref="98a9d6ccb14bf28e9bf75dc069577b9b" args="(bool yes)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::QSCN_SELCHANGED </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>yes</em> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when text is selected or de-selected. <em>yes</em> is TRUE if text has been selected and FALSE if text has been deselected. +</div> +</div><p> +<a class="anchor" name="8201e4d6beab5edbb64515d6d52b1fd7"></a><!-- doxytag: member="QextScintillaBase::SCN_AUTOCSELECTION" ref="8201e4d6beab5edbb64515d6d52b1fd7" args="(const char *selection, int position)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_AUTOCSELECTION </td> + <td>(</td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>selection</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>position</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the user selects an item in an auto-completion list. It is emitted before the selection is inserted. The insertion can be cancelled by sending an SCI_AUTOCANCEL message from a connected slot. <em>position</em> is the start position of the word being completed. <em>selection</em> is the text of the selection. +</div> +</div><p> +<a class="anchor" name="13a80e946a24ed608742e90e976b770b"></a><!-- doxytag: member="QextScintillaBase::SCEN_CHANGE" ref="13a80e946a24ed608742e90e976b770b" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCEN_CHANGE </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the document has changed for any reason. +</div> +</div><p> +<a class="anchor" name="dccbc9d664a8bffc9d59971a362febf2"></a><!-- doxytag: member="QextScintillaBase::SCN_CALLTIPCLICK" ref="dccbc9d664a8bffc9d59971a362febf2" args="(int direction)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_CALLTIPCLICK </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>direction</em> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal ir emitted when the user clicks on a calltip. <em>position</em> is 1 if the user clicked on the up arrow, 2 if the user clicked on the down arrow, and 0 if the user clicked elsewhere. +</div> +</div><p> +<a class="anchor" name="3af676a6edd1f511a0c46cbc9bbb2cbb"></a><!-- doxytag: member="QextScintillaBase::SCN_CHARADDED" ref="3af676a6edd1f511a0c46cbc9bbb2cbb" args="(int charadded)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_CHARADDED </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>charadded</em> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted whenever the user enters an ordinary character into the text. <em>charadded</em> is the character. It can be used to decide to display a call tip or an auto-completion list. +</div> +</div><p> +<a class="anchor" name="c5a9f540a31b8fa2614eb81ee83a3ca4"></a><!-- doxytag: member="QextScintillaBase::SCN_HOTSPOTCLICK" ref="c5a9f540a31b8fa2614eb81ee83a3ca4" args="(int position, int modifiers)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_HOTSPOTCLICK </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>position</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>modifiers</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the user clicks on text in a style with the hotspot attribute set. <em>position</em> is the position in the text where the click occured. <em>modifiers</em> is the logical or of the modifier keys that were pressed when the user clicked. +</div> +</div><p> +<a class="anchor" name="1ef454f2acaccaa53dcce7e542cdb006"></a><!-- doxytag: member="QextScintillaBase::SCN_HOTSPOTDOUBLECLICK" ref="1ef454f2acaccaa53dcce7e542cdb006" args="(int position, int modifiers)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_HOTSPOTDOUBLECLICK </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>position</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>modifiers</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the user double clicks on text in a style with the hotspot attribute set. <em>position</em> is the position in the text where the double click occured. <em>modifiers</em> is the logical or of the modifier keys that were pressed when the user double clicked. +</div> +</div><p> +<a class="anchor" name="48c3b55133b4f2fe40f4a8ad48c8464a"></a><!-- doxytag: member="QextScintillaBase::SCN_MACRORECORD" ref="48c3b55133b4f2fe40f4a8ad48c8464a" args="(unsigned int, unsigned long, long)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_MACRORECORD </td> + <td>(</td> + <td class="paramtype">unsigned </td> + <td class="paramname"> <em>int</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">unsigned </td> + <td class="paramname"> <em>long</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">long </td> + <td class="paramname"></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when a recordable editor command has been executed. +</div> +</div><p> +<a class="anchor" name="5d37a34b0254cfe015056c25b1b486a5"></a><!-- doxytag: member="QextScintillaBase::SCN_MARGINCLICK" ref="5d37a34b0254cfe015056c25b1b486a5" args="(int position, int modifiers, int margin)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_MARGINCLICK </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>position</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>modifiers</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>margin</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the user clicks on a sensitive margin. <em>position</em> is the position of the start of the line against which the user clicked. <em>modifiers</em> is the logical or of the modifier keys that were pressed when the user clicked. <em>margin</em> is the number of the margin the user clicked in: 0, 1 or 2.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fb5a01691811c1ad15519d7023f83df9">SCI_GETMARGINSENSITIVEN</a>, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ac5019b21e5be3cf19fcf999c3da833a">SCI_SETMARGINSENSITIVEN</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="50b6b16bf671969a8e0034b8763a55b2"></a><!-- doxytag: member="QextScintillaBase::SCN_MODIFYATTEMPTRO" ref="50b6b16bf671969a8e0034b8763a55b2" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_MODIFYATTEMPTRO </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the user attempts to modify read-only text. +</div> +</div><p> +<a class="anchor" name="0812c4c0f7a05df4ede492e5b81c0c5d"></a><!-- doxytag: member="QextScintillaBase::SCN_PAINTED" ref="0812c4c0f7a05df4ede492e5b81c0c5d" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_PAINTED </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when painting has been completed. It is useful to trigger some other change but to have the paint be done first to appear more reponsive to the user. +</div> +</div><p> +<a class="anchor" name="2b5ad5e9701145883210c588caa60859"></a><!-- doxytag: member="QextScintillaBase::SCN_SAVEPOINTLEFT" ref="2b5ad5e9701145883210c588caa60859" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_SAVEPOINTLEFT </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the current state of the text no longer corresponds to the state of the text at the save point.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0be33d4f870ce79d968106ae73cc431a0">SCI_SETSAVEPOINT</a>, <a class="el" href="classQextScintillaBase.html#72a342de3e6973e7bfee0403bc002585">SCN_SAVEPOINTREACHED()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="72a342de3e6973e7bfee0403bc002585"></a><!-- doxytag: member="QextScintillaBase::SCN_SAVEPOINTREACHED" ref="72a342de3e6973e7bfee0403bc002585" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_SAVEPOINTREACHED </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the current state of the text corresponds to the state of the text at the save point. This allows feedback to be given to the user as to whether the text has been modified since it was last saved.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0be33d4f870ce79d968106ae73cc431a0">SCI_SETSAVEPOINT</a>, <a class="el" href="classQextScintillaBase.html#2b5ad5e9701145883210c588caa60859">SCN_SAVEPOINTLEFT()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="091c3669666a8d479e8dea5b803f63d7"></a><!-- doxytag: member="QextScintillaBase::SCN_STYLENEEDED" ref="091c3669666a8d479e8dea5b803f63d7" args="(int position)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaBase::SCN_STYLENEEDED </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>position</em> </td> + <td> ) </td> + <td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when a range of text needs to be syntax styled. The range is from the value returned by the SCI_GETENDSTYLED message and <em>position</em>. It is only emitted if the currently selected lexer is SCNLEX_CONTAINER.<p> +<dl compact><dt><b>See also:</b></dt><dd>SCI_COLOURISE, <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05ff8be672f9810059ab924770ee7a710">SCI_GETENDSTYLED</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a31a4b262617ad472c95f700de47a84b"></a><!-- doxytag: member="QextScintillaBase::eventFilter" ref="a31a4b262617ad472c95f700de47a84b" args="(QObject *o, QEvent *e)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaBase::eventFilter </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>o</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">QEvent * </td> + <td class="paramname"> <em>e</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Re-implemented to filter certain events. +<p> + +</div> +</div><p> +<a class="anchor" name="f2973f7bf587f7e71902a1b7909a7c60"></a><!-- doxytag: member="QextScintillaBase::keyPressEvent" ref="f2973f7bf587f7e71902a1b7909a7c60" args="(QKeyEvent *ke)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaBase::keyPressEvent </td> + <td>(</td> + <td class="paramtype">QKeyEvent * </td> + <td class="paramname"> <em>ke</em> </td> + <td> ) </td> + <td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Re-implemented to handle the key presses for the widget. +<p> + +</div> +</div><p> +<a class="anchor" name="85e6877f9aad613a869fe5b7d97f9035"></a><!-- doxytag: member="QextScintillaBase::focusInEvent" ref="85e6877f9aad613a869fe5b7d97f9035" args="(QFocusEvent *)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaBase::focusInEvent </td> + <td>(</td> + <td class="paramtype">QFocusEvent * </td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Re-implemented to tell Scintilla it has the focus. +<p> + +</div> +</div><p> +<a class="anchor" name="f87a97050d71a323d47d666fe4a5547b"></a><!-- doxytag: member="QextScintillaBase::focusOutEvent" ref="f87a97050d71a323d47d666fe4a5547b" args="(QFocusEvent *)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaBase::focusOutEvent </td> + <td>(</td> + <td class="paramtype">QFocusEvent * </td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Re-implemented to tell Scintilla it has lost the focus. +<p> + +</div> +</div><p> +<a class="anchor" name="9516bc2125ea51a8de4c21f6af42a4b1"></a><!-- doxytag: member="QextScintillaBase::focusNextPrevChild" ref="9516bc2125ea51a8de4c21f6af42a4b1" args="(bool)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual bool QextScintillaBase::focusNextPrevChild </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Re-implemented to allow tabs to be entered as text. +<p> + +</div> +</div><p> +<a class="anchor" name="7c1be000329c8f9e328999cbc03ba9a7"></a><!-- doxytag: member="QextScintillaBase::startDrag" ref="7c1be000329c8f9e328999cbc03ba9a7" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaBase::startDrag </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Start a drag operation. +<p> + +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaCommand-members.html b/doc/html/classQextScintillaCommand-members.html new file mode 100644 index 0000000..700ddcd --- /dev/null +++ b/doc/html/classQextScintillaCommand-members.html @@ -0,0 +1,31 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaCommand Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a>, including all inherited members.<p><table> + <tr class="memlist"><td><a class="el" href="classQextScintillaCommand.html#b42a52b6cc20d45fcce5838fd409f41d">alternateKey</a>() const </td><td><a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaCommand.html#76940cf10cf05d99baf3d9b989109777">description</a>() const </td><td><a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaCommand.html#8adefa65b3b42a0e41fd2e440ccd277d">key</a>() const </td><td><a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaCommand.html#2ceda942ff321060804d2373eecf7ddd">setAlternateKey</a>(int altkey)</td><td><a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaCommand.html#5d8f8e66928022855f859f2ef62f98ce">setKey</a>(int key)</td><td><a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaCommand.html#d4d553cb5852576f68d55c5952a2c4d9">validKey</a>(int key)</td><td><a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a></td><td><code> [static]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaCommand.html b/doc/html/classQextScintillaCommand.html new file mode 100644 index 0000000..dd80426 --- /dev/null +++ b/doc/html/classQextScintillaCommand.html @@ -0,0 +1,176 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaCommand Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaCommand Class Reference</h1><!-- doxytag: class="QextScintillaCommand" -->The <a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a> class represents an internal editor command that may have one or two keys bound to it. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillacommand.h></code> +<p> +<a href="classQextScintillaCommand-members.html">List of all members.</a><h2>Public Member Functions</h2> +<ul> +<li>void <a class="el" href="classQextScintillaCommand.html#5d8f8e66928022855f859f2ef62f98ce">setKey</a> (int key) +<li>void <a class="el" href="classQextScintillaCommand.html#2ceda942ff321060804d2373eecf7ddd">setAlternateKey</a> (int altkey) +<li>int <a class="el" href="classQextScintillaCommand.html#8adefa65b3b42a0e41fd2e440ccd277d">key</a> () const +<li>int <a class="el" href="classQextScintillaCommand.html#b42a52b6cc20d45fcce5838fd409f41d">alternateKey</a> () const +<li>QString <a class="el" href="classQextScintillaCommand.html#76940cf10cf05d99baf3d9b989109777">description</a> () const +</ul> +<h2>Static Public Member Functions</h2> +<ul> +<li>static bool <a class="el" href="classQextScintillaCommand.html#d4d553cb5852576f68d55c5952a2c4d9">validKey</a> (int key) +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a> class represents an internal editor command that may have one or two keys bound to it. +<p> +Methods are provided to change the keys bound to the command and to remove a key binding. Each command has a user friendly description of the command for use in key mapping dialogs. +<p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="5d8f8e66928022855f859f2ef62f98ce"></a><!-- doxytag: member="QextScintillaCommand::setKey" ref="5d8f8e66928022855f859f2ef62f98ce" args="(int key)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaCommand::setKey </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>key</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Binds the key <em>key</em> to the command. If <em>key</em> is 0 then the key binding is removed. If <em>key</em> is invalid then the key binding is unchanged. Valid keys are any visible or control character or any of <code>Key_Down</code>, <code>Key_Up</code>, <code>Key_Left</code>, <code>Key_Right</code>, <code>Key_Home</code>, <code>Key_End</code>, <code>Key_Prior</code>, <code>Key_Next</code>, <code>Key_Delete</code>, <code>Key_Insert</code>, <code>Key_Escape</code>, <code>Key_Backspace</code>, <code>Key_Tab</code> and <code>Key_Return</code>. Keys may be modified with any combination of <code>SHIFT</code>, <code>CTRL</code> and <code>ALT</code>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaCommand.html#8adefa65b3b42a0e41fd2e440ccd277d">key()</a>, <a class="el" href="classQextScintillaCommand.html#2ceda942ff321060804d2373eecf7ddd">setAlternateKey()</a>, <a class="el" href="classQextScintillaCommand.html#d4d553cb5852576f68d55c5952a2c4d9">validKey()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="2ceda942ff321060804d2373eecf7ddd"></a><!-- doxytag: member="QextScintillaCommand::setAlternateKey" ref="2ceda942ff321060804d2373eecf7ddd" args="(int altkey)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaCommand::setAlternateKey </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>altkey</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Binds the alternate key <em>altkey</em> to the command. If <em>key</em> is 0 then the alternate key binding is removed.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaCommand.html#b42a52b6cc20d45fcce5838fd409f41d">alternateKey()</a>, <a class="el" href="classQextScintillaCommand.html#5d8f8e66928022855f859f2ef62f98ce">setKey()</a>, <a class="el" href="classQextScintillaCommand.html#d4d553cb5852576f68d55c5952a2c4d9">validKey()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="8adefa65b3b42a0e41fd2e440ccd277d"></a><!-- doxytag: member="QextScintillaCommand::key" ref="8adefa65b3b42a0e41fd2e440ccd277d" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintillaCommand::key </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The key that is currently bound to the command is returned.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaCommand.html#5d8f8e66928022855f859f2ef62f98ce">setKey()</a>, <a class="el" href="classQextScintillaCommand.html#b42a52b6cc20d45fcce5838fd409f41d">alternateKey()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="b42a52b6cc20d45fcce5838fd409f41d"></a><!-- doxytag: member="QextScintillaCommand::alternateKey" ref="b42a52b6cc20d45fcce5838fd409f41d" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintillaCommand::alternateKey </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The alternate key that is currently bound to the command is returned.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaCommand.html#2ceda942ff321060804d2373eecf7ddd">setAlternateKey()</a>, <a class="el" href="classQextScintillaCommand.html#8adefa65b3b42a0e41fd2e440ccd277d">key()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="d4d553cb5852576f68d55c5952a2c4d9"></a><!-- doxytag: member="QextScintillaCommand::validKey" ref="d4d553cb5852576f68d55c5952a2c4d9" args="(int key)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">static bool QextScintillaCommand::validKey </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>key</em> </td> + <td> ) </td> + <td width="100%"><code> [static]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If the key <em>key</em> is valid then TRUE is returned. +<p> + +</div> +</div><p> +<a class="anchor" name="76940cf10cf05d99baf3d9b989109777"></a><!-- doxytag: member="QextScintillaCommand::description" ref="76940cf10cf05d99baf3d9b989109777" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaCommand::description </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The user friendly description of the command is returned. +<p> + +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaCommandSet-members.html b/doc/html/classQextScintillaCommandSet-members.html new file mode 100644 index 0000000..fa8f277 --- /dev/null +++ b/doc/html/classQextScintillaCommandSet-members.html @@ -0,0 +1,30 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaCommandSet Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a>, including all inherited members.<p><table> + <tr class="memlist"><td><a class="el" href="classQextScintillaCommandSet.html#497658e87e32bb8d6e9f3859a70e1107">clearAlternateKeys</a>()</td><td><a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaCommandSet.html#473747a515d9b554748aa4c25b371cc2">clearKeys</a>()</td><td><a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaCommandSet.html#3d5be67e3bbd4cf614c4baa6f8aacc37">commands</a>()</td><td><a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaCommandSet.html#a6e09aabf6126617ecec01c35fb32e53">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaCommandSet.html#3a4981c26ab30164efbf27d15a4828ee">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a></td><td></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaCommandSet.html b/doc/html/classQextScintillaCommandSet.html new file mode 100644 index 0000000..fc9fff4 --- /dev/null +++ b/doc/html/classQextScintillaCommandSet.html @@ -0,0 +1,168 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaCommandSet Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaCommandSet Class Reference</h1><!-- doxytag: class="QextScintillaCommandSet" -->The <a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a> class represents the set of all internal editor commands that may have keys bound. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillacommandset.h></code> +<p> +<a href="classQextScintillaCommandSet-members.html">List of all members.</a><h2>Public Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaCommandSet.html#a6e09aabf6126617ecec01c35fb32e53">readSettings</a> (QSettings &qs, const char *prefix="/Scintilla") +<li>bool <a class="el" href="classQextScintillaCommandSet.html#3a4981c26ab30164efbf27d15a4828ee">writeSettings</a> (QSettings &qs, const char *prefix="/Scintilla") +<li>QPtrList< <a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a> > & <a class="el" href="classQextScintillaCommandSet.html#3d5be67e3bbd4cf614c4baa6f8aacc37">commands</a> () +<li>void <a class="el" href="classQextScintillaCommandSet.html#473747a515d9b554748aa4c25b371cc2">clearKeys</a> () +<li>void <a class="el" href="classQextScintillaCommandSet.html#497658e87e32bb8d6e9f3859a70e1107">clearAlternateKeys</a> () +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a> class represents the set of all internal editor commands that may have keys bound. +<p> +Methods are provided to access the individual commands and to read and write the current bindings from and to settings files. +<p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="a6e09aabf6126617ecec01c35fb32e53"></a><!-- doxytag: member="QextScintillaCommandSet::readSettings" ref="a6e09aabf6126617ecec01c35fb32e53" args="(QSettings &qs, const char *prefix="/Scintilla")" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaCommandSet::readSettings </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>prefix</em> = <code>"/Scintilla"</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The key bindings for each command in the set are read from the settings <em>qs</em>. <em>prefix</em> is prepended to the key of each entry. TRUE is returned if there was no error.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaCommandSet.html#3a4981c26ab30164efbf27d15a4828ee">writeSettings()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="3a4981c26ab30164efbf27d15a4828ee"></a><!-- doxytag: member="QextScintillaCommandSet::writeSettings" ref="3a4981c26ab30164efbf27d15a4828ee" args="(QSettings &qs, const char *prefix="/Scintilla")" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaCommandSet::writeSettings </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>prefix</em> = <code>"/Scintilla"</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The key bindings for each command in the set are written to the settings <em>qs</em>. <em>prefix</em> is prepended to the key of each entry. TRUE is returned if there was no error.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaCommandSet.html#a6e09aabf6126617ecec01c35fb32e53">readSettings()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="3d5be67e3bbd4cf614c4baa6f8aacc37"></a><!-- doxytag: member="QextScintillaCommandSet::commands" ref="3d5be67e3bbd4cf614c4baa6f8aacc37" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QPtrList<<a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a>>& QextScintillaCommandSet::commands </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The commands in the set are returned as a list. +<p> + +</div> +</div><p> +<a class="anchor" name="473747a515d9b554748aa4c25b371cc2"></a><!-- doxytag: member="QextScintillaCommandSet::clearKeys" ref="473747a515d9b554748aa4c25b371cc2" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaCommandSet::clearKeys </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The primary keys bindings for all commands are removed. +<p> + +</div> +</div><p> +<a class="anchor" name="497658e87e32bb8d6e9f3859a70e1107"></a><!-- doxytag: member="QextScintillaCommandSet::clearAlternateKeys" ref="497658e87e32bb8d6e9f3859a70e1107" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaCommandSet::clearAlternateKeys </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The alternate keys bindings for all commands are removed. +<p> + +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaDocument-members.html b/doc/html/classQextScintillaDocument-members.html new file mode 100644 index 0000000..b23e094 --- /dev/null +++ b/doc/html/classQextScintillaDocument-members.html @@ -0,0 +1,29 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaDocument Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>operator=</b>(const QextScintillaDocument &) (defined in <a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a>)</td><td><a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaDocument.html#b3fa870cc66064a6fbb8947cda063574">QextScintillaDocument</a>()</td><td><a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>QextScintillaDocument</b>(const QextScintillaDocument &) (defined in <a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a>)</td><td><a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>~QextScintillaDocument</b>() (defined in <a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a>)</td><td><a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaDocument.html b/doc/html/classQextScintillaDocument.html new file mode 100644 index 0000000..5773d1f --- /dev/null +++ b/doc/html/classQextScintillaDocument.html @@ -0,0 +1,64 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaDocument Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaDocument Class Reference</h1><!-- doxytag: class="QextScintillaDocument" -->The <a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a> class represents a document to be editted. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintilladocument.h></code> +<p> +<a href="classQextScintillaDocument-members.html">List of all members.</a><h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaDocument.html#b3fa870cc66064a6fbb8947cda063574">QextScintillaDocument</a> () +<li><a class="anchor" name="ee3174de3c17bda6f8677eccb13621e6"></a><!-- doxytag: member="QextScintillaDocument::QextScintillaDocument" ref="ee3174de3c17bda6f8677eccb13621e6" args="(const QextScintillaDocument &)" --> +<b>QextScintillaDocument</b> (const <a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a> &) +<li><a class="anchor" name="2878afa9b94f2701bc8e39ca8c079338"></a><!-- doxytag: member="QextScintillaDocument::operator=" ref="2878afa9b94f2701bc8e39ca8c079338" args="(const QextScintillaDocument &)" --> +<a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a> & <b>operator=</b> (const <a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a> &) +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a> class represents a document to be editted. +<p> +It is an opaque class that can be attached to multiple instances of <a class="el" href="classQextScintilla.html">QextScintilla</a> to create different simultaneous views of the same document. <a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a> uses implicit sharing so that copying class instances is a cheap operation. +<p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="b3fa870cc66064a6fbb8947cda063574"></a><!-- doxytag: member="QextScintillaDocument::QextScintillaDocument" ref="b3fa870cc66064a6fbb8947cda063574" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaDocument::QextScintillaDocument </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Create a new unattached document. +<p> + +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexer-members.html b/doc/html/classQextScintillaLexer-members.html new file mode 100644 index 0000000..29a27b1 --- /dev/null +++ b/doc/html/classQextScintillaLexer-members.html @@ -0,0 +1,66 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexer Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">description</a>(int style) const =0</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [pure virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">language</a>() const =0</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [pure virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">lexer</a>() const =0</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [pure virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexer.html b/doc/html/classQextScintillaLexer.html new file mode 100644 index 0000000..6085267 --- /dev/null +++ b/doc/html/classQextScintillaLexer.html @@ -0,0 +1,910 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexer Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexer Class Reference</h1><!-- doxytag: class="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a> class is an abstract class used as a base for specific language lexers. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexer.h></code> +<p> +Inherited by <a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a>, and <a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a>. +<p> +<a href="classQextScintillaLexer-members.html">List of all members.</a><h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a> (int autoindentstyle) +<li>virtual void <a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a> (const QColor &c, int style=-1) +<li>virtual void <a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a> (const QFont &f) +<li>virtual void <a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a> (const QColor &c) +<li>virtual void <a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a> (const QColor &c) +<li>virtual void <a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a> (bool eoffill, int style=-1) +<li>virtual void <a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a> (const QFont &f, int style=-1) +<li>virtual void <a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a> (const QColor &c, int style=-1) +</ul> +<h2>Signals</h2> +<ul> +<li>void <a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a> (const QColor &c, int style) +<li>void <a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a> (bool eoffilled, int style) +<li>void <a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a> (const QFont &f, int style) +<li>void <a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a> (const QColor &c, int style) +<li>void <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a> (const char *prop, const char *val) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a> () +<li>virtual const char * <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">language</a> () const =0 +<li>virtual const char * <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">lexer</a> () const =0 +<li><a class="anchor" name="ac6813673532719973310611b86fff0e"></a><!-- doxytag: member="QextScintillaLexer::autoCompletionFillups" ref="ac6813673532719973310611b86fff0e" args="() const " --> +virtual const char * <b>autoCompletionFillups</b> () const +<li><a class="anchor" name="fb0cb5f1a995ea1fd84f6e4a113c874e"></a><!-- doxytag: member="QextScintillaLexer::autoCompletionStartCharacters" ref="fb0cb5f1a995ea1fd84f6e4a113c874e" args="() const " --> +virtual const char * <b>autoCompletionStartCharacters</b> () const +<li>int <a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a> () +<li><a class="anchor" name="faa6b4a7aa24cfa041ba58fefdaa51b4"></a><!-- doxytag: member="QextScintillaLexer::blockEnd" ref="faa6b4a7aa24cfa041ba58fefdaa51b4" args="(int *style=0) const " --> +virtual const char * <b>blockEnd</b> (int *style=0) const +<li><a class="anchor" name="0b7e7b4ce1d16c08e23b704b548b3008"></a><!-- doxytag: member="QextScintillaLexer::blockLookback" ref="0b7e7b4ce1d16c08e23b704b548b3008" args="() const " --> +virtual int <b>blockLookback</b> () const +<li><a class="anchor" name="09f46d48f2feda9327dc0ca154f15855"></a><!-- doxytag: member="QextScintillaLexer::blockStart" ref="09f46d48f2feda9327dc0ca154f15855" args="(int *style=0) const " --> +virtual const char * <b>blockStart</b> (int *style=0) const +<li><a class="anchor" name="9753f80558d9b018fbf0e6c30e6d5f9e"></a><!-- doxytag: member="QextScintillaLexer::blockStartKeyword" ref="9753f80558d9b018fbf0e6c30e6d5f9e" args="(int *style=0) const " --> +virtual const char * <b>blockStartKeyword</b> (int *style=0) const +<li><a class="anchor" name="b6e317b0a7d47dbb7922966a354ff62a"></a><!-- doxytag: member="QextScintillaLexer::braceStyle" ref="b6e317b0a7d47dbb7922966a354ff62a" args="() const " --> +virtual int <b>braceStyle</b> () const +<li><a class="anchor" name="6dc518da975c91ac3f7e2fd820bc7f2d"></a><!-- doxytag: member="QextScintillaLexer::wordCharacters" ref="6dc518da975c91ac3f7e2fd820bc7f2d" args="() const " --> +virtual const char * <b>wordCharacters</b> () const +<li>virtual QColor <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">color</a> (int style) const +<li>virtual bool <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">eolFill</a> (int style) const +<li>virtual QFont <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">font</a> (int style) const +<li>virtual const char * <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">keywords</a> (int set) const +<li><a class="anchor" name="acf74da30d56b8420ba00a3d70e5d3c6"></a><!-- doxytag: member="QextScintillaLexer::defaultStyle" ref="acf74da30d56b8420ba00a3d70e5d3c6" args="() const " --> +virtual int <b>defaultStyle</b> () const +<li>virtual QString <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">description</a> (int style) const =0 +<li>virtual QColor <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">paper</a> (int style) const +<li>virtual QFont <a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a> () const +<li>virtual QColor <a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a> () const +<li>virtual QColor <a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a> () const +<li>virtual void <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">refreshProperties</a> () +<li>bool <a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a> (QSettings &qs, const char *prefix="/Scintilla") +<li>bool <a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a> (QSettings &qs, const char *prefix="/Scintilla") const +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>virtual bool <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">readProperties</a> (QSettings &qs, const QString &prefix) +<li>virtual bool <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">writeProperties</a> (QSettings &qs, const QString &prefix) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a> class is an abstract class used as a base for specific language lexers. +<p> +A Scintilla lexer scans the text breaking it up into separate language objects, e.g. keywords, strings, operators. The lexer then uses a different style to draw each object. A style is identified by a style number and has a number of attributes, including colour and font. A specific language lexer will implement appropriate default styles which can be overriden by an application by further sub-classing the specific language lexer.<p> +A specific language lexer may provide one or more sets of words to be recognised as keywords. Most lexers only provide one set, but some may support languages embedded in other languages and provide several sets.<p> +<a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a> provides convenience methods for saving and restoring user preferences for fonts and colours. +<p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="635c431e2c58e1864e495b2e5f69bd5e"></a><!-- doxytag: member="QextScintillaLexer::QextScintillaLexer" ref="635c431e2c58e1864e495b2e5f69bd5e" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexer::QextScintillaLexer </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="40573922e7a23fe7dce56892f42b229a"></a><!-- doxytag: member="QextScintillaLexer::~QextScintillaLexer" ref="40573922e7a23fe7dce56892f42b229a" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexer::~QextScintillaLexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="59c17e312dff4a9aa90b5e4c2a382218"></a><!-- doxytag: member="QextScintillaLexer::language" ref="59c17e312dff4a9aa90b5e4c2a382218" args="() const =0" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual const char* QextScintillaLexer::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [pure virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. It must be re-implemented by a sub-class. +<p> +Implemented in <a class="el" href="classQextScintillaLexerBash.html#673d80339a5bcba31c1afb5ff63620c0">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerBatch.html#ce8f2eca661457993c6b334c297dd1e9">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerCPP.html#4cb81dcd6838b1aad041da166186d349">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSharp.html#2297bcad4064ab481ef869772e518419">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCSS.html#6cb3e5679fd928c05b8fab7e9ad84c64">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerDiff.html#4715beb7d4383a55b02273a28c721753">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerHTML.html#42e4b633a0884532b1964af951a28694">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerIDL.html#e3f195e87f6459cbaa2772736c588e4f">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerJava.html#c3e2fec409d4eab37271892668064fd1">QextScintillaLexerJava</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#3cfc5a543947879f3525e5abae1abdb7">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerLua.html#f2708e7a2aab690da33cd71770db2c93">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerMakefile.html#c83c70da46c2b7a1c01e2856eb29b92e">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerPerl.html#b5da3350644b9b8fa2afd7808253983c">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html#853186789364ca310f1474f699082dfa">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerProperties.html#436334f1bed5891cfbf3f9efd45e1298">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPython.html#9b79dc4e52cc372ce666d9e4ff84a56c">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerRuby.html#c99bae5713f65a19f5ea79e2c7af37b7">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerSQL.html#0fe5b3ab8b64c7628ba1c4282363cce2">QextScintillaLexerSQL</a>, and <a class="el" href="classQextScintillaLexerTeX.html#1f77892e32f3efe0adac5fa64fd3a6b6">QextScintillaLexerTeX</a>. +</div> +</div><p> +<a class="anchor" name="9d63d331f148e68e5cd1dd6b9c3ad7d3"></a><!-- doxytag: member="QextScintillaLexer::lexer" ref="9d63d331f148e68e5cd1dd6b9c3ad7d3" args="() const =0" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual const char* QextScintillaLexer::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [pure virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. It must be re-implemented by a sub-class. +<p> +Implemented in <a class="el" href="classQextScintillaLexerBash.html#138d5db7d889a1065d14cabf45be423c">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerBatch.html#ad3275fdafc700e7e14cd9d8beb6c589">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerCPP.html#e11593183bc1457d47b25c41d97ffdc0">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSS.html#0f28f522d2b53c7025ab3d227fd1c1ab">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerDiff.html#19bdc2bd977ea621073ea5cac4c51d5a">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerHTML.html#263c14b01148462aac8d5fd38d63f952">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerLua.html#578426b4bb8a4c2b16129a1c60b3911c">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerMakefile.html#3200a99b7847698fd0026462c4072f63">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerPerl.html#47221e83c089cb23a17f7ad0c1cbf2a9">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html#9b63a0fb4253efe915c8ead6d8546d64">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerProperties.html#de484f827e973c4a10ed8ffee30ee6a0">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPython.html#a8718ec3b6ba82dd0d0477508f18c1cb">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerRuby.html#90f0d39fa849f263d841b34e10b93f30">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerSQL.html#f11bb7390af4b47ce159a829f82264d0">QextScintillaLexerSQL</a>, and <a class="el" href="classQextScintillaLexerTeX.html#38a71b9864c9de3e422d696d49b7e4f0">QextScintillaLexerTeX</a>. +</div> +</div><p> +<a class="anchor" name="3571bc3e7920261544bae8c0103fbea3"></a><!-- doxytag: member="QextScintillaLexer::autoIndentStyle" ref="3571bc3e7920261544bae8c0103fbea3" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintillaLexer::autoIndentStyle </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the auto-indentation style. The default is 0 if the language is block structured, or <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae9c1e2a26467f02b3fc645a10083d04208">QextScintilla::AiMaintain</a> if not.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle()</a>, <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae9c1e2a26467f02b3fc645a10083d04208">QextScintilla::AiMaintain</a>, <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae93781e4e24c094255b5cc8c01a6afaf8b">QextScintilla::AiOpening</a>, <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae917d10ecdceac133845dc43ed53e0fb64">QextScintilla::AiClosing</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="d829bf54912a1909556a517c09857974"></a><!-- doxytag: member="QextScintillaLexer::color" ref="d829bf54912a1909556a517c09857974" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QColor QextScintillaLexer::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>. The default colour is black.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">paper()</a> </dd></dl> + +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerBash.html#ce6da18157d745615fe801abed48de96">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerBatch.html#8b016e35c2e59956a2df1904ffa1e007">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerCPP.html#81d2fac7671aaffb7cb0400eed5f4610">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSharp.html#db0be111bbbcb49ea20f3ec424104551">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCSS.html#09621fd74b9371c31cfaadc8373c0602">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerDiff.html#9c75450ec59c6b9754e9946c765531aa">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerHTML.html#0a0fec93b6bca1afa67a7586b8cd1f83">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerIDL.html#ba47acd3bb2f4f29921683d6ca0e1463">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#0d6f5ae54113d25194bba830674835fe">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerLua.html#d30f09523c335c17b1a862c44beb4593">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerMakefile.html#5b02a2a7e5a80d2d2cc81f2036ca681c">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerPerl.html#24d7917a2e5a9856f014b7a51bb66a21">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html#2d7002207c3c1191db99cb7c4f45863e">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerProperties.html#29f362422452175f80aba4a0a30e91d8">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPython.html#69e1a28465f6681a3f906c08ee6b05aa">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerRuby.html#7df51cdf4533fb0289a2003844b4fa67">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerSQL.html#03c2d78be78783cd6c35c888bc7c9411">QextScintillaLexerSQL</a>, and <a class="el" href="classQextScintillaLexerTeX.html#814e299720c89aca2180b048faada4f2">QextScintillaLexerTeX</a>. +</div> +</div><p> +<a class="anchor" name="9e1f5d6b36346910e45c433e22ad05ff"></a><!-- doxytag: member="QextScintillaLexer::eolFill" ref="9e1f5d6b36346910e45c433e22ad05ff" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual bool QextScintillaLexer::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line for style number <em>style</em>. The default is FALSE. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerBash.html#f4b2b1343c4501c2e1a40d3b58dab574">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerBatch.html#d94fd24c1f3d156456d5018e6a202b23">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerCPP.html#5f425be57976a428603b7c14f198ba76">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSharp.html#3b11e1f85a47f3caf09a25a0b5db4580">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerHTML.html#a3cac0d6cc9e4909d784901d767b6171">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#74ad10f97d43c77c24a4fbe5d7ca5d04">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerLua.html#cfde1f9e0a2ea5ea4581fddb2f889c1c">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerMakefile.html#387e4dcdf8e641b71a7549f2e0f68922">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerPerl.html#6c2179643375e26c86bfbc7258e52408">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html#2dc32c72de91eb02b8166dc4ffe1e944">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerProperties.html#b673e4f3569b9b5002a7e5fd75c72dae">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPython.html#81954fb1fb4c460fdd679cdf6a8c72ee">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerRuby.html#b2a03d86d7c2e3c7c11eb778b7c3fe20">QextScintillaLexerRuby</a>, and <a class="el" href="classQextScintillaLexerSQL.html#ee2473ffa75634fb28c893116d9f2c8e">QextScintillaLexerSQL</a>. +</div> +</div><p> +<a class="anchor" name="237079987354f031e8982b60a00b14e0"></a><!-- doxytag: member="QextScintillaLexer::font" ref="237079987354f031e8982b60a00b14e0" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QFont QextScintillaLexer::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. The default font is that returned by <a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont()</a>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont()</a> </dd></dl> + +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerBash.html#734cd74da64ec3489c18e0023c56baf6">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerBatch.html#d23670696aad82a64c8879aea1532b12">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerCPP.html#c78b287195efa8b2612bb16fbfba8417">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSharp.html#42d3dee10cd3efc54a3c583e26defad8">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCSS.html#24017481b708e8c7f272d772e5a1571f">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerHTML.html#63117e2e3f25f9a17fba9c59ac6e6a15">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#6e1888622ce0ae61936fc0191a536807">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerLua.html#a7779e1dcafb87304b611315bc525b90">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerMakefile.html#238697bc15872bc4a9e8ded40334ae54">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerPerl.html#452d3bc05e97e04259be5cd39a8fffe8">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html#54e012820a85e36069e6ed490d0fbee5">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerProperties.html#7070a1985d0a6f3aec0e2e06e39a3eba">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPython.html#34096513a7e9dbab85a3866a113550cb">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerRuby.html#c37edab4a7892f3c671f88051909878b">QextScintillaLexerRuby</a>, and <a class="el" href="classQextScintillaLexerSQL.html#f0a430cc19f2da4a5c8a6e7f3d4c104f">QextScintillaLexerSQL</a>. +</div> +</div><p> +<a class="anchor" name="00cc06fe8bce85318fd08890f5f614e4"></a><!-- doxytag: member="QextScintillaLexer::keywords" ref="00cc06fe8bce85318fd08890f5f614e4" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual const char* QextScintillaLexer::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. 0 is returned if there is no such set. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerBash.html#8d1ba00bbdbf44ef5d90581988585d94">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerBatch.html#7b364c4a62ec33d88bf148e2a28212ef">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerCPP.html#2e15e8d6831c86fbe16841bac3714a17">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSharp.html#f21fc95103fa7ddcd3fc00e9ca24b4f2">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCSS.html#692a86b42d52180ffb1430d96902dac8">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerHTML.html#a640562b320733e430174445b11107c6">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerIDL.html#5a14b1eff857fa464ebabb186af63804">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerJava.html#8021e35de49b51d150150996492b3472">QextScintillaLexerJava</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#9bb399d8f06d5b915c81a402e6d35ee5">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerLua.html#0f3e22697e17b377405a17a18115d60c">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerPerl.html#0980393fc763fe06510f0ed38f67defc">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html#80610e8114339c29e83bcb09a72f850b">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPython.html#599619deb214402b873cc884d1688484">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerRuby.html#c2c4e52585720219299637c287d672ac">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerSQL.html#c3bf685a2f608817ef23d48293610559">QextScintillaLexerSQL</a>, and <a class="el" href="classQextScintillaLexerTeX.html#7fd4e6ac4ff5d9ec92b12db7483000c1">QextScintillaLexerTeX</a>. +</div> +</div><p> +<a class="anchor" name="ddcd7beaeee21a59e4f4f5dee8edf0d8"></a><!-- doxytag: member="QextScintillaLexer::description" ref="ddcd7beaeee21a59e4f4f5dee8edf0d8" args="(int style) const =0" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QString QextScintillaLexer::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [pure virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implemented in <a class="el" href="classQextScintillaLexerBash.html#eaf8d3de39a0e93dfb1aa480b99b0642">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerBatch.html#03dca4c7289305a22a745db4d4c5e76f">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerCPP.html#cb720f11c91e4491dc0e44e18bfd0079">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSharp.html#4709aacad69084b713a086c7039a5042">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCSS.html#d766fb0ca5b027f9b5e01922210384ac">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerDiff.html#4ac748484ccda53f6fa3baee5a3ff52e">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerHTML.html#32833c72adf52ecbf9b479ae792df782">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerIDL.html#30e36f23bd7d56ec59b0b6352c484eba">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#01c7701133de7049c74dbdfd8cf2adb6">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerLua.html#de61e22ccec39eefe727b76f43ed000d">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerMakefile.html#4c478d2964f8accc12a4b4c9279e02e6">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerPerl.html#2e78a85ab81312eaf8199faec2edffd8">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html#5fe1811445537d27a7cfdd9d25f7c155">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerProperties.html#419785e6507ee675e2bc06c1fc455806">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPython.html#eccb543b9847ccd0d4d538384061b901">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerRuby.html#721775e8f6bb6bab9aaa064ff18ed70f">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerSQL.html#033022cf1010cab3db8ad0fc6b4b898e">QextScintillaLexerSQL</a>, and <a class="el" href="classQextScintillaLexerTeX.html#179f7f8ae87d3437f7ec3e536f682cd2">QextScintillaLexerTeX</a>. +</div> +</div><p> +<a class="anchor" name="791c5d4bcab79828d394975344fae6db"></a><!-- doxytag: member="QextScintillaLexer::paper" ref="791c5d4bcab79828d394975344fae6db" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QColor QextScintillaLexer::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper()</a>, <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">color()</a> </dd></dl> + +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerBash.html#162a91355351b5c66acad2da76dffa17">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerBatch.html#f383c2bfa30a7f5b7d3982949f910326">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerCPP.html#8cadeffdccdae0c0a3e26f6c8f33f3ee">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSharp.html#b92dae3e9d5fe9988c5e9f8439ad17a0">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerHTML.html#61db306c01232b11e66f70fd8dfd140d">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#edd2a656bf04564ec7494140d2800698">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerLua.html#069160759fbd9f9942f15447580d53e1">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerMakefile.html#79ab0f476fe0822d2d4979ea7d882165">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerPerl.html#8ca422a6d7f5dac8504807b471ca87da">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html#16ad1f50b59c21d283fe3ca53df19876">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerProperties.html#3d6a97fbd72128254ce96c4f98e8f121">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPython.html#8f4a2c5f009e7f8f05fe64612922d5ae">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerRuby.html#3a175244ac607efd0aac7c2a277d2cd2">QextScintillaLexerRuby</a>, and <a class="el" href="classQextScintillaLexerSQL.html#f48f2bfeccf7ffd7a9e72ad04a7b0882">QextScintillaLexerSQL</a>. +</div> +</div><p> +<a class="anchor" name="cb8b3992f2a2315188eaac2219c8f8b3"></a><!-- doxytag: member="QextScintillaLexer::defaultFont" ref="cb8b3992f2a2315188eaac2219c8f8b3" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QFont QextScintillaLexer::defaultFont </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the default font for all styles.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="be59d049a8c22b175e0d56d50db238b1"></a><!-- doxytag: member="QextScintillaLexer::defaultColor" ref="be59d049a8c22b175e0d56d50db238b1" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QColor QextScintillaLexer::defaultColor </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the default text colour for all styles.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="66e4109babde21bee78eaf9e228f5e72"></a><!-- doxytag: member="QextScintillaLexer::defaultPaper" ref="66e4109babde21bee78eaf9e228f5e72" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QColor QextScintillaLexer::defaultPaper </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the default paper colour for all styles.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="8c606f8763ced32f56d4a72d089a50ef"></a><!-- doxytag: member="QextScintillaLexer::refreshProperties" ref="8c606f8763ced32f56d4a72d089a50ef" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexer::refreshProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Causes all properties to be refreshed by emitting the <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged()</a> signal as required. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerBash.html#a35486ac2b53bcc04380117ce4282d34">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerCPP.html#a02453989cf7f0fed7f5a72dd7408ca7">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSS.html#2954acc8e9d84e6eac7b59bd5409f962">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerHTML.html#fa1583f1e5edd402ccd6e3cebc1d8c07">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerLua.html#7995cf1a6671a840abf061b3939b5e8b">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerPerl.html#8bfda96d71deb1b8c930c1b2aa02ae33">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html#5af07365484f36818be1317cdae81a1a">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerProperties.html#abf5e5dfb111502bd3b96a8073924746">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPython.html#4e62dbca0f2fecd3a8c28671d3008f4d">QextScintillaLexerPython</a>, and <a class="el" href="classQextScintillaLexerSQL.html#786e5f3e0b56a8b6a5b0ef6ce5256a36">QextScintillaLexerSQL</a>. +</div> +</div><p> +<a class="anchor" name="3dc542b9bcbbdb7a0cbb303214ae7f51"></a><!-- doxytag: member="QextScintillaLexer::readSettings" ref="3dc542b9bcbbdb7a0cbb303214ae7f51" args="(QSettings &qs, const char *prefix="/Scintilla")" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexer::readSettings </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>prefix</em> = <code>"/Scintilla"</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The colour, paper, font and end-of-line for each style number, and all lexer specific properties are read from the settings <em>qs</em>. <em>prefix</em> is prepended to the key of each entry. TRUE is returned if there was no error.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings()</a>, <a class="el" href="classQextScintilla.html#f784daa825798f7e9c16d0a721699fa0">QextScintilla::setLexer()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="489a8e9528498cab6c5fd999c004229c"></a><!-- doxytag: member="QextScintillaLexer::writeSettings" ref="489a8e9528498cab6c5fd999c004229c" args="(QSettings &qs, const char *prefix="/Scintilla") const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexer::writeSettings </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>prefix</em> = <code>"/Scintilla"</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The colour, paper, font and end-of-line for each style number, and all lexer specific properties are written to the settings <em>qs</em>. <em>prefix</em> is prepended to the key of each entry. TRUE is returned if there was no error.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="fca720f057784ddebc44d12e5899bc2e"></a><!-- doxytag: member="QextScintillaLexer::setAutoIndentStyle" ref="fca720f057784ddebc44d12e5899bc2e" args="(int autoindentstyle)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexer::setAutoIndentStyle </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>autoindentstyle</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The auto-indentation style is set to <em>autoindentstyle</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle()</a>, <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae9c1e2a26467f02b3fc645a10083d04208">QextScintilla::AiMaintain</a>, <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae93781e4e24c094255b5cc8c01a6afaf8b">QextScintilla::AiOpening</a>, <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae917d10ecdceac133845dc43ed53e0fb64">QextScintilla::AiClosing</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="93346e5eacd89a1a9ec220e0cc61dde6"></a><!-- doxytag: member="QextScintillaLexer::setColor" ref="93346e5eacd89a1a9ec220e0cc61dde6" args="(const QColor &c, int style=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexer::setColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>c</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The foreground colour for style number <em>style</em> is set to <em>c</em>. If <em>style</em> is -1 then the colour is set for all styles. +</div> +</div><p> +<a class="anchor" name="f14f40f03e36204ff11c3d40c8e56c44"></a><!-- doxytag: member="QextScintillaLexer::setDefaultFont" ref="f14f40f03e36204ff11c3d40c8e56c44" args="(const QFont &f)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexer::setDefaultFont </td> + <td>(</td> + <td class="paramtype">const QFont & </td> + <td class="paramname"> <em>f</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The default font for all styles is set to <em>f</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="bbc5f85a51dbaaeab47371e90b716541"></a><!-- doxytag: member="QextScintillaLexer::setDefaultColor" ref="bbc5f85a51dbaaeab47371e90b716541" args="(const QColor &c)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexer::setDefaultColor </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>c</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The default text colour for all styles is set to <em>c</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor()</a>, <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">color()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="66802da668e422f81f36a63222e5b63a"></a><!-- doxytag: member="QextScintillaLexer::setDefaultPaper" ref="66802da668e422f81f36a63222e5b63a" args="(const QColor &c)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexer::setDefaultPaper </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>c</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The default paper colour for all styles is set to <em>c</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper()</a>, <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">paper()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="8838e34f3504e7660a68d02533ec991f"></a><!-- doxytag: member="QextScintillaLexer::setEolFill" ref="8838e34f3504e7660a68d02533ec991f" args="(bool eoffill, int style=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexer::setEolFill </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>eoffill</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The end-of-line fill for style number <em>style</em> is set to <em>eoffill</em>. If <em>style</em> is -1 then the fill is set for all styles. +</div> +</div><p> +<a class="anchor" name="0255bcde4770fa0f41eeb65a306ceb56"></a><!-- doxytag: member="QextScintillaLexer::setFont" ref="0255bcde4770fa0f41eeb65a306ceb56" args="(const QFont &f, int style=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexer::setFont </td> + <td>(</td> + <td class="paramtype">const QFont & </td> + <td class="paramname"> <em>f</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The font for style number <em>style</em> is set to <em>f</em>. If <em>style</em> is -1 then the font is set for all styles. +</div> +</div><p> +<a class="anchor" name="4d8bcbbb950152307c4ef5daf9d4e607"></a><!-- doxytag: member="QextScintillaLexer::setPaper" ref="4d8bcbbb950152307c4ef5daf9d4e607" args="(const QColor &c, int style=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexer::setPaper </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>c</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The background colour for style number <em>style</em> is set to <em>c</em>. If <em>style</em> is -1 then the colour is set for all styles. +</div> +</div><p> +<a class="anchor" name="96b4b017b291dcf90e42fe231662b261"></a><!-- doxytag: member="QextScintillaLexer::colorChanged" ref="96b4b017b291dcf90e42fe231662b261" args="(const QColor &c, int style)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexer::colorChanged </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>c</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the foreground colour of style number <em>style</em> has changed. The new colour is <em>c</em>. +</div> +</div><p> +<a class="anchor" name="a4dfddbecbb7fc50716f26bd20f810fe"></a><!-- doxytag: member="QextScintillaLexer::eolFillChanged" ref="a4dfddbecbb7fc50716f26bd20f810fe" args="(bool eoffilled, int style)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexer::eolFillChanged </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>eoffilled</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the end-of-file fill of style number <em>style</em> has changed. The new fill is <em>eoffilled</em>. +</div> +</div><p> +<a class="anchor" name="529039eee09430949416bf8da7d5065e"></a><!-- doxytag: member="QextScintillaLexer::fontChanged" ref="529039eee09430949416bf8da7d5065e" args="(const QFont &f, int style)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexer::fontChanged </td> + <td>(</td> + <td class="paramtype">const QFont & </td> + <td class="paramname"> <em>f</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the font of style number <em>style</em> has changed. The new font is <em>f</em>. +</div> +</div><p> +<a class="anchor" name="234edeaf7387dfa3afd81f6e459cbb17"></a><!-- doxytag: member="QextScintillaLexer::paperChanged" ref="234edeaf7387dfa3afd81f6e459cbb17" args="(const QColor &c, int style)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexer::paperChanged </td> + <td>(</td> + <td class="paramtype">const QColor & </td> + <td class="paramname"> <em>c</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the background colour of style number <em>style</em> has changed. The new colour is <em>c</em>. +</div> +</div><p> +<a class="anchor" name="f320f847889bb054befdb43d0739b5cf"></a><!-- doxytag: member="QextScintillaLexer::propertyChanged" ref="f320f847889bb054befdb43d0739b5cf" args="(const char *prop, const char *val)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexer::propertyChanged </td> + <td>(</td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>prop</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>val</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [signal]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This signal is emitted when the value of the lexer property <em>prop</em> needs to be changed. The new value is <em>val</em>. +</div> +</div><p> +<a class="anchor" name="5c0c72a54932c47687584e2cde90574a"></a><!-- doxytag: member="QextScintillaLexer::readProperties" ref="5c0c72a54932c47687584e2cde90574a" args="(QSettings &qs, const QString &prefix)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual bool QextScintillaLexer::readProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are read from the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerBash.html#09a5f818c0d69023ea459fd59c308b9f">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerCPP.html#58af6f75117c384d0204ac0f65e94c1d">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSS.html#2618234cfaaa7bc4d24db9df5e423417">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerHTML.html#c00904b135b7098ac120344e01d6a706">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerLua.html#5dc890e770301ab5ecca0f37294c69e8">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerPerl.html#a2e0f7cdb50bb439f348e57e3d6f8c76">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html#74be8267ef68b998d7cabe8466153c24">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerProperties.html#eaa2f7a219cd9c2ca923b2595b268c35">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPython.html#496893b8f75a204f1099b42fa06ea0da">QextScintillaLexerPython</a>, and <a class="el" href="classQextScintillaLexerSQL.html#376c567479019727c755b71274f7710c">QextScintillaLexerSQL</a>. +</div> +</div><p> +<a class="anchor" name="69d35dbbba2530a185de901e9fa12a18"></a><!-- doxytag: member="QextScintillaLexer::writeProperties" ref="69d35dbbba2530a185de901e9fa12a18" args="(QSettings &qs, const QString &prefix) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual bool QextScintillaLexer::writeProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are written to the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerBash.html#3bee366bd9e502ae386656c7e915ff42">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexerCPP.html#600506daad28854a957cc20307854202">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerCSS.html#8c61265f2e059f652de67fac9e0c67fd">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerHTML.html#a7ecf8f08c953c661a350d5de2e868fa">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerLua.html#92663d1d9f49a0218118d8e48b5c49ad">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerPerl.html#856e7b88f288064e36f2144bf97fdce5">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerPOV.html#b1077b902db4549ddef0398fb6391489">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerProperties.html#cc1b8d0916329dab170624db1505b2a6">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPython.html#c6e164f4a93cdbacd7f3e9ab66ff98dc">QextScintillaLexerPython</a>, and <a class="el" href="classQextScintillaLexerSQL.html#0824d031dd1ffc6318197e7e545ff84f">QextScintillaLexerSQL</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerBash-members.html b/doc/html/classQextScintillaLexerBash-members.html new file mode 100644 index 0000000..d3e21d1 --- /dev/null +++ b/doc/html/classQextScintillaLexerBash-members.html @@ -0,0 +1,87 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerBash Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f113df0d6696b34089695443e3fa220b6ba">Backticks</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a>)</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#ce6da18157d745615fe801abed48de96">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11d0358386a60d453f2543466f53e3df26">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11f1449fee136726bc4949bc757e103873">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#eaf8d3de39a0e93dfb1aa480b99b0642">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11d50afdc76afea477f36c37a24e05c26f">DoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#f4b2b1343c4501c2e1a40d3b58dab574">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11c0ab77e2eb7e7377c5007968a29c328a">Error</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#0dbc06722dc9c789a51313b9a659d8b9">foldComments</a>() const </td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#2b8a0d8fc5e2004809e514826ac2c90f">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#734cd74da64ec3489c18e0023c56baf6">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f111dbe93d0bf5b49344b2e48227b7cd225">HereDocumentDelimiter</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1121c5e5b14225645cb596e83d77a6c2bd">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11dc75ff87379fcc515c030287e17ca324">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#8d1ba00bbdbf44ef5d90581988585d94">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#673d80339a5bcba31c1afb5ff63620c0">language</a>() const </td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#138d5db7d889a1065d14cabf45be423c">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1113ad1b444dda14833bd70230d58804d0">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11615cb731c7ed97f4d41fa4de38789cd8">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#162a91355351b5c66acad2da76dffa17">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11cbf60b317d49577f7725602d8c77a22e">ParameterExpansion</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#3d73bdd3cf21d2d2b365e8c184fe743b">QextScintillaLexerBash</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#09a5f818c0d69023ea459fd59c308b9f">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a35486ac2b53bcc04380117ce4282d34">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11988ca4848e463e24a09d42d55d3bc153">Scalar</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#1e8fbcfc2d9c84c9d5327972c00c89f3">setFoldComments</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#66e8c17f35f07a2a98f3b65608e5dd0c">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11ed5c6c7c814c87b3995bc1d0e129cdf6">SingleQuotedHereDocument</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1177f2cc65d0990de81d205c6672206da0">SingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11fb2cbda4e68b7a896b938135655895ed">WhiteSpace</a> enum value</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a>)</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#3bee366bd9e502ae386656c7e915ff42">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBash.html#5ce2dd33fa7529466237bd8b59e9be83">~QextScintillaLexerBash</a>()</td><td><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerBash.html b/doc/html/classQextScintillaLexerBash.html new file mode 100644 index 0000000..0cedfb1 --- /dev/null +++ b/doc/html/classQextScintillaLexerBash.html @@ -0,0 +1,560 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerBash Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerBash Class Reference</h1><!-- doxytag: class="QextScintillaLexerBash" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a> class encapsulates the Scintilla Bash lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerbash.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerBash-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11f1449fee136726bc4949bc757e103873">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11fb2cbda4e68b7a896b938135655895ed">WhiteSpace</a> = Default +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11c0ab77e2eb7e7377c5007968a29c328a">Error</a> = 1 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11d0358386a60d453f2543466f53e3df26">Comment</a> = 2 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1113ad1b444dda14833bd70230d58804d0">Number</a> = 3 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11dc75ff87379fcc515c030287e17ca324">Keyword</a> = 4 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11d50afdc76afea477f36c37a24e05c26f">DoubleQuotedString</a> = 5 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1177f2cc65d0990de81d205c6672206da0">SingleQuotedString</a> = 6 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11615cb731c7ed97f4d41fa4de38789cd8">Operator</a> = 7 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1121c5e5b14225645cb596e83d77a6c2bd">Identifier</a> = 8 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11988ca4848e463e24a09d42d55d3bc153">Scalar</a> = 9 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11cbf60b317d49577f7725602d8c77a22e">ParameterExpansion</a> = 10 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f113df0d6696b34089695443e3fa220b6ba">Backticks</a> = 11 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f111dbe93d0bf5b49344b2e48227b7cd225">HereDocumentDelimiter</a> = 12 +<li><a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11ed5c6c7c814c87b3995bc1d0e129cdf6">SingleQuotedHereDocument</a> = 13 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11f1449fee136726bc4949bc757e103873">Default</a> = 0, +<a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11fb2cbda4e68b7a896b938135655895ed">WhiteSpace</a> = Default, +<a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11c0ab77e2eb7e7377c5007968a29c328a">Error</a> = 1, +<br> + <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11d0358386a60d453f2543466f53e3df26">Comment</a> = 2, +<a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1113ad1b444dda14833bd70230d58804d0">Number</a> = 3, +<a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11dc75ff87379fcc515c030287e17ca324">Keyword</a> = 4, +<br> + <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11d50afdc76afea477f36c37a24e05c26f">DoubleQuotedString</a> = 5, +<a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1177f2cc65d0990de81d205c6672206da0">SingleQuotedString</a> = 6, +<a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11615cb731c7ed97f4d41fa4de38789cd8">Operator</a> = 7, +<br> + <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1121c5e5b14225645cb596e83d77a6c2bd">Identifier</a> = 8, +<a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11988ca4848e463e24a09d42d55d3bc153">Scalar</a> = 9, +<a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11cbf60b317d49577f7725602d8c77a22e">ParameterExpansion</a> = 10, +<br> + <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f113df0d6696b34089695443e3fa220b6ba">Backticks</a> = 11, +<a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f111dbe93d0bf5b49344b2e48227b7cd225">HereDocumentDelimiter</a> = 12, +<a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11ed5c6c7c814c87b3995bc1d0e129cdf6">SingleQuotedHereDocument</a> = 13 +<br> + } +</ul> +<h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaLexerBash.html#1e8fbcfc2d9c84c9d5327972c00c89f3">setFoldComments</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerBash.html#66e8c17f35f07a2a98f3b65608e5dd0c">setFoldCompact</a> (bool fold) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerBash.html#3d73bdd3cf21d2d2b365e8c184fe743b">QextScintillaLexerBash</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerBash.html#5ce2dd33fa7529466237bd8b59e9be83">~QextScintillaLexerBash</a> () +<li>const char * <a class="el" href="classQextScintillaLexerBash.html#673d80339a5bcba31c1afb5ff63620c0">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerBash.html#138d5db7d889a1065d14cabf45be423c">lexer</a> () const +<li><a class="anchor" name="fb6852fc3d60339006ba7c3a479436ec"></a><!-- doxytag: member="QextScintillaLexerBash::braceStyle" ref="fb6852fc3d60339006ba7c3a479436ec" args="() const " --> +int <b>braceStyle</b> () const +<li><a class="anchor" name="c6d21e8f75a1667d25f1c433eadcfdf6"></a><!-- doxytag: member="QextScintillaLexerBash::wordCharacters" ref="c6d21e8f75a1667d25f1c433eadcfdf6" args="() const " --> +const char * <b>wordCharacters</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerBash.html#ce6da18157d745615fe801abed48de96">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerBash.html#f4b2b1343c4501c2e1a40d3b58dab574">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerBash.html#734cd74da64ec3489c18e0023c56baf6">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerBash.html#8d1ba00bbdbf44ef5d90581988585d94">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerBash.html#eaf8d3de39a0e93dfb1aa480b99b0642">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerBash.html#162a91355351b5c66acad2da76dffa17">paper</a> (int style) const +<li>void <a class="el" href="classQextScintillaLexerBash.html#a35486ac2b53bcc04380117ce4282d34">refreshProperties</a> () +<li>bool <a class="el" href="classQextScintillaLexerBash.html#0dbc06722dc9c789a51313b9a659d8b9">foldComments</a> () const +<li>bool <a class="el" href="classQextScintillaLexerBash.html#2b8a0d8fc5e2004809e514826ac2c90f">foldCompact</a> () const +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaLexerBash.html#09a5f818c0d69023ea459fd59c308b9f">readProperties</a> (QSettings &qs, const QString &prefix) +<li>bool <a class="el" href="classQextScintillaLexerBash.html#3bee366bd9e502ae386656c7e915ff42">writeProperties</a> (QSettings &qs, const QString &prefix) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a> class encapsulates the Scintilla Bash lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="a161d468183d486788d727114d801f11"></a><!-- doxytag: member="QextScintillaLexerBash::@31" ref="a161d468183d486788d727114d801f11" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the Bash lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f11f1449fee136726bc4949bc757e103873"></a><!-- doxytag: member="Default" ref="a161d468183d486788d727114d801f11f1449fee136726bc4949bc757e103873" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f11fb2cbda4e68b7a896b938135655895ed"></a><!-- doxytag: member="WhiteSpace" ref="a161d468183d486788d727114d801f11fb2cbda4e68b7a896b938135655895ed" args="" -->WhiteSpace</em> </td><td> +<dl compact><dt><b><a class="el" href="deprecated.html#_deprecated000001">Deprecated:</a></b></dt><dd>White space. </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f11c0ab77e2eb7e7377c5007968a29c328a"></a><!-- doxytag: member="Error" ref="a161d468183d486788d727114d801f11c0ab77e2eb7e7377c5007968a29c328a" args="" -->Error</em> </td><td> +An error. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f11d0358386a60d453f2543466f53e3df26"></a><!-- doxytag: member="Comment" ref="a161d468183d486788d727114d801f11d0358386a60d453f2543466f53e3df26" args="" -->Comment</em> </td><td> +A comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f1113ad1b444dda14833bd70230d58804d0"></a><!-- doxytag: member="Number" ref="a161d468183d486788d727114d801f1113ad1b444dda14833bd70230d58804d0" args="" -->Number</em> </td><td> +A number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f11dc75ff87379fcc515c030287e17ca324"></a><!-- doxytag: member="Keyword" ref="a161d468183d486788d727114d801f11dc75ff87379fcc515c030287e17ca324" args="" -->Keyword</em> </td><td> +A keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f11d50afdc76afea477f36c37a24e05c26f"></a><!-- doxytag: member="DoubleQuotedString" ref="a161d468183d486788d727114d801f11d50afdc76afea477f36c37a24e05c26f" args="" -->DoubleQuotedString</em> </td><td> +A double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f1177f2cc65d0990de81d205c6672206da0"></a><!-- doxytag: member="SingleQuotedString" ref="a161d468183d486788d727114d801f1177f2cc65d0990de81d205c6672206da0" args="" -->SingleQuotedString</em> </td><td> +A single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f11615cb731c7ed97f4d41fa4de38789cd8"></a><!-- doxytag: member="Operator" ref="a161d468183d486788d727114d801f11615cb731c7ed97f4d41fa4de38789cd8" args="" -->Operator</em> </td><td> +An operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f1121c5e5b14225645cb596e83d77a6c2bd"></a><!-- doxytag: member="Identifier" ref="a161d468183d486788d727114d801f1121c5e5b14225645cb596e83d77a6c2bd" args="" -->Identifier</em> </td><td> +An identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f11988ca4848e463e24a09d42d55d3bc153"></a><!-- doxytag: member="Scalar" ref="a161d468183d486788d727114d801f11988ca4848e463e24a09d42d55d3bc153" args="" -->Scalar</em> </td><td> +A scalar. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f11cbf60b317d49577f7725602d8c77a22e"></a><!-- doxytag: member="ParameterExpansion" ref="a161d468183d486788d727114d801f11cbf60b317d49577f7725602d8c77a22e" args="" -->ParameterExpansion</em> </td><td> +Parameter expansion. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f113df0d6696b34089695443e3fa220b6ba"></a><!-- doxytag: member="Backticks" ref="a161d468183d486788d727114d801f113df0d6696b34089695443e3fa220b6ba" args="" -->Backticks</em> </td><td> +Backticks. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f111dbe93d0bf5b49344b2e48227b7cd225"></a><!-- doxytag: member="HereDocumentDelimiter" ref="a161d468183d486788d727114d801f111dbe93d0bf5b49344b2e48227b7cd225" args="" -->HereDocumentDelimiter</em> </td><td> +A here document delimiter. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="a161d468183d486788d727114d801f11ed5c6c7c814c87b3995bc1d0e129cdf6"></a><!-- doxytag: member="SingleQuotedHereDocument" ref="a161d468183d486788d727114d801f11ed5c6c7c814c87b3995bc1d0e129cdf6" args="" -->SingleQuotedHereDocument</em> </td><td> +A single quoted here document. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="3d73bdd3cf21d2d2b365e8c184fe743b"></a><!-- doxytag: member="QextScintillaLexerBash::QextScintillaLexerBash" ref="3d73bdd3cf21d2d2b365e8c184fe743b" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerBash::QextScintillaLexerBash </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="5ce2dd33fa7529466237bd8b59e9be83"></a><!-- doxytag: member="QextScintillaLexerBash::~QextScintillaLexerBash" ref="5ce2dd33fa7529466237bd8b59e9be83" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerBash::~QextScintillaLexerBash </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="673d80339a5bcba31c1afb5ff63620c0"></a><!-- doxytag: member="QextScintillaLexerBash::language" ref="673d80339a5bcba31c1afb5ff63620c0" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerBash::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="138d5db7d889a1065d14cabf45be423c"></a><!-- doxytag: member="QextScintillaLexerBash::lexer" ref="138d5db7d889a1065d14cabf45be423c" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerBash::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="ce6da18157d745615fe801abed48de96"></a><!-- doxytag: member="QextScintillaLexerBash::color" ref="ce6da18157d745615fe801abed48de96" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerBash::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerBash.html#162a91355351b5c66acad2da76dffa17">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="f4b2b1343c4501c2e1a40d3b58dab574"></a><!-- doxytag: member="QextScintillaLexerBash::eolFill" ref="f4b2b1343c4501c2e1a40d3b58dab574" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerBash::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="734cd74da64ec3489c18e0023c56baf6"></a><!-- doxytag: member="QextScintillaLexerBash::font" ref="734cd74da64ec3489c18e0023c56baf6" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerBash::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="8d1ba00bbdbf44ef5d90581988585d94"></a><!-- doxytag: member="QextScintillaLexerBash::keywords" ref="8d1ba00bbdbf44ef5d90581988585d94" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerBash::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="eaf8d3de39a0e93dfb1aa480b99b0642"></a><!-- doxytag: member="QextScintillaLexerBash::description" ref="eaf8d3de39a0e93dfb1aa480b99b0642" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerBash::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="162a91355351b5c66acad2da76dffa17"></a><!-- doxytag: member="QextScintillaLexerBash::paper" ref="162a91355351b5c66acad2da76dffa17" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerBash::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerBash.html#ce6da18157d745615fe801abed48de96">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="a35486ac2b53bcc04380117ce4282d34"></a><!-- doxytag: member="QextScintillaLexerBash::refreshProperties" ref="a35486ac2b53bcc04380117ce4282d34" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexerBash::refreshProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Causes all properties to be refreshed by emitting the <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged()</a> signal as required. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="0dbc06722dc9c789a51313b9a659d8b9"></a><!-- doxytag: member="QextScintillaLexerBash::foldComments" ref="0dbc06722dc9c789a51313b9a659d8b9" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerBash::foldComments </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if multi-line comment blocks can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerBash.html#1e8fbcfc2d9c84c9d5327972c00c89f3">setFoldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="2b8a0d8fc5e2004809e514826ac2c90f"></a><!-- doxytag: member="QextScintillaLexerBash::foldCompact" ref="2b8a0d8fc5e2004809e514826ac2c90f" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerBash::foldCompact </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if trailing blank lines are included in a fold block.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerBash.html#66e8c17f35f07a2a98f3b65608e5dd0c">setFoldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="1e8fbcfc2d9c84c9d5327972c00c89f3"></a><!-- doxytag: member="QextScintillaLexerBash::setFoldComments" ref="1e8fbcfc2d9c84c9d5327972c00c89f3" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerBash::setFoldComments </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then multi-line comment blocks can be folded. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerBash.html#0dbc06722dc9c789a51313b9a659d8b9">foldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="66e8c17f35f07a2a98f3b65608e5dd0c"></a><!-- doxytag: member="QextScintillaLexerBash::setFoldCompact" ref="66e8c17f35f07a2a98f3b65608e5dd0c" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerBash::setFoldCompact </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then trailing blank lines are included in a fold block. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerBash.html#2b8a0d8fc5e2004809e514826ac2c90f">foldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="09a5f818c0d69023ea459fd59c308b9f"></a><!-- doxytag: member="QextScintillaLexerBash::readProperties" ref="09a5f818c0d69023ea459fd59c308b9f" args="(QSettings &qs, const QString &prefix)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerBash::readProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are read from the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="3bee366bd9e502ae386656c7e915ff42"></a><!-- doxytag: member="QextScintillaLexerBash::writeProperties" ref="3bee366bd9e502ae386656c7e915ff42" args="(QSettings &qs, const QString &prefix) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerBash::writeProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are written to the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerBatch-members.html b/doc/html/classQextScintillaLexerBatch-members.html new file mode 100644 index 0000000..0bacee5 --- /dev/null +++ b/doc/html/classQextScintillaLexerBatch-members.html @@ -0,0 +1,76 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerBatch Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#8b016e35c2e59956a2df1904ffa1e007">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e91330f125537d1c1ca8b345188e2fcea1">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9ed475cdb093f6c8c6041afb504f5282d">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#03dca4c7289305a22a745db4d4c5e76f">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#d94fd24c1f3d156456d5018e6a202b23">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9ebf5d8fb94cea583b143df6de8e3798f">ExternalCommand</a> enum value</td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#d23670696aad82a64c8879aea1532b12">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9d34e98afe7af83eb5a899ddce85af11a">HideCommandChar</a> enum value</td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9e12625243e7ad8c79ad6ff80fcd1ff09">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#7b364c4a62ec33d88bf148e2a28212ef">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9716e376de87998ce993aa478d4121cf6">Label</a> enum value</td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#ce8f2eca661457993c6b334c297dd1e9">language</a>() const </td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#ad3275fdafc700e7e14cd9d8beb6c589">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e94251aa4bd4773717207d3cc95cf993d4">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#f383c2bfa30a7f5b7d3982949f910326">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#a2ebe656b90ee7f42f681be2b3f4e39a">QextScintillaLexerBatch</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e98e3a304c4b0be68caffe787ae4ea7cf4">Variable</a> enum value</td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a>)</td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerBatch.html#07ec0d3cd82cdaec9dd201999a23b498">~QextScintillaLexerBatch</a>()</td><td><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerBatch.html b/doc/html/classQextScintillaLexerBatch.html new file mode 100644 index 0000000..bdf6913 --- /dev/null +++ b/doc/html/classQextScintillaLexerBatch.html @@ -0,0 +1,345 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerBatch Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerBatch Class Reference</h1><!-- doxytag: class="QextScintillaLexerBatch" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a> class encapsulates the Scintilla batch file lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerbatch.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerBatch-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9ed475cdb093f6c8c6041afb504f5282d">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e91330f125537d1c1ca8b345188e2fcea1">Comment</a> = 1 +<li><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9e12625243e7ad8c79ad6ff80fcd1ff09">Keyword</a> = 2 +<li><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9716e376de87998ce993aa478d4121cf6">Label</a> = 3 +<li><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9d34e98afe7af83eb5a899ddce85af11a">HideCommandChar</a> = 4 +<li><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9ebf5d8fb94cea583b143df6de8e3798f">ExternalCommand</a> = 5 +<li><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e98e3a304c4b0be68caffe787ae4ea7cf4">Variable</a> = 6 +<li><a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e94251aa4bd4773717207d3cc95cf993d4">Operator</a> = 7 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9ed475cdb093f6c8c6041afb504f5282d">Default</a> = 0, +<a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e91330f125537d1c1ca8b345188e2fcea1">Comment</a> = 1, +<a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9e12625243e7ad8c79ad6ff80fcd1ff09">Keyword</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9716e376de87998ce993aa478d4121cf6">Label</a> = 3, +<a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9d34e98afe7af83eb5a899ddce85af11a">HideCommandChar</a> = 4, +<a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9ebf5d8fb94cea583b143df6de8e3798f">ExternalCommand</a> = 5, +<br> + <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e98e3a304c4b0be68caffe787ae4ea7cf4">Variable</a> = 6, +<a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e94251aa4bd4773717207d3cc95cf993d4">Operator</a> = 7 +<br> + } +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerBatch.html#a2ebe656b90ee7f42f681be2b3f4e39a">QextScintillaLexerBatch</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerBatch.html#07ec0d3cd82cdaec9dd201999a23b498">~QextScintillaLexerBatch</a> () +<li>const char * <a class="el" href="classQextScintillaLexerBatch.html#ce8f2eca661457993c6b334c297dd1e9">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerBatch.html#ad3275fdafc700e7e14cd9d8beb6c589">lexer</a> () const +<li><a class="anchor" name="564f39d898f412d1759f1c3ee3a6ff66"></a><!-- doxytag: member="QextScintillaLexerBatch::wordCharacters" ref="564f39d898f412d1759f1c3ee3a6ff66" args="() const " --> +const char * <b>wordCharacters</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerBatch.html#8b016e35c2e59956a2df1904ffa1e007">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerBatch.html#d94fd24c1f3d156456d5018e6a202b23">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerBatch.html#d23670696aad82a64c8879aea1532b12">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerBatch.html#7b364c4a62ec33d88bf148e2a28212ef">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerBatch.html#03dca4c7289305a22a745db4d4c5e76f">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerBatch.html#f383c2bfa30a7f5b7d3982949f910326">paper</a> (int style) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a> class encapsulates the Scintilla batch file lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="1c7593d25567abda34c5ae309e5e27e9"></a><!-- doxytag: member="QextScintillaLexerBatch::@32" ref="1c7593d25567abda34c5ae309e5e27e9" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the batch file lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="1c7593d25567abda34c5ae309e5e27e9ed475cdb093f6c8c6041afb504f5282d"></a><!-- doxytag: member="Default" ref="1c7593d25567abda34c5ae309e5e27e9ed475cdb093f6c8c6041afb504f5282d" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1c7593d25567abda34c5ae309e5e27e91330f125537d1c1ca8b345188e2fcea1"></a><!-- doxytag: member="Comment" ref="1c7593d25567abda34c5ae309e5e27e91330f125537d1c1ca8b345188e2fcea1" args="" -->Comment</em> </td><td> +A comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1c7593d25567abda34c5ae309e5e27e9e12625243e7ad8c79ad6ff80fcd1ff09"></a><!-- doxytag: member="Keyword" ref="1c7593d25567abda34c5ae309e5e27e9e12625243e7ad8c79ad6ff80fcd1ff09" args="" -->Keyword</em> </td><td> +A keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1c7593d25567abda34c5ae309e5e27e9716e376de87998ce993aa478d4121cf6"></a><!-- doxytag: member="Label" ref="1c7593d25567abda34c5ae309e5e27e9716e376de87998ce993aa478d4121cf6" args="" -->Label</em> </td><td> +A label. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1c7593d25567abda34c5ae309e5e27e9d34e98afe7af83eb5a899ddce85af11a"></a><!-- doxytag: member="HideCommandChar" ref="1c7593d25567abda34c5ae309e5e27e9d34e98afe7af83eb5a899ddce85af11a" args="" -->HideCommandChar</em> </td><td> +An hide command character. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1c7593d25567abda34c5ae309e5e27e9ebf5d8fb94cea583b143df6de8e3798f"></a><!-- doxytag: member="ExternalCommand" ref="1c7593d25567abda34c5ae309e5e27e9ebf5d8fb94cea583b143df6de8e3798f" args="" -->ExternalCommand</em> </td><td> +An external command . </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1c7593d25567abda34c5ae309e5e27e98e3a304c4b0be68caffe787ae4ea7cf4"></a><!-- doxytag: member="Variable" ref="1c7593d25567abda34c5ae309e5e27e98e3a304c4b0be68caffe787ae4ea7cf4" args="" -->Variable</em> </td><td> +A variable. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="1c7593d25567abda34c5ae309e5e27e94251aa4bd4773717207d3cc95cf993d4"></a><!-- doxytag: member="Operator" ref="1c7593d25567abda34c5ae309e5e27e94251aa4bd4773717207d3cc95cf993d4" args="" -->Operator</em> </td><td> +An operator. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="a2ebe656b90ee7f42f681be2b3f4e39a"></a><!-- doxytag: member="QextScintillaLexerBatch::QextScintillaLexerBatch" ref="a2ebe656b90ee7f42f681be2b3f4e39a" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerBatch::QextScintillaLexerBatch </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="07ec0d3cd82cdaec9dd201999a23b498"></a><!-- doxytag: member="QextScintillaLexerBatch::~QextScintillaLexerBatch" ref="07ec0d3cd82cdaec9dd201999a23b498" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerBatch::~QextScintillaLexerBatch </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="ce8f2eca661457993c6b334c297dd1e9"></a><!-- doxytag: member="QextScintillaLexerBatch::language" ref="ce8f2eca661457993c6b334c297dd1e9" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerBatch::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="ad3275fdafc700e7e14cd9d8beb6c589"></a><!-- doxytag: member="QextScintillaLexerBatch::lexer" ref="ad3275fdafc700e7e14cd9d8beb6c589" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerBatch::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="8b016e35c2e59956a2df1904ffa1e007"></a><!-- doxytag: member="QextScintillaLexerBatch::color" ref="8b016e35c2e59956a2df1904ffa1e007" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerBatch::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerBatch.html#f383c2bfa30a7f5b7d3982949f910326">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="d94fd24c1f3d156456d5018e6a202b23"></a><!-- doxytag: member="QextScintillaLexerBatch::eolFill" ref="d94fd24c1f3d156456d5018e6a202b23" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerBatch::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="d23670696aad82a64c8879aea1532b12"></a><!-- doxytag: member="QextScintillaLexerBatch::font" ref="d23670696aad82a64c8879aea1532b12" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerBatch::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="7b364c4a62ec33d88bf148e2a28212ef"></a><!-- doxytag: member="QextScintillaLexerBatch::keywords" ref="7b364c4a62ec33d88bf148e2a28212ef" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerBatch::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="03dca4c7289305a22a745db4d4c5e76f"></a><!-- doxytag: member="QextScintillaLexerBatch::description" ref="03dca4c7289305a22a745db4d4c5e76f" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerBatch::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="f383c2bfa30a7f5b7d3982949f910326"></a><!-- doxytag: member="QextScintillaLexerBatch::paper" ref="f383c2bfa30a7f5b7d3982949f910326" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerBatch::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerBatch.html#8b016e35c2e59956a2df1904ffa1e007">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerCPP-members.html b/doc/html/classQextScintillaLexerCPP-members.html new file mode 100644 index 0000000..3e1a8a1 --- /dev/null +++ b/doc/html/classQextScintillaLexerCPP-members.html @@ -0,0 +1,99 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerCPP Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#81d2fac7671aaffb7cb0400eed5f4610">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e513f17d201238a4a849dcf462eecb3be25">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5162e768eb69a2df5d4533de080b165684">CommentDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e510e4193332a47314117d11c068820d943">CommentDocKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51bc816efbc8ab656d5538791c6686c305">CommentDocKeywordError</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519bcf1c7b1ed33bac64fb74ac287df923">CommentLine</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5150a0e3dc1d79c9914da93abc6739ba85">CommentLineDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51c384bf868159a15c4ab026080d34a32f">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#cb720f11c91e4491dc0e44e18bfd0079">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51a660e00c101f515b68b5b0d9da7fba75">DoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#5f425be57976a428603b7c14f198ba76">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#aa8dd334b06cfc33cac7089ac08c837d">foldAtElse</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#d2011da2c61e08f1ac7283a622a1ff47">foldComments</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#527f330fa7298c564d104b1b27e5dfb5">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#02a2553c485bcaa29cb785d56d8c42c1">foldPreprocessor</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#c78b287195efa8b2612bb16fbfba8417">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51ef1e331b7a3004691a931e2a0e3f16c2">GlobalClass</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e514609ac66029ec6e4d88dfe92c4b682cb">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5196b337dc6536fe5094879c7eaf519c0e">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#2e15e8d6831c86fbe16841bac3714a17">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518b514e3238a51f6871b34e9b21822bc9">KeywordSet2</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#4cb81dcd6838b1aad041da166186d349">language</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#e11593183bc1457d47b25c41d97ffdc0">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519d5058c1e46b268ffc3aa7521effc05c">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e511af9d62cbdb5bf81216428536529b88b">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#8cadeffdccdae0c0a3e26f6c8f33f3ee">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51292bfc802f7e67778e276970a2d1e028">PreProcessor</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#d019d2bee70433f21b5d2a385cc78561">QextScintillaLexerCPP</a>(QObject *parent=0, const char *name=0, bool caseInsensitiveKeywords=FALSE)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#58af6f75117c384d0204ac0f65e94c1d">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#a02453989cf7f0fed7f5a72dd7408ca7">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5181fc788d2dfc87c687be8f74f53de535">Regex</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#f75eff635e4ceec40e092d5640062acf">setFoldAtElse</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#a8d495fc79547d5a38edcbb3fc9a8a47">setFoldComments</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#ccda9feb64b84763780763d42248db5b">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#83e14ae9d959d987a8d4d5f919ae6091">setFoldPreprocessor</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#0280643196167caedecbf2adc23034a8">setStylePreprocessor</a>(bool style)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51f7648858efb30abf136bf9f82a516296">SingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#43bf80480c8d816da5e0c86dcd61cc67">stylePreprocessor</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518a0f2ffd95a262823eafa42c8c3e1ca4">UnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51b798115a9d9b6a97802ced4410b8eee0">UUID</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519401e0f2377e0cc0c156386ba730897b">VerbatimString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067">WhiteSpace</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#600506daad28854a957cc20307854202">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#ff979d7aad2ae33d2e246119d7994492">~QextScintillaLexerCPP</a>()</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerCPP.html b/doc/html/classQextScintillaLexerCPP.html new file mode 100644 index 0000000..91a716a --- /dev/null +++ b/doc/html/classQextScintillaLexerCPP.html @@ -0,0 +1,753 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerCPP Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerCPP Class Reference</h1><!-- doxytag: class="QextScintillaLexerCPP" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a> class encapsulates the Scintilla C++ lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexercpp.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +Inherited by <a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a>, and <a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a>. +<p> +<a href="classQextScintillaLexerCPP-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51c384bf868159a15c4ab026080d34a32f">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067">WhiteSpace</a> = Default +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e513f17d201238a4a849dcf462eecb3be25">Comment</a> = 1 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519bcf1c7b1ed33bac64fb74ac287df923">CommentLine</a> = 2 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5162e768eb69a2df5d4533de080b165684">CommentDoc</a> = 3 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519d5058c1e46b268ffc3aa7521effc05c">Number</a> = 4 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5196b337dc6536fe5094879c7eaf519c0e">Keyword</a> = 5 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51a660e00c101f515b68b5b0d9da7fba75">DoubleQuotedString</a> = 6 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51f7648858efb30abf136bf9f82a516296">SingleQuotedString</a> = 7 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51b798115a9d9b6a97802ced4410b8eee0">UUID</a> = 8 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51292bfc802f7e67778e276970a2d1e028">PreProcessor</a> = 9 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e511af9d62cbdb5bf81216428536529b88b">Operator</a> = 10 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e514609ac66029ec6e4d88dfe92c4b682cb">Identifier</a> = 11 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518a0f2ffd95a262823eafa42c8c3e1ca4">UnclosedString</a> = 12 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519401e0f2377e0cc0c156386ba730897b">VerbatimString</a> = 13 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5181fc788d2dfc87c687be8f74f53de535">Regex</a> = 14 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5150a0e3dc1d79c9914da93abc6739ba85">CommentLineDoc</a> = 15 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518b514e3238a51f6871b34e9b21822bc9">KeywordSet2</a> = 16 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e510e4193332a47314117d11c068820d943">CommentDocKeyword</a> = 17 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51bc816efbc8ab656d5538791c6686c305">CommentDocKeywordError</a> = 18 +<li><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51ef1e331b7a3004691a931e2a0e3f16c2">GlobalClass</a> = 19 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51c384bf868159a15c4ab026080d34a32f">Default</a> = 0, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067">WhiteSpace</a> = Default, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e513f17d201238a4a849dcf462eecb3be25">Comment</a> = 1, +<br> + <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519bcf1c7b1ed33bac64fb74ac287df923">CommentLine</a> = 2, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5162e768eb69a2df5d4533de080b165684">CommentDoc</a> = 3, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519d5058c1e46b268ffc3aa7521effc05c">Number</a> = 4, +<br> + <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5196b337dc6536fe5094879c7eaf519c0e">Keyword</a> = 5, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51a660e00c101f515b68b5b0d9da7fba75">DoubleQuotedString</a> = 6, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51f7648858efb30abf136bf9f82a516296">SingleQuotedString</a> = 7, +<br> + <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51b798115a9d9b6a97802ced4410b8eee0">UUID</a> = 8, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51292bfc802f7e67778e276970a2d1e028">PreProcessor</a> = 9, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e511af9d62cbdb5bf81216428536529b88b">Operator</a> = 10, +<br> + <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e514609ac66029ec6e4d88dfe92c4b682cb">Identifier</a> = 11, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518a0f2ffd95a262823eafa42c8c3e1ca4">UnclosedString</a> = 12, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519401e0f2377e0cc0c156386ba730897b">VerbatimString</a> = 13, +<br> + <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5181fc788d2dfc87c687be8f74f53de535">Regex</a> = 14, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5150a0e3dc1d79c9914da93abc6739ba85">CommentLineDoc</a> = 15, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518b514e3238a51f6871b34e9b21822bc9">KeywordSet2</a> = 16, +<br> + <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e510e4193332a47314117d11c068820d943">CommentDocKeyword</a> = 17, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51bc816efbc8ab656d5538791c6686c305">CommentDocKeywordError</a> = 18, +<a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51ef1e331b7a3004691a931e2a0e3f16c2">GlobalClass</a> = 19 +<br> + } +</ul> +<h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaLexerCPP.html#f75eff635e4ceec40e092d5640062acf">setFoldAtElse</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerCPP.html#a8d495fc79547d5a38edcbb3fc9a8a47">setFoldComments</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerCPP.html#ccda9feb64b84763780763d42248db5b">setFoldCompact</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerCPP.html#83e14ae9d959d987a8d4d5f919ae6091">setFoldPreprocessor</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerCPP.html#0280643196167caedecbf2adc23034a8">setStylePreprocessor</a> (bool style) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerCPP.html#d019d2bee70433f21b5d2a385cc78561">QextScintillaLexerCPP</a> (QObject *parent=0, const char *name=0, bool caseInsensitiveKeywords=FALSE) +<li>virtual <a class="el" href="classQextScintillaLexerCPP.html#ff979d7aad2ae33d2e246119d7994492">~QextScintillaLexerCPP</a> () +<li>const char * <a class="el" href="classQextScintillaLexerCPP.html#4cb81dcd6838b1aad041da166186d349">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerCPP.html#e11593183bc1457d47b25c41d97ffdc0">lexer</a> () const +<li><a class="anchor" name="56a0857d97b9298cc5066ec6397c6ee2"></a><!-- doxytag: member="QextScintillaLexerCPP::blockEnd" ref="56a0857d97b9298cc5066ec6397c6ee2" args="(int *style=0) const " --> +const char * <b>blockEnd</b> (int *style=0) const +<li><a class="anchor" name="efcc70f2a6699c36262297e0b969166d"></a><!-- doxytag: member="QextScintillaLexerCPP::blockStart" ref="efcc70f2a6699c36262297e0b969166d" args="(int *style=0) const " --> +const char * <b>blockStart</b> (int *style=0) const +<li><a class="anchor" name="5d9334b49cf6498279becf403ab9982c"></a><!-- doxytag: member="QextScintillaLexerCPP::blockStartKeyword" ref="5d9334b49cf6498279becf403ab9982c" args="(int *style=0) const " --> +const char * <b>blockStartKeyword</b> (int *style=0) const +<li><a class="anchor" name="95fa28732712e40d6ea1a4f0141465ab"></a><!-- doxytag: member="QextScintillaLexerCPP::braceStyle" ref="95fa28732712e40d6ea1a4f0141465ab" args="() const " --> +int <b>braceStyle</b> () const +<li><a class="anchor" name="4d18a9c7e12d5d0d0b7ff556d03e91f1"></a><!-- doxytag: member="QextScintillaLexerCPP::wordCharacters" ref="4d18a9c7e12d5d0d0b7ff556d03e91f1" args="() const " --> +const char * <b>wordCharacters</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerCPP.html#81d2fac7671aaffb7cb0400eed5f4610">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerCPP.html#5f425be57976a428603b7c14f198ba76">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerCPP.html#c78b287195efa8b2612bb16fbfba8417">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerCPP.html#2e15e8d6831c86fbe16841bac3714a17">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerCPP.html#cb720f11c91e4491dc0e44e18bfd0079">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerCPP.html#8cadeffdccdae0c0a3e26f6c8f33f3ee">paper</a> (int style) const +<li>void <a class="el" href="classQextScintillaLexerCPP.html#a02453989cf7f0fed7f5a72dd7408ca7">refreshProperties</a> () +<li>bool <a class="el" href="classQextScintillaLexerCPP.html#aa8dd334b06cfc33cac7089ac08c837d">foldAtElse</a> () const +<li>bool <a class="el" href="classQextScintillaLexerCPP.html#d2011da2c61e08f1ac7283a622a1ff47">foldComments</a> () const +<li>bool <a class="el" href="classQextScintillaLexerCPP.html#527f330fa7298c564d104b1b27e5dfb5">foldCompact</a> () const +<li>bool <a class="el" href="classQextScintillaLexerCPP.html#02a2553c485bcaa29cb785d56d8c42c1">foldPreprocessor</a> () const +<li>bool <a class="el" href="classQextScintillaLexerCPP.html#43bf80480c8d816da5e0c86dcd61cc67">stylePreprocessor</a> () const +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaLexerCPP.html#58af6f75117c384d0204ac0f65e94c1d">readProperties</a> (QSettings &qs, const QString &prefix) +<li>bool <a class="el" href="classQextScintillaLexerCPP.html#600506daad28854a957cc20307854202">writeProperties</a> (QSettings &qs, const QString &prefix) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a> class encapsulates the Scintilla C++ lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="542bd72841348de065bad4c9d8a39e51"></a><!-- doxytag: member="QextScintillaLexerCPP::@33" ref="542bd72841348de065bad4c9d8a39e51" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the C++ lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e51c384bf868159a15c4ab026080d34a32f"></a><!-- doxytag: member="Default" ref="542bd72841348de065bad4c9d8a39e51c384bf868159a15c4ab026080d34a32f" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067"></a><!-- doxytag: member="WhiteSpace" ref="542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067" args="" -->WhiteSpace</em> </td><td> +<dl compact><dt><b><a class="el" href="deprecated.html#_deprecated000002">Deprecated:</a></b></dt><dd>White space. </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e513f17d201238a4a849dcf462eecb3be25"></a><!-- doxytag: member="Comment" ref="542bd72841348de065bad4c9d8a39e513f17d201238a4a849dcf462eecb3be25" args="" -->Comment</em> </td><td> +A C comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e519bcf1c7b1ed33bac64fb74ac287df923"></a><!-- doxytag: member="CommentLine" ref="542bd72841348de065bad4c9d8a39e519bcf1c7b1ed33bac64fb74ac287df923" args="" -->CommentLine</em> </td><td> +A C++ comment line. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e5162e768eb69a2df5d4533de080b165684"></a><!-- doxytag: member="CommentDoc" ref="542bd72841348de065bad4c9d8a39e5162e768eb69a2df5d4533de080b165684" args="" -->CommentDoc</em> </td><td> +A JavaDoc/Doxygen style C comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e519d5058c1e46b268ffc3aa7521effc05c"></a><!-- doxytag: member="Number" ref="542bd72841348de065bad4c9d8a39e519d5058c1e46b268ffc3aa7521effc05c" args="" -->Number</em> </td><td> +A number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e5196b337dc6536fe5094879c7eaf519c0e"></a><!-- doxytag: member="Keyword" ref="542bd72841348de065bad4c9d8a39e5196b337dc6536fe5094879c7eaf519c0e" args="" -->Keyword</em> </td><td> +A keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e51a660e00c101f515b68b5b0d9da7fba75"></a><!-- doxytag: member="DoubleQuotedString" ref="542bd72841348de065bad4c9d8a39e51a660e00c101f515b68b5b0d9da7fba75" args="" -->DoubleQuotedString</em> </td><td> +A double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e51f7648858efb30abf136bf9f82a516296"></a><!-- doxytag: member="SingleQuotedString" ref="542bd72841348de065bad4c9d8a39e51f7648858efb30abf136bf9f82a516296" args="" -->SingleQuotedString</em> </td><td> +A single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e51b798115a9d9b6a97802ced4410b8eee0"></a><!-- doxytag: member="UUID" ref="542bd72841348de065bad4c9d8a39e51b798115a9d9b6a97802ced4410b8eee0" args="" -->UUID</em> </td><td> +An IDL UUID. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e51292bfc802f7e67778e276970a2d1e028"></a><!-- doxytag: member="PreProcessor" ref="542bd72841348de065bad4c9d8a39e51292bfc802f7e67778e276970a2d1e028" args="" -->PreProcessor</em> </td><td> +A pre-processor block. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e511af9d62cbdb5bf81216428536529b88b"></a><!-- doxytag: member="Operator" ref="542bd72841348de065bad4c9d8a39e511af9d62cbdb5bf81216428536529b88b" args="" -->Operator</em> </td><td> +An operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e514609ac66029ec6e4d88dfe92c4b682cb"></a><!-- doxytag: member="Identifier" ref="542bd72841348de065bad4c9d8a39e514609ac66029ec6e4d88dfe92c4b682cb" args="" -->Identifier</em> </td><td> +An identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e518a0f2ffd95a262823eafa42c8c3e1ca4"></a><!-- doxytag: member="UnclosedString" ref="542bd72841348de065bad4c9d8a39e518a0f2ffd95a262823eafa42c8c3e1ca4" args="" -->UnclosedString</em> </td><td> +The end of a line where a string is not closed. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e519401e0f2377e0cc0c156386ba730897b"></a><!-- doxytag: member="VerbatimString" ref="542bd72841348de065bad4c9d8a39e519401e0f2377e0cc0c156386ba730897b" args="" -->VerbatimString</em> </td><td> +A C# verbatim string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e5181fc788d2dfc87c687be8f74f53de535"></a><!-- doxytag: member="Regex" ref="542bd72841348de065bad4c9d8a39e5181fc788d2dfc87c687be8f74f53de535" args="" -->Regex</em> </td><td> +A JavaScript regular expression. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e5150a0e3dc1d79c9914da93abc6739ba85"></a><!-- doxytag: member="CommentLineDoc" ref="542bd72841348de065bad4c9d8a39e5150a0e3dc1d79c9914da93abc6739ba85" args="" -->CommentLineDoc</em> </td><td> +A JavaDoc/Doxygen style C++ comment line. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e518b514e3238a51f6871b34e9b21822bc9"></a><!-- doxytag: member="KeywordSet2" ref="542bd72841348de065bad4c9d8a39e518b514e3238a51f6871b34e9b21822bc9" args="" -->KeywordSet2</em> </td><td> +A keyword defined in keyword set number 2. The class must be sub-classed and re-implement <a class="el" href="classQextScintillaLexerCPP.html#2e15e8d6831c86fbe16841bac3714a17">keywords()</a> to make use of this style. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e510e4193332a47314117d11c068820d943"></a><!-- doxytag: member="CommentDocKeyword" ref="542bd72841348de065bad4c9d8a39e510e4193332a47314117d11c068820d943" args="" -->CommentDocKeyword</em> </td><td> +A JavaDoc/Doxygen keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e51bc816efbc8ab656d5538791c6686c305"></a><!-- doxytag: member="CommentDocKeywordError" ref="542bd72841348de065bad4c9d8a39e51bc816efbc8ab656d5538791c6686c305" args="" -->CommentDocKeywordError</em> </td><td> +A JavaDoc/Doxygen keyword error. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="542bd72841348de065bad4c9d8a39e51ef1e331b7a3004691a931e2a0e3f16c2"></a><!-- doxytag: member="GlobalClass" ref="542bd72841348de065bad4c9d8a39e51ef1e331b7a3004691a931e2a0e3f16c2" args="" -->GlobalClass</em> </td><td> +A global class or typedef defined in keyword set number 4. The class must be sub-classed and re-implement <a class="el" href="classQextScintillaLexerCPP.html#2e15e8d6831c86fbe16841bac3714a17">keywords()</a> to make use of this style. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="d019d2bee70433f21b5d2a385cc78561"></a><!-- doxytag: member="QextScintillaLexerCPP::QextScintillaLexerCPP" ref="d019d2bee70433f21b5d2a385cc78561" args="(QObject *parent=0, const char *name=0, bool caseInsensitiveKeywords=FALSE)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerCPP::QextScintillaLexerCPP </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>caseInsensitiveKeywords</em> = <code>FALSE</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. <em>caseInsensitiveKeywords</em> is TRUE if the lexer ignores the case of keywords. +</div> +</div><p> +<a class="anchor" name="ff979d7aad2ae33d2e246119d7994492"></a><!-- doxytag: member="QextScintillaLexerCPP::~QextScintillaLexerCPP" ref="ff979d7aad2ae33d2e246119d7994492" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerCPP::~QextScintillaLexerCPP </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="4cb81dcd6838b1aad041da166186d349"></a><!-- doxytag: member="QextScintillaLexerCPP::language" ref="4cb81dcd6838b1aad041da166186d349" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerCPP::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerCSharp.html#2297bcad4064ab481ef869772e518419">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerIDL.html#e3f195e87f6459cbaa2772736c588e4f">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerJava.html#c3e2fec409d4eab37271892668064fd1">QextScintillaLexerJava</a>, and <a class="el" href="classQextScintillaLexerJavaScript.html#3cfc5a543947879f3525e5abae1abdb7">QextScintillaLexerJavaScript</a>. +</div> +</div><p> +<a class="anchor" name="e11593183bc1457d47b25c41d97ffdc0"></a><!-- doxytag: member="QextScintillaLexerCPP::lexer" ref="e11593183bc1457d47b25c41d97ffdc0" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerCPP::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="81d2fac7671aaffb7cb0400eed5f4610"></a><!-- doxytag: member="QextScintillaLexerCPP::color" ref="81d2fac7671aaffb7cb0400eed5f4610" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerCPP::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#8cadeffdccdae0c0a3e26f6c8f33f3ee">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerCSharp.html#db0be111bbbcb49ea20f3ec424104551">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerIDL.html#ba47acd3bb2f4f29921683d6ca0e1463">QextScintillaLexerIDL</a>, and <a class="el" href="classQextScintillaLexerJavaScript.html#0d6f5ae54113d25194bba830674835fe">QextScintillaLexerJavaScript</a>. +</div> +</div><p> +<a class="anchor" name="5f425be57976a428603b7c14f198ba76"></a><!-- doxytag: member="QextScintillaLexerCPP::eolFill" ref="5f425be57976a428603b7c14f198ba76" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCPP::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerCSharp.html#3b11e1f85a47f3caf09a25a0b5db4580">QextScintillaLexerCSharp</a>, and <a class="el" href="classQextScintillaLexerJavaScript.html#74ad10f97d43c77c24a4fbe5d7ca5d04">QextScintillaLexerJavaScript</a>. +</div> +</div><p> +<a class="anchor" name="c78b287195efa8b2612bb16fbfba8417"></a><!-- doxytag: member="QextScintillaLexerCPP::font" ref="c78b287195efa8b2612bb16fbfba8417" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerCPP::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerCSharp.html#42d3dee10cd3efc54a3c583e26defad8">QextScintillaLexerCSharp</a>, and <a class="el" href="classQextScintillaLexerJavaScript.html#6e1888622ce0ae61936fc0191a536807">QextScintillaLexerJavaScript</a>. +</div> +</div><p> +<a class="anchor" name="2e15e8d6831c86fbe16841bac3714a17"></a><!-- doxytag: member="QextScintillaLexerCPP::keywords" ref="2e15e8d6831c86fbe16841bac3714a17" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerCPP::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerCSharp.html#f21fc95103fa7ddcd3fc00e9ca24b4f2">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerIDL.html#5a14b1eff857fa464ebabb186af63804">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerJava.html#8021e35de49b51d150150996492b3472">QextScintillaLexerJava</a>, and <a class="el" href="classQextScintillaLexerJavaScript.html#9bb399d8f06d5b915c81a402e6d35ee5">QextScintillaLexerJavaScript</a>. +</div> +</div><p> +<a class="anchor" name="cb720f11c91e4491dc0e44e18bfd0079"></a><!-- doxytag: member="QextScintillaLexerCPP::description" ref="cb720f11c91e4491dc0e44e18bfd0079" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerCPP::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerCSharp.html#4709aacad69084b713a086c7039a5042">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerIDL.html#30e36f23bd7d56ec59b0b6352c484eba">QextScintillaLexerIDL</a>, and <a class="el" href="classQextScintillaLexerJavaScript.html#01c7701133de7049c74dbdfd8cf2adb6">QextScintillaLexerJavaScript</a>. +</div> +</div><p> +<a class="anchor" name="8cadeffdccdae0c0a3e26f6c8f33f3ee"></a><!-- doxytag: member="QextScintillaLexerCPP::paper" ref="8cadeffdccdae0c0a3e26f6c8f33f3ee" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerCPP::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#81d2fac7671aaffb7cb0400eed5f4610">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +<p> +Reimplemented in <a class="el" href="classQextScintillaLexerCSharp.html#b92dae3e9d5fe9988c5e9f8439ad17a0">QextScintillaLexerCSharp</a>, and <a class="el" href="classQextScintillaLexerJavaScript.html#edd2a656bf04564ec7494140d2800698">QextScintillaLexerJavaScript</a>. +</div> +</div><p> +<a class="anchor" name="a02453989cf7f0fed7f5a72dd7408ca7"></a><!-- doxytag: member="QextScintillaLexerCPP::refreshProperties" ref="a02453989cf7f0fed7f5a72dd7408ca7" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexerCPP::refreshProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Causes all properties to be refreshed by emitting the <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged()</a> signal as required. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="aa8dd334b06cfc33cac7089ac08c837d"></a><!-- doxytag: member="QextScintillaLexerCPP::foldAtElse" ref="aa8dd334b06cfc33cac7089ac08c837d" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCPP::foldAtElse </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if "} else {" lines can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#f75eff635e4ceec40e092d5640062acf">setFoldAtElse()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="d2011da2c61e08f1ac7283a622a1ff47"></a><!-- doxytag: member="QextScintillaLexerCPP::foldComments" ref="d2011da2c61e08f1ac7283a622a1ff47" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCPP::foldComments </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if multi-line comment blocks can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#a8d495fc79547d5a38edcbb3fc9a8a47">setFoldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="527f330fa7298c564d104b1b27e5dfb5"></a><!-- doxytag: member="QextScintillaLexerCPP::foldCompact" ref="527f330fa7298c564d104b1b27e5dfb5" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCPP::foldCompact </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if trailing blank lines are included in a fold block.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#ccda9feb64b84763780763d42248db5b">setFoldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="02a2553c485bcaa29cb785d56d8c42c1"></a><!-- doxytag: member="QextScintillaLexerCPP::foldPreprocessor" ref="02a2553c485bcaa29cb785d56d8c42c1" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCPP::foldPreprocessor </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if preprocessor blocks can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#83e14ae9d959d987a8d4d5f919ae6091">setFoldPreprocessor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="43bf80480c8d816da5e0c86dcd61cc67"></a><!-- doxytag: member="QextScintillaLexerCPP::stylePreprocessor" ref="43bf80480c8d816da5e0c86dcd61cc67" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCPP::stylePreprocessor </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if preprocessor lines (after the preprocessor directive) are styled.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#0280643196167caedecbf2adc23034a8">setStylePreprocessor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="f75eff635e4ceec40e092d5640062acf"></a><!-- doxytag: member="QextScintillaLexerCPP::setFoldAtElse" ref="f75eff635e4ceec40e092d5640062acf" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerCPP::setFoldAtElse </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then "} else {" lines can be folded. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#aa8dd334b06cfc33cac7089ac08c837d">foldAtElse()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a8d495fc79547d5a38edcbb3fc9a8a47"></a><!-- doxytag: member="QextScintillaLexerCPP::setFoldComments" ref="a8d495fc79547d5a38edcbb3fc9a8a47" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerCPP::setFoldComments </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then multi-line comment blocks can be folded. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#d2011da2c61e08f1ac7283a622a1ff47">foldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="ccda9feb64b84763780763d42248db5b"></a><!-- doxytag: member="QextScintillaLexerCPP::setFoldCompact" ref="ccda9feb64b84763780763d42248db5b" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerCPP::setFoldCompact </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then trailing blank lines are included in a fold block. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#527f330fa7298c564d104b1b27e5dfb5">foldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="83e14ae9d959d987a8d4d5f919ae6091"></a><!-- doxytag: member="QextScintillaLexerCPP::setFoldPreprocessor" ref="83e14ae9d959d987a8d4d5f919ae6091" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerCPP::setFoldPreprocessor </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then preprocessor blocks can be folded. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#02a2553c485bcaa29cb785d56d8c42c1">foldPreprocessor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="0280643196167caedecbf2adc23034a8"></a><!-- doxytag: member="QextScintillaLexerCPP::setStylePreprocessor" ref="0280643196167caedecbf2adc23034a8" args="(bool style)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerCPP::setStylePreprocessor </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>style</em> is TRUE then preprocessor lines (after the preprocessor directive) are styled. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#43bf80480c8d816da5e0c86dcd61cc67">stylePreprocessor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="58af6f75117c384d0204ac0f65e94c1d"></a><!-- doxytag: member="QextScintillaLexerCPP::readProperties" ref="58af6f75117c384d0204ac0f65e94c1d" args="(QSettings &qs, const QString &prefix)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCPP::readProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are read from the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#600506daad28854a957cc20307854202">writeProperties()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="600506daad28854a957cc20307854202"></a><!-- doxytag: member="QextScintillaLexerCPP::writeProperties" ref="600506daad28854a957cc20307854202" args="(QSettings &qs, const QString &prefix) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCPP::writeProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are written to the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#58af6f75117c384d0204ac0f65e94c1d">readProperties()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerCSS-members.html b/doc/html/classQextScintillaLexerCSS-members.html new file mode 100644 index 0000000..c9f16a3 --- /dev/null +++ b/doc/html/classQextScintillaLexerCSS-members.html @@ -0,0 +1,89 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerCSS Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a>, including all inherited members.<p><table> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e6f253e451e5ad04f41595359014ccfe4">AtRule</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46eec81bfe9fb155cd9273850b265b20dfa">Attribute</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a>)</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a>)</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ea3d2732711a0dccb1448cab829c25fb0">ClassSelector</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#09621fd74b9371c31cfaadc8373c0602">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e24551f9f522fc3d8c7d4418c1ac40948">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e65152fb00b7475ab5ba6f1a8a543b838">CSS1Property</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ed045bc94f46fc560c4c321920a76a911">CSS2Property</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e4679d6fe6a601a7f243e27282a03bb93">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#d766fb0ca5b027f9b5e01922210384ac">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e69018092b57e87a9c575c4a2ed18eb25">DoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#750d95e4905869983a7c984bd05b5148">foldComments</a>() const </td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#5dbd7dcf8cd46e76e0a08dd8be2759a3">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#24017481b708e8c7f272d772e5a1571f">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e8d7c400afb704e2d0fc63f3a8cab28b3">IDSelector</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e540329d3fdd141ef03f541e21ff8055a">Important</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#692a86b42d52180ffb1430d96902dac8">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#6cb3e5679fd928c05b8fab7e9ad84c64">language</a>() const </td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#0f28f522d2b53c7025ab3d227fd1c1ab">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e1d8a0b51d47e279fc4464acee1d3c7f1">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e06a85dfafc228beac3ee921787d24a58">PseudoClass</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#158086fb9f29682c3f0db383b87c535b">QextScintillaLexerCSS</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#2618234cfaaa7bc4d24db9df5e423417">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#2954acc8e9d84e6eac7b59bd5409f962">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#b5125b393e37e0742c9364301738a1c0">setFoldComments</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#f818c14fc087298ae165a85b5f13a9dc">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e4a6cf494de949384a8205d4dc6f320f3">SingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e1f02f2a7b12f3e34377e76de8029dfd8">Tag</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ed603e47cf6a284ceba2843986fb3c815">UnknownProperty</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ec941f6ffc69fb441984af322192e2303">UnknownPseudoClass</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46eb498123b9895b4418df2a6ea4e37ffba">Value</a> enum value</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a>)</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#8c61265f2e059f652de67fac9e0c67fd">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSS.html#64da1307d9e09341f055df5b73c07b94">~QextScintillaLexerCSS</a>()</td><td><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerCSS.html b/doc/html/classQextScintillaLexerCSS.html new file mode 100644 index 0000000..cfc076d --- /dev/null +++ b/doc/html/classQextScintillaLexerCSS.html @@ -0,0 +1,520 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerCSS Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerCSS Class Reference</h1><!-- doxytag: class="QextScintillaLexerCSS" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a> class encapsulates the Scintilla CSS lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexercss.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerCSS-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e4679d6fe6a601a7f243e27282a03bb93">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e1f02f2a7b12f3e34377e76de8029dfd8">Tag</a> = 1 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ea3d2732711a0dccb1448cab829c25fb0">ClassSelector</a> = 2 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e06a85dfafc228beac3ee921787d24a58">PseudoClass</a> = 3 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ec941f6ffc69fb441984af322192e2303">UnknownPseudoClass</a> = 4 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e1d8a0b51d47e279fc4464acee1d3c7f1">Operator</a> = 5 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e65152fb00b7475ab5ba6f1a8a543b838">CSS1Property</a> = 6 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ed603e47cf6a284ceba2843986fb3c815">UnknownProperty</a> = 7 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46eb498123b9895b4418df2a6ea4e37ffba">Value</a> = 8 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e24551f9f522fc3d8c7d4418c1ac40948">Comment</a> = 9 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e8d7c400afb704e2d0fc63f3a8cab28b3">IDSelector</a> = 10 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e540329d3fdd141ef03f541e21ff8055a">Important</a> = 11 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e6f253e451e5ad04f41595359014ccfe4">AtRule</a> = 12 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e69018092b57e87a9c575c4a2ed18eb25">DoubleQuotedString</a> = 13 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e4a6cf494de949384a8205d4dc6f320f3">SingleQuotedString</a> = 14 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ed045bc94f46fc560c4c321920a76a911">CSS2Property</a> = 15 +<li><a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46eec81bfe9fb155cd9273850b265b20dfa">Attribute</a> = 16 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e4679d6fe6a601a7f243e27282a03bb93">Default</a> = 0, +<a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e1f02f2a7b12f3e34377e76de8029dfd8">Tag</a> = 1, +<a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ea3d2732711a0dccb1448cab829c25fb0">ClassSelector</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e06a85dfafc228beac3ee921787d24a58">PseudoClass</a> = 3, +<a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ec941f6ffc69fb441984af322192e2303">UnknownPseudoClass</a> = 4, +<a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e1d8a0b51d47e279fc4464acee1d3c7f1">Operator</a> = 5, +<br> + <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e65152fb00b7475ab5ba6f1a8a543b838">CSS1Property</a> = 6, +<a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ed603e47cf6a284ceba2843986fb3c815">UnknownProperty</a> = 7, +<a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46eb498123b9895b4418df2a6ea4e37ffba">Value</a> = 8, +<br> + <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e24551f9f522fc3d8c7d4418c1ac40948">Comment</a> = 9, +<a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e8d7c400afb704e2d0fc63f3a8cab28b3">IDSelector</a> = 10, +<a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e540329d3fdd141ef03f541e21ff8055a">Important</a> = 11, +<br> + <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e6f253e451e5ad04f41595359014ccfe4">AtRule</a> = 12, +<a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e69018092b57e87a9c575c4a2ed18eb25">DoubleQuotedString</a> = 13, +<a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e4a6cf494de949384a8205d4dc6f320f3">SingleQuotedString</a> = 14, +<br> + <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ed045bc94f46fc560c4c321920a76a911">CSS2Property</a> = 15, +<a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46eec81bfe9fb155cd9273850b265b20dfa">Attribute</a> = 16 +<br> + } +</ul> +<h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaLexerCSS.html#b5125b393e37e0742c9364301738a1c0">setFoldComments</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerCSS.html#f818c14fc087298ae165a85b5f13a9dc">setFoldCompact</a> (bool fold) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerCSS.html#158086fb9f29682c3f0db383b87c535b">QextScintillaLexerCSS</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerCSS.html#64da1307d9e09341f055df5b73c07b94">~QextScintillaLexerCSS</a> () +<li>const char * <a class="el" href="classQextScintillaLexerCSS.html#6cb3e5679fd928c05b8fab7e9ad84c64">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerCSS.html#0f28f522d2b53c7025ab3d227fd1c1ab">lexer</a> () const +<li><a class="anchor" name="9788e63aece9626ac1d6e244a85e879a"></a><!-- doxytag: member="QextScintillaLexerCSS::blockEnd" ref="9788e63aece9626ac1d6e244a85e879a" args="(int *style=0) const " --> +const char * <b>blockEnd</b> (int *style=0) const +<li><a class="anchor" name="699a7595510b4fe780725e48407a92c9"></a><!-- doxytag: member="QextScintillaLexerCSS::blockStart" ref="699a7595510b4fe780725e48407a92c9" args="(int *style=0) const " --> +const char * <b>blockStart</b> (int *style=0) const +<li><a class="anchor" name="2160ca94befc05e478a70a10e564c64b"></a><!-- doxytag: member="QextScintillaLexerCSS::wordCharacters" ref="2160ca94befc05e478a70a10e564c64b" args="() const " --> +const char * <b>wordCharacters</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerCSS.html#09621fd74b9371c31cfaadc8373c0602">color</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerCSS.html#24017481b708e8c7f272d772e5a1571f">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerCSS.html#692a86b42d52180ffb1430d96902dac8">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerCSS.html#d766fb0ca5b027f9b5e01922210384ac">description</a> (int style) const +<li>void <a class="el" href="classQextScintillaLexerCSS.html#2954acc8e9d84e6eac7b59bd5409f962">refreshProperties</a> () +<li>bool <a class="el" href="classQextScintillaLexerCSS.html#750d95e4905869983a7c984bd05b5148">foldComments</a> () const +<li>bool <a class="el" href="classQextScintillaLexerCSS.html#5dbd7dcf8cd46e76e0a08dd8be2759a3">foldCompact</a> () const +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaLexerCSS.html#2618234cfaaa7bc4d24db9df5e423417">readProperties</a> (QSettings &qs, const QString &prefix) +<li>bool <a class="el" href="classQextScintillaLexerCSS.html#8c61265f2e059f652de67fac9e0c67fd">writeProperties</a> (QSettings &qs, const QString &prefix) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a> class encapsulates the Scintilla CSS lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e"></a><!-- doxytag: member="QextScintillaLexerCSS::@34" ref="c8ee4747b06e3739126a3ae64f9cb46e" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the CSS lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e4679d6fe6a601a7f243e27282a03bb93"></a><!-- doxytag: member="Default" ref="c8ee4747b06e3739126a3ae64f9cb46e4679d6fe6a601a7f243e27282a03bb93" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e1f02f2a7b12f3e34377e76de8029dfd8"></a><!-- doxytag: member="Tag" ref="c8ee4747b06e3739126a3ae64f9cb46e1f02f2a7b12f3e34377e76de8029dfd8" args="" -->Tag</em> </td><td> +A tag. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46ea3d2732711a0dccb1448cab829c25fb0"></a><!-- doxytag: member="ClassSelector" ref="c8ee4747b06e3739126a3ae64f9cb46ea3d2732711a0dccb1448cab829c25fb0" args="" -->ClassSelector</em> </td><td> +A class selector. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e06a85dfafc228beac3ee921787d24a58"></a><!-- doxytag: member="PseudoClass" ref="c8ee4747b06e3739126a3ae64f9cb46e06a85dfafc228beac3ee921787d24a58" args="" -->PseudoClass</em> </td><td> +A pseudo-class. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46ec941f6ffc69fb441984af322192e2303"></a><!-- doxytag: member="UnknownPseudoClass" ref="c8ee4747b06e3739126a3ae64f9cb46ec941f6ffc69fb441984af322192e2303" args="" -->UnknownPseudoClass</em> </td><td> +An pseudo-class. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e1d8a0b51d47e279fc4464acee1d3c7f1"></a><!-- doxytag: member="Operator" ref="c8ee4747b06e3739126a3ae64f9cb46e1d8a0b51d47e279fc4464acee1d3c7f1" args="" -->Operator</em> </td><td> +An operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e65152fb00b7475ab5ba6f1a8a543b838"></a><!-- doxytag: member="CSS1Property" ref="c8ee4747b06e3739126a3ae64f9cb46e65152fb00b7475ab5ba6f1a8a543b838" args="" -->CSS1Property</em> </td><td> +A CSS1 property. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46ed603e47cf6a284ceba2843986fb3c815"></a><!-- doxytag: member="UnknownProperty" ref="c8ee4747b06e3739126a3ae64f9cb46ed603e47cf6a284ceba2843986fb3c815" args="" -->UnknownProperty</em> </td><td> +An unknown property. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46eb498123b9895b4418df2a6ea4e37ffba"></a><!-- doxytag: member="Value" ref="c8ee4747b06e3739126a3ae64f9cb46eb498123b9895b4418df2a6ea4e37ffba" args="" -->Value</em> </td><td> +A value. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e24551f9f522fc3d8c7d4418c1ac40948"></a><!-- doxytag: member="Comment" ref="c8ee4747b06e3739126a3ae64f9cb46e24551f9f522fc3d8c7d4418c1ac40948" args="" -->Comment</em> </td><td> +A comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e8d7c400afb704e2d0fc63f3a8cab28b3"></a><!-- doxytag: member="IDSelector" ref="c8ee4747b06e3739126a3ae64f9cb46e8d7c400afb704e2d0fc63f3a8cab28b3" args="" -->IDSelector</em> </td><td> +An ID selector. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e540329d3fdd141ef03f541e21ff8055a"></a><!-- doxytag: member="Important" ref="c8ee4747b06e3739126a3ae64f9cb46e540329d3fdd141ef03f541e21ff8055a" args="" -->Important</em> </td><td> +An important value. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e6f253e451e5ad04f41595359014ccfe4"></a><!-- doxytag: member="AtRule" ref="c8ee4747b06e3739126a3ae64f9cb46e6f253e451e5ad04f41595359014ccfe4" args="" -->AtRule</em> </td><td> +An @-rule. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e69018092b57e87a9c575c4a2ed18eb25"></a><!-- doxytag: member="DoubleQuotedString" ref="c8ee4747b06e3739126a3ae64f9cb46e69018092b57e87a9c575c4a2ed18eb25" args="" -->DoubleQuotedString</em> </td><td> +A double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46e4a6cf494de949384a8205d4dc6f320f3"></a><!-- doxytag: member="SingleQuotedString" ref="c8ee4747b06e3739126a3ae64f9cb46e4a6cf494de949384a8205d4dc6f320f3" args="" -->SingleQuotedString</em> </td><td> +A single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46ed045bc94f46fc560c4c321920a76a911"></a><!-- doxytag: member="CSS2Property" ref="c8ee4747b06e3739126a3ae64f9cb46ed045bc94f46fc560c4c321920a76a911" args="" -->CSS2Property</em> </td><td> +A CSS2 property. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c8ee4747b06e3739126a3ae64f9cb46eec81bfe9fb155cd9273850b265b20dfa"></a><!-- doxytag: member="Attribute" ref="c8ee4747b06e3739126a3ae64f9cb46eec81bfe9fb155cd9273850b265b20dfa" args="" -->Attribute</em> </td><td> +An attribute. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="158086fb9f29682c3f0db383b87c535b"></a><!-- doxytag: member="QextScintillaLexerCSS::QextScintillaLexerCSS" ref="158086fb9f29682c3f0db383b87c535b" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerCSS::QextScintillaLexerCSS </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="64da1307d9e09341f055df5b73c07b94"></a><!-- doxytag: member="QextScintillaLexerCSS::~QextScintillaLexerCSS" ref="64da1307d9e09341f055df5b73c07b94" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerCSS::~QextScintillaLexerCSS </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="6cb3e5679fd928c05b8fab7e9ad84c64"></a><!-- doxytag: member="QextScintillaLexerCSS::language" ref="6cb3e5679fd928c05b8fab7e9ad84c64" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerCSS::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="0f28f522d2b53c7025ab3d227fd1c1ab"></a><!-- doxytag: member="QextScintillaLexerCSS::lexer" ref="0f28f522d2b53c7025ab3d227fd1c1ab" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerCSS::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="09621fd74b9371c31cfaadc8373c0602"></a><!-- doxytag: member="QextScintillaLexerCSS::color" ref="09621fd74b9371c31cfaadc8373c0602" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerCSS::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="24017481b708e8c7f272d772e5a1571f"></a><!-- doxytag: member="QextScintillaLexerCSS::font" ref="24017481b708e8c7f272d772e5a1571f" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerCSS::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="692a86b42d52180ffb1430d96902dac8"></a><!-- doxytag: member="QextScintillaLexerCSS::keywords" ref="692a86b42d52180ffb1430d96902dac8" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerCSS::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="d766fb0ca5b027f9b5e01922210384ac"></a><!-- doxytag: member="QextScintillaLexerCSS::description" ref="d766fb0ca5b027f9b5e01922210384ac" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerCSS::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="2954acc8e9d84e6eac7b59bd5409f962"></a><!-- doxytag: member="QextScintillaLexerCSS::refreshProperties" ref="2954acc8e9d84e6eac7b59bd5409f962" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexerCSS::refreshProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Causes all properties to be refreshed by emitting the <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged()</a> signal as required. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="750d95e4905869983a7c984bd05b5148"></a><!-- doxytag: member="QextScintillaLexerCSS::foldComments" ref="750d95e4905869983a7c984bd05b5148" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCSS::foldComments </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if multi-line comment blocks can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCSS.html#b5125b393e37e0742c9364301738a1c0">setFoldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="5dbd7dcf8cd46e76e0a08dd8be2759a3"></a><!-- doxytag: member="QextScintillaLexerCSS::foldCompact" ref="5dbd7dcf8cd46e76e0a08dd8be2759a3" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCSS::foldCompact </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if trailing blank lines are included in a fold block.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCSS.html#f818c14fc087298ae165a85b5f13a9dc">setFoldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="b5125b393e37e0742c9364301738a1c0"></a><!-- doxytag: member="QextScintillaLexerCSS::setFoldComments" ref="b5125b393e37e0742c9364301738a1c0" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerCSS::setFoldComments </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then multi-line comment blocks can be folded. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCSS.html#750d95e4905869983a7c984bd05b5148">foldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="f818c14fc087298ae165a85b5f13a9dc"></a><!-- doxytag: member="QextScintillaLexerCSS::setFoldCompact" ref="f818c14fc087298ae165a85b5f13a9dc" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerCSS::setFoldCompact </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then trailing blank lines are included in a fold block. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCSS.html#5dbd7dcf8cd46e76e0a08dd8be2759a3">foldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="2618234cfaaa7bc4d24db9df5e423417"></a><!-- doxytag: member="QextScintillaLexerCSS::readProperties" ref="2618234cfaaa7bc4d24db9df5e423417" args="(QSettings &qs, const QString &prefix)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCSS::readProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are read from the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="8c61265f2e059f652de67fac9e0c67fd"></a><!-- doxytag: member="QextScintillaLexerCSS::writeProperties" ref="8c61265f2e059f652de67fac9e0c67fd" args="(QSettings &qs, const QString &prefix) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCSS::writeProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are written to the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerCSharp-members.html b/doc/html/classQextScintillaLexerCSharp-members.html new file mode 100644 index 0000000..ac3a2d3 --- /dev/null +++ b/doc/html/classQextScintillaLexerCSharp-members.html @@ -0,0 +1,101 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerCSharp Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSharp.html#db0be111bbbcb49ea20f3ec424104551">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e513f17d201238a4a849dcf462eecb3be25">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5162e768eb69a2df5d4533de080b165684">CommentDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e510e4193332a47314117d11c068820d943">CommentDocKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51bc816efbc8ab656d5538791c6686c305">CommentDocKeywordError</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519bcf1c7b1ed33bac64fb74ac287df923">CommentLine</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5150a0e3dc1d79c9914da93abc6739ba85">CommentLineDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51c384bf868159a15c4ab026080d34a32f">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSharp.html#4709aacad69084b713a086c7039a5042">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51a660e00c101f515b68b5b0d9da7fba75">DoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSharp.html#3b11e1f85a47f3caf09a25a0b5db4580">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#aa8dd334b06cfc33cac7089ac08c837d">foldAtElse</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#d2011da2c61e08f1ac7283a622a1ff47">foldComments</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#527f330fa7298c564d104b1b27e5dfb5">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#02a2553c485bcaa29cb785d56d8c42c1">foldPreprocessor</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSharp.html#42d3dee10cd3efc54a3c583e26defad8">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51ef1e331b7a3004691a931e2a0e3f16c2">GlobalClass</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e514609ac66029ec6e4d88dfe92c4b682cb">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5196b337dc6536fe5094879c7eaf519c0e">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSharp.html#f21fc95103fa7ddcd3fc00e9ca24b4f2">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518b514e3238a51f6871b34e9b21822bc9">KeywordSet2</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSharp.html#2297bcad4064ab481ef869772e518419">language</a>() const </td><td><a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#e11593183bc1457d47b25c41d97ffdc0">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519d5058c1e46b268ffc3aa7521effc05c">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e511af9d62cbdb5bf81216428536529b88b">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSharp.html#b92dae3e9d5fe9988c5e9f8439ad17a0">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51292bfc802f7e67778e276970a2d1e028">PreProcessor</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#d019d2bee70433f21b5d2a385cc78561">QextScintillaLexerCPP</a>(QObject *parent=0, const char *name=0, bool caseInsensitiveKeywords=FALSE)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSharp.html#bc7e413d90c75a50b801060bd4dc82a4">QextScintillaLexerCSharp</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#58af6f75117c384d0204ac0f65e94c1d">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#a02453989cf7f0fed7f5a72dd7408ca7">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5181fc788d2dfc87c687be8f74f53de535">Regex</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#f75eff635e4ceec40e092d5640062acf">setFoldAtElse</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#a8d495fc79547d5a38edcbb3fc9a8a47">setFoldComments</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#ccda9feb64b84763780763d42248db5b">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#83e14ae9d959d987a8d4d5f919ae6091">setFoldPreprocessor</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#0280643196167caedecbf2adc23034a8">setStylePreprocessor</a>(bool style)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51f7648858efb30abf136bf9f82a516296">SingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#43bf80480c8d816da5e0c86dcd61cc67">stylePreprocessor</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518a0f2ffd95a262823eafa42c8c3e1ca4">UnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51b798115a9d9b6a97802ced4410b8eee0">UUID</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519401e0f2377e0cc0c156386ba730897b">VerbatimString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067">WhiteSpace</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#600506daad28854a957cc20307854202">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#ff979d7aad2ae33d2e246119d7994492">~QextScintillaLexerCPP</a>()</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCSharp.html#59badf1a786aa2f2cec4206446bea91f">~QextScintillaLexerCSharp</a>()</td><td><a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerCSharp.html b/doc/html/classQextScintillaLexerCSharp.html new file mode 100644 index 0000000..bdb8fc3 --- /dev/null +++ b/doc/html/classQextScintillaLexerCSharp.html @@ -0,0 +1,261 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerCSharp Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerCSharp Class Reference</h1><!-- doxytag: class="QextScintillaLexerCSharp" --><!-- doxytag: inherits="QextScintillaLexerCPP" -->The <a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a> class encapsulates the Scintilla C# lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexercsharp.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>. +<p> +<a href="classQextScintillaLexerCSharp-members.html">List of all members.</a><h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerCSharp.html#bc7e413d90c75a50b801060bd4dc82a4">QextScintillaLexerCSharp</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerCSharp.html#59badf1a786aa2f2cec4206446bea91f">~QextScintillaLexerCSharp</a> () +<li>const char * <a class="el" href="classQextScintillaLexerCSharp.html#2297bcad4064ab481ef869772e518419">language</a> () const +<li>QColor <a class="el" href="classQextScintillaLexerCSharp.html#db0be111bbbcb49ea20f3ec424104551">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerCSharp.html#3b11e1f85a47f3caf09a25a0b5db4580">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerCSharp.html#42d3dee10cd3efc54a3c583e26defad8">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerCSharp.html#f21fc95103fa7ddcd3fc00e9ca24b4f2">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerCSharp.html#4709aacad69084b713a086c7039a5042">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerCSharp.html#b92dae3e9d5fe9988c5e9f8439ad17a0">paper</a> (int style) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a> class encapsulates the Scintilla C# lexer. +<p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="bc7e413d90c75a50b801060bd4dc82a4"></a><!-- doxytag: member="QextScintillaLexerCSharp::QextScintillaLexerCSharp" ref="bc7e413d90c75a50b801060bd4dc82a4" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerCSharp::QextScintillaLexerCSharp </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="59badf1a786aa2f2cec4206446bea91f"></a><!-- doxytag: member="QextScintillaLexerCSharp::~QextScintillaLexerCSharp" ref="59badf1a786aa2f2cec4206446bea91f" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerCSharp::~QextScintillaLexerCSharp </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="2297bcad4064ab481ef869772e518419"></a><!-- doxytag: member="QextScintillaLexerCSharp::language" ref="2297bcad4064ab481ef869772e518419" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerCSharp::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#4cb81dcd6838b1aad041da166186d349">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="db0be111bbbcb49ea20f3ec424104551"></a><!-- doxytag: member="QextScintillaLexerCSharp::color" ref="db0be111bbbcb49ea20f3ec424104551" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerCSharp::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCSharp.html#b92dae3e9d5fe9988c5e9f8439ad17a0">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#81d2fac7671aaffb7cb0400eed5f4610">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="3b11e1f85a47f3caf09a25a0b5db4580"></a><!-- doxytag: member="QextScintillaLexerCSharp::eolFill" ref="3b11e1f85a47f3caf09a25a0b5db4580" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerCSharp::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#5f425be57976a428603b7c14f198ba76">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="42d3dee10cd3efc54a3c583e26defad8"></a><!-- doxytag: member="QextScintillaLexerCSharp::font" ref="42d3dee10cd3efc54a3c583e26defad8" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerCSharp::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#c78b287195efa8b2612bb16fbfba8417">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="f21fc95103fa7ddcd3fc00e9ca24b4f2"></a><!-- doxytag: member="QextScintillaLexerCSharp::keywords" ref="f21fc95103fa7ddcd3fc00e9ca24b4f2" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerCSharp::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#2e15e8d6831c86fbe16841bac3714a17">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="4709aacad69084b713a086c7039a5042"></a><!-- doxytag: member="QextScintillaLexerCSharp::description" ref="4709aacad69084b713a086c7039a5042" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerCSharp::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#cb720f11c91e4491dc0e44e18bfd0079">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="b92dae3e9d5fe9988c5e9f8439ad17a0"></a><!-- doxytag: member="QextScintillaLexerCSharp::paper" ref="b92dae3e9d5fe9988c5e9f8439ad17a0" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerCSharp::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCSharp.html#db0be111bbbcb49ea20f3ec424104551">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#8cadeffdccdae0c0a3e26f6c8f33f3ee">QextScintillaLexerCPP</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerDiff-members.html b/doc/html/classQextScintillaLexerDiff-members.html new file mode 100644 index 0000000..04d5ad5 --- /dev/null +++ b/doc/html/classQextScintillaLexerDiff-members.html @@ -0,0 +1,75 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerDiff Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#9c75450ec59c6b9754e9946c765531aa">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70d0f43a6e272ab88c007c3d5a9f24be56">Command</a> enum value</td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a707a7f529f3699fc72da3f259c2661fb43">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a701e099f532bb96181a427e9da5a1704d5">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#4ac748484ccda53f6fa3baee5a3ff52e">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70b176f65f0a0e674524232d7e6aa7bb05">Header</a> enum value</td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#4715beb7d4383a55b02273a28c721753">language</a>() const </td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#19bdc2bd977ea621073ea5cac4c51d5a">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70454dc3a3786c357a923d262beedb9eea">LineAdded</a> enum value</td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70540a3db397634130284e62d97c381a59">LineRemoved</a> enum value</td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70f07c16d1e763b13988ab6bef5c8c0377">Position</a> enum value</td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#6f3d75165a8b7041502a84ee2226d828">QextScintillaLexerDiff</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a>)</td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerDiff.html#bf28861883962d75839eae6f84056781">~QextScintillaLexerDiff</a>()</td><td><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerDiff.html b/doc/html/classQextScintillaLexerDiff.html new file mode 100644 index 0000000..78fa800 --- /dev/null +++ b/doc/html/classQextScintillaLexerDiff.html @@ -0,0 +1,243 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerDiff Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerDiff Class Reference</h1><!-- doxytag: class="QextScintillaLexerDiff" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a> class encapsulates the Scintilla Diff lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerdiff.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerDiff-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a701e099f532bb96181a427e9da5a1704d5">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a707a7f529f3699fc72da3f259c2661fb43">Comment</a> = 1 +<li><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70d0f43a6e272ab88c007c3d5a9f24be56">Command</a> = 2 +<li><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70b176f65f0a0e674524232d7e6aa7bb05">Header</a> = 3 +<li><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70f07c16d1e763b13988ab6bef5c8c0377">Position</a> = 4 +<li><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70540a3db397634130284e62d97c381a59">LineRemoved</a> = 5 +<li><a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70454dc3a3786c357a923d262beedb9eea">LineAdded</a> = 6 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a701e099f532bb96181a427e9da5a1704d5">Default</a> = 0, +<a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a707a7f529f3699fc72da3f259c2661fb43">Comment</a> = 1, +<a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70d0f43a6e272ab88c007c3d5a9f24be56">Command</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70b176f65f0a0e674524232d7e6aa7bb05">Header</a> = 3, +<a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70f07c16d1e763b13988ab6bef5c8c0377">Position</a> = 4, +<a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70540a3db397634130284e62d97c381a59">LineRemoved</a> = 5, +<br> + <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70454dc3a3786c357a923d262beedb9eea">LineAdded</a> = 6 +<br> + } +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerDiff.html#6f3d75165a8b7041502a84ee2226d828">QextScintillaLexerDiff</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerDiff.html#bf28861883962d75839eae6f84056781">~QextScintillaLexerDiff</a> () +<li>const char * <a class="el" href="classQextScintillaLexerDiff.html#4715beb7d4383a55b02273a28c721753">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerDiff.html#19bdc2bd977ea621073ea5cac4c51d5a">lexer</a> () const +<li><a class="anchor" name="e23303d80b05819e9a3bc9e4059e2aee"></a><!-- doxytag: member="QextScintillaLexerDiff::wordCharacters" ref="e23303d80b05819e9a3bc9e4059e2aee" args="() const " --> +const char * <b>wordCharacters</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerDiff.html#9c75450ec59c6b9754e9946c765531aa">color</a> (int style) const +<li>QString <a class="el" href="classQextScintillaLexerDiff.html#4ac748484ccda53f6fa3baee5a3ff52e">description</a> (int style) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a> class encapsulates the Scintilla Diff lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="7ba1bdc799b7a43cadf2cff4364e5a70"></a><!-- doxytag: member="QextScintillaLexerDiff::@35" ref="7ba1bdc799b7a43cadf2cff4364e5a70" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the Diff lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="7ba1bdc799b7a43cadf2cff4364e5a701e099f532bb96181a427e9da5a1704d5"></a><!-- doxytag: member="Default" ref="7ba1bdc799b7a43cadf2cff4364e5a701e099f532bb96181a427e9da5a1704d5" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="7ba1bdc799b7a43cadf2cff4364e5a707a7f529f3699fc72da3f259c2661fb43"></a><!-- doxytag: member="Comment" ref="7ba1bdc799b7a43cadf2cff4364e5a707a7f529f3699fc72da3f259c2661fb43" args="" -->Comment</em> </td><td> +A comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="7ba1bdc799b7a43cadf2cff4364e5a70d0f43a6e272ab88c007c3d5a9f24be56"></a><!-- doxytag: member="Command" ref="7ba1bdc799b7a43cadf2cff4364e5a70d0f43a6e272ab88c007c3d5a9f24be56" args="" -->Command</em> </td><td> +A command. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="7ba1bdc799b7a43cadf2cff4364e5a70b176f65f0a0e674524232d7e6aa7bb05"></a><!-- doxytag: member="Header" ref="7ba1bdc799b7a43cadf2cff4364e5a70b176f65f0a0e674524232d7e6aa7bb05" args="" -->Header</em> </td><td> +A header. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="7ba1bdc799b7a43cadf2cff4364e5a70f07c16d1e763b13988ab6bef5c8c0377"></a><!-- doxytag: member="Position" ref="7ba1bdc799b7a43cadf2cff4364e5a70f07c16d1e763b13988ab6bef5c8c0377" args="" -->Position</em> </td><td> +A position. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="7ba1bdc799b7a43cadf2cff4364e5a70540a3db397634130284e62d97c381a59"></a><!-- doxytag: member="LineRemoved" ref="7ba1bdc799b7a43cadf2cff4364e5a70540a3db397634130284e62d97c381a59" args="" -->LineRemoved</em> </td><td> +A removed line. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="7ba1bdc799b7a43cadf2cff4364e5a70454dc3a3786c357a923d262beedb9eea"></a><!-- doxytag: member="LineAdded" ref="7ba1bdc799b7a43cadf2cff4364e5a70454dc3a3786c357a923d262beedb9eea" args="" -->LineAdded</em> </td><td> +An added line. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="6f3d75165a8b7041502a84ee2226d828"></a><!-- doxytag: member="QextScintillaLexerDiff::QextScintillaLexerDiff" ref="6f3d75165a8b7041502a84ee2226d828" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerDiff::QextScintillaLexerDiff </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="bf28861883962d75839eae6f84056781"></a><!-- doxytag: member="QextScintillaLexerDiff::~QextScintillaLexerDiff" ref="bf28861883962d75839eae6f84056781" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerDiff::~QextScintillaLexerDiff </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="4715beb7d4383a55b02273a28c721753"></a><!-- doxytag: member="QextScintillaLexerDiff::language" ref="4715beb7d4383a55b02273a28c721753" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerDiff::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="19bdc2bd977ea621073ea5cac4c51d5a"></a><!-- doxytag: member="QextScintillaLexerDiff::lexer" ref="19bdc2bd977ea621073ea5cac4c51d5a" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerDiff::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="9c75450ec59c6b9754e9946c765531aa"></a><!-- doxytag: member="QextScintillaLexerDiff::color" ref="9c75450ec59c6b9754e9946c765531aa" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerDiff::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="4ac748484ccda53f6fa3baee5a3ff52e"></a><!-- doxytag: member="QextScintillaLexerDiff::description" ref="4ac748484ccda53f6fa3baee5a3ff52e" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerDiff::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerHTML-members.html b/doc/html/classQextScintillaLexerHTML-members.html new file mode 100644 index 0000000..7a411f5 --- /dev/null +++ b/doc/html/classQextScintillaLexerHTML-members.html @@ -0,0 +1,184 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerHTML Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a>, including all inherited members.<p><table> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c295a4a600cacaa8c6ec8499ff93519279">ASPAtStart</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ce8556fea973701a336af05d3f57ed1f">ASPJavaScriptComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2911ccb89cfe6ba9b65f87fa539a80eb0">ASPJavaScriptCommentDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24c07df9122c0a565d97ec9b65fa95916">ASPJavaScriptCommentLine</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e309e71e8b1576d5b2b8cc5cbd0f0b59">ASPJavaScriptDefault</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d88647d209108078717e03a468a0df43">ASPJavaScriptDoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c26830b9b12248cdc571306c6283deb92f">ASPJavaScriptKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22bfccf25277cc604d8211d69eee2316e">ASPJavaScriptNumber</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2895628d586a191ee3520cd5e6931ae39">ASPJavaScriptRegex</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f761a3654fe1159db35fd566394116ac">ASPJavaScriptSingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dbcccf20de63a466a58f2e60096e0edd">ASPJavaScriptStart</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27f86a0affd409ab2792a5a9d98d8f3f9">ASPJavaScriptSymbol</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ad5232daa17c1f57b4b52a026b9aae86">ASPJavaScriptUnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25c1ed69de3f928d05e8c6bd9c1c6841d">ASPJavaScriptWord</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27b5d6e9b3a6220cb650e775e45741514">ASPPythonClassName</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e197ac410d81229856a066f3fc0a99af">ASPPythonComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22131da85df2b12e74a64db94a537bade">ASPPythonDefault</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2343df69515c58e4dfbc91c0944bc6c49">ASPPythonDoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c23c4baa232fea71ddbb074848da1bd691">ASPPythonFunctionMethodName</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a2f242e746a05ccb9bf376798cda278f">ASPPythonIdentifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e9077279062e6733bc91a883b18b21af">ASPPythonKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c293497a604b0a2b64c657a293a76657af">ASPPythonNumber</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c262d4e436a6a5938ec462e1a79892c1bd">ASPPythonOperator</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e0511f3b87b06999657e4ac64e21b345">ASPPythonSingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2277aa11e8cfcbf9882d06e8e7b876687">ASPPythonStart</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2495605e33bb56636a465ab8957b751ea">ASPPythonTripleDoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2cc3f090fdc393cd57fbcb5f6deee7453">ASPPythonTripleSingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c0d1f87005564d626ed965187401e211">ASPStart</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a273f35dce9bd0ff8dcc73cb546ffcec">ASPVBScriptComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25dc242c8677a4cdaa93b47dad636efd7">ASPVBScriptDefault</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dd624c75614c4c80086f68a9890e75b4">ASPVBScriptIdentifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c229f266c76f4246c9e28da795a9d83f15">ASPVBScriptKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2cf46250ef4baddb851a36b90a3e0f6a4">ASPVBScriptNumber</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2801a3d4aed4be15124cc48400ba7cfc0">ASPVBScriptStart</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24b166ced640d675cd9c8b85ef1000625">ASPVBScriptString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2482fd2a76bff9c432b76c11656c69e46">ASPVBScriptUnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2040775f4dc3caf61bf8a9f0e62341a9d">ASPXCComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2259c57b9aaca1a701ddc466504c8f2e0">Attribute</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#97ef69eb463d62607df4934f8b55870f">caseSensitiveTags</a>() const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22ffa7288835367ab2473a0956d285a2d">CDATA</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#0a0fec93b6bca1afa67a7586b8cd1f83">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20b469bf4e80504d81d59fb913b417494">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#32833c72adf52ecbf9b479ae792df782">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2b6bd33457cab34c983d9a274bfce1eee">Entity</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#a3cac0d6cc9e4909d784901d767b6171">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#25612261f73a392083b9946af07a8e05">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#23d3e1f8f7b202808cb13fb1b4fe35dd">foldPreprocessor</a>() const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#63117e2e3f25f9a17fba9c59ac6e6a15">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c29d72eeb748ac937c132e91aedfea3928">HTMLComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ede0f410fa7df585525f4718f77b0171">HTMLDoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2aa7db8408fdb25be025c0a6baaeb21e8">HTMLNumber</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c244fa237af3b280892c5c99b784fccf30">HTMLSingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27b8969f337f194d7055c8acc209f2454">HTMLValue</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f5092597ef53ed44401445615ae9dccc">JavaScriptComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ee34429e7a5de77290b281aea261132e">JavaScriptCommentDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c276e4ac4cfce2d070fe9b9c77720bb7d8">JavaScriptCommentLine</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c21c87086de4123d974883d95c379d73f7">JavaScriptDefault</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c23851458e1219b6fab981232e852bb7b6">JavaScriptDoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e135a126bd44eaf2d4f1bcdefa4c6777">JavaScriptKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a0f9032da8450521d9cb39dae33ff863">JavaScriptNumber</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c21e07b5f56f662092e208b75d531aa9db">JavaScriptRegex</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2743f482924275fb66551788738a50e6a">JavaScriptSingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d47958ab88781b81e914b1afab94408b">JavaScriptStart</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2caba88710e3628af2459c6730ab63760">JavaScriptSymbol</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e32dabb6ec5ea89cb6777d167296452e">JavaScriptUnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c237aff59f8f47b22255bad5cbedae5a43">JavaScriptWord</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#a640562b320733e430174445b11107c6">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#42e4b633a0884532b1964af951a28694">language</a>() const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#263c14b01148462aac8d5fd38d63f952">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c295f3da5022c9073088dd035955547ce2">OtherInTag</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#61db306c01232b11e66f70fd8dfd140d">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22b4926bc98c45fbdfa129a6b4e501365">PHPComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27547d69c64295672e8d647c4a7721b3f">PHPCommentLine</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2800893a14c74490f427d82ba07371c42">PHPDefault</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2eb4c6e34ecd8b7bfb94795b2c771e22c">PHPDoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bbff0ccc2750d185bda4581ddee5f080">PHPDoubleQuotedVariable</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a30dc61f0df4c2a61c23b85fff0d9027">PHPKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e16b23daeab8265574ee4d02a399ca81">PHPNumber</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20738846719d16721222fa8ccab27200e">PHPOperator</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f8ae9f462bb9b23d6f3703b727791940">PHPSingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ef6650661ac486cba66ba144244829bd">PHPStart</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28132b2eb65e40ece81ee7f00dfd09b80">PHPVariable</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c209c70bdce614a0a9c068d19720906d9c">PythonClassName</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c220cdf4d4655d0353bf772e7d90fab1b9">PythonComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27a5dcc2ae7e210375d5e7bf3fdeb0f93">PythonDefault</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bf848c6a453aadd1806b2cc09652d77a">PythonDoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c263b8af4e31e87230ac44b81da999faf0">PythonFunctionMethodName</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c5dd70a02208f0d6d5f53c06b93acd11">PythonIdentifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2397c4fd13726b88bdeb2b038f4942cf9">PythonKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c234ec0c4a8ba7e993e49415d5af1baecf">PythonNumber</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dcfc543de7b11f1b1b5357d6e9aacfdd">PythonOperator</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bd9193ec4ab63af58c0c73e0aeaa3ea5">PythonSingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ac01be44db7f0a2eba2e036a33307fed">PythonStart</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28bb288f4cb0874ac57764d6a0bd1476c">PythonTripleDoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2fb0408178c31799bdb5bc86c7417c56c">PythonTripleSingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#60b3d0b173242c1c86167861d3f994d3">QextScintillaLexerHTML</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#c00904b135b7098ac120344e01d6a706">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa1583f1e5edd402ccd6e3cebc1d8c07">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20cc15b3e84292be2c40075a38feafd8d">Script</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#00d4c198c14a04b56eb1d029f8985ef1">setCaseSensitiveTags</a>(bool sens)</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#148b6caa2ddab54d6c43700e62edf94d">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#4accbe3243d38303b0ba6c1d5b1969a6">setFoldPreprocessor</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2937f38f910ec693fc76515c26440b491">SGMLBlockDefault</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c239391e27b5f46cd07b44978a9124917a">SGMLCommand</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25865e6d33734f87dcb0dec46459683c7">SGMLComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c523197bbcd0343f22967228024bf621">SGMLDefault</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c239621561af31e2ec6ace5596201f629f">SGMLDoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20d65c14dcd6d411a14baaac5c3476be2">SGMLEntity</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c238ffbd8e24986d6ea79925f854891eb1">SGMLError</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c291f270147de0beeb3093de944221de93">SGMLParameter</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2916e05b41d19b14c1a5d018b35058638">SGMLParameterComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2416616f1d8cc9c4d40e81a19938ddb99">SGMLSingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c261be7257f0b33af5eebee59e5daefdff">SGMLSpecial</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27c38f4c71e45d034a76f59e5a0dbd165">Tag</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25ab139cab5e136502bbb0a6c0116e36c">UnknownAttribute</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a045871c22ccf98cdd7428cb4df39f42">UnknownTag</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d67aa012e54ca173ae5534d2c795bc59">VBScriptComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c278b49445b8bf0db9334395d0915a2e9d">VBScriptDefault</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e31f00f5476af6e733fd94d8f198d192">VBScriptIdentifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24399fa88755c37504c59ea5c3c076481">VBScriptKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28fd8fe44124c54262aea4becf407ecc3">VBScriptNumber</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2290d4085bee4829351ce946634280d06">VBScriptStart</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d6ebc6b52a7c4819c9c8c242916d435e">VBScriptString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e0c272a0fef2ee2bd4e63c2babbb4619">VBScriptUnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a>)</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#a7ecf8f08c953c661a350d5de2e868fa">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c0fcd14e1263affa92cffa239e4ab5b3">XMLEnd</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2b9468e4993ec50003f4a84342bf75bf2">XMLStart</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25f737ebc3b513d6aa5264243d498be3a">XMLTagEnd</a> enum value</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerHTML.html#786a37770dbf59d33c91e0fcfcd736f9">~QextScintillaLexerHTML</a>()</td><td><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerHTML.html b/doc/html/classQextScintillaLexerHTML.html new file mode 100644 index 0000000..46f52b3 --- /dev/null +++ b/doc/html/classQextScintillaLexerHTML.html @@ -0,0 +1,1014 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerHTML Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerHTML Class Reference</h1><!-- doxytag: class="QextScintillaLexerHTML" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a> class encapsulates the Scintilla HTML lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerhtml.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerHTML-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20b469bf4e80504d81d59fb913b417494">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27c38f4c71e45d034a76f59e5a0dbd165">Tag</a> = 1 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a045871c22ccf98cdd7428cb4df39f42">UnknownTag</a> = 2 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2259c57b9aaca1a701ddc466504c8f2e0">Attribute</a> = 3 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25ab139cab5e136502bbb0a6c0116e36c">UnknownAttribute</a> = 4 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2aa7db8408fdb25be025c0a6baaeb21e8">HTMLNumber</a> = 5 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ede0f410fa7df585525f4718f77b0171">HTMLDoubleQuotedString</a> = 6 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c244fa237af3b280892c5c99b784fccf30">HTMLSingleQuotedString</a> = 7 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c295f3da5022c9073088dd035955547ce2">OtherInTag</a> = 8 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c29d72eeb748ac937c132e91aedfea3928">HTMLComment</a> = 9 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2b6bd33457cab34c983d9a274bfce1eee">Entity</a> = 10 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25f737ebc3b513d6aa5264243d498be3a">XMLTagEnd</a> = 11 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2b9468e4993ec50003f4a84342bf75bf2">XMLStart</a> = 12 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c0fcd14e1263affa92cffa239e4ab5b3">XMLEnd</a> = 13 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20cc15b3e84292be2c40075a38feafd8d">Script</a> = 14 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c295a4a600cacaa8c6ec8499ff93519279">ASPAtStart</a> = 15 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c0d1f87005564d626ed965187401e211">ASPStart</a> = 16 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22ffa7288835367ab2473a0956d285a2d">CDATA</a> = 17 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ef6650661ac486cba66ba144244829bd">PHPStart</a> = 18 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27b8969f337f194d7055c8acc209f2454">HTMLValue</a> = 19 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2040775f4dc3caf61bf8a9f0e62341a9d">ASPXCComment</a> = 20 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c523197bbcd0343f22967228024bf621">SGMLDefault</a> = 21 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c239391e27b5f46cd07b44978a9124917a">SGMLCommand</a> = 22 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c291f270147de0beeb3093de944221de93">SGMLParameter</a> = 23 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c239621561af31e2ec6ace5596201f629f">SGMLDoubleQuotedString</a> = 24 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2416616f1d8cc9c4d40e81a19938ddb99">SGMLSingleQuotedString</a> = 25 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c238ffbd8e24986d6ea79925f854891eb1">SGMLError</a> = 26 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c261be7257f0b33af5eebee59e5daefdff">SGMLSpecial</a> = 27 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20d65c14dcd6d411a14baaac5c3476be2">SGMLEntity</a> = 28 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25865e6d33734f87dcb0dec46459683c7">SGMLComment</a> = 29 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2916e05b41d19b14c1a5d018b35058638">SGMLParameterComment</a> = 30 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2937f38f910ec693fc76515c26440b491">SGMLBlockDefault</a> = 31 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d47958ab88781b81e914b1afab94408b">JavaScriptStart</a> = 40 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c21c87086de4123d974883d95c379d73f7">JavaScriptDefault</a> = 41 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f5092597ef53ed44401445615ae9dccc">JavaScriptComment</a> = 42 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c276e4ac4cfce2d070fe9b9c77720bb7d8">JavaScriptCommentLine</a> = 43 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ee34429e7a5de77290b281aea261132e">JavaScriptCommentDoc</a> = 44 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a0f9032da8450521d9cb39dae33ff863">JavaScriptNumber</a> = 45 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c237aff59f8f47b22255bad5cbedae5a43">JavaScriptWord</a> = 46 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e135a126bd44eaf2d4f1bcdefa4c6777">JavaScriptKeyword</a> = 47 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c23851458e1219b6fab981232e852bb7b6">JavaScriptDoubleQuotedString</a> = 48 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2743f482924275fb66551788738a50e6a">JavaScriptSingleQuotedString</a> = 49 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2caba88710e3628af2459c6730ab63760">JavaScriptSymbol</a> = 50 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e32dabb6ec5ea89cb6777d167296452e">JavaScriptUnclosedString</a> = 51 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c21e07b5f56f662092e208b75d531aa9db">JavaScriptRegex</a> = 52 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dbcccf20de63a466a58f2e60096e0edd">ASPJavaScriptStart</a> = 55 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e309e71e8b1576d5b2b8cc5cbd0f0b59">ASPJavaScriptDefault</a> = 56 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ce8556fea973701a336af05d3f57ed1f">ASPJavaScriptComment</a> = 57 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24c07df9122c0a565d97ec9b65fa95916">ASPJavaScriptCommentLine</a> = 58 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2911ccb89cfe6ba9b65f87fa539a80eb0">ASPJavaScriptCommentDoc</a> = 59 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22bfccf25277cc604d8211d69eee2316e">ASPJavaScriptNumber</a> = 60 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25c1ed69de3f928d05e8c6bd9c1c6841d">ASPJavaScriptWord</a> = 61 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c26830b9b12248cdc571306c6283deb92f">ASPJavaScriptKeyword</a> = 62 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d88647d209108078717e03a468a0df43">ASPJavaScriptDoubleQuotedString</a> = 63 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f761a3654fe1159db35fd566394116ac">ASPJavaScriptSingleQuotedString</a> = 64 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27f86a0affd409ab2792a5a9d98d8f3f9">ASPJavaScriptSymbol</a> = 65 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ad5232daa17c1f57b4b52a026b9aae86">ASPJavaScriptUnclosedString</a> = 66 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2895628d586a191ee3520cd5e6931ae39">ASPJavaScriptRegex</a> = 67 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2290d4085bee4829351ce946634280d06">VBScriptStart</a> = 70 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c278b49445b8bf0db9334395d0915a2e9d">VBScriptDefault</a> = 71 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d67aa012e54ca173ae5534d2c795bc59">VBScriptComment</a> = 72 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28fd8fe44124c54262aea4becf407ecc3">VBScriptNumber</a> = 73 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24399fa88755c37504c59ea5c3c076481">VBScriptKeyword</a> = 74 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d6ebc6b52a7c4819c9c8c242916d435e">VBScriptString</a> = 75 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e31f00f5476af6e733fd94d8f198d192">VBScriptIdentifier</a> = 76 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e0c272a0fef2ee2bd4e63c2babbb4619">VBScriptUnclosedString</a> = 77 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2801a3d4aed4be15124cc48400ba7cfc0">ASPVBScriptStart</a> = 80 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25dc242c8677a4cdaa93b47dad636efd7">ASPVBScriptDefault</a> = 81 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a273f35dce9bd0ff8dcc73cb546ffcec">ASPVBScriptComment</a> = 82 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2cf46250ef4baddb851a36b90a3e0f6a4">ASPVBScriptNumber</a> = 83 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c229f266c76f4246c9e28da795a9d83f15">ASPVBScriptKeyword</a> = 84 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24b166ced640d675cd9c8b85ef1000625">ASPVBScriptString</a> = 85 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dd624c75614c4c80086f68a9890e75b4">ASPVBScriptIdentifier</a> = 86 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2482fd2a76bff9c432b76c11656c69e46">ASPVBScriptUnclosedString</a> = 87 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ac01be44db7f0a2eba2e036a33307fed">PythonStart</a> = 90 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27a5dcc2ae7e210375d5e7bf3fdeb0f93">PythonDefault</a> = 91 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c220cdf4d4655d0353bf772e7d90fab1b9">PythonComment</a> = 92 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c234ec0c4a8ba7e993e49415d5af1baecf">PythonNumber</a> = 93 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bf848c6a453aadd1806b2cc09652d77a">PythonDoubleQuotedString</a> = 94 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bd9193ec4ab63af58c0c73e0aeaa3ea5">PythonSingleQuotedString</a> = 95 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2397c4fd13726b88bdeb2b038f4942cf9">PythonKeyword</a> = 96 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2fb0408178c31799bdb5bc86c7417c56c">PythonTripleSingleQuotedString</a> = 97 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28bb288f4cb0874ac57764d6a0bd1476c">PythonTripleDoubleQuotedString</a> = 98 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c209c70bdce614a0a9c068d19720906d9c">PythonClassName</a> = 99 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c263b8af4e31e87230ac44b81da999faf0">PythonFunctionMethodName</a> = 100 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dcfc543de7b11f1b1b5357d6e9aacfdd">PythonOperator</a> = 101 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c5dd70a02208f0d6d5f53c06b93acd11">PythonIdentifier</a> = 102 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2277aa11e8cfcbf9882d06e8e7b876687">ASPPythonStart</a> = 105 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22131da85df2b12e74a64db94a537bade">ASPPythonDefault</a> = 106 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e197ac410d81229856a066f3fc0a99af">ASPPythonComment</a> = 107 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c293497a604b0a2b64c657a293a76657af">ASPPythonNumber</a> = 108 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2343df69515c58e4dfbc91c0944bc6c49">ASPPythonDoubleQuotedString</a> = 109 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e0511f3b87b06999657e4ac64e21b345">ASPPythonSingleQuotedString</a> = 110 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e9077279062e6733bc91a883b18b21af">ASPPythonKeyword</a> = 111 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2cc3f090fdc393cd57fbcb5f6deee7453">ASPPythonTripleSingleQuotedString</a> = 112 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2495605e33bb56636a465ab8957b751ea">ASPPythonTripleDoubleQuotedString</a> = 113 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27b5d6e9b3a6220cb650e775e45741514">ASPPythonClassName</a> = 114 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c23c4baa232fea71ddbb074848da1bd691">ASPPythonFunctionMethodName</a> = 115 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c262d4e436a6a5938ec462e1a79892c1bd">ASPPythonOperator</a> = 116 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a2f242e746a05ccb9bf376798cda278f">ASPPythonIdentifier</a> = 117 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2800893a14c74490f427d82ba07371c42">PHPDefault</a> = 118 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2eb4c6e34ecd8b7bfb94795b2c771e22c">PHPDoubleQuotedString</a> = 119 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f8ae9f462bb9b23d6f3703b727791940">PHPSingleQuotedString</a> = 120 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a30dc61f0df4c2a61c23b85fff0d9027">PHPKeyword</a> = 121 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e16b23daeab8265574ee4d02a399ca81">PHPNumber</a> = 122 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28132b2eb65e40ece81ee7f00dfd09b80">PHPVariable</a> = 123 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22b4926bc98c45fbdfa129a6b4e501365">PHPComment</a> = 124 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27547d69c64295672e8d647c4a7721b3f">PHPCommentLine</a> = 125 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bbff0ccc2750d185bda4581ddee5f080">PHPDoubleQuotedVariable</a> = 126 +<li><a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20738846719d16721222fa8ccab27200e">PHPOperator</a> = 127 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20b469bf4e80504d81d59fb913b417494">Default</a> = 0, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27c38f4c71e45d034a76f59e5a0dbd165">Tag</a> = 1, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a045871c22ccf98cdd7428cb4df39f42">UnknownTag</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2259c57b9aaca1a701ddc466504c8f2e0">Attribute</a> = 3, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25ab139cab5e136502bbb0a6c0116e36c">UnknownAttribute</a> = 4, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2aa7db8408fdb25be025c0a6baaeb21e8">HTMLNumber</a> = 5, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ede0f410fa7df585525f4718f77b0171">HTMLDoubleQuotedString</a> = 6, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c244fa237af3b280892c5c99b784fccf30">HTMLSingleQuotedString</a> = 7, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c295f3da5022c9073088dd035955547ce2">OtherInTag</a> = 8, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c29d72eeb748ac937c132e91aedfea3928">HTMLComment</a> = 9, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2b6bd33457cab34c983d9a274bfce1eee">Entity</a> = 10, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25f737ebc3b513d6aa5264243d498be3a">XMLTagEnd</a> = 11, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2b9468e4993ec50003f4a84342bf75bf2">XMLStart</a> = 12, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c0fcd14e1263affa92cffa239e4ab5b3">XMLEnd</a> = 13, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20cc15b3e84292be2c40075a38feafd8d">Script</a> = 14, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c295a4a600cacaa8c6ec8499ff93519279">ASPAtStart</a> = 15, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c0d1f87005564d626ed965187401e211">ASPStart</a> = 16, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22ffa7288835367ab2473a0956d285a2d">CDATA</a> = 17, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ef6650661ac486cba66ba144244829bd">PHPStart</a> = 18, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27b8969f337f194d7055c8acc209f2454">HTMLValue</a> = 19, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2040775f4dc3caf61bf8a9f0e62341a9d">ASPXCComment</a> = 20, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c523197bbcd0343f22967228024bf621">SGMLDefault</a> = 21, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c239391e27b5f46cd07b44978a9124917a">SGMLCommand</a> = 22, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c291f270147de0beeb3093de944221de93">SGMLParameter</a> = 23, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c239621561af31e2ec6ace5596201f629f">SGMLDoubleQuotedString</a> = 24, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2416616f1d8cc9c4d40e81a19938ddb99">SGMLSingleQuotedString</a> = 25, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c238ffbd8e24986d6ea79925f854891eb1">SGMLError</a> = 26, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c261be7257f0b33af5eebee59e5daefdff">SGMLSpecial</a> = 27, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20d65c14dcd6d411a14baaac5c3476be2">SGMLEntity</a> = 28, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25865e6d33734f87dcb0dec46459683c7">SGMLComment</a> = 29, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2916e05b41d19b14c1a5d018b35058638">SGMLParameterComment</a> = 30, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2937f38f910ec693fc76515c26440b491">SGMLBlockDefault</a> = 31, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d47958ab88781b81e914b1afab94408b">JavaScriptStart</a> = 40, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c21c87086de4123d974883d95c379d73f7">JavaScriptDefault</a> = 41, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f5092597ef53ed44401445615ae9dccc">JavaScriptComment</a> = 42, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c276e4ac4cfce2d070fe9b9c77720bb7d8">JavaScriptCommentLine</a> = 43, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ee34429e7a5de77290b281aea261132e">JavaScriptCommentDoc</a> = 44, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a0f9032da8450521d9cb39dae33ff863">JavaScriptNumber</a> = 45, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c237aff59f8f47b22255bad5cbedae5a43">JavaScriptWord</a> = 46, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e135a126bd44eaf2d4f1bcdefa4c6777">JavaScriptKeyword</a> = 47, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c23851458e1219b6fab981232e852bb7b6">JavaScriptDoubleQuotedString</a> = 48, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2743f482924275fb66551788738a50e6a">JavaScriptSingleQuotedString</a> = 49, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2caba88710e3628af2459c6730ab63760">JavaScriptSymbol</a> = 50, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e32dabb6ec5ea89cb6777d167296452e">JavaScriptUnclosedString</a> = 51, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c21e07b5f56f662092e208b75d531aa9db">JavaScriptRegex</a> = 52, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dbcccf20de63a466a58f2e60096e0edd">ASPJavaScriptStart</a> = 55, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e309e71e8b1576d5b2b8cc5cbd0f0b59">ASPJavaScriptDefault</a> = 56, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ce8556fea973701a336af05d3f57ed1f">ASPJavaScriptComment</a> = 57, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24c07df9122c0a565d97ec9b65fa95916">ASPJavaScriptCommentLine</a> = 58, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2911ccb89cfe6ba9b65f87fa539a80eb0">ASPJavaScriptCommentDoc</a> = 59, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22bfccf25277cc604d8211d69eee2316e">ASPJavaScriptNumber</a> = 60, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25c1ed69de3f928d05e8c6bd9c1c6841d">ASPJavaScriptWord</a> = 61, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c26830b9b12248cdc571306c6283deb92f">ASPJavaScriptKeyword</a> = 62, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d88647d209108078717e03a468a0df43">ASPJavaScriptDoubleQuotedString</a> = 63, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f761a3654fe1159db35fd566394116ac">ASPJavaScriptSingleQuotedString</a> = 64, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27f86a0affd409ab2792a5a9d98d8f3f9">ASPJavaScriptSymbol</a> = 65, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ad5232daa17c1f57b4b52a026b9aae86">ASPJavaScriptUnclosedString</a> = 66, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2895628d586a191ee3520cd5e6931ae39">ASPJavaScriptRegex</a> = 67, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2290d4085bee4829351ce946634280d06">VBScriptStart</a> = 70, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c278b49445b8bf0db9334395d0915a2e9d">VBScriptDefault</a> = 71, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d67aa012e54ca173ae5534d2c795bc59">VBScriptComment</a> = 72, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28fd8fe44124c54262aea4becf407ecc3">VBScriptNumber</a> = 73, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24399fa88755c37504c59ea5c3c076481">VBScriptKeyword</a> = 74, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d6ebc6b52a7c4819c9c8c242916d435e">VBScriptString</a> = 75, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e31f00f5476af6e733fd94d8f198d192">VBScriptIdentifier</a> = 76, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e0c272a0fef2ee2bd4e63c2babbb4619">VBScriptUnclosedString</a> = 77, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2801a3d4aed4be15124cc48400ba7cfc0">ASPVBScriptStart</a> = 80, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25dc242c8677a4cdaa93b47dad636efd7">ASPVBScriptDefault</a> = 81, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a273f35dce9bd0ff8dcc73cb546ffcec">ASPVBScriptComment</a> = 82, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2cf46250ef4baddb851a36b90a3e0f6a4">ASPVBScriptNumber</a> = 83, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c229f266c76f4246c9e28da795a9d83f15">ASPVBScriptKeyword</a> = 84, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24b166ced640d675cd9c8b85ef1000625">ASPVBScriptString</a> = 85, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dd624c75614c4c80086f68a9890e75b4">ASPVBScriptIdentifier</a> = 86, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2482fd2a76bff9c432b76c11656c69e46">ASPVBScriptUnclosedString</a> = 87, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ac01be44db7f0a2eba2e036a33307fed">PythonStart</a> = 90, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27a5dcc2ae7e210375d5e7bf3fdeb0f93">PythonDefault</a> = 91, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c220cdf4d4655d0353bf772e7d90fab1b9">PythonComment</a> = 92, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c234ec0c4a8ba7e993e49415d5af1baecf">PythonNumber</a> = 93, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bf848c6a453aadd1806b2cc09652d77a">PythonDoubleQuotedString</a> = 94, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bd9193ec4ab63af58c0c73e0aeaa3ea5">PythonSingleQuotedString</a> = 95, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2397c4fd13726b88bdeb2b038f4942cf9">PythonKeyword</a> = 96, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2fb0408178c31799bdb5bc86c7417c56c">PythonTripleSingleQuotedString</a> = 97, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28bb288f4cb0874ac57764d6a0bd1476c">PythonTripleDoubleQuotedString</a> = 98, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c209c70bdce614a0a9c068d19720906d9c">PythonClassName</a> = 99, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c263b8af4e31e87230ac44b81da999faf0">PythonFunctionMethodName</a> = 100, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dcfc543de7b11f1b1b5357d6e9aacfdd">PythonOperator</a> = 101, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c5dd70a02208f0d6d5f53c06b93acd11">PythonIdentifier</a> = 102, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2277aa11e8cfcbf9882d06e8e7b876687">ASPPythonStart</a> = 105, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22131da85df2b12e74a64db94a537bade">ASPPythonDefault</a> = 106, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e197ac410d81229856a066f3fc0a99af">ASPPythonComment</a> = 107, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c293497a604b0a2b64c657a293a76657af">ASPPythonNumber</a> = 108, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2343df69515c58e4dfbc91c0944bc6c49">ASPPythonDoubleQuotedString</a> = 109, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e0511f3b87b06999657e4ac64e21b345">ASPPythonSingleQuotedString</a> = 110, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e9077279062e6733bc91a883b18b21af">ASPPythonKeyword</a> = 111, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2cc3f090fdc393cd57fbcb5f6deee7453">ASPPythonTripleSingleQuotedString</a> = 112, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2495605e33bb56636a465ab8957b751ea">ASPPythonTripleDoubleQuotedString</a> = 113, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27b5d6e9b3a6220cb650e775e45741514">ASPPythonClassName</a> = 114, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c23c4baa232fea71ddbb074848da1bd691">ASPPythonFunctionMethodName</a> = 115, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c262d4e436a6a5938ec462e1a79892c1bd">ASPPythonOperator</a> = 116, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a2f242e746a05ccb9bf376798cda278f">ASPPythonIdentifier</a> = 117, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2800893a14c74490f427d82ba07371c42">PHPDefault</a> = 118, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2eb4c6e34ecd8b7bfb94795b2c771e22c">PHPDoubleQuotedString</a> = 119, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f8ae9f462bb9b23d6f3703b727791940">PHPSingleQuotedString</a> = 120, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a30dc61f0df4c2a61c23b85fff0d9027">PHPKeyword</a> = 121, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e16b23daeab8265574ee4d02a399ca81">PHPNumber</a> = 122, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28132b2eb65e40ece81ee7f00dfd09b80">PHPVariable</a> = 123, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22b4926bc98c45fbdfa129a6b4e501365">PHPComment</a> = 124, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27547d69c64295672e8d647c4a7721b3f">PHPCommentLine</a> = 125, +<br> + <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bbff0ccc2750d185bda4581ddee5f080">PHPDoubleQuotedVariable</a> = 126, +<a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20738846719d16721222fa8ccab27200e">PHPOperator</a> = 127 +<br> + } +</ul> +<h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaLexerHTML.html#148b6caa2ddab54d6c43700e62edf94d">setFoldCompact</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerHTML.html#4accbe3243d38303b0ba6c1d5b1969a6">setFoldPreprocessor</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerHTML.html#00d4c198c14a04b56eb1d029f8985ef1">setCaseSensitiveTags</a> (bool sens) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerHTML.html#60b3d0b173242c1c86167861d3f994d3">QextScintillaLexerHTML</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerHTML.html#786a37770dbf59d33c91e0fcfcd736f9">~QextScintillaLexerHTML</a> () +<li>const char * <a class="el" href="classQextScintillaLexerHTML.html#42e4b633a0884532b1964af951a28694">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerHTML.html#263c14b01148462aac8d5fd38d63f952">lexer</a> () const +<li><a class="anchor" name="ef46667078eab994480cd156efd05e0d"></a><!-- doxytag: member="QextScintillaLexerHTML::wordCharacters" ref="ef46667078eab994480cd156efd05e0d" args="() const " --> +const char * <b>wordCharacters</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerHTML.html#0a0fec93b6bca1afa67a7586b8cd1f83">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerHTML.html#a3cac0d6cc9e4909d784901d767b6171">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerHTML.html#63117e2e3f25f9a17fba9c59ac6e6a15">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerHTML.html#a640562b320733e430174445b11107c6">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerHTML.html#32833c72adf52ecbf9b479ae792df782">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerHTML.html#61db306c01232b11e66f70fd8dfd140d">paper</a> (int style) const +<li>void <a class="el" href="classQextScintillaLexerHTML.html#fa1583f1e5edd402ccd6e3cebc1d8c07">refreshProperties</a> () +<li>bool <a class="el" href="classQextScintillaLexerHTML.html#25612261f73a392083b9946af07a8e05">foldCompact</a> () const +<li>bool <a class="el" href="classQextScintillaLexerHTML.html#23d3e1f8f7b202808cb13fb1b4fe35dd">foldPreprocessor</a> () const +<li>bool <a class="el" href="classQextScintillaLexerHTML.html#97ef69eb463d62607df4934f8b55870f">caseSensitiveTags</a> () const +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaLexerHTML.html#c00904b135b7098ac120344e01d6a706">readProperties</a> (QSettings &qs, const QString &prefix) +<li>bool <a class="el" href="classQextScintillaLexerHTML.html#a7ecf8f08c953c661a350d5de2e868fa">writeProperties</a> (QSettings &qs, const QString &prefix) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a> class encapsulates the Scintilla HTML lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2"></a><!-- doxytag: member="QextScintillaLexerHTML::@36" ref="fa7eeca9e9d6989991ea3dc3386fb8c2" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the HTML lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c20b469bf4e80504d81d59fb913b417494"></a><!-- doxytag: member="Default" ref="fa7eeca9e9d6989991ea3dc3386fb8c20b469bf4e80504d81d59fb913b417494" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c27c38f4c71e45d034a76f59e5a0dbd165"></a><!-- doxytag: member="Tag" ref="fa7eeca9e9d6989991ea3dc3386fb8c27c38f4c71e45d034a76f59e5a0dbd165" args="" -->Tag</em> </td><td> +A tag. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2a045871c22ccf98cdd7428cb4df39f42"></a><!-- doxytag: member="UnknownTag" ref="fa7eeca9e9d6989991ea3dc3386fb8c2a045871c22ccf98cdd7428cb4df39f42" args="" -->UnknownTag</em> </td><td> +An unknown tag. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2259c57b9aaca1a701ddc466504c8f2e0"></a><!-- doxytag: member="Attribute" ref="fa7eeca9e9d6989991ea3dc3386fb8c2259c57b9aaca1a701ddc466504c8f2e0" args="" -->Attribute</em> </td><td> +An attribute. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c25ab139cab5e136502bbb0a6c0116e36c"></a><!-- doxytag: member="UnknownAttribute" ref="fa7eeca9e9d6989991ea3dc3386fb8c25ab139cab5e136502bbb0a6c0116e36c" args="" -->UnknownAttribute</em> </td><td> +An unknown attribute. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2aa7db8408fdb25be025c0a6baaeb21e8"></a><!-- doxytag: member="HTMLNumber" ref="fa7eeca9e9d6989991ea3dc3386fb8c2aa7db8408fdb25be025c0a6baaeb21e8" args="" -->HTMLNumber</em> </td><td> +An HTML number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2ede0f410fa7df585525f4718f77b0171"></a><!-- doxytag: member="HTMLDoubleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2ede0f410fa7df585525f4718f77b0171" args="" -->HTMLDoubleQuotedString</em> </td><td> +An HTML double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c244fa237af3b280892c5c99b784fccf30"></a><!-- doxytag: member="HTMLSingleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c244fa237af3b280892c5c99b784fccf30" args="" -->HTMLSingleQuotedString</em> </td><td> +An HTML single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c295f3da5022c9073088dd035955547ce2"></a><!-- doxytag: member="OtherInTag" ref="fa7eeca9e9d6989991ea3dc3386fb8c295f3da5022c9073088dd035955547ce2" args="" -->OtherInTag</em> </td><td> +Other text within a tag. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c29d72eeb748ac937c132e91aedfea3928"></a><!-- doxytag: member="HTMLComment" ref="fa7eeca9e9d6989991ea3dc3386fb8c29d72eeb748ac937c132e91aedfea3928" args="" -->HTMLComment</em> </td><td> +An HTML comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2b6bd33457cab34c983d9a274bfce1eee"></a><!-- doxytag: member="Entity" ref="fa7eeca9e9d6989991ea3dc3386fb8c2b6bd33457cab34c983d9a274bfce1eee" args="" -->Entity</em> </td><td> +An entity. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c25f737ebc3b513d6aa5264243d498be3a"></a><!-- doxytag: member="XMLTagEnd" ref="fa7eeca9e9d6989991ea3dc3386fb8c25f737ebc3b513d6aa5264243d498be3a" args="" -->XMLTagEnd</em> </td><td> +The end of an XML style tag. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2b9468e4993ec50003f4a84342bf75bf2"></a><!-- doxytag: member="XMLStart" ref="fa7eeca9e9d6989991ea3dc3386fb8c2b9468e4993ec50003f4a84342bf75bf2" args="" -->XMLStart</em> </td><td> +The start of an XML fragment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2c0fcd14e1263affa92cffa239e4ab5b3"></a><!-- doxytag: member="XMLEnd" ref="fa7eeca9e9d6989991ea3dc3386fb8c2c0fcd14e1263affa92cffa239e4ab5b3" args="" -->XMLEnd</em> </td><td> +The end of an XML fragment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c20cc15b3e84292be2c40075a38feafd8d"></a><!-- doxytag: member="Script" ref="fa7eeca9e9d6989991ea3dc3386fb8c20cc15b3e84292be2c40075a38feafd8d" args="" -->Script</em> </td><td> +A script tag. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c295a4a600cacaa8c6ec8499ff93519279"></a><!-- doxytag: member="ASPAtStart" ref="fa7eeca9e9d6989991ea3dc3386fb8c295a4a600cacaa8c6ec8499ff93519279" args="" -->ASPAtStart</em> </td><td> +The start of an ASP fragment with @. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2c0d1f87005564d626ed965187401e211"></a><!-- doxytag: member="ASPStart" ref="fa7eeca9e9d6989991ea3dc3386fb8c2c0d1f87005564d626ed965187401e211" args="" -->ASPStart</em> </td><td> +The start of an ASP fragment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c22ffa7288835367ab2473a0956d285a2d"></a><!-- doxytag: member="CDATA" ref="fa7eeca9e9d6989991ea3dc3386fb8c22ffa7288835367ab2473a0956d285a2d" args="" -->CDATA</em> </td><td> +CDATA. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2ef6650661ac486cba66ba144244829bd"></a><!-- doxytag: member="PHPStart" ref="fa7eeca9e9d6989991ea3dc3386fb8c2ef6650661ac486cba66ba144244829bd" args="" -->PHPStart</em> </td><td> +The start of a PHP fragment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c27b8969f337f194d7055c8acc209f2454"></a><!-- doxytag: member="HTMLValue" ref="fa7eeca9e9d6989991ea3dc3386fb8c27b8969f337f194d7055c8acc209f2454" args="" -->HTMLValue</em> </td><td> +An unquoted HTML value. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2040775f4dc3caf61bf8a9f0e62341a9d"></a><!-- doxytag: member="ASPXCComment" ref="fa7eeca9e9d6989991ea3dc3386fb8c2040775f4dc3caf61bf8a9f0e62341a9d" args="" -->ASPXCComment</em> </td><td> +An ASP X-Code comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2c523197bbcd0343f22967228024bf621"></a><!-- doxytag: member="SGMLDefault" ref="fa7eeca9e9d6989991ea3dc3386fb8c2c523197bbcd0343f22967228024bf621" args="" -->SGMLDefault</em> </td><td> +The default for SGML. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c239391e27b5f46cd07b44978a9124917a"></a><!-- doxytag: member="SGMLCommand" ref="fa7eeca9e9d6989991ea3dc3386fb8c239391e27b5f46cd07b44978a9124917a" args="" -->SGMLCommand</em> </td><td> +An SGML command. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c291f270147de0beeb3093de944221de93"></a><!-- doxytag: member="SGMLParameter" ref="fa7eeca9e9d6989991ea3dc3386fb8c291f270147de0beeb3093de944221de93" args="" -->SGMLParameter</em> </td><td> +The first parameter of an SGML command. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c239621561af31e2ec6ace5596201f629f"></a><!-- doxytag: member="SGMLDoubleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c239621561af31e2ec6ace5596201f629f" args="" -->SGMLDoubleQuotedString</em> </td><td> +An SGML double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2416616f1d8cc9c4d40e81a19938ddb99"></a><!-- doxytag: member="SGMLSingleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2416616f1d8cc9c4d40e81a19938ddb99" args="" -->SGMLSingleQuotedString</em> </td><td> +An SGML single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c238ffbd8e24986d6ea79925f854891eb1"></a><!-- doxytag: member="SGMLError" ref="fa7eeca9e9d6989991ea3dc3386fb8c238ffbd8e24986d6ea79925f854891eb1" args="" -->SGMLError</em> </td><td> +An SGML error. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c261be7257f0b33af5eebee59e5daefdff"></a><!-- doxytag: member="SGMLSpecial" ref="fa7eeca9e9d6989991ea3dc3386fb8c261be7257f0b33af5eebee59e5daefdff" args="" -->SGMLSpecial</em> </td><td> +An SGML special entity. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c20d65c14dcd6d411a14baaac5c3476be2"></a><!-- doxytag: member="SGMLEntity" ref="fa7eeca9e9d6989991ea3dc3386fb8c20d65c14dcd6d411a14baaac5c3476be2" args="" -->SGMLEntity</em> </td><td> +An SGML entity. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c25865e6d33734f87dcb0dec46459683c7"></a><!-- doxytag: member="SGMLComment" ref="fa7eeca9e9d6989991ea3dc3386fb8c25865e6d33734f87dcb0dec46459683c7" args="" -->SGMLComment</em> </td><td> +An SGML comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2916e05b41d19b14c1a5d018b35058638"></a><!-- doxytag: member="SGMLParameterComment" ref="fa7eeca9e9d6989991ea3dc3386fb8c2916e05b41d19b14c1a5d018b35058638" args="" -->SGMLParameterComment</em> </td><td> +A comment with the first parameter of an SGML command. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2937f38f910ec693fc76515c26440b491"></a><!-- doxytag: member="SGMLBlockDefault" ref="fa7eeca9e9d6989991ea3dc3386fb8c2937f38f910ec693fc76515c26440b491" args="" -->SGMLBlockDefault</em> </td><td> +The default for an SGML block. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2d47958ab88781b81e914b1afab94408b"></a><!-- doxytag: member="JavaScriptStart" ref="fa7eeca9e9d6989991ea3dc3386fb8c2d47958ab88781b81e914b1afab94408b" args="" -->JavaScriptStart</em> </td><td> +The start of a JavaScript fragment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c21c87086de4123d974883d95c379d73f7"></a><!-- doxytag: member="JavaScriptDefault" ref="fa7eeca9e9d6989991ea3dc3386fb8c21c87086de4123d974883d95c379d73f7" args="" -->JavaScriptDefault</em> </td><td> +The default for JavaScript. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2f5092597ef53ed44401445615ae9dccc"></a><!-- doxytag: member="JavaScriptComment" ref="fa7eeca9e9d6989991ea3dc3386fb8c2f5092597ef53ed44401445615ae9dccc" args="" -->JavaScriptComment</em> </td><td> +A JavaScript comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c276e4ac4cfce2d070fe9b9c77720bb7d8"></a><!-- doxytag: member="JavaScriptCommentLine" ref="fa7eeca9e9d6989991ea3dc3386fb8c276e4ac4cfce2d070fe9b9c77720bb7d8" args="" -->JavaScriptCommentLine</em> </td><td> +A JavaScript line comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2ee34429e7a5de77290b281aea261132e"></a><!-- doxytag: member="JavaScriptCommentDoc" ref="fa7eeca9e9d6989991ea3dc3386fb8c2ee34429e7a5de77290b281aea261132e" args="" -->JavaScriptCommentDoc</em> </td><td> +A JavaDoc style JavaScript comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2a0f9032da8450521d9cb39dae33ff863"></a><!-- doxytag: member="JavaScriptNumber" ref="fa7eeca9e9d6989991ea3dc3386fb8c2a0f9032da8450521d9cb39dae33ff863" args="" -->JavaScriptNumber</em> </td><td> +A JavaScript number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c237aff59f8f47b22255bad5cbedae5a43"></a><!-- doxytag: member="JavaScriptWord" ref="fa7eeca9e9d6989991ea3dc3386fb8c237aff59f8f47b22255bad5cbedae5a43" args="" -->JavaScriptWord</em> </td><td> +A JavaScript word. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2e135a126bd44eaf2d4f1bcdefa4c6777"></a><!-- doxytag: member="JavaScriptKeyword" ref="fa7eeca9e9d6989991ea3dc3386fb8c2e135a126bd44eaf2d4f1bcdefa4c6777" args="" -->JavaScriptKeyword</em> </td><td> +A JavaScript keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c23851458e1219b6fab981232e852bb7b6"></a><!-- doxytag: member="JavaScriptDoubleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c23851458e1219b6fab981232e852bb7b6" args="" -->JavaScriptDoubleQuotedString</em> </td><td> +A JavaScript double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2743f482924275fb66551788738a50e6a"></a><!-- doxytag: member="JavaScriptSingleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2743f482924275fb66551788738a50e6a" args="" -->JavaScriptSingleQuotedString</em> </td><td> +A JavaScript single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2caba88710e3628af2459c6730ab63760"></a><!-- doxytag: member="JavaScriptSymbol" ref="fa7eeca9e9d6989991ea3dc3386fb8c2caba88710e3628af2459c6730ab63760" args="" -->JavaScriptSymbol</em> </td><td> +A JavaScript symbol. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2e32dabb6ec5ea89cb6777d167296452e"></a><!-- doxytag: member="JavaScriptUnclosedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2e32dabb6ec5ea89cb6777d167296452e" args="" -->JavaScriptUnclosedString</em> </td><td> +The end of a JavaScript line where a string is not closed. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c21e07b5f56f662092e208b75d531aa9db"></a><!-- doxytag: member="JavaScriptRegex" ref="fa7eeca9e9d6989991ea3dc3386fb8c21e07b5f56f662092e208b75d531aa9db" args="" -->JavaScriptRegex</em> </td><td> +A JavaScript regular expression. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2dbcccf20de63a466a58f2e60096e0edd"></a><!-- doxytag: member="ASPJavaScriptStart" ref="fa7eeca9e9d6989991ea3dc3386fb8c2dbcccf20de63a466a58f2e60096e0edd" args="" -->ASPJavaScriptStart</em> </td><td> +The start of an ASP JavaScript fragment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2e309e71e8b1576d5b2b8cc5cbd0f0b59"></a><!-- doxytag: member="ASPJavaScriptDefault" ref="fa7eeca9e9d6989991ea3dc3386fb8c2e309e71e8b1576d5b2b8cc5cbd0f0b59" args="" -->ASPJavaScriptDefault</em> </td><td> +The default for ASP JavaScript. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2ce8556fea973701a336af05d3f57ed1f"></a><!-- doxytag: member="ASPJavaScriptComment" ref="fa7eeca9e9d6989991ea3dc3386fb8c2ce8556fea973701a336af05d3f57ed1f" args="" -->ASPJavaScriptComment</em> </td><td> +An ASP JavaScript comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c24c07df9122c0a565d97ec9b65fa95916"></a><!-- doxytag: member="ASPJavaScriptCommentLine" ref="fa7eeca9e9d6989991ea3dc3386fb8c24c07df9122c0a565d97ec9b65fa95916" args="" -->ASPJavaScriptCommentLine</em> </td><td> +An ASP JavaScript line comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2911ccb89cfe6ba9b65f87fa539a80eb0"></a><!-- doxytag: member="ASPJavaScriptCommentDoc" ref="fa7eeca9e9d6989991ea3dc3386fb8c2911ccb89cfe6ba9b65f87fa539a80eb0" args="" -->ASPJavaScriptCommentDoc</em> </td><td> +An ASP JavaDoc style JavaScript comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c22bfccf25277cc604d8211d69eee2316e"></a><!-- doxytag: member="ASPJavaScriptNumber" ref="fa7eeca9e9d6989991ea3dc3386fb8c22bfccf25277cc604d8211d69eee2316e" args="" -->ASPJavaScriptNumber</em> </td><td> +An ASP JavaScript number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c25c1ed69de3f928d05e8c6bd9c1c6841d"></a><!-- doxytag: member="ASPJavaScriptWord" ref="fa7eeca9e9d6989991ea3dc3386fb8c25c1ed69de3f928d05e8c6bd9c1c6841d" args="" -->ASPJavaScriptWord</em> </td><td> +An ASP JavaScript word. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c26830b9b12248cdc571306c6283deb92f"></a><!-- doxytag: member="ASPJavaScriptKeyword" ref="fa7eeca9e9d6989991ea3dc3386fb8c26830b9b12248cdc571306c6283deb92f" args="" -->ASPJavaScriptKeyword</em> </td><td> +An ASP JavaScript keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2d88647d209108078717e03a468a0df43"></a><!-- doxytag: member="ASPJavaScriptDoubleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2d88647d209108078717e03a468a0df43" args="" -->ASPJavaScriptDoubleQuotedString</em> </td><td> +An ASP JavaScript double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2f761a3654fe1159db35fd566394116ac"></a><!-- doxytag: member="ASPJavaScriptSingleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2f761a3654fe1159db35fd566394116ac" args="" -->ASPJavaScriptSingleQuotedString</em> </td><td> +An ASP JavaScript single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c27f86a0affd409ab2792a5a9d98d8f3f9"></a><!-- doxytag: member="ASPJavaScriptSymbol" ref="fa7eeca9e9d6989991ea3dc3386fb8c27f86a0affd409ab2792a5a9d98d8f3f9" args="" -->ASPJavaScriptSymbol</em> </td><td> +An ASP JavaScript symbol. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2ad5232daa17c1f57b4b52a026b9aae86"></a><!-- doxytag: member="ASPJavaScriptUnclosedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2ad5232daa17c1f57b4b52a026b9aae86" args="" -->ASPJavaScriptUnclosedString</em> </td><td> +The end of an ASP JavaScript line where a string is not closed. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2895628d586a191ee3520cd5e6931ae39"></a><!-- doxytag: member="ASPJavaScriptRegex" ref="fa7eeca9e9d6989991ea3dc3386fb8c2895628d586a191ee3520cd5e6931ae39" args="" -->ASPJavaScriptRegex</em> </td><td> +An ASP JavaScript regular expression. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2290d4085bee4829351ce946634280d06"></a><!-- doxytag: member="VBScriptStart" ref="fa7eeca9e9d6989991ea3dc3386fb8c2290d4085bee4829351ce946634280d06" args="" -->VBScriptStart</em> </td><td> +The start of a VBScript fragment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c278b49445b8bf0db9334395d0915a2e9d"></a><!-- doxytag: member="VBScriptDefault" ref="fa7eeca9e9d6989991ea3dc3386fb8c278b49445b8bf0db9334395d0915a2e9d" args="" -->VBScriptDefault</em> </td><td> +The default for VBScript. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2d67aa012e54ca173ae5534d2c795bc59"></a><!-- doxytag: member="VBScriptComment" ref="fa7eeca9e9d6989991ea3dc3386fb8c2d67aa012e54ca173ae5534d2c795bc59" args="" -->VBScriptComment</em> </td><td> +A VBScript comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c28fd8fe44124c54262aea4becf407ecc3"></a><!-- doxytag: member="VBScriptNumber" ref="fa7eeca9e9d6989991ea3dc3386fb8c28fd8fe44124c54262aea4becf407ecc3" args="" -->VBScriptNumber</em> </td><td> +A VBScript number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c24399fa88755c37504c59ea5c3c076481"></a><!-- doxytag: member="VBScriptKeyword" ref="fa7eeca9e9d6989991ea3dc3386fb8c24399fa88755c37504c59ea5c3c076481" args="" -->VBScriptKeyword</em> </td><td> +A VBScript keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2d6ebc6b52a7c4819c9c8c242916d435e"></a><!-- doxytag: member="VBScriptString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2d6ebc6b52a7c4819c9c8c242916d435e" args="" -->VBScriptString</em> </td><td> +A VBScript string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2e31f00f5476af6e733fd94d8f198d192"></a><!-- doxytag: member="VBScriptIdentifier" ref="fa7eeca9e9d6989991ea3dc3386fb8c2e31f00f5476af6e733fd94d8f198d192" args="" -->VBScriptIdentifier</em> </td><td> +A VBScript identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2e0c272a0fef2ee2bd4e63c2babbb4619"></a><!-- doxytag: member="VBScriptUnclosedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2e0c272a0fef2ee2bd4e63c2babbb4619" args="" -->VBScriptUnclosedString</em> </td><td> +The end of a VBScript line where a string is not closed. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2801a3d4aed4be15124cc48400ba7cfc0"></a><!-- doxytag: member="ASPVBScriptStart" ref="fa7eeca9e9d6989991ea3dc3386fb8c2801a3d4aed4be15124cc48400ba7cfc0" args="" -->ASPVBScriptStart</em> </td><td> +The start of an ASP VBScript fragment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c25dc242c8677a4cdaa93b47dad636efd7"></a><!-- doxytag: member="ASPVBScriptDefault" ref="fa7eeca9e9d6989991ea3dc3386fb8c25dc242c8677a4cdaa93b47dad636efd7" args="" -->ASPVBScriptDefault</em> </td><td> +The default for ASP VBScript. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2a273f35dce9bd0ff8dcc73cb546ffcec"></a><!-- doxytag: member="ASPVBScriptComment" ref="fa7eeca9e9d6989991ea3dc3386fb8c2a273f35dce9bd0ff8dcc73cb546ffcec" args="" -->ASPVBScriptComment</em> </td><td> +An ASP VBScript comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2cf46250ef4baddb851a36b90a3e0f6a4"></a><!-- doxytag: member="ASPVBScriptNumber" ref="fa7eeca9e9d6989991ea3dc3386fb8c2cf46250ef4baddb851a36b90a3e0f6a4" args="" -->ASPVBScriptNumber</em> </td><td> +An ASP VBScript number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c229f266c76f4246c9e28da795a9d83f15"></a><!-- doxytag: member="ASPVBScriptKeyword" ref="fa7eeca9e9d6989991ea3dc3386fb8c229f266c76f4246c9e28da795a9d83f15" args="" -->ASPVBScriptKeyword</em> </td><td> +An ASP VBScript keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c24b166ced640d675cd9c8b85ef1000625"></a><!-- doxytag: member="ASPVBScriptString" ref="fa7eeca9e9d6989991ea3dc3386fb8c24b166ced640d675cd9c8b85ef1000625" args="" -->ASPVBScriptString</em> </td><td> +An ASP VBScript string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2dd624c75614c4c80086f68a9890e75b4"></a><!-- doxytag: member="ASPVBScriptIdentifier" ref="fa7eeca9e9d6989991ea3dc3386fb8c2dd624c75614c4c80086f68a9890e75b4" args="" -->ASPVBScriptIdentifier</em> </td><td> +An ASP VBScript identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2482fd2a76bff9c432b76c11656c69e46"></a><!-- doxytag: member="ASPVBScriptUnclosedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2482fd2a76bff9c432b76c11656c69e46" args="" -->ASPVBScriptUnclosedString</em> </td><td> +The end of an ASP VBScript line where a string is not closed. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2ac01be44db7f0a2eba2e036a33307fed"></a><!-- doxytag: member="PythonStart" ref="fa7eeca9e9d6989991ea3dc3386fb8c2ac01be44db7f0a2eba2e036a33307fed" args="" -->PythonStart</em> </td><td> +The start of a Python fragment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c27a5dcc2ae7e210375d5e7bf3fdeb0f93"></a><!-- doxytag: member="PythonDefault" ref="fa7eeca9e9d6989991ea3dc3386fb8c27a5dcc2ae7e210375d5e7bf3fdeb0f93" args="" -->PythonDefault</em> </td><td> +The default for Python. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c220cdf4d4655d0353bf772e7d90fab1b9"></a><!-- doxytag: member="PythonComment" ref="fa7eeca9e9d6989991ea3dc3386fb8c220cdf4d4655d0353bf772e7d90fab1b9" args="" -->PythonComment</em> </td><td> +A Python comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c234ec0c4a8ba7e993e49415d5af1baecf"></a><!-- doxytag: member="PythonNumber" ref="fa7eeca9e9d6989991ea3dc3386fb8c234ec0c4a8ba7e993e49415d5af1baecf" args="" -->PythonNumber</em> </td><td> +A Python number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2bf848c6a453aadd1806b2cc09652d77a"></a><!-- doxytag: member="PythonDoubleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2bf848c6a453aadd1806b2cc09652d77a" args="" -->PythonDoubleQuotedString</em> </td><td> +A Python double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2bd9193ec4ab63af58c0c73e0aeaa3ea5"></a><!-- doxytag: member="PythonSingleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2bd9193ec4ab63af58c0c73e0aeaa3ea5" args="" -->PythonSingleQuotedString</em> </td><td> +A Python single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2397c4fd13726b88bdeb2b038f4942cf9"></a><!-- doxytag: member="PythonKeyword" ref="fa7eeca9e9d6989991ea3dc3386fb8c2397c4fd13726b88bdeb2b038f4942cf9" args="" -->PythonKeyword</em> </td><td> +A Python keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2fb0408178c31799bdb5bc86c7417c56c"></a><!-- doxytag: member="PythonTripleSingleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2fb0408178c31799bdb5bc86c7417c56c" args="" -->PythonTripleSingleQuotedString</em> </td><td> +A Python triple single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c28bb288f4cb0874ac57764d6a0bd1476c"></a><!-- doxytag: member="PythonTripleDoubleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c28bb288f4cb0874ac57764d6a0bd1476c" args="" -->PythonTripleDoubleQuotedString</em> </td><td> +A Python triple double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c209c70bdce614a0a9c068d19720906d9c"></a><!-- doxytag: member="PythonClassName" ref="fa7eeca9e9d6989991ea3dc3386fb8c209c70bdce614a0a9c068d19720906d9c" args="" -->PythonClassName</em> </td><td> +The name of a Python class. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c263b8af4e31e87230ac44b81da999faf0"></a><!-- doxytag: member="PythonFunctionMethodName" ref="fa7eeca9e9d6989991ea3dc3386fb8c263b8af4e31e87230ac44b81da999faf0" args="" -->PythonFunctionMethodName</em> </td><td> +The name of a Python function or method. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2dcfc543de7b11f1b1b5357d6e9aacfdd"></a><!-- doxytag: member="PythonOperator" ref="fa7eeca9e9d6989991ea3dc3386fb8c2dcfc543de7b11f1b1b5357d6e9aacfdd" args="" -->PythonOperator</em> </td><td> +A Python operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2c5dd70a02208f0d6d5f53c06b93acd11"></a><!-- doxytag: member="PythonIdentifier" ref="fa7eeca9e9d6989991ea3dc3386fb8c2c5dd70a02208f0d6d5f53c06b93acd11" args="" -->PythonIdentifier</em> </td><td> +A Python identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2277aa11e8cfcbf9882d06e8e7b876687"></a><!-- doxytag: member="ASPPythonStart" ref="fa7eeca9e9d6989991ea3dc3386fb8c2277aa11e8cfcbf9882d06e8e7b876687" args="" -->ASPPythonStart</em> </td><td> +The start of an ASP Python fragment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c22131da85df2b12e74a64db94a537bade"></a><!-- doxytag: member="ASPPythonDefault" ref="fa7eeca9e9d6989991ea3dc3386fb8c22131da85df2b12e74a64db94a537bade" args="" -->ASPPythonDefault</em> </td><td> +The default for ASP Python. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2e197ac410d81229856a066f3fc0a99af"></a><!-- doxytag: member="ASPPythonComment" ref="fa7eeca9e9d6989991ea3dc3386fb8c2e197ac410d81229856a066f3fc0a99af" args="" -->ASPPythonComment</em> </td><td> +An ASP Python comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c293497a604b0a2b64c657a293a76657af"></a><!-- doxytag: member="ASPPythonNumber" ref="fa7eeca9e9d6989991ea3dc3386fb8c293497a604b0a2b64c657a293a76657af" args="" -->ASPPythonNumber</em> </td><td> +An ASP Python number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2343df69515c58e4dfbc91c0944bc6c49"></a><!-- doxytag: member="ASPPythonDoubleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2343df69515c58e4dfbc91c0944bc6c49" args="" -->ASPPythonDoubleQuotedString</em> </td><td> +An ASP Python double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2e0511f3b87b06999657e4ac64e21b345"></a><!-- doxytag: member="ASPPythonSingleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2e0511f3b87b06999657e4ac64e21b345" args="" -->ASPPythonSingleQuotedString</em> </td><td> +An ASP Python single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2e9077279062e6733bc91a883b18b21af"></a><!-- doxytag: member="ASPPythonKeyword" ref="fa7eeca9e9d6989991ea3dc3386fb8c2e9077279062e6733bc91a883b18b21af" args="" -->ASPPythonKeyword</em> </td><td> +An ASP Python keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2cc3f090fdc393cd57fbcb5f6deee7453"></a><!-- doxytag: member="ASPPythonTripleSingleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2cc3f090fdc393cd57fbcb5f6deee7453" args="" -->ASPPythonTripleSingleQuotedString</em> </td><td> +An ASP Python triple single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2495605e33bb56636a465ab8957b751ea"></a><!-- doxytag: member="ASPPythonTripleDoubleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2495605e33bb56636a465ab8957b751ea" args="" -->ASPPythonTripleDoubleQuotedString</em> </td><td> +An ASP Python triple double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c27b5d6e9b3a6220cb650e775e45741514"></a><!-- doxytag: member="ASPPythonClassName" ref="fa7eeca9e9d6989991ea3dc3386fb8c27b5d6e9b3a6220cb650e775e45741514" args="" -->ASPPythonClassName</em> </td><td> +The name of an ASP Python class. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c23c4baa232fea71ddbb074848da1bd691"></a><!-- doxytag: member="ASPPythonFunctionMethodName" ref="fa7eeca9e9d6989991ea3dc3386fb8c23c4baa232fea71ddbb074848da1bd691" args="" -->ASPPythonFunctionMethodName</em> </td><td> +The name of an ASP Python function or method. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c262d4e436a6a5938ec462e1a79892c1bd"></a><!-- doxytag: member="ASPPythonOperator" ref="fa7eeca9e9d6989991ea3dc3386fb8c262d4e436a6a5938ec462e1a79892c1bd" args="" -->ASPPythonOperator</em> </td><td> +An ASP Python operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2a2f242e746a05ccb9bf376798cda278f"></a><!-- doxytag: member="ASPPythonIdentifier" ref="fa7eeca9e9d6989991ea3dc3386fb8c2a2f242e746a05ccb9bf376798cda278f" args="" -->ASPPythonIdentifier</em> </td><td> +An ASP Python identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2800893a14c74490f427d82ba07371c42"></a><!-- doxytag: member="PHPDefault" ref="fa7eeca9e9d6989991ea3dc3386fb8c2800893a14c74490f427d82ba07371c42" args="" -->PHPDefault</em> </td><td> +The default for PHP. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2eb4c6e34ecd8b7bfb94795b2c771e22c"></a><!-- doxytag: member="PHPDoubleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2eb4c6e34ecd8b7bfb94795b2c771e22c" args="" -->PHPDoubleQuotedString</em> </td><td> +A PHP double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2f8ae9f462bb9b23d6f3703b727791940"></a><!-- doxytag: member="PHPSingleQuotedString" ref="fa7eeca9e9d6989991ea3dc3386fb8c2f8ae9f462bb9b23d6f3703b727791940" args="" -->PHPSingleQuotedString</em> </td><td> +A PHP single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2a30dc61f0df4c2a61c23b85fff0d9027"></a><!-- doxytag: member="PHPKeyword" ref="fa7eeca9e9d6989991ea3dc3386fb8c2a30dc61f0df4c2a61c23b85fff0d9027" args="" -->PHPKeyword</em> </td><td> +A PHP keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2e16b23daeab8265574ee4d02a399ca81"></a><!-- doxytag: member="PHPNumber" ref="fa7eeca9e9d6989991ea3dc3386fb8c2e16b23daeab8265574ee4d02a399ca81" args="" -->PHPNumber</em> </td><td> +A PHP number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c28132b2eb65e40ece81ee7f00dfd09b80"></a><!-- doxytag: member="PHPVariable" ref="fa7eeca9e9d6989991ea3dc3386fb8c28132b2eb65e40ece81ee7f00dfd09b80" args="" -->PHPVariable</em> </td><td> +A PHP variable. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c22b4926bc98c45fbdfa129a6b4e501365"></a><!-- doxytag: member="PHPComment" ref="fa7eeca9e9d6989991ea3dc3386fb8c22b4926bc98c45fbdfa129a6b4e501365" args="" -->PHPComment</em> </td><td> +A PHP comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c27547d69c64295672e8d647c4a7721b3f"></a><!-- doxytag: member="PHPCommentLine" ref="fa7eeca9e9d6989991ea3dc3386fb8c27547d69c64295672e8d647c4a7721b3f" args="" -->PHPCommentLine</em> </td><td> +A PHP line comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c2bbff0ccc2750d185bda4581ddee5f080"></a><!-- doxytag: member="PHPDoubleQuotedVariable" ref="fa7eeca9e9d6989991ea3dc3386fb8c2bbff0ccc2750d185bda4581ddee5f080" args="" -->PHPDoubleQuotedVariable</em> </td><td> +A PHP double-quoted variable. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="fa7eeca9e9d6989991ea3dc3386fb8c20738846719d16721222fa8ccab27200e"></a><!-- doxytag: member="PHPOperator" ref="fa7eeca9e9d6989991ea3dc3386fb8c20738846719d16721222fa8ccab27200e" args="" -->PHPOperator</em> </td><td> +A PHP operator. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="60b3d0b173242c1c86167861d3f994d3"></a><!-- doxytag: member="QextScintillaLexerHTML::QextScintillaLexerHTML" ref="60b3d0b173242c1c86167861d3f994d3" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerHTML::QextScintillaLexerHTML </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="786a37770dbf59d33c91e0fcfcd736f9"></a><!-- doxytag: member="QextScintillaLexerHTML::~QextScintillaLexerHTML" ref="786a37770dbf59d33c91e0fcfcd736f9" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerHTML::~QextScintillaLexerHTML </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="42e4b633a0884532b1964af951a28694"></a><!-- doxytag: member="QextScintillaLexerHTML::language" ref="42e4b633a0884532b1964af951a28694" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerHTML::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="263c14b01148462aac8d5fd38d63f952"></a><!-- doxytag: member="QextScintillaLexerHTML::lexer" ref="263c14b01148462aac8d5fd38d63f952" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerHTML::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="0a0fec93b6bca1afa67a7586b8cd1f83"></a><!-- doxytag: member="QextScintillaLexerHTML::color" ref="0a0fec93b6bca1afa67a7586b8cd1f83" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerHTML::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerHTML.html#61db306c01232b11e66f70fd8dfd140d">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="a3cac0d6cc9e4909d784901d767b6171"></a><!-- doxytag: member="QextScintillaLexerHTML::eolFill" ref="a3cac0d6cc9e4909d784901d767b6171" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerHTML::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="63117e2e3f25f9a17fba9c59ac6e6a15"></a><!-- doxytag: member="QextScintillaLexerHTML::font" ref="63117e2e3f25f9a17fba9c59ac6e6a15" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerHTML::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="a640562b320733e430174445b11107c6"></a><!-- doxytag: member="QextScintillaLexerHTML::keywords" ref="a640562b320733e430174445b11107c6" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerHTML::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="32833c72adf52ecbf9b479ae792df782"></a><!-- doxytag: member="QextScintillaLexerHTML::description" ref="32833c72adf52ecbf9b479ae792df782" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerHTML::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="61db306c01232b11e66f70fd8dfd140d"></a><!-- doxytag: member="QextScintillaLexerHTML::paper" ref="61db306c01232b11e66f70fd8dfd140d" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerHTML::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerHTML.html#0a0fec93b6bca1afa67a7586b8cd1f83">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="fa1583f1e5edd402ccd6e3cebc1d8c07"></a><!-- doxytag: member="QextScintillaLexerHTML::refreshProperties" ref="fa1583f1e5edd402ccd6e3cebc1d8c07" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexerHTML::refreshProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Causes all properties to be refreshed by emitting the <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged()</a> signal as required. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="25612261f73a392083b9946af07a8e05"></a><!-- doxytag: member="QextScintillaLexerHTML::foldCompact" ref="25612261f73a392083b9946af07a8e05" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerHTML::foldCompact </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if trailing blank lines are included in a fold block.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerHTML.html#148b6caa2ddab54d6c43700e62edf94d">setFoldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="23d3e1f8f7b202808cb13fb1b4fe35dd"></a><!-- doxytag: member="QextScintillaLexerHTML::foldPreprocessor" ref="23d3e1f8f7b202808cb13fb1b4fe35dd" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerHTML::foldPreprocessor </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if preprocessor blocks can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerHTML.html#4accbe3243d38303b0ba6c1d5b1969a6">setFoldPreprocessor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="97ef69eb463d62607df4934f8b55870f"></a><!-- doxytag: member="QextScintillaLexerHTML::caseSensitiveTags" ref="97ef69eb463d62607df4934f8b55870f" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerHTML::caseSensitiveTags </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if tags are case sensitive.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerHTML.html#00d4c198c14a04b56eb1d029f8985ef1">setCaseSensitiveTags()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="148b6caa2ddab54d6c43700e62edf94d"></a><!-- doxytag: member="QextScintillaLexerHTML::setFoldCompact" ref="148b6caa2ddab54d6c43700e62edf94d" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerHTML::setFoldCompact </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then trailing blank lines are included in a fold block. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerHTML.html#25612261f73a392083b9946af07a8e05">foldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="4accbe3243d38303b0ba6c1d5b1969a6"></a><!-- doxytag: member="QextScintillaLexerHTML::setFoldPreprocessor" ref="4accbe3243d38303b0ba6c1d5b1969a6" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerHTML::setFoldPreprocessor </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then preprocessor blocks can be folded. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerHTML.html#23d3e1f8f7b202808cb13fb1b4fe35dd">foldPreprocessor()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="00d4c198c14a04b56eb1d029f8985ef1"></a><!-- doxytag: member="QextScintillaLexerHTML::setCaseSensitiveTags" ref="00d4c198c14a04b56eb1d029f8985ef1" args="(bool sens)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerHTML::setCaseSensitiveTags </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>sens</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>sens</em> is TRUE then tags are case sensitive. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerHTML.html#97ef69eb463d62607df4934f8b55870f">caseSensitiveTags()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="c00904b135b7098ac120344e01d6a706"></a><!-- doxytag: member="QextScintillaLexerHTML::readProperties" ref="c00904b135b7098ac120344e01d6a706" args="(QSettings &qs, const QString &prefix)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerHTML::readProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are read from the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="a7ecf8f08c953c661a350d5de2e868fa"></a><!-- doxytag: member="QextScintillaLexerHTML::writeProperties" ref="a7ecf8f08c953c661a350d5de2e868fa" args="(QSettings &qs, const QString &prefix) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerHTML::writeProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are written to the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerIDL-members.html b/doc/html/classQextScintillaLexerIDL-members.html new file mode 100644 index 0000000..fb5ed10 --- /dev/null +++ b/doc/html/classQextScintillaLexerIDL-members.html @@ -0,0 +1,101 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerIDL Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerIDL.html#ba47acd3bb2f4f29921683d6ca0e1463">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e513f17d201238a4a849dcf462eecb3be25">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5162e768eb69a2df5d4533de080b165684">CommentDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e510e4193332a47314117d11c068820d943">CommentDocKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51bc816efbc8ab656d5538791c6686c305">CommentDocKeywordError</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519bcf1c7b1ed33bac64fb74ac287df923">CommentLine</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5150a0e3dc1d79c9914da93abc6739ba85">CommentLineDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51c384bf868159a15c4ab026080d34a32f">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerIDL.html#30e36f23bd7d56ec59b0b6352c484eba">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51a660e00c101f515b68b5b0d9da7fba75">DoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#5f425be57976a428603b7c14f198ba76">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#aa8dd334b06cfc33cac7089ac08c837d">foldAtElse</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#d2011da2c61e08f1ac7283a622a1ff47">foldComments</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#527f330fa7298c564d104b1b27e5dfb5">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#02a2553c485bcaa29cb785d56d8c42c1">foldPreprocessor</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#c78b287195efa8b2612bb16fbfba8417">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51ef1e331b7a3004691a931e2a0e3f16c2">GlobalClass</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e514609ac66029ec6e4d88dfe92c4b682cb">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5196b337dc6536fe5094879c7eaf519c0e">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerIDL.html#5a14b1eff857fa464ebabb186af63804">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518b514e3238a51f6871b34e9b21822bc9">KeywordSet2</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerIDL.html#e3f195e87f6459cbaa2772736c588e4f">language</a>() const </td><td><a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#e11593183bc1457d47b25c41d97ffdc0">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519d5058c1e46b268ffc3aa7521effc05c">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e511af9d62cbdb5bf81216428536529b88b">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#8cadeffdccdae0c0a3e26f6c8f33f3ee">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51292bfc802f7e67778e276970a2d1e028">PreProcessor</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#d019d2bee70433f21b5d2a385cc78561">QextScintillaLexerCPP</a>(QObject *parent=0, const char *name=0, bool caseInsensitiveKeywords=FALSE)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerIDL.html#0ae4e3ba2aa88b01141ca9a325c03c1b">QextScintillaLexerIDL</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#58af6f75117c384d0204ac0f65e94c1d">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#a02453989cf7f0fed7f5a72dd7408ca7">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5181fc788d2dfc87c687be8f74f53de535">Regex</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#f75eff635e4ceec40e092d5640062acf">setFoldAtElse</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#a8d495fc79547d5a38edcbb3fc9a8a47">setFoldComments</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#ccda9feb64b84763780763d42248db5b">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#83e14ae9d959d987a8d4d5f919ae6091">setFoldPreprocessor</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#0280643196167caedecbf2adc23034a8">setStylePreprocessor</a>(bool style)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51f7648858efb30abf136bf9f82a516296">SingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#43bf80480c8d816da5e0c86dcd61cc67">stylePreprocessor</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518a0f2ffd95a262823eafa42c8c3e1ca4">UnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51b798115a9d9b6a97802ced4410b8eee0">UUID</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519401e0f2377e0cc0c156386ba730897b">VerbatimString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067">WhiteSpace</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#600506daad28854a957cc20307854202">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#ff979d7aad2ae33d2e246119d7994492">~QextScintillaLexerCPP</a>()</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerIDL.html#dede1f597bce7ac4c19d140897a38ce1">~QextScintillaLexerIDL</a>()</td><td><a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerIDL.html b/doc/html/classQextScintillaLexerIDL.html new file mode 100644 index 0000000..82aad2f --- /dev/null +++ b/doc/html/classQextScintillaLexerIDL.html @@ -0,0 +1,186 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerIDL Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerIDL Class Reference</h1><!-- doxytag: class="QextScintillaLexerIDL" --><!-- doxytag: inherits="QextScintillaLexerCPP" -->The <a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a> class encapsulates the Scintilla IDL lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexeridl.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>. +<p> +<a href="classQextScintillaLexerIDL-members.html">List of all members.</a><h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerIDL.html#0ae4e3ba2aa88b01141ca9a325c03c1b">QextScintillaLexerIDL</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerIDL.html#dede1f597bce7ac4c19d140897a38ce1">~QextScintillaLexerIDL</a> () +<li>const char * <a class="el" href="classQextScintillaLexerIDL.html#e3f195e87f6459cbaa2772736c588e4f">language</a> () const +<li>QColor <a class="el" href="classQextScintillaLexerIDL.html#ba47acd3bb2f4f29921683d6ca0e1463">color</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerIDL.html#5a14b1eff857fa464ebabb186af63804">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerIDL.html#30e36f23bd7d56ec59b0b6352c484eba">description</a> (int style) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a> class encapsulates the Scintilla IDL lexer. +<p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="0ae4e3ba2aa88b01141ca9a325c03c1b"></a><!-- doxytag: member="QextScintillaLexerIDL::QextScintillaLexerIDL" ref="0ae4e3ba2aa88b01141ca9a325c03c1b" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerIDL::QextScintillaLexerIDL </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="dede1f597bce7ac4c19d140897a38ce1"></a><!-- doxytag: member="QextScintillaLexerIDL::~QextScintillaLexerIDL" ref="dede1f597bce7ac4c19d140897a38ce1" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerIDL::~QextScintillaLexerIDL </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="e3f195e87f6459cbaa2772736c588e4f"></a><!-- doxytag: member="QextScintillaLexerIDL::language" ref="e3f195e87f6459cbaa2772736c588e4f" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerIDL::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#4cb81dcd6838b1aad041da166186d349">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="ba47acd3bb2f4f29921683d6ca0e1463"></a><!-- doxytag: member="QextScintillaLexerIDL::color" ref="ba47acd3bb2f4f29921683d6ca0e1463" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerIDL::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerCPP.html#8cadeffdccdae0c0a3e26f6c8f33f3ee">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#81d2fac7671aaffb7cb0400eed5f4610">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="5a14b1eff857fa464ebabb186af63804"></a><!-- doxytag: member="QextScintillaLexerIDL::keywords" ref="5a14b1eff857fa464ebabb186af63804" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerIDL::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#2e15e8d6831c86fbe16841bac3714a17">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="30e36f23bd7d56ec59b0b6352c484eba"></a><!-- doxytag: member="QextScintillaLexerIDL::description" ref="30e36f23bd7d56ec59b0b6352c484eba" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerIDL::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#cb720f11c91e4491dc0e44e18bfd0079">QextScintillaLexerCPP</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerJava-members.html b/doc/html/classQextScintillaLexerJava-members.html new file mode 100644 index 0000000..e5eb10a --- /dev/null +++ b/doc/html/classQextScintillaLexerJava-members.html @@ -0,0 +1,101 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerJava Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#81d2fac7671aaffb7cb0400eed5f4610">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e513f17d201238a4a849dcf462eecb3be25">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5162e768eb69a2df5d4533de080b165684">CommentDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e510e4193332a47314117d11c068820d943">CommentDocKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51bc816efbc8ab656d5538791c6686c305">CommentDocKeywordError</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519bcf1c7b1ed33bac64fb74ac287df923">CommentLine</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5150a0e3dc1d79c9914da93abc6739ba85">CommentLineDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51c384bf868159a15c4ab026080d34a32f">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#cb720f11c91e4491dc0e44e18bfd0079">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51a660e00c101f515b68b5b0d9da7fba75">DoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#5f425be57976a428603b7c14f198ba76">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#aa8dd334b06cfc33cac7089ac08c837d">foldAtElse</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#d2011da2c61e08f1ac7283a622a1ff47">foldComments</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#527f330fa7298c564d104b1b27e5dfb5">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#02a2553c485bcaa29cb785d56d8c42c1">foldPreprocessor</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#c78b287195efa8b2612bb16fbfba8417">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51ef1e331b7a3004691a931e2a0e3f16c2">GlobalClass</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e514609ac66029ec6e4d88dfe92c4b682cb">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5196b337dc6536fe5094879c7eaf519c0e">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJava.html#8021e35de49b51d150150996492b3472">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518b514e3238a51f6871b34e9b21822bc9">KeywordSet2</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJava.html#c3e2fec409d4eab37271892668064fd1">language</a>() const </td><td><a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#e11593183bc1457d47b25c41d97ffdc0">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519d5058c1e46b268ffc3aa7521effc05c">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e511af9d62cbdb5bf81216428536529b88b">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#8cadeffdccdae0c0a3e26f6c8f33f3ee">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51292bfc802f7e67778e276970a2d1e028">PreProcessor</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#d019d2bee70433f21b5d2a385cc78561">QextScintillaLexerCPP</a>(QObject *parent=0, const char *name=0, bool caseInsensitiveKeywords=FALSE)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJava.html#64986f30edfe91a663809f184a423111">QextScintillaLexerJava</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#58af6f75117c384d0204ac0f65e94c1d">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#a02453989cf7f0fed7f5a72dd7408ca7">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5181fc788d2dfc87c687be8f74f53de535">Regex</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#f75eff635e4ceec40e092d5640062acf">setFoldAtElse</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#a8d495fc79547d5a38edcbb3fc9a8a47">setFoldComments</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#ccda9feb64b84763780763d42248db5b">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#83e14ae9d959d987a8d4d5f919ae6091">setFoldPreprocessor</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#0280643196167caedecbf2adc23034a8">setStylePreprocessor</a>(bool style)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51f7648858efb30abf136bf9f82a516296">SingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#43bf80480c8d816da5e0c86dcd61cc67">stylePreprocessor</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518a0f2ffd95a262823eafa42c8c3e1ca4">UnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51b798115a9d9b6a97802ced4410b8eee0">UUID</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519401e0f2377e0cc0c156386ba730897b">VerbatimString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067">WhiteSpace</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#600506daad28854a957cc20307854202">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#ff979d7aad2ae33d2e246119d7994492">~QextScintillaLexerCPP</a>()</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJava.html#32d0b0f5766293ecc3275ea97638db33">~QextScintillaLexerJava</a>()</td><td><a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerJava.html b/doc/html/classQextScintillaLexerJava.html new file mode 100644 index 0000000..5d5dab2 --- /dev/null +++ b/doc/html/classQextScintillaLexerJava.html @@ -0,0 +1,138 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerJava Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerJava Class Reference</h1><!-- doxytag: class="QextScintillaLexerJava" --><!-- doxytag: inherits="QextScintillaLexerCPP" -->The <a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a> class encapsulates the Scintilla Java lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerjava.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>. +<p> +<a href="classQextScintillaLexerJava-members.html">List of all members.</a><h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerJava.html#64986f30edfe91a663809f184a423111">QextScintillaLexerJava</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerJava.html#32d0b0f5766293ecc3275ea97638db33">~QextScintillaLexerJava</a> () +<li>const char * <a class="el" href="classQextScintillaLexerJava.html#c3e2fec409d4eab37271892668064fd1">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerJava.html#8021e35de49b51d150150996492b3472">keywords</a> (int set) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a> class encapsulates the Scintilla Java lexer. +<p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="64986f30edfe91a663809f184a423111"></a><!-- doxytag: member="QextScintillaLexerJava::QextScintillaLexerJava" ref="64986f30edfe91a663809f184a423111" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerJava::QextScintillaLexerJava </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="32d0b0f5766293ecc3275ea97638db33"></a><!-- doxytag: member="QextScintillaLexerJava::~QextScintillaLexerJava" ref="32d0b0f5766293ecc3275ea97638db33" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerJava::~QextScintillaLexerJava </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="c3e2fec409d4eab37271892668064fd1"></a><!-- doxytag: member="QextScintillaLexerJava::language" ref="c3e2fec409d4eab37271892668064fd1" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerJava::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#4cb81dcd6838b1aad041da166186d349">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="8021e35de49b51d150150996492b3472"></a><!-- doxytag: member="QextScintillaLexerJava::keywords" ref="8021e35de49b51d150150996492b3472" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerJava::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#2e15e8d6831c86fbe16841bac3714a17">QextScintillaLexerCPP</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerJavaScript-members.html b/doc/html/classQextScintillaLexerJavaScript-members.html new file mode 100644 index 0000000..7c8f911 --- /dev/null +++ b/doc/html/classQextScintillaLexerJavaScript-members.html @@ -0,0 +1,101 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerJavaScript Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJavaScript.html#0d6f5ae54113d25194bba830674835fe">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e513f17d201238a4a849dcf462eecb3be25">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5162e768eb69a2df5d4533de080b165684">CommentDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e510e4193332a47314117d11c068820d943">CommentDocKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51bc816efbc8ab656d5538791c6686c305">CommentDocKeywordError</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519bcf1c7b1ed33bac64fb74ac287df923">CommentLine</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5150a0e3dc1d79c9914da93abc6739ba85">CommentLineDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51c384bf868159a15c4ab026080d34a32f">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJavaScript.html#01c7701133de7049c74dbdfd8cf2adb6">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51a660e00c101f515b68b5b0d9da7fba75">DoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJavaScript.html#74ad10f97d43c77c24a4fbe5d7ca5d04">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#aa8dd334b06cfc33cac7089ac08c837d">foldAtElse</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#d2011da2c61e08f1ac7283a622a1ff47">foldComments</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#527f330fa7298c564d104b1b27e5dfb5">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#02a2553c485bcaa29cb785d56d8c42c1">foldPreprocessor</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJavaScript.html#6e1888622ce0ae61936fc0191a536807">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51ef1e331b7a3004691a931e2a0e3f16c2">GlobalClass</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e514609ac66029ec6e4d88dfe92c4b682cb">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5196b337dc6536fe5094879c7eaf519c0e">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJavaScript.html#9bb399d8f06d5b915c81a402e6d35ee5">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518b514e3238a51f6871b34e9b21822bc9">KeywordSet2</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJavaScript.html#3cfc5a543947879f3525e5abae1abdb7">language</a>() const </td><td><a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#e11593183bc1457d47b25c41d97ffdc0">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519d5058c1e46b268ffc3aa7521effc05c">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e511af9d62cbdb5bf81216428536529b88b">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJavaScript.html#edd2a656bf04564ec7494140d2800698">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51292bfc802f7e67778e276970a2d1e028">PreProcessor</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#d019d2bee70433f21b5d2a385cc78561">QextScintillaLexerCPP</a>(QObject *parent=0, const char *name=0, bool caseInsensitiveKeywords=FALSE)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJavaScript.html#b399d27be19d5fc6ac6bf5b3c555b079">QextScintillaLexerJavaScript</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#58af6f75117c384d0204ac0f65e94c1d">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#a02453989cf7f0fed7f5a72dd7408ca7">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5181fc788d2dfc87c687be8f74f53de535">Regex</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#f75eff635e4ceec40e092d5640062acf">setFoldAtElse</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#a8d495fc79547d5a38edcbb3fc9a8a47">setFoldComments</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#ccda9feb64b84763780763d42248db5b">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#83e14ae9d959d987a8d4d5f919ae6091">setFoldPreprocessor</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#0280643196167caedecbf2adc23034a8">setStylePreprocessor</a>(bool style)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51f7648858efb30abf136bf9f82a516296">SingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#43bf80480c8d816da5e0c86dcd61cc67">stylePreprocessor</a>() const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518a0f2ffd95a262823eafa42c8c3e1ca4">UnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51b798115a9d9b6a97802ced4410b8eee0">UUID</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519401e0f2377e0cc0c156386ba730897b">VerbatimString</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067">WhiteSpace</a> enum value</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>)</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#600506daad28854a957cc20307854202">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerCPP.html#ff979d7aad2ae33d2e246119d7994492">~QextScintillaLexerCPP</a>()</td><td><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerJavaScript.html#911d027f4a41a3d2f02df1e758d87ee5">~QextScintillaLexerJavaScript</a>()</td><td><a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerJavaScript.html b/doc/html/classQextScintillaLexerJavaScript.html new file mode 100644 index 0000000..5a31904 --- /dev/null +++ b/doc/html/classQextScintillaLexerJavaScript.html @@ -0,0 +1,261 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerJavaScript Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerJavaScript Class Reference</h1><!-- doxytag: class="QextScintillaLexerJavaScript" --><!-- doxytag: inherits="QextScintillaLexerCPP" -->The <a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a> class encapsulates the Scintilla JavaScript lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerjavascript.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a>. +<p> +<a href="classQextScintillaLexerJavaScript-members.html">List of all members.</a><h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerJavaScript.html#b399d27be19d5fc6ac6bf5b3c555b079">QextScintillaLexerJavaScript</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerJavaScript.html#911d027f4a41a3d2f02df1e758d87ee5">~QextScintillaLexerJavaScript</a> () +<li>const char * <a class="el" href="classQextScintillaLexerJavaScript.html#3cfc5a543947879f3525e5abae1abdb7">language</a> () const +<li>QColor <a class="el" href="classQextScintillaLexerJavaScript.html#0d6f5ae54113d25194bba830674835fe">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerJavaScript.html#74ad10f97d43c77c24a4fbe5d7ca5d04">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerJavaScript.html#6e1888622ce0ae61936fc0191a536807">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerJavaScript.html#9bb399d8f06d5b915c81a402e6d35ee5">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerJavaScript.html#01c7701133de7049c74dbdfd8cf2adb6">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerJavaScript.html#edd2a656bf04564ec7494140d2800698">paper</a> (int style) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a> class encapsulates the Scintilla JavaScript lexer. +<p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="b399d27be19d5fc6ac6bf5b3c555b079"></a><!-- doxytag: member="QextScintillaLexerJavaScript::QextScintillaLexerJavaScript" ref="b399d27be19d5fc6ac6bf5b3c555b079" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerJavaScript::QextScintillaLexerJavaScript </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="911d027f4a41a3d2f02df1e758d87ee5"></a><!-- doxytag: member="QextScintillaLexerJavaScript::~QextScintillaLexerJavaScript" ref="911d027f4a41a3d2f02df1e758d87ee5" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerJavaScript::~QextScintillaLexerJavaScript </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="3cfc5a543947879f3525e5abae1abdb7"></a><!-- doxytag: member="QextScintillaLexerJavaScript::language" ref="3cfc5a543947879f3525e5abae1abdb7" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerJavaScript::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#4cb81dcd6838b1aad041da166186d349">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="0d6f5ae54113d25194bba830674835fe"></a><!-- doxytag: member="QextScintillaLexerJavaScript::color" ref="0d6f5ae54113d25194bba830674835fe" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerJavaScript::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerJavaScript.html#edd2a656bf04564ec7494140d2800698">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#81d2fac7671aaffb7cb0400eed5f4610">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="74ad10f97d43c77c24a4fbe5d7ca5d04"></a><!-- doxytag: member="QextScintillaLexerJavaScript::eolFill" ref="74ad10f97d43c77c24a4fbe5d7ca5d04" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerJavaScript::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#5f425be57976a428603b7c14f198ba76">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="6e1888622ce0ae61936fc0191a536807"></a><!-- doxytag: member="QextScintillaLexerJavaScript::font" ref="6e1888622ce0ae61936fc0191a536807" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerJavaScript::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#c78b287195efa8b2612bb16fbfba8417">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="9bb399d8f06d5b915c81a402e6d35ee5"></a><!-- doxytag: member="QextScintillaLexerJavaScript::keywords" ref="9bb399d8f06d5b915c81a402e6d35ee5" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerJavaScript::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#2e15e8d6831c86fbe16841bac3714a17">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="01c7701133de7049c74dbdfd8cf2adb6"></a><!-- doxytag: member="QextScintillaLexerJavaScript::description" ref="01c7701133de7049c74dbdfd8cf2adb6" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerJavaScript::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#cb720f11c91e4491dc0e44e18bfd0079">QextScintillaLexerCPP</a>. +</div> +</div><p> +<a class="anchor" name="edd2a656bf04564ec7494140d2800698"></a><!-- doxytag: member="QextScintillaLexerJavaScript::paper" ref="edd2a656bf04564ec7494140d2800698" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerJavaScript::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerJavaScript.html#0d6f5ae54113d25194bba830674835fe">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexerCPP.html#8cadeffdccdae0c0a3e26f6c8f33f3ee">QextScintillaLexerCPP</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerLua-members.html b/doc/html/classQextScintillaLexerLua-members.html new file mode 100644 index 0000000..2fd15cc --- /dev/null +++ b/doc/html/classQextScintillaLexerLua-members.html @@ -0,0 +1,85 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerLua Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e48cbece3fd2db495d995c794b9aeb55">BasicFunctions</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a>)</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a>)</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a64bb9035d2a79de51309e1f8df1c2df05">Character</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#d30f09523c335c17b1a862c44beb4593">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a698cd8797d93b7ed7ec4b8ae0f7bb04d8">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6c8bd9b4dbcd836a98ecea083b95934ed">CoroutinesIOSystemFacilities</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a66718ab53e8288e80963d595c32e710fc">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#de61e22ccec39eefe727b76f43ed000d">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#cfde1f9e0a2ea5ea4581fddb2f889c1c">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#a83fe43c217c885d4665c830af19a9c4">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#a7779e1dcafb87304b611315bc525b90">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6b0f27236463324dc717da325eee01f9d">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a667b65a2ea707a283ee0a98af97cd4757">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#0f3e22697e17b377405a17a18115d60c">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#f2708e7a2aab690da33cd71770db2c93">language</a>() const </td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#578426b4bb8a4c2b16129a1c60b3911c">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e69c6f51c5d32bd8e9d154d22570dcf9">LineComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6edabe8da9049cc395dd7c301c5dc8383">LiteralString</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a68fcd66fee6897b8fa4ddb9381b693323">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e1d5da80ef70caafc99e4cadf944c524">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#069160759fbd9f9942f15447580d53e1">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a68b9c95922bfc06feb46347bf07948238">Preprocessor</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#43fbffe049e40e7d9116debe7f5a0e01">QextScintillaLexerLua</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#5dc890e770301ab5ecca0f37294c69e8">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#7995cf1a6671a840abf061b3939b5e8b">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#5f48a7bed25b1481edbb51f3c7614da4">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6a7bd9b08519b4fc35df1cae499c6766f">String</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6cf8fcc5533445fd6d4aea4ffc86a79ce">StringTableMathsFunctions</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a639d296e5c1424d043ece54afc3e012bb">UnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#92663d1d9f49a0218118d8e48b5c49ad">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerLua.html#58a3c460c4908a7456d1dab47631f9f0">~QextScintillaLexerLua</a>()</td><td><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerLua.html b/doc/html/classQextScintillaLexerLua.html new file mode 100644 index 0000000..31efdad --- /dev/null +++ b/doc/html/classQextScintillaLexerLua.html @@ -0,0 +1,514 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerLua Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerLua Class Reference</h1><!-- doxytag: class="QextScintillaLexerLua" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a> class encapsulates the Scintilla Lua lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerlua.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerLua-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a66718ab53e8288e80963d595c32e710fc">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a698cd8797d93b7ed7ec4b8ae0f7bb04d8">Comment</a> = 1 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e69c6f51c5d32bd8e9d154d22570dcf9">LineComment</a> = 2 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a68fcd66fee6897b8fa4ddb9381b693323">Number</a> = 4 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a667b65a2ea707a283ee0a98af97cd4757">Keyword</a> = 5 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6a7bd9b08519b4fc35df1cae499c6766f">String</a> = 6 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a64bb9035d2a79de51309e1f8df1c2df05">Character</a> = 7 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6edabe8da9049cc395dd7c301c5dc8383">LiteralString</a> = 8 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a68b9c95922bfc06feb46347bf07948238">Preprocessor</a> = 9 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e1d5da80ef70caafc99e4cadf944c524">Operator</a> = 10 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6b0f27236463324dc717da325eee01f9d">Identifier</a> = 11 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a639d296e5c1424d043ece54afc3e012bb">UnclosedString</a> = 12 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e48cbece3fd2db495d995c794b9aeb55">BasicFunctions</a> = 13 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6cf8fcc5533445fd6d4aea4ffc86a79ce">StringTableMathsFunctions</a> = 14 +<li><a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6c8bd9b4dbcd836a98ecea083b95934ed">CoroutinesIOSystemFacilities</a> = 15 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a66718ab53e8288e80963d595c32e710fc">Default</a> = 0, +<a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a698cd8797d93b7ed7ec4b8ae0f7bb04d8">Comment</a> = 1, +<a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e69c6f51c5d32bd8e9d154d22570dcf9">LineComment</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a68fcd66fee6897b8fa4ddb9381b693323">Number</a> = 4, +<a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a667b65a2ea707a283ee0a98af97cd4757">Keyword</a> = 5, +<a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6a7bd9b08519b4fc35df1cae499c6766f">String</a> = 6, +<br> + <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a64bb9035d2a79de51309e1f8df1c2df05">Character</a> = 7, +<a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6edabe8da9049cc395dd7c301c5dc8383">LiteralString</a> = 8, +<a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a68b9c95922bfc06feb46347bf07948238">Preprocessor</a> = 9, +<br> + <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e1d5da80ef70caafc99e4cadf944c524">Operator</a> = 10, +<a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6b0f27236463324dc717da325eee01f9d">Identifier</a> = 11, +<a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a639d296e5c1424d043ece54afc3e012bb">UnclosedString</a> = 12, +<br> + <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e48cbece3fd2db495d995c794b9aeb55">BasicFunctions</a> = 13, +<a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6cf8fcc5533445fd6d4aea4ffc86a79ce">StringTableMathsFunctions</a> = 14, +<a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6c8bd9b4dbcd836a98ecea083b95934ed">CoroutinesIOSystemFacilities</a> = 15 +<br> + } +</ul> +<h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaLexerLua.html#5f48a7bed25b1481edbb51f3c7614da4">setFoldCompact</a> (bool fold) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerLua.html#43fbffe049e40e7d9116debe7f5a0e01">QextScintillaLexerLua</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerLua.html#58a3c460c4908a7456d1dab47631f9f0">~QextScintillaLexerLua</a> () +<li>const char * <a class="el" href="classQextScintillaLexerLua.html#f2708e7a2aab690da33cd71770db2c93">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerLua.html#578426b4bb8a4c2b16129a1c60b3911c">lexer</a> () const +<li><a class="anchor" name="0dbcda1c2e8e77ef25c2e92c1be7c3ae"></a><!-- doxytag: member="QextScintillaLexerLua::blockStart" ref="0dbcda1c2e8e77ef25c2e92c1be7c3ae" args="(int *style=0) const " --> +const char * <b>blockStart</b> (int *style=0) const +<li><a class="anchor" name="bc04f5463d8802382edb8b2b11f30860"></a><!-- doxytag: member="QextScintillaLexerLua::braceStyle" ref="bc04f5463d8802382edb8b2b11f30860" args="() const " --> +int <b>braceStyle</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerLua.html#d30f09523c335c17b1a862c44beb4593">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerLua.html#cfde1f9e0a2ea5ea4581fddb2f889c1c">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerLua.html#a7779e1dcafb87304b611315bc525b90">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerLua.html#0f3e22697e17b377405a17a18115d60c">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerLua.html#de61e22ccec39eefe727b76f43ed000d">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerLua.html#069160759fbd9f9942f15447580d53e1">paper</a> (int style) const +<li>void <a class="el" href="classQextScintillaLexerLua.html#7995cf1a6671a840abf061b3939b5e8b">refreshProperties</a> () +<li>bool <a class="el" href="classQextScintillaLexerLua.html#a83fe43c217c885d4665c830af19a9c4">foldCompact</a> () const +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaLexerLua.html#5dc890e770301ab5ecca0f37294c69e8">readProperties</a> (QSettings &qs, const QString &prefix) +<li>bool <a class="el" href="classQextScintillaLexerLua.html#92663d1d9f49a0218118d8e48b5c49ad">writeProperties</a> (QSettings &qs, const QString &prefix) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a> class encapsulates the Scintilla Lua lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a6"></a><!-- doxytag: member="QextScintillaLexerLua::@37" ref="dcc14a2e013a6ce9dd75a4e2740254a6" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the Lua lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a66718ab53e8288e80963d595c32e710fc"></a><!-- doxytag: member="Default" ref="dcc14a2e013a6ce9dd75a4e2740254a66718ab53e8288e80963d595c32e710fc" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a698cd8797d93b7ed7ec4b8ae0f7bb04d8"></a><!-- doxytag: member="Comment" ref="dcc14a2e013a6ce9dd75a4e2740254a698cd8797d93b7ed7ec4b8ae0f7bb04d8" args="" -->Comment</em> </td><td> +A block comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a6e69c6f51c5d32bd8e9d154d22570dcf9"></a><!-- doxytag: member="LineComment" ref="dcc14a2e013a6ce9dd75a4e2740254a6e69c6f51c5d32bd8e9d154d22570dcf9" args="" -->LineComment</em> </td><td> +A line comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a68fcd66fee6897b8fa4ddb9381b693323"></a><!-- doxytag: member="Number" ref="dcc14a2e013a6ce9dd75a4e2740254a68fcd66fee6897b8fa4ddb9381b693323" args="" -->Number</em> </td><td> +A number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a667b65a2ea707a283ee0a98af97cd4757"></a><!-- doxytag: member="Keyword" ref="dcc14a2e013a6ce9dd75a4e2740254a667b65a2ea707a283ee0a98af97cd4757" args="" -->Keyword</em> </td><td> +A keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a6a7bd9b08519b4fc35df1cae499c6766f"></a><!-- doxytag: member="String" ref="dcc14a2e013a6ce9dd75a4e2740254a6a7bd9b08519b4fc35df1cae499c6766f" args="" -->String</em> </td><td> +A string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a64bb9035d2a79de51309e1f8df1c2df05"></a><!-- doxytag: member="Character" ref="dcc14a2e013a6ce9dd75a4e2740254a64bb9035d2a79de51309e1f8df1c2df05" args="" -->Character</em> </td><td> +A character. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a6edabe8da9049cc395dd7c301c5dc8383"></a><!-- doxytag: member="LiteralString" ref="dcc14a2e013a6ce9dd75a4e2740254a6edabe8da9049cc395dd7c301c5dc8383" args="" -->LiteralString</em> </td><td> +A literal string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a68b9c95922bfc06feb46347bf07948238"></a><!-- doxytag: member="Preprocessor" ref="dcc14a2e013a6ce9dd75a4e2740254a68b9c95922bfc06feb46347bf07948238" args="" -->Preprocessor</em> </td><td> +Preprocessor. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a6e1d5da80ef70caafc99e4cadf944c524"></a><!-- doxytag: member="Operator" ref="dcc14a2e013a6ce9dd75a4e2740254a6e1d5da80ef70caafc99e4cadf944c524" args="" -->Operator</em> </td><td> +An operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a6b0f27236463324dc717da325eee01f9d"></a><!-- doxytag: member="Identifier" ref="dcc14a2e013a6ce9dd75a4e2740254a6b0f27236463324dc717da325eee01f9d" args="" -->Identifier</em> </td><td> +An identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a639d296e5c1424d043ece54afc3e012bb"></a><!-- doxytag: member="UnclosedString" ref="dcc14a2e013a6ce9dd75a4e2740254a639d296e5c1424d043ece54afc3e012bb" args="" -->UnclosedString</em> </td><td> +The end of a line where a string is not closed. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a6e48cbece3fd2db495d995c794b9aeb55"></a><!-- doxytag: member="BasicFunctions" ref="dcc14a2e013a6ce9dd75a4e2740254a6e48cbece3fd2db495d995c794b9aeb55" args="" -->BasicFunctions</em> </td><td> +Basic functions. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a6cf8fcc5533445fd6d4aea4ffc86a79ce"></a><!-- doxytag: member="StringTableMathsFunctions" ref="dcc14a2e013a6ce9dd75a4e2740254a6cf8fcc5533445fd6d4aea4ffc86a79ce" args="" -->StringTableMathsFunctions</em> </td><td> +String, table and maths functions. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="dcc14a2e013a6ce9dd75a4e2740254a6c8bd9b4dbcd836a98ecea083b95934ed"></a><!-- doxytag: member="CoroutinesIOSystemFacilities" ref="dcc14a2e013a6ce9dd75a4e2740254a6c8bd9b4dbcd836a98ecea083b95934ed" args="" -->CoroutinesIOSystemFacilities</em> </td><td> +Coroutines, I/O and system facilities. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="43fbffe049e40e7d9116debe7f5a0e01"></a><!-- doxytag: member="QextScintillaLexerLua::QextScintillaLexerLua" ref="43fbffe049e40e7d9116debe7f5a0e01" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerLua::QextScintillaLexerLua </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="58a3c460c4908a7456d1dab47631f9f0"></a><!-- doxytag: member="QextScintillaLexerLua::~QextScintillaLexerLua" ref="58a3c460c4908a7456d1dab47631f9f0" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerLua::~QextScintillaLexerLua </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="f2708e7a2aab690da33cd71770db2c93"></a><!-- doxytag: member="QextScintillaLexerLua::language" ref="f2708e7a2aab690da33cd71770db2c93" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerLua::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="578426b4bb8a4c2b16129a1c60b3911c"></a><!-- doxytag: member="QextScintillaLexerLua::lexer" ref="578426b4bb8a4c2b16129a1c60b3911c" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerLua::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="d30f09523c335c17b1a862c44beb4593"></a><!-- doxytag: member="QextScintillaLexerLua::color" ref="d30f09523c335c17b1a862c44beb4593" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerLua::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerLua.html#069160759fbd9f9942f15447580d53e1">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="cfde1f9e0a2ea5ea4581fddb2f889c1c"></a><!-- doxytag: member="QextScintillaLexerLua::eolFill" ref="cfde1f9e0a2ea5ea4581fddb2f889c1c" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerLua::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="a7779e1dcafb87304b611315bc525b90"></a><!-- doxytag: member="QextScintillaLexerLua::font" ref="a7779e1dcafb87304b611315bc525b90" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerLua::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="0f3e22697e17b377405a17a18115d60c"></a><!-- doxytag: member="QextScintillaLexerLua::keywords" ref="0f3e22697e17b377405a17a18115d60c" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerLua::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="de61e22ccec39eefe727b76f43ed000d"></a><!-- doxytag: member="QextScintillaLexerLua::description" ref="de61e22ccec39eefe727b76f43ed000d" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerLua::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="069160759fbd9f9942f15447580d53e1"></a><!-- doxytag: member="QextScintillaLexerLua::paper" ref="069160759fbd9f9942f15447580d53e1" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerLua::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerLua.html#d30f09523c335c17b1a862c44beb4593">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="7995cf1a6671a840abf061b3939b5e8b"></a><!-- doxytag: member="QextScintillaLexerLua::refreshProperties" ref="7995cf1a6671a840abf061b3939b5e8b" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexerLua::refreshProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Causes all properties to be refreshed by emitting the <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged()</a> signal as required. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="a83fe43c217c885d4665c830af19a9c4"></a><!-- doxytag: member="QextScintillaLexerLua::foldCompact" ref="a83fe43c217c885d4665c830af19a9c4" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerLua::foldCompact </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if trailing blank lines are included in a fold block.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerLua.html#5f48a7bed25b1481edbb51f3c7614da4">setFoldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="5f48a7bed25b1481edbb51f3c7614da4"></a><!-- doxytag: member="QextScintillaLexerLua::setFoldCompact" ref="5f48a7bed25b1481edbb51f3c7614da4" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerLua::setFoldCompact </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then trailing blank lines are included in a fold block. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerLua.html#a83fe43c217c885d4665c830af19a9c4">foldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="5dc890e770301ab5ecca0f37294c69e8"></a><!-- doxytag: member="QextScintillaLexerLua::readProperties" ref="5dc890e770301ab5ecca0f37294c69e8" args="(QSettings &qs, const QString &prefix)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerLua::readProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are read from the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="92663d1d9f49a0218118d8e48b5c49ad"></a><!-- doxytag: member="QextScintillaLexerLua::writeProperties" ref="92663d1d9f49a0218118d8e48b5c49ad" args="(QSettings &qs, const QString &prefix) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerLua::writeProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are written to the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerMakefile-members.html b/doc/html/classQextScintillaLexerMakefile-members.html new file mode 100644 index 0000000..857a037 --- /dev/null +++ b/doc/html/classQextScintillaLexerMakefile-members.html @@ -0,0 +1,75 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerMakefile Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#5b02a2a7e5a80d2d2cc81f2036ca681c">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b846000b8e546d01a058ac7c7ea0cec50">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b720e68d37fcef6406c60ed6052259339">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#4c478d2964f8accc12a4b4c9279e02e6">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#387e4dcdf8e641b71a7549f2e0f68922">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b3d4063ddbcfa91c6de4096c12a30103b">Error</a> enum value</td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#238697bc15872bc4a9e8ded40334ae54">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#c83c70da46c2b7a1c01e2856eb29b92e">language</a>() const </td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#3200a99b7847698fd0026462c4072f63">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b26ae31d04239b0104b20a6f9a0d8a672">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#79ab0f476fe0822d2d4979ea7d882165">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b09ea5936c88f92b968d58e6497f406dd">Preprocessor</a> enum value</td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#7817578c09777eec21970da119eea11c">QextScintillaLexerMakefile</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305be9e18b8db7aed3607eb3dc1d64efd425">Target</a> enum value</td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305be9f9fd591795b5ae83386a804c9aaafc">Variable</a> enum value</td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a>)</td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerMakefile.html#be9f4464a0d428ea3c9f7cae65b719e8">~QextScintillaLexerMakefile</a>()</td><td><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerMakefile.html b/doc/html/classQextScintillaLexerMakefile.html new file mode 100644 index 0000000..d7cdec5 --- /dev/null +++ b/doc/html/classQextScintillaLexerMakefile.html @@ -0,0 +1,318 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerMakefile Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerMakefile Class Reference</h1><!-- doxytag: class="QextScintillaLexerMakefile" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a> class encapsulates the Scintilla Makefile lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexermakefile.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerMakefile-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b720e68d37fcef6406c60ed6052259339">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b846000b8e546d01a058ac7c7ea0cec50">Comment</a> = 1 +<li><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b09ea5936c88f92b968d58e6497f406dd">Preprocessor</a> = 2 +<li><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305be9f9fd591795b5ae83386a804c9aaafc">Variable</a> = 3 +<li><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b26ae31d04239b0104b20a6f9a0d8a672">Operator</a> = 4 +<li><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305be9e18b8db7aed3607eb3dc1d64efd425">Target</a> = 5 +<li><a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b3d4063ddbcfa91c6de4096c12a30103b">Error</a> = 9 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b720e68d37fcef6406c60ed6052259339">Default</a> = 0, +<a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b846000b8e546d01a058ac7c7ea0cec50">Comment</a> = 1, +<a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b09ea5936c88f92b968d58e6497f406dd">Preprocessor</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305be9f9fd591795b5ae83386a804c9aaafc">Variable</a> = 3, +<a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b26ae31d04239b0104b20a6f9a0d8a672">Operator</a> = 4, +<a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305be9e18b8db7aed3607eb3dc1d64efd425">Target</a> = 5, +<br> + <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b3d4063ddbcfa91c6de4096c12a30103b">Error</a> = 9 +<br> + } +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerMakefile.html#7817578c09777eec21970da119eea11c">QextScintillaLexerMakefile</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerMakefile.html#be9f4464a0d428ea3c9f7cae65b719e8">~QextScintillaLexerMakefile</a> () +<li>const char * <a class="el" href="classQextScintillaLexerMakefile.html#c83c70da46c2b7a1c01e2856eb29b92e">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerMakefile.html#3200a99b7847698fd0026462c4072f63">lexer</a> () const +<li><a class="anchor" name="b02d4eebef884c071d71fc0d3d2db8bb"></a><!-- doxytag: member="QextScintillaLexerMakefile::wordCharacters" ref="b02d4eebef884c071d71fc0d3d2db8bb" args="() const " --> +const char * <b>wordCharacters</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerMakefile.html#5b02a2a7e5a80d2d2cc81f2036ca681c">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerMakefile.html#387e4dcdf8e641b71a7549f2e0f68922">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerMakefile.html#238697bc15872bc4a9e8ded40334ae54">font</a> (int style) const +<li>QString <a class="el" href="classQextScintillaLexerMakefile.html#4c478d2964f8accc12a4b4c9279e02e6">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerMakefile.html#79ab0f476fe0822d2d4979ea7d882165">paper</a> (int style) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a> class encapsulates the Scintilla Makefile lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="152b0cb529e142f85dd840a1ce99305b"></a><!-- doxytag: member="QextScintillaLexerMakefile::@38" ref="152b0cb529e142f85dd840a1ce99305b" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the Makefile lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="152b0cb529e142f85dd840a1ce99305b720e68d37fcef6406c60ed6052259339"></a><!-- doxytag: member="Default" ref="152b0cb529e142f85dd840a1ce99305b720e68d37fcef6406c60ed6052259339" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="152b0cb529e142f85dd840a1ce99305b846000b8e546d01a058ac7c7ea0cec50"></a><!-- doxytag: member="Comment" ref="152b0cb529e142f85dd840a1ce99305b846000b8e546d01a058ac7c7ea0cec50" args="" -->Comment</em> </td><td> +A comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="152b0cb529e142f85dd840a1ce99305b09ea5936c88f92b968d58e6497f406dd"></a><!-- doxytag: member="Preprocessor" ref="152b0cb529e142f85dd840a1ce99305b09ea5936c88f92b968d58e6497f406dd" args="" -->Preprocessor</em> </td><td> +A pre-processor directive. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="152b0cb529e142f85dd840a1ce99305be9f9fd591795b5ae83386a804c9aaafc"></a><!-- doxytag: member="Variable" ref="152b0cb529e142f85dd840a1ce99305be9f9fd591795b5ae83386a804c9aaafc" args="" -->Variable</em> </td><td> +A variable. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="152b0cb529e142f85dd840a1ce99305b26ae31d04239b0104b20a6f9a0d8a672"></a><!-- doxytag: member="Operator" ref="152b0cb529e142f85dd840a1ce99305b26ae31d04239b0104b20a6f9a0d8a672" args="" -->Operator</em> </td><td> +An operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="152b0cb529e142f85dd840a1ce99305be9e18b8db7aed3607eb3dc1d64efd425"></a><!-- doxytag: member="Target" ref="152b0cb529e142f85dd840a1ce99305be9e18b8db7aed3607eb3dc1d64efd425" args="" -->Target</em> </td><td> +A target. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="152b0cb529e142f85dd840a1ce99305b3d4063ddbcfa91c6de4096c12a30103b"></a><!-- doxytag: member="Error" ref="152b0cb529e142f85dd840a1ce99305b3d4063ddbcfa91c6de4096c12a30103b" args="" -->Error</em> </td><td> +An error. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="7817578c09777eec21970da119eea11c"></a><!-- doxytag: member="QextScintillaLexerMakefile::QextScintillaLexerMakefile" ref="7817578c09777eec21970da119eea11c" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerMakefile::QextScintillaLexerMakefile </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="be9f4464a0d428ea3c9f7cae65b719e8"></a><!-- doxytag: member="QextScintillaLexerMakefile::~QextScintillaLexerMakefile" ref="be9f4464a0d428ea3c9f7cae65b719e8" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerMakefile::~QextScintillaLexerMakefile </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="c83c70da46c2b7a1c01e2856eb29b92e"></a><!-- doxytag: member="QextScintillaLexerMakefile::language" ref="c83c70da46c2b7a1c01e2856eb29b92e" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerMakefile::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="3200a99b7847698fd0026462c4072f63"></a><!-- doxytag: member="QextScintillaLexerMakefile::lexer" ref="3200a99b7847698fd0026462c4072f63" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerMakefile::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="5b02a2a7e5a80d2d2cc81f2036ca681c"></a><!-- doxytag: member="QextScintillaLexerMakefile::color" ref="5b02a2a7e5a80d2d2cc81f2036ca681c" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerMakefile::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerMakefile.html#79ab0f476fe0822d2d4979ea7d882165">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="387e4dcdf8e641b71a7549f2e0f68922"></a><!-- doxytag: member="QextScintillaLexerMakefile::eolFill" ref="387e4dcdf8e641b71a7549f2e0f68922" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerMakefile::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="238697bc15872bc4a9e8ded40334ae54"></a><!-- doxytag: member="QextScintillaLexerMakefile::font" ref="238697bc15872bc4a9e8ded40334ae54" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerMakefile::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="4c478d2964f8accc12a4b4c9279e02e6"></a><!-- doxytag: member="QextScintillaLexerMakefile::description" ref="4c478d2964f8accc12a4b4c9279e02e6" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerMakefile::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="79ab0f476fe0822d2d4979ea7d882165"></a><!-- doxytag: member="QextScintillaLexerMakefile::paper" ref="79ab0f476fe0822d2d4979ea7d882165" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerMakefile::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerMakefile.html#5b02a2a7e5a80d2d2cc81f2036ca681c">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerPOV-members.html b/doc/html/classQextScintillaLexerPOV-members.html new file mode 100644 index 0000000..d35d76c --- /dev/null +++ b/doc/html/classQextScintillaLexerPOV-members.html @@ -0,0 +1,91 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerPOV Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc58fff4177384c4227dc817c81c82eedfb">BadDirective</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a>)</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#2d7002207c3c1191db99cb7c4f45863e">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5a289bdb1d1c8e7e573f1144789990a57">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5e5b3d09b36e9db444a751936565c99c0">CommentLine</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc54891d0fd9b3bd285d7c9fe2e563fb7a6">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#5fe1811445537d27a7cfdd9d25f7c155">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5f6cb3dd4cbc42838e446302162f71235">Directive</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#2dc32c72de91eb02b8166dc4ffe1e944">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#885b4c1be5bccef4460440a69742a4a2">foldComments</a>() const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#4dfeba7992ab3669da67b829f50dd201">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#ea0986f15e1bad99278b37a4822b5ccd">foldDirectives</a>() const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#54e012820a85e36069e6ed490d0fbee5">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5e395ebb7d44b0c09e47c99fed41c9357">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#80610e8114339c29e83bcb09a72f850b">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5119c97fcdb7a53eb6220fdb4a5cc7fad">KeywordSet6</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5318bebcb6c9fbe0f92c8c0ccb0845844">KeywordSet7</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5ef90639ed6765ac0c18452138d504ebc">KeywordSet8</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#853186789364ca310f1474f699082dfa">language</a>() const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#9b63a0fb4253efe915c8ead6d8546d64">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc54c22348dcd877e740878a37fd84f1b01">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5511e40759daff09aa602416ba2c8bc33">ObjectsCSGAppearance</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc51a685c160f236f6f8fce651b344829bf">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#16ad1f50b59c21d283fe3ca53df19876">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc504b9dcfd0b91ab60fa567232c077eb7a">PredefinedFunctions</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5f0014f82a6ab4e9e7c61a0413329cb5d">PredefinedIdentifiers</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#d8b6b9c830172af6cfcd9272a2d38c07">QextScintillaLexerPOV</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#74be8267ef68b998d7cabe8466153c24">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#5af07365484f36818be1317cdae81a1a">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#45939e964e3dc80f6a33cec839ae8049">setFoldComments</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#020d360ff2cf8ce24e86b4126da6458a">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#0cfbee2f757d6078faf4171a5310db1e">setFoldDirectives</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc55fdcc94c63c1743f66f96bf6512b7421">String</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc516f34a7884166864fd4db97d2a122173">TypesModifiersItems</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc599ae23c11691b5c881a431cbe4dc9863">UnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a>)</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#b1077b902db4549ddef0398fb6391489">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPOV.html#c45bb3f5d070f13d73ab96a8d4d73846">~QextScintillaLexerPOV</a>()</td><td><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerPOV.html b/doc/html/classQextScintillaLexerPOV.html new file mode 100644 index 0000000..b198427 --- /dev/null +++ b/doc/html/classQextScintillaLexerPOV.html @@ -0,0 +1,613 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerPOV Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerPOV Class Reference</h1><!-- doxytag: class="QextScintillaLexerPOV" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a> class encapsulates the Scintilla POV lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerpov.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerPOV-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc54891d0fd9b3bd285d7c9fe2e563fb7a6">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5a289bdb1d1c8e7e573f1144789990a57">Comment</a> = 1 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5e5b3d09b36e9db444a751936565c99c0">CommentLine</a> = 2 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc54c22348dcd877e740878a37fd84f1b01">Number</a> = 3 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc51a685c160f236f6f8fce651b344829bf">Operator</a> = 4 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5e395ebb7d44b0c09e47c99fed41c9357">Identifier</a> = 5 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc55fdcc94c63c1743f66f96bf6512b7421">String</a> = 6 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc599ae23c11691b5c881a431cbe4dc9863">UnclosedString</a> = 7 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5f6cb3dd4cbc42838e446302162f71235">Directive</a> = 8 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc58fff4177384c4227dc817c81c82eedfb">BadDirective</a> = 9 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5511e40759daff09aa602416ba2c8bc33">ObjectsCSGAppearance</a> = 10 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc516f34a7884166864fd4db97d2a122173">TypesModifiersItems</a> = 11 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5f0014f82a6ab4e9e7c61a0413329cb5d">PredefinedIdentifiers</a> = 12 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc504b9dcfd0b91ab60fa567232c077eb7a">PredefinedFunctions</a> = 13 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5119c97fcdb7a53eb6220fdb4a5cc7fad">KeywordSet6</a> = 14 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5318bebcb6c9fbe0f92c8c0ccb0845844">KeywordSet7</a> = 15 +<li><a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5ef90639ed6765ac0c18452138d504ebc">KeywordSet8</a> = 16 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc54891d0fd9b3bd285d7c9fe2e563fb7a6">Default</a> = 0, +<a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5a289bdb1d1c8e7e573f1144789990a57">Comment</a> = 1, +<a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5e5b3d09b36e9db444a751936565c99c0">CommentLine</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc54c22348dcd877e740878a37fd84f1b01">Number</a> = 3, +<a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc51a685c160f236f6f8fce651b344829bf">Operator</a> = 4, +<a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5e395ebb7d44b0c09e47c99fed41c9357">Identifier</a> = 5, +<br> + <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc55fdcc94c63c1743f66f96bf6512b7421">String</a> = 6, +<a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc599ae23c11691b5c881a431cbe4dc9863">UnclosedString</a> = 7, +<a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5f6cb3dd4cbc42838e446302162f71235">Directive</a> = 8, +<br> + <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc58fff4177384c4227dc817c81c82eedfb">BadDirective</a> = 9, +<a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5511e40759daff09aa602416ba2c8bc33">ObjectsCSGAppearance</a> = 10, +<a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc516f34a7884166864fd4db97d2a122173">TypesModifiersItems</a> = 11, +<br> + <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5f0014f82a6ab4e9e7c61a0413329cb5d">PredefinedIdentifiers</a> = 12, +<a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc504b9dcfd0b91ab60fa567232c077eb7a">PredefinedFunctions</a> = 13, +<a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5119c97fcdb7a53eb6220fdb4a5cc7fad">KeywordSet6</a> = 14, +<br> + <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5318bebcb6c9fbe0f92c8c0ccb0845844">KeywordSet7</a> = 15, +<a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5ef90639ed6765ac0c18452138d504ebc">KeywordSet8</a> = 16 +<br> + } +</ul> +<h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaLexerPOV.html#45939e964e3dc80f6a33cec839ae8049">setFoldComments</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerPOV.html#020d360ff2cf8ce24e86b4126da6458a">setFoldCompact</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerPOV.html#0cfbee2f757d6078faf4171a5310db1e">setFoldDirectives</a> (bool fold) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerPOV.html#d8b6b9c830172af6cfcd9272a2d38c07">QextScintillaLexerPOV</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerPOV.html#c45bb3f5d070f13d73ab96a8d4d73846">~QextScintillaLexerPOV</a> () +<li>const char * <a class="el" href="classQextScintillaLexerPOV.html#853186789364ca310f1474f699082dfa">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerPOV.html#9b63a0fb4253efe915c8ead6d8546d64">lexer</a> () const +<li><a class="anchor" name="44ad7eb3a7f7bcc610b9d4d188dbb826"></a><!-- doxytag: member="QextScintillaLexerPOV::braceStyle" ref="44ad7eb3a7f7bcc610b9d4d188dbb826" args="() const " --> +int <b>braceStyle</b> () const +<li><a class="anchor" name="d40999c37303f6af03a6477404cad403"></a><!-- doxytag: member="QextScintillaLexerPOV::wordCharacters" ref="d40999c37303f6af03a6477404cad403" args="() const " --> +const char * <b>wordCharacters</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerPOV.html#2d7002207c3c1191db99cb7c4f45863e">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerPOV.html#2dc32c72de91eb02b8166dc4ffe1e944">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerPOV.html#54e012820a85e36069e6ed490d0fbee5">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerPOV.html#80610e8114339c29e83bcb09a72f850b">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerPOV.html#5fe1811445537d27a7cfdd9d25f7c155">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerPOV.html#16ad1f50b59c21d283fe3ca53df19876">paper</a> (int style) const +<li>void <a class="el" href="classQextScintillaLexerPOV.html#5af07365484f36818be1317cdae81a1a">refreshProperties</a> () +<li>bool <a class="el" href="classQextScintillaLexerPOV.html#885b4c1be5bccef4460440a69742a4a2">foldComments</a> () const +<li>bool <a class="el" href="classQextScintillaLexerPOV.html#4dfeba7992ab3669da67b829f50dd201">foldCompact</a> () const +<li>bool <a class="el" href="classQextScintillaLexerPOV.html#ea0986f15e1bad99278b37a4822b5ccd">foldDirectives</a> () const +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaLexerPOV.html#74be8267ef68b998d7cabe8466153c24">readProperties</a> (QSettings &qs, const QString &prefix) +<li>bool <a class="el" href="classQextScintillaLexerPOV.html#b1077b902db4549ddef0398fb6391489">writeProperties</a> (QSettings &qs, const QString &prefix) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a> class encapsulates the Scintilla POV lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="e54572a24d718814c963d5451b745dc5"></a><!-- doxytag: member="QextScintillaLexerPOV::@40" ref="e54572a24d718814c963d5451b745dc5" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the POV lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc54891d0fd9b3bd285d7c9fe2e563fb7a6"></a><!-- doxytag: member="Default" ref="e54572a24d718814c963d5451b745dc54891d0fd9b3bd285d7c9fe2e563fb7a6" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc5a289bdb1d1c8e7e573f1144789990a57"></a><!-- doxytag: member="Comment" ref="e54572a24d718814c963d5451b745dc5a289bdb1d1c8e7e573f1144789990a57" args="" -->Comment</em> </td><td> +A comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc5e5b3d09b36e9db444a751936565c99c0"></a><!-- doxytag: member="CommentLine" ref="e54572a24d718814c963d5451b745dc5e5b3d09b36e9db444a751936565c99c0" args="" -->CommentLine</em> </td><td> +A comment line. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc54c22348dcd877e740878a37fd84f1b01"></a><!-- doxytag: member="Number" ref="e54572a24d718814c963d5451b745dc54c22348dcd877e740878a37fd84f1b01" args="" -->Number</em> </td><td> +A number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc51a685c160f236f6f8fce651b344829bf"></a><!-- doxytag: member="Operator" ref="e54572a24d718814c963d5451b745dc51a685c160f236f6f8fce651b344829bf" args="" -->Operator</em> </td><td> +An operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc5e395ebb7d44b0c09e47c99fed41c9357"></a><!-- doxytag: member="Identifier" ref="e54572a24d718814c963d5451b745dc5e395ebb7d44b0c09e47c99fed41c9357" args="" -->Identifier</em> </td><td> +An identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc55fdcc94c63c1743f66f96bf6512b7421"></a><!-- doxytag: member="String" ref="e54572a24d718814c963d5451b745dc55fdcc94c63c1743f66f96bf6512b7421" args="" -->String</em> </td><td> +A string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc599ae23c11691b5c881a431cbe4dc9863"></a><!-- doxytag: member="UnclosedString" ref="e54572a24d718814c963d5451b745dc599ae23c11691b5c881a431cbe4dc9863" args="" -->UnclosedString</em> </td><td> +The end of a line where a string is not closed. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc5f6cb3dd4cbc42838e446302162f71235"></a><!-- doxytag: member="Directive" ref="e54572a24d718814c963d5451b745dc5f6cb3dd4cbc42838e446302162f71235" args="" -->Directive</em> </td><td> +A directive. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc58fff4177384c4227dc817c81c82eedfb"></a><!-- doxytag: member="BadDirective" ref="e54572a24d718814c963d5451b745dc58fff4177384c4227dc817c81c82eedfb" args="" -->BadDirective</em> </td><td> +A bad directive. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc5511e40759daff09aa602416ba2c8bc33"></a><!-- doxytag: member="ObjectsCSGAppearance" ref="e54572a24d718814c963d5451b745dc5511e40759daff09aa602416ba2c8bc33" args="" -->ObjectsCSGAppearance</em> </td><td> +Objects, CSG and appearance. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc516f34a7884166864fd4db97d2a122173"></a><!-- doxytag: member="TypesModifiersItems" ref="e54572a24d718814c963d5451b745dc516f34a7884166864fd4db97d2a122173" args="" -->TypesModifiersItems</em> </td><td> +Types, modifiers and items. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc5f0014f82a6ab4e9e7c61a0413329cb5d"></a><!-- doxytag: member="PredefinedIdentifiers" ref="e54572a24d718814c963d5451b745dc5f0014f82a6ab4e9e7c61a0413329cb5d" args="" -->PredefinedIdentifiers</em> </td><td> +Predefined identifiers. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc504b9dcfd0b91ab60fa567232c077eb7a"></a><!-- doxytag: member="PredefinedFunctions" ref="e54572a24d718814c963d5451b745dc504b9dcfd0b91ab60fa567232c077eb7a" args="" -->PredefinedFunctions</em> </td><td> +Predefined identifiers. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc5119c97fcdb7a53eb6220fdb4a5cc7fad"></a><!-- doxytag: member="KeywordSet6" ref="e54572a24d718814c963d5451b745dc5119c97fcdb7a53eb6220fdb4a5cc7fad" args="" -->KeywordSet6</em> </td><td> +A keyword defined in keyword set number 6. The class must be sub-classed and re-implement <a class="el" href="classQextScintillaLexerPOV.html#80610e8114339c29e83bcb09a72f850b">keywords()</a> to make use of this style. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc5318bebcb6c9fbe0f92c8c0ccb0845844"></a><!-- doxytag: member="KeywordSet7" ref="e54572a24d718814c963d5451b745dc5318bebcb6c9fbe0f92c8c0ccb0845844" args="" -->KeywordSet7</em> </td><td> +A keyword defined in keyword set number 7. The class must be sub-classed and re-implement <a class="el" href="classQextScintillaLexerPOV.html#80610e8114339c29e83bcb09a72f850b">keywords()</a> to make use of this style. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="e54572a24d718814c963d5451b745dc5ef90639ed6765ac0c18452138d504ebc"></a><!-- doxytag: member="KeywordSet8" ref="e54572a24d718814c963d5451b745dc5ef90639ed6765ac0c18452138d504ebc" args="" -->KeywordSet8</em> </td><td> +A keyword defined in keyword set number 8. The class must be sub-classed and re-implement <a class="el" href="classQextScintillaLexerPOV.html#80610e8114339c29e83bcb09a72f850b">keywords()</a> to make use of this style. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="d8b6b9c830172af6cfcd9272a2d38c07"></a><!-- doxytag: member="QextScintillaLexerPOV::QextScintillaLexerPOV" ref="d8b6b9c830172af6cfcd9272a2d38c07" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerPOV::QextScintillaLexerPOV </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="c45bb3f5d070f13d73ab96a8d4d73846"></a><!-- doxytag: member="QextScintillaLexerPOV::~QextScintillaLexerPOV" ref="c45bb3f5d070f13d73ab96a8d4d73846" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerPOV::~QextScintillaLexerPOV </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="853186789364ca310f1474f699082dfa"></a><!-- doxytag: member="QextScintillaLexerPOV::language" ref="853186789364ca310f1474f699082dfa" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerPOV::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="9b63a0fb4253efe915c8ead6d8546d64"></a><!-- doxytag: member="QextScintillaLexerPOV::lexer" ref="9b63a0fb4253efe915c8ead6d8546d64" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerPOV::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="2d7002207c3c1191db99cb7c4f45863e"></a><!-- doxytag: member="QextScintillaLexerPOV::color" ref="2d7002207c3c1191db99cb7c4f45863e" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerPOV::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPOV.html#16ad1f50b59c21d283fe3ca53df19876">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="2dc32c72de91eb02b8166dc4ffe1e944"></a><!-- doxytag: member="QextScintillaLexerPOV::eolFill" ref="2dc32c72de91eb02b8166dc4ffe1e944" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPOV::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="54e012820a85e36069e6ed490d0fbee5"></a><!-- doxytag: member="QextScintillaLexerPOV::font" ref="54e012820a85e36069e6ed490d0fbee5" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerPOV::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="80610e8114339c29e83bcb09a72f850b"></a><!-- doxytag: member="QextScintillaLexerPOV::keywords" ref="80610e8114339c29e83bcb09a72f850b" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerPOV::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="5fe1811445537d27a7cfdd9d25f7c155"></a><!-- doxytag: member="QextScintillaLexerPOV::description" ref="5fe1811445537d27a7cfdd9d25f7c155" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerPOV::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="16ad1f50b59c21d283fe3ca53df19876"></a><!-- doxytag: member="QextScintillaLexerPOV::paper" ref="16ad1f50b59c21d283fe3ca53df19876" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerPOV::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPOV.html#2d7002207c3c1191db99cb7c4f45863e">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="5af07365484f36818be1317cdae81a1a"></a><!-- doxytag: member="QextScintillaLexerPOV::refreshProperties" ref="5af07365484f36818be1317cdae81a1a" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexerPOV::refreshProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Causes all properties to be refreshed by emitting the <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged()</a> signal as required. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="885b4c1be5bccef4460440a69742a4a2"></a><!-- doxytag: member="QextScintillaLexerPOV::foldComments" ref="885b4c1be5bccef4460440a69742a4a2" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPOV::foldComments </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if multi-line comment blocks can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPOV.html#45939e964e3dc80f6a33cec839ae8049">setFoldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="4dfeba7992ab3669da67b829f50dd201"></a><!-- doxytag: member="QextScintillaLexerPOV::foldCompact" ref="4dfeba7992ab3669da67b829f50dd201" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPOV::foldCompact </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if trailing blank lines are included in a fold block.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPOV.html#020d360ff2cf8ce24e86b4126da6458a">setFoldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="ea0986f15e1bad99278b37a4822b5ccd"></a><!-- doxytag: member="QextScintillaLexerPOV::foldDirectives" ref="ea0986f15e1bad99278b37a4822b5ccd" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPOV::foldDirectives </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if directives can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPOV.html#0cfbee2f757d6078faf4171a5310db1e">setFoldDirectives()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="45939e964e3dc80f6a33cec839ae8049"></a><!-- doxytag: member="QextScintillaLexerPOV::setFoldComments" ref="45939e964e3dc80f6a33cec839ae8049" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerPOV::setFoldComments </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then multi-line comment blocks can be folded. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPOV.html#885b4c1be5bccef4460440a69742a4a2">foldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="020d360ff2cf8ce24e86b4126da6458a"></a><!-- doxytag: member="QextScintillaLexerPOV::setFoldCompact" ref="020d360ff2cf8ce24e86b4126da6458a" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerPOV::setFoldCompact </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then trailing blank lines are included in a fold block. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPOV.html#4dfeba7992ab3669da67b829f50dd201">foldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="0cfbee2f757d6078faf4171a5310db1e"></a><!-- doxytag: member="QextScintillaLexerPOV::setFoldDirectives" ref="0cfbee2f757d6078faf4171a5310db1e" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerPOV::setFoldDirectives </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then directives can be folded. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPOV.html#ea0986f15e1bad99278b37a4822b5ccd">foldDirectives()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="74be8267ef68b998d7cabe8466153c24"></a><!-- doxytag: member="QextScintillaLexerPOV::readProperties" ref="74be8267ef68b998d7cabe8466153c24" args="(QSettings &qs, const QString &prefix)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPOV::readProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are read from the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="b1077b902db4549ddef0398fb6391489"></a><!-- doxytag: member="QextScintillaLexerPOV::writeProperties" ref="b1077b902db4549ddef0398fb6391489" args="(QSettings &qs, const QString &prefix) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPOV::writeProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are written to the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerPerl-members.html b/doc/html/classQextScintillaLexerPerl-members.html new file mode 100644 index 0000000..232bc24 --- /dev/null +++ b/doc/html/classQextScintillaLexerPerl-members.html @@ -0,0 +1,101 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerPerl Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a>, including all inherited members.<p><table> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd39c94f645a2984a78e7e72804ef3ebf9">Array</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd5b4ffdfeee7b9d0bcad8ffe674dcc83e">BacktickHereDocument</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd22d56a1c1a1a10bb1375046cd5dfbc83">Backticks</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a>)</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#24d7917a2e5a9856f014b7a51bb66a21">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdf9443583d7b7db41d9b394f3d3710eec">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd5840b9be5dfeb70ad8402cd4a571a464">DataSection</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd6433ea3da82ed54ed82cb9fa91f431a2">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#2e78a85ab81312eaf8199faec2edffd8">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd6420c6d488856b4840d662a313359935">DoubleQuotedHereDocument</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdbe54be6a366b9782db424a3858586b52">DoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#6c2179643375e26c86bfbc7258e52408">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd7b14c8c6df9c053cd42225f2fcc49feb">Error</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#72b38f72f70543e2c7779a8a0e304b0a">foldComments</a>() const </td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#4b8ea36946e93afca001e185894a4a0f">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#452d3bc05e97e04259be5cd39a8fffe8">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd536d090d1561f1cf200efca325fe7533">Hash</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd776ec3945c92e6b2d8f40b164c38f91e">HereDocumentDelimiter</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd67c8579274f20e20ba3f69c9f7e7240b">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdb58ff03dcf16f5987126e4895b1d9d83">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#0980393fc763fe06510f0ed38f67defc">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#b5da3350644b9b8fa2afd7808253983c">language</a>() const </td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#47221e83c089cb23a17f7ad0c1cbf2a9">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd1a2544dd4892c2321ab64e8064502804">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdd7ae22a2919bbedf43fb7489ac98ee08">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#8ca422a6d7f5dac8504807b471ca87da">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd75244ee749dfa58697bab175b0237af1">POD</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd58509059db3ab2ec889bd295748055de">PODVerbatim</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#f464c55ef527cfee1a4d99b9d79680a7">QextScintillaLexerPerl</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd933aeab1fe465716d4f97bc97cebce49">QuotedStringQ</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdfb8a8ae159788ef51bbdebd04ca5778a">QuotedStringQQ</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd0d121c9178499a2fa6130ae99678c2b8">QuotedStringQR</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd0f6aedbdee98cb414e8910ab50109223">QuotedStringQW</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd545adfb2d84a0f161e560a0023588318">QuotedStringQX</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#a2e0f7cdb50bb439f348e57e3d6f8c76">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#8bfda96d71deb1b8c930c1b2aa02ae33">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdc8df05443c05fa04021c57ae99e9f087">Regex</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd4cc9525151756c87ccd08730dab11fe8">Scalar</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#8bb2ecf0badf70014a499cc063921b95">setFoldComments</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#4a870962b7e6ba927260600fb022ac9e">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdb84f237d13384cb47bcf579f29a77eab">SingleQuotedHereDocument</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd7b9ff96a73c4d75e880eb0977e18a24f">SingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdff754f40f75be7c2676bfc9092743c91">Substitution</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd3304777ed864bcb0e356bb6571063922">SymbolTable</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdc61d78aea09ff8c9c19282f7fc3c344f">WhiteSpace</a> enum value</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a>)</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#856e7b88f288064e36f2144bf97fdce5">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPerl.html#8067cc9c836bd237ee0dd8f86c115339">~QextScintillaLexerPerl</a>()</td><td><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerPerl.html b/doc/html/classQextScintillaLexerPerl.html new file mode 100644 index 0000000..dd8d423 --- /dev/null +++ b/doc/html/classQextScintillaLexerPerl.html @@ -0,0 +1,621 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerPerl Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerPerl Class Reference</h1><!-- doxytag: class="QextScintillaLexerPerl" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a> class encapsulates the Scintilla Perl lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerperl.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerPerl-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd6433ea3da82ed54ed82cb9fa91f431a2">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdc61d78aea09ff8c9c19282f7fc3c344f">WhiteSpace</a> = Default +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd7b14c8c6df9c053cd42225f2fcc49feb">Error</a> = 1 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdf9443583d7b7db41d9b394f3d3710eec">Comment</a> = 2 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd75244ee749dfa58697bab175b0237af1">POD</a> = 3 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd1a2544dd4892c2321ab64e8064502804">Number</a> = 4 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdb58ff03dcf16f5987126e4895b1d9d83">Keyword</a> = 5 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdbe54be6a366b9782db424a3858586b52">DoubleQuotedString</a> = 6 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd7b9ff96a73c4d75e880eb0977e18a24f">SingleQuotedString</a> = 7 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdd7ae22a2919bbedf43fb7489ac98ee08">Operator</a> = 10 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd67c8579274f20e20ba3f69c9f7e7240b">Identifier</a> = 11 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd4cc9525151756c87ccd08730dab11fe8">Scalar</a> = 12 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd39c94f645a2984a78e7e72804ef3ebf9">Array</a> = 13 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd536d090d1561f1cf200efca325fe7533">Hash</a> = 14 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd3304777ed864bcb0e356bb6571063922">SymbolTable</a> = 15 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdc8df05443c05fa04021c57ae99e9f087">Regex</a> = 17 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdff754f40f75be7c2676bfc9092743c91">Substitution</a> = 18 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd22d56a1c1a1a10bb1375046cd5dfbc83">Backticks</a> = 20 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd5840b9be5dfeb70ad8402cd4a571a464">DataSection</a> = 21 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd776ec3945c92e6b2d8f40b164c38f91e">HereDocumentDelimiter</a> = 22 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdb84f237d13384cb47bcf579f29a77eab">SingleQuotedHereDocument</a> = 23 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd6420c6d488856b4840d662a313359935">DoubleQuotedHereDocument</a> = 24 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd5b4ffdfeee7b9d0bcad8ffe674dcc83e">BacktickHereDocument</a> = 25 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd933aeab1fe465716d4f97bc97cebce49">QuotedStringQ</a> = 26 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdfb8a8ae159788ef51bbdebd04ca5778a">QuotedStringQQ</a> = 27 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd545adfb2d84a0f161e560a0023588318">QuotedStringQX</a> = 28 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd0d121c9178499a2fa6130ae99678c2b8">QuotedStringQR</a> = 29 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd0f6aedbdee98cb414e8910ab50109223">QuotedStringQW</a> = 30 +<li><a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd58509059db3ab2ec889bd295748055de">PODVerbatim</a> = 31 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd6433ea3da82ed54ed82cb9fa91f431a2">Default</a> = 0, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdc61d78aea09ff8c9c19282f7fc3c344f">WhiteSpace</a> = Default, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd7b14c8c6df9c053cd42225f2fcc49feb">Error</a> = 1, +<br> + <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdf9443583d7b7db41d9b394f3d3710eec">Comment</a> = 2, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd75244ee749dfa58697bab175b0237af1">POD</a> = 3, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd1a2544dd4892c2321ab64e8064502804">Number</a> = 4, +<br> + <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdb58ff03dcf16f5987126e4895b1d9d83">Keyword</a> = 5, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdbe54be6a366b9782db424a3858586b52">DoubleQuotedString</a> = 6, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd7b9ff96a73c4d75e880eb0977e18a24f">SingleQuotedString</a> = 7, +<br> + <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdd7ae22a2919bbedf43fb7489ac98ee08">Operator</a> = 10, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd67c8579274f20e20ba3f69c9f7e7240b">Identifier</a> = 11, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd4cc9525151756c87ccd08730dab11fe8">Scalar</a> = 12, +<br> + <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd39c94f645a2984a78e7e72804ef3ebf9">Array</a> = 13, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd536d090d1561f1cf200efca325fe7533">Hash</a> = 14, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd3304777ed864bcb0e356bb6571063922">SymbolTable</a> = 15, +<br> + <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdc8df05443c05fa04021c57ae99e9f087">Regex</a> = 17, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdff754f40f75be7c2676bfc9092743c91">Substitution</a> = 18, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd22d56a1c1a1a10bb1375046cd5dfbc83">Backticks</a> = 20, +<br> + <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd5840b9be5dfeb70ad8402cd4a571a464">DataSection</a> = 21, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd776ec3945c92e6b2d8f40b164c38f91e">HereDocumentDelimiter</a> = 22, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdb84f237d13384cb47bcf579f29a77eab">SingleQuotedHereDocument</a> = 23, +<br> + <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd6420c6d488856b4840d662a313359935">DoubleQuotedHereDocument</a> = 24, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd5b4ffdfeee7b9d0bcad8ffe674dcc83e">BacktickHereDocument</a> = 25, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd933aeab1fe465716d4f97bc97cebce49">QuotedStringQ</a> = 26, +<br> + <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdfb8a8ae159788ef51bbdebd04ca5778a">QuotedStringQQ</a> = 27, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd545adfb2d84a0f161e560a0023588318">QuotedStringQX</a> = 28, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd0d121c9178499a2fa6130ae99678c2b8">QuotedStringQR</a> = 29, +<br> + <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd0f6aedbdee98cb414e8910ab50109223">QuotedStringQW</a> = 30, +<a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd58509059db3ab2ec889bd295748055de">PODVerbatim</a> = 31 +<br> + } +</ul> +<h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaLexerPerl.html#8bb2ecf0badf70014a499cc063921b95">setFoldComments</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerPerl.html#4a870962b7e6ba927260600fb022ac9e">setFoldCompact</a> (bool fold) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerPerl.html#f464c55ef527cfee1a4d99b9d79680a7">QextScintillaLexerPerl</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerPerl.html#8067cc9c836bd237ee0dd8f86c115339">~QextScintillaLexerPerl</a> () +<li>const char * <a class="el" href="classQextScintillaLexerPerl.html#b5da3350644b9b8fa2afd7808253983c">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerPerl.html#47221e83c089cb23a17f7ad0c1cbf2a9">lexer</a> () const +<li><a class="anchor" name="8e1b702815e4ca7bcd3a5633d9b877cf"></a><!-- doxytag: member="QextScintillaLexerPerl::braceStyle" ref="8e1b702815e4ca7bcd3a5633d9b877cf" args="() const " --> +int <b>braceStyle</b> () const +<li><a class="anchor" name="4208d859094183f043420f11e85999ff"></a><!-- doxytag: member="QextScintillaLexerPerl::wordCharacters" ref="4208d859094183f043420f11e85999ff" args="() const " --> +const char * <b>wordCharacters</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerPerl.html#24d7917a2e5a9856f014b7a51bb66a21">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerPerl.html#6c2179643375e26c86bfbc7258e52408">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerPerl.html#452d3bc05e97e04259be5cd39a8fffe8">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerPerl.html#0980393fc763fe06510f0ed38f67defc">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerPerl.html#2e78a85ab81312eaf8199faec2edffd8">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerPerl.html#8ca422a6d7f5dac8504807b471ca87da">paper</a> (int style) const +<li>void <a class="el" href="classQextScintillaLexerPerl.html#8bfda96d71deb1b8c930c1b2aa02ae33">refreshProperties</a> () +<li>bool <a class="el" href="classQextScintillaLexerPerl.html#72b38f72f70543e2c7779a8a0e304b0a">foldComments</a> () const +<li>bool <a class="el" href="classQextScintillaLexerPerl.html#4b8ea36946e93afca001e185894a4a0f">foldCompact</a> () const +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaLexerPerl.html#a2e0f7cdb50bb439f348e57e3d6f8c76">readProperties</a> (QSettings &qs, const QString &prefix) +<li>bool <a class="el" href="classQextScintillaLexerPerl.html#856e7b88f288064e36f2144bf97fdce5">writeProperties</a> (QSettings &qs, const QString &prefix) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a> class encapsulates the Scintilla Perl lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd"></a><!-- doxytag: member="QextScintillaLexerPerl::@39" ref="3adbc396a8aceddb3e327505860b1fbd" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the Perl lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd6433ea3da82ed54ed82cb9fa91f431a2"></a><!-- doxytag: member="Default" ref="3adbc396a8aceddb3e327505860b1fbd6433ea3da82ed54ed82cb9fa91f431a2" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbdc61d78aea09ff8c9c19282f7fc3c344f"></a><!-- doxytag: member="WhiteSpace" ref="3adbc396a8aceddb3e327505860b1fbdc61d78aea09ff8c9c19282f7fc3c344f" args="" -->WhiteSpace</em> </td><td> +<dl compact><dt><b><a class="el" href="deprecated.html#_deprecated000003">Deprecated:</a></b></dt><dd>White space. </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd7b14c8c6df9c053cd42225f2fcc49feb"></a><!-- doxytag: member="Error" ref="3adbc396a8aceddb3e327505860b1fbd7b14c8c6df9c053cd42225f2fcc49feb" args="" -->Error</em> </td><td> +An error. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbdf9443583d7b7db41d9b394f3d3710eec"></a><!-- doxytag: member="Comment" ref="3adbc396a8aceddb3e327505860b1fbdf9443583d7b7db41d9b394f3d3710eec" args="" -->Comment</em> </td><td> +A comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd75244ee749dfa58697bab175b0237af1"></a><!-- doxytag: member="POD" ref="3adbc396a8aceddb3e327505860b1fbd75244ee749dfa58697bab175b0237af1" args="" -->POD</em> </td><td> +A POD. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd1a2544dd4892c2321ab64e8064502804"></a><!-- doxytag: member="Number" ref="3adbc396a8aceddb3e327505860b1fbd1a2544dd4892c2321ab64e8064502804" args="" -->Number</em> </td><td> +A number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbdb58ff03dcf16f5987126e4895b1d9d83"></a><!-- doxytag: member="Keyword" ref="3adbc396a8aceddb3e327505860b1fbdb58ff03dcf16f5987126e4895b1d9d83" args="" -->Keyword</em> </td><td> +A keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbdbe54be6a366b9782db424a3858586b52"></a><!-- doxytag: member="DoubleQuotedString" ref="3adbc396a8aceddb3e327505860b1fbdbe54be6a366b9782db424a3858586b52" args="" -->DoubleQuotedString</em> </td><td> +A double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd7b9ff96a73c4d75e880eb0977e18a24f"></a><!-- doxytag: member="SingleQuotedString" ref="3adbc396a8aceddb3e327505860b1fbd7b9ff96a73c4d75e880eb0977e18a24f" args="" -->SingleQuotedString</em> </td><td> +A single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbdd7ae22a2919bbedf43fb7489ac98ee08"></a><!-- doxytag: member="Operator" ref="3adbc396a8aceddb3e327505860b1fbdd7ae22a2919bbedf43fb7489ac98ee08" args="" -->Operator</em> </td><td> +An operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd67c8579274f20e20ba3f69c9f7e7240b"></a><!-- doxytag: member="Identifier" ref="3adbc396a8aceddb3e327505860b1fbd67c8579274f20e20ba3f69c9f7e7240b" args="" -->Identifier</em> </td><td> +An identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd4cc9525151756c87ccd08730dab11fe8"></a><!-- doxytag: member="Scalar" ref="3adbc396a8aceddb3e327505860b1fbd4cc9525151756c87ccd08730dab11fe8" args="" -->Scalar</em> </td><td> +A scalar. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd39c94f645a2984a78e7e72804ef3ebf9"></a><!-- doxytag: member="Array" ref="3adbc396a8aceddb3e327505860b1fbd39c94f645a2984a78e7e72804ef3ebf9" args="" -->Array</em> </td><td> +An array. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd536d090d1561f1cf200efca325fe7533"></a><!-- doxytag: member="Hash" ref="3adbc396a8aceddb3e327505860b1fbd536d090d1561f1cf200efca325fe7533" args="" -->Hash</em> </td><td> +A hash. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd3304777ed864bcb0e356bb6571063922"></a><!-- doxytag: member="SymbolTable" ref="3adbc396a8aceddb3e327505860b1fbd3304777ed864bcb0e356bb6571063922" args="" -->SymbolTable</em> </td><td> +A symbol table. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbdc8df05443c05fa04021c57ae99e9f087"></a><!-- doxytag: member="Regex" ref="3adbc396a8aceddb3e327505860b1fbdc8df05443c05fa04021c57ae99e9f087" args="" -->Regex</em> </td><td> +A regular expression. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbdff754f40f75be7c2676bfc9092743c91"></a><!-- doxytag: member="Substitution" ref="3adbc396a8aceddb3e327505860b1fbdff754f40f75be7c2676bfc9092743c91" args="" -->Substitution</em> </td><td> +A substitution. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd22d56a1c1a1a10bb1375046cd5dfbc83"></a><!-- doxytag: member="Backticks" ref="3adbc396a8aceddb3e327505860b1fbd22d56a1c1a1a10bb1375046cd5dfbc83" args="" -->Backticks</em> </td><td> +Backticks. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd5840b9be5dfeb70ad8402cd4a571a464"></a><!-- doxytag: member="DataSection" ref="3adbc396a8aceddb3e327505860b1fbd5840b9be5dfeb70ad8402cd4a571a464" args="" -->DataSection</em> </td><td> +A data section. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd776ec3945c92e6b2d8f40b164c38f91e"></a><!-- doxytag: member="HereDocumentDelimiter" ref="3adbc396a8aceddb3e327505860b1fbd776ec3945c92e6b2d8f40b164c38f91e" args="" -->HereDocumentDelimiter</em> </td><td> +A here document delimiter. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbdb84f237d13384cb47bcf579f29a77eab"></a><!-- doxytag: member="SingleQuotedHereDocument" ref="3adbc396a8aceddb3e327505860b1fbdb84f237d13384cb47bcf579f29a77eab" args="" -->SingleQuotedHereDocument</em> </td><td> +A single quoted here document. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd6420c6d488856b4840d662a313359935"></a><!-- doxytag: member="DoubleQuotedHereDocument" ref="3adbc396a8aceddb3e327505860b1fbd6420c6d488856b4840d662a313359935" args="" -->DoubleQuotedHereDocument</em> </td><td> +A double quoted here document. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd5b4ffdfeee7b9d0bcad8ffe674dcc83e"></a><!-- doxytag: member="BacktickHereDocument" ref="3adbc396a8aceddb3e327505860b1fbd5b4ffdfeee7b9d0bcad8ffe674dcc83e" args="" -->BacktickHereDocument</em> </td><td> +A backtick here document. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd933aeab1fe465716d4f97bc97cebce49"></a><!-- doxytag: member="QuotedStringQ" ref="3adbc396a8aceddb3e327505860b1fbd933aeab1fe465716d4f97bc97cebce49" args="" -->QuotedStringQ</em> </td><td> +A quoted string (q). </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbdfb8a8ae159788ef51bbdebd04ca5778a"></a><!-- doxytag: member="QuotedStringQQ" ref="3adbc396a8aceddb3e327505860b1fbdfb8a8ae159788ef51bbdebd04ca5778a" args="" -->QuotedStringQQ</em> </td><td> +A quoted string (qq). </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd545adfb2d84a0f161e560a0023588318"></a><!-- doxytag: member="QuotedStringQX" ref="3adbc396a8aceddb3e327505860b1fbd545adfb2d84a0f161e560a0023588318" args="" -->QuotedStringQX</em> </td><td> +A quoted string (qx). </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd0d121c9178499a2fa6130ae99678c2b8"></a><!-- doxytag: member="QuotedStringQR" ref="3adbc396a8aceddb3e327505860b1fbd0d121c9178499a2fa6130ae99678c2b8" args="" -->QuotedStringQR</em> </td><td> +A quoted string (qr). </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd0f6aedbdee98cb414e8910ab50109223"></a><!-- doxytag: member="QuotedStringQW" ref="3adbc396a8aceddb3e327505860b1fbd0f6aedbdee98cb414e8910ab50109223" args="" -->QuotedStringQW</em> </td><td> +A quoted string (qw). </td></tr> +<tr><td valign="top"><em><a class="anchor" name="3adbc396a8aceddb3e327505860b1fbd58509059db3ab2ec889bd295748055de"></a><!-- doxytag: member="PODVerbatim" ref="3adbc396a8aceddb3e327505860b1fbd58509059db3ab2ec889bd295748055de" args="" -->PODVerbatim</em> </td><td> +A verbatim POD. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="f464c55ef527cfee1a4d99b9d79680a7"></a><!-- doxytag: member="QextScintillaLexerPerl::QextScintillaLexerPerl" ref="f464c55ef527cfee1a4d99b9d79680a7" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerPerl::QextScintillaLexerPerl </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="8067cc9c836bd237ee0dd8f86c115339"></a><!-- doxytag: member="QextScintillaLexerPerl::~QextScintillaLexerPerl" ref="8067cc9c836bd237ee0dd8f86c115339" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerPerl::~QextScintillaLexerPerl </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="b5da3350644b9b8fa2afd7808253983c"></a><!-- doxytag: member="QextScintillaLexerPerl::language" ref="b5da3350644b9b8fa2afd7808253983c" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerPerl::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="47221e83c089cb23a17f7ad0c1cbf2a9"></a><!-- doxytag: member="QextScintillaLexerPerl::lexer" ref="47221e83c089cb23a17f7ad0c1cbf2a9" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerPerl::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="24d7917a2e5a9856f014b7a51bb66a21"></a><!-- doxytag: member="QextScintillaLexerPerl::color" ref="24d7917a2e5a9856f014b7a51bb66a21" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerPerl::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPerl.html#8ca422a6d7f5dac8504807b471ca87da">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="6c2179643375e26c86bfbc7258e52408"></a><!-- doxytag: member="QextScintillaLexerPerl::eolFill" ref="6c2179643375e26c86bfbc7258e52408" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPerl::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="452d3bc05e97e04259be5cd39a8fffe8"></a><!-- doxytag: member="QextScintillaLexerPerl::font" ref="452d3bc05e97e04259be5cd39a8fffe8" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerPerl::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="0980393fc763fe06510f0ed38f67defc"></a><!-- doxytag: member="QextScintillaLexerPerl::keywords" ref="0980393fc763fe06510f0ed38f67defc" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerPerl::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="2e78a85ab81312eaf8199faec2edffd8"></a><!-- doxytag: member="QextScintillaLexerPerl::description" ref="2e78a85ab81312eaf8199faec2edffd8" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerPerl::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="8ca422a6d7f5dac8504807b471ca87da"></a><!-- doxytag: member="QextScintillaLexerPerl::paper" ref="8ca422a6d7f5dac8504807b471ca87da" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerPerl::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPerl.html#24d7917a2e5a9856f014b7a51bb66a21">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="8bfda96d71deb1b8c930c1b2aa02ae33"></a><!-- doxytag: member="QextScintillaLexerPerl::refreshProperties" ref="8bfda96d71deb1b8c930c1b2aa02ae33" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexerPerl::refreshProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Causes all properties to be refreshed by emitting the <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged()</a> signal as required. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="72b38f72f70543e2c7779a8a0e304b0a"></a><!-- doxytag: member="QextScintillaLexerPerl::foldComments" ref="72b38f72f70543e2c7779a8a0e304b0a" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPerl::foldComments </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if multi-line comment blocks can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPerl.html#8bb2ecf0badf70014a499cc063921b95">setFoldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="4b8ea36946e93afca001e185894a4a0f"></a><!-- doxytag: member="QextScintillaLexerPerl::foldCompact" ref="4b8ea36946e93afca001e185894a4a0f" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPerl::foldCompact </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if trailing blank lines are included in a fold block.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPerl.html#4a870962b7e6ba927260600fb022ac9e">setFoldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="8bb2ecf0badf70014a499cc063921b95"></a><!-- doxytag: member="QextScintillaLexerPerl::setFoldComments" ref="8bb2ecf0badf70014a499cc063921b95" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerPerl::setFoldComments </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then multi-line comment blocks can be folded. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPerl.html#72b38f72f70543e2c7779a8a0e304b0a">foldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="4a870962b7e6ba927260600fb022ac9e"></a><!-- doxytag: member="QextScintillaLexerPerl::setFoldCompact" ref="4a870962b7e6ba927260600fb022ac9e" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerPerl::setFoldCompact </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then trailing blank lines are included in a fold block. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPerl.html#4b8ea36946e93afca001e185894a4a0f">foldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a2e0f7cdb50bb439f348e57e3d6f8c76"></a><!-- doxytag: member="QextScintillaLexerPerl::readProperties" ref="a2e0f7cdb50bb439f348e57e3d6f8c76" args="(QSettings &qs, const QString &prefix)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPerl::readProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are read from the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="856e7b88f288064e36f2144bf97fdce5"></a><!-- doxytag: member="QextScintillaLexerPerl::writeProperties" ref="856e7b88f288064e36f2144bf97fdce5" args="(QSettings &qs, const QString &prefix) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPerl::writeProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are written to the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerProperties-members.html b/doc/html/classQextScintillaLexerProperties-members.html new file mode 100644 index 0000000..31d1f01 --- /dev/null +++ b/doc/html/classQextScintillaLexerProperties-members.html @@ -0,0 +1,75 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerProperties Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a>, including all inherited members.<p><table> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275736a3b70e16d94a60cda8ce4b39104d4">Assignment</a> enum value</td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#29f362422452175f80aba4a0a30e91d8">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275ec0ef177625174b98e0d7984d7fc70fc">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275dc12c096ec8121aad3994377922d0b37">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275af2af2c3cb1ba1ce6b011e10fbeecc6b">DefaultValue</a> enum value</td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#419785e6507ee675e2bc06c1fc455806">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#b673e4f3569b9b5002a7e5fd75c72dae">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#fad51b4b63aac4551f5bc5fe57b400c9">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#7070a1985d0a6f3aec0e2e06e39a3eba">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#436334f1bed5891cfbf3f9efd45e1298">language</a>() const </td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#de484f827e973c4a10ed8ffee30ee6a0">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#3d6a97fbd72128254ce96c4f98e8f121">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#be0f77d8beaf8dabe3d99db45f056d7b">QextScintillaLexerProperties</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#eaa2f7a219cd9c2ca923b2595b268c35">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#abf5e5dfb111502bd3b96a8073924746">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275e54e379d346512d24c43222c626e2345">Section</a> enum value</td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#bc8c42d3facfceaa7c5eaeddf7e4285c">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a>)</td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#cc1b8d0916329dab170624db1505b2a6">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerProperties.html#aa826d270e365f358c84a027bee3d167">~QextScintillaLexerProperties</a>()</td><td><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerProperties.html b/doc/html/classQextScintillaLexerProperties.html new file mode 100644 index 0000000..e837e40 --- /dev/null +++ b/doc/html/classQextScintillaLexerProperties.html @@ -0,0 +1,450 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerProperties Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerProperties Class Reference</h1><!-- doxytag: class="QextScintillaLexerProperties" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a> class encapsulates the Scintilla Properties lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerproperties.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerProperties-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275dc12c096ec8121aad3994377922d0b37">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275ec0ef177625174b98e0d7984d7fc70fc">Comment</a> = 1 +<li><a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275e54e379d346512d24c43222c626e2345">Section</a> = 2 +<li><a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275736a3b70e16d94a60cda8ce4b39104d4">Assignment</a> = 3 +<li><a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275af2af2c3cb1ba1ce6b011e10fbeecc6b">DefaultValue</a> = 4 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275dc12c096ec8121aad3994377922d0b37">Default</a> = 0, +<a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275ec0ef177625174b98e0d7984d7fc70fc">Comment</a> = 1, +<a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275e54e379d346512d24c43222c626e2345">Section</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275736a3b70e16d94a60cda8ce4b39104d4">Assignment</a> = 3, +<a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275af2af2c3cb1ba1ce6b011e10fbeecc6b">DefaultValue</a> = 4 +<br> + } +</ul> +<h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaLexerProperties.html#bc8c42d3facfceaa7c5eaeddf7e4285c">setFoldCompact</a> (bool fold) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerProperties.html#be0f77d8beaf8dabe3d99db45f056d7b">QextScintillaLexerProperties</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerProperties.html#aa826d270e365f358c84a027bee3d167">~QextScintillaLexerProperties</a> () +<li>const char * <a class="el" href="classQextScintillaLexerProperties.html#436334f1bed5891cfbf3f9efd45e1298">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerProperties.html#de484f827e973c4a10ed8ffee30ee6a0">lexer</a> () const +<li><a class="anchor" name="a6a24c34536209cfa71381ed11850977"></a><!-- doxytag: member="QextScintillaLexerProperties::wordCharacters" ref="a6a24c34536209cfa71381ed11850977" args="() const " --> +const char * <b>wordCharacters</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerProperties.html#29f362422452175f80aba4a0a30e91d8">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerProperties.html#b673e4f3569b9b5002a7e5fd75c72dae">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerProperties.html#7070a1985d0a6f3aec0e2e06e39a3eba">font</a> (int style) const +<li>QString <a class="el" href="classQextScintillaLexerProperties.html#419785e6507ee675e2bc06c1fc455806">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerProperties.html#3d6a97fbd72128254ce96c4f98e8f121">paper</a> (int style) const +<li>void <a class="el" href="classQextScintillaLexerProperties.html#abf5e5dfb111502bd3b96a8073924746">refreshProperties</a> () +<li>bool <a class="el" href="classQextScintillaLexerProperties.html#fad51b4b63aac4551f5bc5fe57b400c9">foldCompact</a> () const +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaLexerProperties.html#eaa2f7a219cd9c2ca923b2595b268c35">readProperties</a> (QSettings &qs, const QString &prefix) +<li>bool <a class="el" href="classQextScintillaLexerProperties.html#cc1b8d0916329dab170624db1505b2a6">writeProperties</a> (QSettings &qs, const QString &prefix) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a> class encapsulates the Scintilla Properties lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="ffbf836ee1c908e09f7b59bbea272275"></a><!-- doxytag: member="QextScintillaLexerProperties::@41" ref="ffbf836ee1c908e09f7b59bbea272275" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the Properties lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="ffbf836ee1c908e09f7b59bbea272275dc12c096ec8121aad3994377922d0b37"></a><!-- doxytag: member="Default" ref="ffbf836ee1c908e09f7b59bbea272275dc12c096ec8121aad3994377922d0b37" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ffbf836ee1c908e09f7b59bbea272275ec0ef177625174b98e0d7984d7fc70fc"></a><!-- doxytag: member="Comment" ref="ffbf836ee1c908e09f7b59bbea272275ec0ef177625174b98e0d7984d7fc70fc" args="" -->Comment</em> </td><td> +A comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ffbf836ee1c908e09f7b59bbea272275e54e379d346512d24c43222c626e2345"></a><!-- doxytag: member="Section" ref="ffbf836ee1c908e09f7b59bbea272275e54e379d346512d24c43222c626e2345" args="" -->Section</em> </td><td> +A section. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ffbf836ee1c908e09f7b59bbea272275736a3b70e16d94a60cda8ce4b39104d4"></a><!-- doxytag: member="Assignment" ref="ffbf836ee1c908e09f7b59bbea272275736a3b70e16d94a60cda8ce4b39104d4" args="" -->Assignment</em> </td><td> +An assignment operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="ffbf836ee1c908e09f7b59bbea272275af2af2c3cb1ba1ce6b011e10fbeecc6b"></a><!-- doxytag: member="DefaultValue" ref="ffbf836ee1c908e09f7b59bbea272275af2af2c3cb1ba1ce6b011e10fbeecc6b" args="" -->DefaultValue</em> </td><td> +A default value. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="be0f77d8beaf8dabe3d99db45f056d7b"></a><!-- doxytag: member="QextScintillaLexerProperties::QextScintillaLexerProperties" ref="be0f77d8beaf8dabe3d99db45f056d7b" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerProperties::QextScintillaLexerProperties </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="aa826d270e365f358c84a027bee3d167"></a><!-- doxytag: member="QextScintillaLexerProperties::~QextScintillaLexerProperties" ref="aa826d270e365f358c84a027bee3d167" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerProperties::~QextScintillaLexerProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="436334f1bed5891cfbf3f9efd45e1298"></a><!-- doxytag: member="QextScintillaLexerProperties::language" ref="436334f1bed5891cfbf3f9efd45e1298" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerProperties::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="de484f827e973c4a10ed8ffee30ee6a0"></a><!-- doxytag: member="QextScintillaLexerProperties::lexer" ref="de484f827e973c4a10ed8ffee30ee6a0" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerProperties::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="29f362422452175f80aba4a0a30e91d8"></a><!-- doxytag: member="QextScintillaLexerProperties::color" ref="29f362422452175f80aba4a0a30e91d8" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerProperties::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerProperties.html#3d6a97fbd72128254ce96c4f98e8f121">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="b673e4f3569b9b5002a7e5fd75c72dae"></a><!-- doxytag: member="QextScintillaLexerProperties::eolFill" ref="b673e4f3569b9b5002a7e5fd75c72dae" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerProperties::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="7070a1985d0a6f3aec0e2e06e39a3eba"></a><!-- doxytag: member="QextScintillaLexerProperties::font" ref="7070a1985d0a6f3aec0e2e06e39a3eba" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerProperties::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="419785e6507ee675e2bc06c1fc455806"></a><!-- doxytag: member="QextScintillaLexerProperties::description" ref="419785e6507ee675e2bc06c1fc455806" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerProperties::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="3d6a97fbd72128254ce96c4f98e8f121"></a><!-- doxytag: member="QextScintillaLexerProperties::paper" ref="3d6a97fbd72128254ce96c4f98e8f121" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerProperties::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerProperties.html#29f362422452175f80aba4a0a30e91d8">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="abf5e5dfb111502bd3b96a8073924746"></a><!-- doxytag: member="QextScintillaLexerProperties::refreshProperties" ref="abf5e5dfb111502bd3b96a8073924746" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexerProperties::refreshProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Causes all properties to be refreshed by emitting the <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged()</a> signal as required. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="fad51b4b63aac4551f5bc5fe57b400c9"></a><!-- doxytag: member="QextScintillaLexerProperties::foldCompact" ref="fad51b4b63aac4551f5bc5fe57b400c9" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerProperties::foldCompact </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if trailing blank lines are included in a fold block.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerProperties.html#bc8c42d3facfceaa7c5eaeddf7e4285c">setFoldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="bc8c42d3facfceaa7c5eaeddf7e4285c"></a><!-- doxytag: member="QextScintillaLexerProperties::setFoldCompact" ref="bc8c42d3facfceaa7c5eaeddf7e4285c" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerProperties::setFoldCompact </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then trailing blank lines are included in a fold block. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerProperties.html#fad51b4b63aac4551f5bc5fe57b400c9">foldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="eaa2f7a219cd9c2ca923b2595b268c35"></a><!-- doxytag: member="QextScintillaLexerProperties::readProperties" ref="eaa2f7a219cd9c2ca923b2595b268c35" args="(QSettings &qs, const QString &prefix)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerProperties::readProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are read from the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerProperties.html#cc1b8d0916329dab170624db1505b2a6">writeProperties()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="cc1b8d0916329dab170624db1505b2a6"></a><!-- doxytag: member="QextScintillaLexerProperties::writeProperties" ref="cc1b8d0916329dab170624db1505b2a6" args="(QSettings &qs, const QString &prefix) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerProperties::writeProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are written to the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerProperties.html#eaa2f7a219cd9c2ca923b2595b268c35">readProperties()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerPython-members.html b/doc/html/classQextScintillaLexerPython-members.html new file mode 100644 index 0000000..11c4b3f --- /dev/null +++ b/doc/html/classQextScintillaLexerPython-members.html @@ -0,0 +1,97 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerPython Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a>)</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a>)</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a>)</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a>)</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a74caa951bface86c87bfc89d24cda16c0">ClassName</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#69e1a28465f6681a3f906c08ee6b05aa">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a75190716ac3b52dc832b88f81e6b0140d">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a77051edc413807e403d54faf9a6669a41">CommentBlock</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a769870133a22bd93c3be1d616bf90ae56">Decorator</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a752137f0baf4988fcfb4913ab5d41cba3">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#eccb543b9847ccd0d4d538384061b901">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7b05b852762ce579d69e27012f325508c">DoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#81954fb1fb4c460fdd679cdf6a8c72ee">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#f1f3fbb28bd65e91a9fcec8ec8702633">foldComments</a>() const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#ced0e9f9c61fede62d931536f9dbc609">foldQuotes</a>() const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#34096513a7e9dbab85a3866a113550cb">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7c54c9d3a8f8a5d5364f6b13a43993342">FunctionMethodName</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7dbea0e0ebb77a8b50f083ac6cee5c562">HighlightedIdentifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7910c7f760e782fac068e2ea753336c1f">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5e5e22547afa8af75617a9e6ee052aeef">Inconsistent</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#390ee137bc604c6a2ad14b4dc8b835db">indentationWarning</a>() const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5">IndentationWarning</a> enum name</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7eb7fe0c38b385650aea8b38e33904b86">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#599619deb214402b873cc884d1688484">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#9b79dc4e52cc372ce666d9e4ff84a56c">language</a>() const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#a8718ec3b6ba82dd0d0477508f18c1cb">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c564a063227a2e0d9de1ffd40929b74ec9">NoWarning</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a71767251a0c204858d26f57088b9311c2">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a70732162aee43c32736dab2129562b68e">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#8f4a2c5f009e7f8f05fe64612922d5ae">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#d00e08d9b76c7b85063b3a5f72dbd1f6">QextScintillaLexerPython</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#496893b8f75a204f1099b42fa06ea0da">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#4e62dbca0f2fecd3a8c28671d3008f4d">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#221ade4cc1f8042ca178e8658306815d">setFoldComments</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#52f6a99c0fe08a33d492dd715e09c2f0">setFoldQuotes</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#45932671e8c15e7746607f370e74ff49">setIndentationWarning</a>(IndentationWarning warn)</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7f299751dbcf5d3dc7645fbb54a89cdc3">SingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5dc791abcc679d4267380ead53641ee4e">Spaces</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c530700f362affdc9b64fa5f4d7221e2d6">Tabs</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5ed745810214ba0a7d63d14cab791df77">TabsAfterSpaces</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a72715b6e12529aabee60481a6aaed222a">TripleDoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a716467a665ddd2fc2b810eee360fdb5dd">TripleSingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7b5e62e788331f61f9480ec313cac9955">UnclosedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7c4b12f8a7c7e4dae3508445700da1bd3">WhiteSpace</a> enum value</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#c6e164f4a93cdbacd7f3e9ab66ff98dc">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerPython.html#fcf6aac74a4f21b160fce08af3c2b3ab">~QextScintillaLexerPython</a>()</td><td><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerPython.html b/doc/html/classQextScintillaLexerPython.html new file mode 100644 index 0000000..359758a --- /dev/null +++ b/doc/html/classQextScintillaLexerPython.html @@ -0,0 +1,661 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerPython Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerPython Class Reference</h1><!-- doxytag: class="QextScintillaLexerPython" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a> class encapsulates the Scintilla Python lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerpython.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerPython-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a752137f0baf4988fcfb4913ab5d41cba3">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7c4b12f8a7c7e4dae3508445700da1bd3">WhiteSpace</a> = Default +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a75190716ac3b52dc832b88f81e6b0140d">Comment</a> = 1 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a71767251a0c204858d26f57088b9311c2">Number</a> = 2 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7b05b852762ce579d69e27012f325508c">DoubleQuotedString</a> = 3 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7f299751dbcf5d3dc7645fbb54a89cdc3">SingleQuotedString</a> = 4 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7eb7fe0c38b385650aea8b38e33904b86">Keyword</a> = 5 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a716467a665ddd2fc2b810eee360fdb5dd">TripleSingleQuotedString</a> = 6 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a72715b6e12529aabee60481a6aaed222a">TripleDoubleQuotedString</a> = 7 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a74caa951bface86c87bfc89d24cda16c0">ClassName</a> = 8 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7c54c9d3a8f8a5d5364f6b13a43993342">FunctionMethodName</a> = 9 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a70732162aee43c32736dab2129562b68e">Operator</a> = 10 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7910c7f760e782fac068e2ea753336c1f">Identifier</a> = 11 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a77051edc413807e403d54faf9a6669a41">CommentBlock</a> = 12 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7b5e62e788331f61f9480ec313cac9955">UnclosedString</a> = 13 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7dbea0e0ebb77a8b50f083ac6cee5c562">HighlightedIdentifier</a> = 14 +<li><a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a769870133a22bd93c3be1d616bf90ae56">Decorator</a> = 15 +<li><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c564a063227a2e0d9de1ffd40929b74ec9">NoWarning</a> = 0 +<li><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5e5e22547afa8af75617a9e6ee052aeef">Inconsistent</a> = 1 +<li><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5ed745810214ba0a7d63d14cab791df77">TabsAfterSpaces</a> = 2 +<li><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5dc791abcc679d4267380ead53641ee4e">Spaces</a> = 3 +<li><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c530700f362affdc9b64fa5f4d7221e2d6">Tabs</a> = 4 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a752137f0baf4988fcfb4913ab5d41cba3">Default</a> = 0, +<a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7c4b12f8a7c7e4dae3508445700da1bd3">WhiteSpace</a> = Default, +<a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a75190716ac3b52dc832b88f81e6b0140d">Comment</a> = 1, +<br> + <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a71767251a0c204858d26f57088b9311c2">Number</a> = 2, +<a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7b05b852762ce579d69e27012f325508c">DoubleQuotedString</a> = 3, +<a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7f299751dbcf5d3dc7645fbb54a89cdc3">SingleQuotedString</a> = 4, +<br> + <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7eb7fe0c38b385650aea8b38e33904b86">Keyword</a> = 5, +<a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a716467a665ddd2fc2b810eee360fdb5dd">TripleSingleQuotedString</a> = 6, +<a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a72715b6e12529aabee60481a6aaed222a">TripleDoubleQuotedString</a> = 7, +<br> + <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a74caa951bface86c87bfc89d24cda16c0">ClassName</a> = 8, +<a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7c54c9d3a8f8a5d5364f6b13a43993342">FunctionMethodName</a> = 9, +<a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a70732162aee43c32736dab2129562b68e">Operator</a> = 10, +<br> + <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7910c7f760e782fac068e2ea753336c1f">Identifier</a> = 11, +<a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a77051edc413807e403d54faf9a6669a41">CommentBlock</a> = 12, +<a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7b5e62e788331f61f9480ec313cac9955">UnclosedString</a> = 13, +<br> + <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7dbea0e0ebb77a8b50f083ac6cee5c562">HighlightedIdentifier</a> = 14, +<a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a769870133a22bd93c3be1d616bf90ae56">Decorator</a> = 15 +<br> + } +<li>enum <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5">IndentationWarning</a> { <br> + <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c564a063227a2e0d9de1ffd40929b74ec9">NoWarning</a> = 0, +<a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5e5e22547afa8af75617a9e6ee052aeef">Inconsistent</a> = 1, +<a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5ed745810214ba0a7d63d14cab791df77">TabsAfterSpaces</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5dc791abcc679d4267380ead53641ee4e">Spaces</a> = 3, +<a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c530700f362affdc9b64fa5f4d7221e2d6">Tabs</a> = 4 +<br> + } +</ul> +<h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaLexerPython.html#221ade4cc1f8042ca178e8658306815d">setFoldComments</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerPython.html#52f6a99c0fe08a33d492dd715e09c2f0">setFoldQuotes</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerPython.html#45932671e8c15e7746607f370e74ff49">setIndentationWarning</a> (<a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5">IndentationWarning</a> warn) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerPython.html#d00e08d9b76c7b85063b3a5f72dbd1f6">QextScintillaLexerPython</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerPython.html#fcf6aac74a4f21b160fce08af3c2b3ab">~QextScintillaLexerPython</a> () +<li>const char * <a class="el" href="classQextScintillaLexerPython.html#9b79dc4e52cc372ce666d9e4ff84a56c">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerPython.html#a8718ec3b6ba82dd0d0477508f18c1cb">lexer</a> () const +<li><a class="anchor" name="13cf878ca43473574bffc716f27648af"></a><!-- doxytag: member="QextScintillaLexerPython::autoCompletionStartCharacters" ref="13cf878ca43473574bffc716f27648af" args="() const " --> +const char * <b>autoCompletionStartCharacters</b> () const +<li><a class="anchor" name="f00a6dcbdc7c1a34aeadf58dba07086e"></a><!-- doxytag: member="QextScintillaLexerPython::blockLookback" ref="f00a6dcbdc7c1a34aeadf58dba07086e" args="() const " --> +int <b>blockLookback</b> () const +<li><a class="anchor" name="3e798eb62fe3d43e15b702e9968577df"></a><!-- doxytag: member="QextScintillaLexerPython::blockStart" ref="3e798eb62fe3d43e15b702e9968577df" args="(int *style=0) const " --> +const char * <b>blockStart</b> (int *style=0) const +<li><a class="anchor" name="d6acc5782360dc2572d45a1d4d4d189d"></a><!-- doxytag: member="QextScintillaLexerPython::braceStyle" ref="d6acc5782360dc2572d45a1d4d4d189d" args="() const " --> +int <b>braceStyle</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerPython.html#69e1a28465f6681a3f906c08ee6b05aa">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerPython.html#81954fb1fb4c460fdd679cdf6a8c72ee">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerPython.html#34096513a7e9dbab85a3866a113550cb">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerPython.html#599619deb214402b873cc884d1688484">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerPython.html#eccb543b9847ccd0d4d538384061b901">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerPython.html#8f4a2c5f009e7f8f05fe64612922d5ae">paper</a> (int style) const +<li>void <a class="el" href="classQextScintillaLexerPython.html#4e62dbca0f2fecd3a8c28671d3008f4d">refreshProperties</a> () +<li>bool <a class="el" href="classQextScintillaLexerPython.html#f1f3fbb28bd65e91a9fcec8ec8702633">foldComments</a> () const +<li>bool <a class="el" href="classQextScintillaLexerPython.html#ced0e9f9c61fede62d931536f9dbc609">foldQuotes</a> () const +<li><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5">IndentationWarning</a> <a class="el" href="classQextScintillaLexerPython.html#390ee137bc604c6a2ad14b4dc8b835db">indentationWarning</a> () const +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaLexerPython.html#496893b8f75a204f1099b42fa06ea0da">readProperties</a> (QSettings &qs, const QString &prefix) +<li>bool <a class="el" href="classQextScintillaLexerPython.html#c6e164f4a93cdbacd7f3e9ab66ff98dc">writeProperties</a> (QSettings &qs, const QString &prefix) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a> class encapsulates the Scintilla Python lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a7"></a><!-- doxytag: member="QextScintillaLexerPython::@42" ref="99004ac9e2112951a73f2dfc7724a5a7" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the Python lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a752137f0baf4988fcfb4913ab5d41cba3"></a><!-- doxytag: member="Default" ref="99004ac9e2112951a73f2dfc7724a5a752137f0baf4988fcfb4913ab5d41cba3" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a7c4b12f8a7c7e4dae3508445700da1bd3"></a><!-- doxytag: member="WhiteSpace" ref="99004ac9e2112951a73f2dfc7724a5a7c4b12f8a7c7e4dae3508445700da1bd3" args="" -->WhiteSpace</em> </td><td> +<dl compact><dt><b><a class="el" href="deprecated.html#_deprecated000004">Deprecated:</a></b></dt><dd>White space. </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a75190716ac3b52dc832b88f81e6b0140d"></a><!-- doxytag: member="Comment" ref="99004ac9e2112951a73f2dfc7724a5a75190716ac3b52dc832b88f81e6b0140d" args="" -->Comment</em> </td><td> +A comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a71767251a0c204858d26f57088b9311c2"></a><!-- doxytag: member="Number" ref="99004ac9e2112951a73f2dfc7724a5a71767251a0c204858d26f57088b9311c2" args="" -->Number</em> </td><td> +A number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a7b05b852762ce579d69e27012f325508c"></a><!-- doxytag: member="DoubleQuotedString" ref="99004ac9e2112951a73f2dfc7724a5a7b05b852762ce579d69e27012f325508c" args="" -->DoubleQuotedString</em> </td><td> +A double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a7f299751dbcf5d3dc7645fbb54a89cdc3"></a><!-- doxytag: member="SingleQuotedString" ref="99004ac9e2112951a73f2dfc7724a5a7f299751dbcf5d3dc7645fbb54a89cdc3" args="" -->SingleQuotedString</em> </td><td> +A single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a7eb7fe0c38b385650aea8b38e33904b86"></a><!-- doxytag: member="Keyword" ref="99004ac9e2112951a73f2dfc7724a5a7eb7fe0c38b385650aea8b38e33904b86" args="" -->Keyword</em> </td><td> +A keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a716467a665ddd2fc2b810eee360fdb5dd"></a><!-- doxytag: member="TripleSingleQuotedString" ref="99004ac9e2112951a73f2dfc7724a5a716467a665ddd2fc2b810eee360fdb5dd" args="" -->TripleSingleQuotedString</em> </td><td> +A triple single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a72715b6e12529aabee60481a6aaed222a"></a><!-- doxytag: member="TripleDoubleQuotedString" ref="99004ac9e2112951a73f2dfc7724a5a72715b6e12529aabee60481a6aaed222a" args="" -->TripleDoubleQuotedString</em> </td><td> +A triple double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a74caa951bface86c87bfc89d24cda16c0"></a><!-- doxytag: member="ClassName" ref="99004ac9e2112951a73f2dfc7724a5a74caa951bface86c87bfc89d24cda16c0" args="" -->ClassName</em> </td><td> +The name of a class. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a7c54c9d3a8f8a5d5364f6b13a43993342"></a><!-- doxytag: member="FunctionMethodName" ref="99004ac9e2112951a73f2dfc7724a5a7c54c9d3a8f8a5d5364f6b13a43993342" args="" -->FunctionMethodName</em> </td><td> +The name of a function or method. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a70732162aee43c32736dab2129562b68e"></a><!-- doxytag: member="Operator" ref="99004ac9e2112951a73f2dfc7724a5a70732162aee43c32736dab2129562b68e" args="" -->Operator</em> </td><td> +An operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a7910c7f760e782fac068e2ea753336c1f"></a><!-- doxytag: member="Identifier" ref="99004ac9e2112951a73f2dfc7724a5a7910c7f760e782fac068e2ea753336c1f" args="" -->Identifier</em> </td><td> +An identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a77051edc413807e403d54faf9a6669a41"></a><!-- doxytag: member="CommentBlock" ref="99004ac9e2112951a73f2dfc7724a5a77051edc413807e403d54faf9a6669a41" args="" -->CommentBlock</em> </td><td> +A comment block. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a7b5e62e788331f61f9480ec313cac9955"></a><!-- doxytag: member="UnclosedString" ref="99004ac9e2112951a73f2dfc7724a5a7b5e62e788331f61f9480ec313cac9955" args="" -->UnclosedString</em> </td><td> +The end of a line where a string is not closed. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a7dbea0e0ebb77a8b50f083ac6cee5c562"></a><!-- doxytag: member="HighlightedIdentifier" ref="99004ac9e2112951a73f2dfc7724a5a7dbea0e0ebb77a8b50f083ac6cee5c562" args="" -->HighlightedIdentifier</em> </td><td> +A highlighted identifier. These are defined by keyword set 2. Reimplement <a class="el" href="classQextScintillaLexerPython.html#599619deb214402b873cc884d1688484">keywords()</a> to define keyword set 2. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="99004ac9e2112951a73f2dfc7724a5a769870133a22bd93c3be1d616bf90ae56"></a><!-- doxytag: member="Decorator" ref="99004ac9e2112951a73f2dfc7724a5a769870133a22bd93c3be1d616bf90ae56" args="" -->Decorator</em> </td><td> +A decorator. </td></tr> +</table> +</dl> + +</div> +</div><p> +<a class="anchor" name="d4f135ad765fd379f190331dd2f105c5"></a><!-- doxytag: member="QextScintillaLexerPython::IndentationWarning" ref="d4f135ad765fd379f190331dd2f105c5" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">enum <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5">QextScintillaLexerPython::IndentationWarning</a> </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the different conditions that can cause indentations to be displayed as being bad. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="d4f135ad765fd379f190331dd2f105c564a063227a2e0d9de1ffd40929b74ec9"></a><!-- doxytag: member="NoWarning" ref="d4f135ad765fd379f190331dd2f105c564a063227a2e0d9de1ffd40929b74ec9" args="" -->NoWarning</em> </td><td> +Bad indentation is not displayed differently. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="d4f135ad765fd379f190331dd2f105c5e5e22547afa8af75617a9e6ee052aeef"></a><!-- doxytag: member="Inconsistent" ref="d4f135ad765fd379f190331dd2f105c5e5e22547afa8af75617a9e6ee052aeef" args="" -->Inconsistent</em> </td><td> +The indentation is inconsistent when compared to the previous line, ie. it is made up of a different combination of tabs and/or spaces. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="d4f135ad765fd379f190331dd2f105c5ed745810214ba0a7d63d14cab791df77"></a><!-- doxytag: member="TabsAfterSpaces" ref="d4f135ad765fd379f190331dd2f105c5ed745810214ba0a7d63d14cab791df77" args="" -->TabsAfterSpaces</em> </td><td> +The indentation is made up of spaces followed by tabs. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="d4f135ad765fd379f190331dd2f105c5dc791abcc679d4267380ead53641ee4e"></a><!-- doxytag: member="Spaces" ref="d4f135ad765fd379f190331dd2f105c5dc791abcc679d4267380ead53641ee4e" args="" -->Spaces</em> </td><td> +The indentation contains spaces. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="d4f135ad765fd379f190331dd2f105c530700f362affdc9b64fa5f4d7221e2d6"></a><!-- doxytag: member="Tabs" ref="d4f135ad765fd379f190331dd2f105c530700f362affdc9b64fa5f4d7221e2d6" args="" -->Tabs</em> </td><td> +The indentation contains tabs. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="d00e08d9b76c7b85063b3a5f72dbd1f6"></a><!-- doxytag: member="QextScintillaLexerPython::QextScintillaLexerPython" ref="d00e08d9b76c7b85063b3a5f72dbd1f6" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerPython::QextScintillaLexerPython </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="fcf6aac74a4f21b160fce08af3c2b3ab"></a><!-- doxytag: member="QextScintillaLexerPython::~QextScintillaLexerPython" ref="fcf6aac74a4f21b160fce08af3c2b3ab" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerPython::~QextScintillaLexerPython </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="9b79dc4e52cc372ce666d9e4ff84a56c"></a><!-- doxytag: member="QextScintillaLexerPython::language" ref="9b79dc4e52cc372ce666d9e4ff84a56c" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerPython::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="a8718ec3b6ba82dd0d0477508f18c1cb"></a><!-- doxytag: member="QextScintillaLexerPython::lexer" ref="a8718ec3b6ba82dd0d0477508f18c1cb" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerPython::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="69e1a28465f6681a3f906c08ee6b05aa"></a><!-- doxytag: member="QextScintillaLexerPython::color" ref="69e1a28465f6681a3f906c08ee6b05aa" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerPython::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPython.html#8f4a2c5f009e7f8f05fe64612922d5ae">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="81954fb1fb4c460fdd679cdf6a8c72ee"></a><!-- doxytag: member="QextScintillaLexerPython::eolFill" ref="81954fb1fb4c460fdd679cdf6a8c72ee" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPython::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="34096513a7e9dbab85a3866a113550cb"></a><!-- doxytag: member="QextScintillaLexerPython::font" ref="34096513a7e9dbab85a3866a113550cb" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerPython::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="599619deb214402b873cc884d1688484"></a><!-- doxytag: member="QextScintillaLexerPython::keywords" ref="599619deb214402b873cc884d1688484" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerPython::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="eccb543b9847ccd0d4d538384061b901"></a><!-- doxytag: member="QextScintillaLexerPython::description" ref="eccb543b9847ccd0d4d538384061b901" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerPython::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="8f4a2c5f009e7f8f05fe64612922d5ae"></a><!-- doxytag: member="QextScintillaLexerPython::paper" ref="8f4a2c5f009e7f8f05fe64612922d5ae" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerPython::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPython.html#69e1a28465f6681a3f906c08ee6b05aa">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="4e62dbca0f2fecd3a8c28671d3008f4d"></a><!-- doxytag: member="QextScintillaLexerPython::refreshProperties" ref="4e62dbca0f2fecd3a8c28671d3008f4d" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexerPython::refreshProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Causes all properties to be refreshed by emitting the <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged()</a> signal as required. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="f1f3fbb28bd65e91a9fcec8ec8702633"></a><!-- doxytag: member="QextScintillaLexerPython::foldComments" ref="f1f3fbb28bd65e91a9fcec8ec8702633" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPython::foldComments </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if indented comment blocks can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPython.html#221ade4cc1f8042ca178e8658306815d">setFoldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="ced0e9f9c61fede62d931536f9dbc609"></a><!-- doxytag: member="QextScintillaLexerPython::foldQuotes" ref="ced0e9f9c61fede62d931536f9dbc609" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPython::foldQuotes </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if triple quoted strings can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPython.html#52f6a99c0fe08a33d492dd715e09c2f0">setFoldQuotes()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="390ee137bc604c6a2ad14b4dc8b835db"></a><!-- doxytag: member="QextScintillaLexerPython::indentationWarning" ref="390ee137bc604c6a2ad14b4dc8b835db" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5">IndentationWarning</a> QextScintillaLexerPython::indentationWarning </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the condition that will cause bad indentations to be displayed.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPython.html#45932671e8c15e7746607f370e74ff49">setIndentationWarning()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="221ade4cc1f8042ca178e8658306815d"></a><!-- doxytag: member="QextScintillaLexerPython::setFoldComments" ref="221ade4cc1f8042ca178e8658306815d" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerPython::setFoldComments </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then indented comment blocks can be folded. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPython.html#f1f3fbb28bd65e91a9fcec8ec8702633">foldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="52f6a99c0fe08a33d492dd715e09c2f0"></a><!-- doxytag: member="QextScintillaLexerPython::setFoldQuotes" ref="52f6a99c0fe08a33d492dd715e09c2f0" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerPython::setFoldQuotes </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then triple quoted strings can be folded. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPython.html#ced0e9f9c61fede62d931536f9dbc609">foldQuotes()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="45932671e8c15e7746607f370e74ff49"></a><!-- doxytag: member="QextScintillaLexerPython::setIndentationWarning" ref="45932671e8c15e7746607f370e74ff49" args="(IndentationWarning warn)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerPython::setIndentationWarning </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5">IndentationWarning</a> </td> + <td class="paramname"> <em>warn</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the condition that will cause bad indentations to be displayed.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerPython.html#390ee137bc604c6a2ad14b4dc8b835db">indentationWarning()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="496893b8f75a204f1099b42fa06ea0da"></a><!-- doxytag: member="QextScintillaLexerPython::readProperties" ref="496893b8f75a204f1099b42fa06ea0da" args="(QSettings &qs, const QString &prefix)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPython::readProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are read from the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="c6e164f4a93cdbacd7f3e9ab66ff98dc"></a><!-- doxytag: member="QextScintillaLexerPython::writeProperties" ref="c6e164f4a93cdbacd7f3e9ab66ff98dc" args="(QSettings &qs, const QString &prefix) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerPython::writeProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are written to the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerRuby-members.html b/doc/html/classQextScintillaLexerRuby-members.html new file mode 100644 index 0000000..ebe3f43 --- /dev/null +++ b/doc/html/classQextScintillaLexerRuby-members.html @@ -0,0 +1,99 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerRuby Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673b00562b7dcf94e55dc5eb0a61d144e9e">Backticks</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a>)</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a>)</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a>)</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a>)</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67390cede981bd69fe4072ffb911bf07311">ClassName</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733a64a9cadf197f6c8269ecba5d046462">ClassVariable</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#7df51cdf4533fb0289a2003844b4fa67">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673738b3a19138f2358dd0e840ad1baff41">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67361babe91bc4558e9efc39ba28d60a32f">DataSection</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6730fb311fd6a77464240d965246ad7f6a3">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67302c8ffb948274b6c3c66dc21a3d2e2a1">DemotedKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#721775e8f6bb6bab9aaa064ff18ed70f">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6737e91f3cc802b93df10cc232d27b6cb74">DoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#b2a03d86d7c2e3c7c11eb778b7c3fe20">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673eeafd3440d633a72cd813f24a01fbfed">Error</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c37edab4a7892f3c671f88051909878b">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67314ae86918218bef8c3541acb55b71a53">FunctionMethodName</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673d8c6f983db7bba3eb8d61c68dd77c5e8">Global</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673f89d7131a88eb6a518fe225fc7c51ad9">HereDocument</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736cc8ab35f59f4bd95eafce03038cf49d">HereDocumentDelimiter</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673aea73bcd3ab39a1b5cca5b05c6741872">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673268fa3db8ca5bca860e8b11c74b34cdc">InstanceVariable</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736fa8d2088612ca0fcaf4c3391aa2bbb1">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c2c4e52585720219299637c287d672ac">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c99bae5713f65a19f5ea79e2c7af37b7">language</a>() const </td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#90f0d39fa849f263d841b34e10b93f30">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67358a79aa63d9746f770a906dbbe778595">ModuleName</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6738550bc5e3d7ad4ab53ab7155137f09d7">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673718d0aefbdbbf8e796f26b9cfab4ef13">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#3a175244ac607efd0aac7c2a277d2cd2">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673372c0fcb1273b52efbc9e4075a565c63">PercentStringq</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673601952601e0ef339e9613b1170b83489">PercentStringQ</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736502c78bd71b72444de52a9e8bd7b3b4">PercentStringr</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673691db4ca4af38d28327188d6ad0d2183">PercentStringw</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733ee5ed8f3935c538afb3b5eff690311f">PercentStringx</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67315842cf1f1126bc9d18c1d7d917d09f9">POD</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#f84a7b041a40eec05036417a7333a604">QextScintillaLexerRuby</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6735340c230a6d8d802547fa0bcb95f9951">Regex</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733d453fb290fba122980aa29757cc7839">SingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673d5d7c5aa5a2cb67e0129b4a773bc2c0f">Stderr</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736756812012bb17abc5529d81cfee6c79">Stdin</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736c9309d09076262eca1130db22c26c78">Stdout</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67365490e92215a20e98a912bb2416abb3a">Symbol</a> enum value</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerRuby.html#95c00cb154c17d293bf2ef05fe2d8cdb">~QextScintillaLexerRuby</a>()</td><td><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerRuby.html b/doc/html/classQextScintillaLexerRuby.html new file mode 100644 index 0000000..0b40358 --- /dev/null +++ b/doc/html/classQextScintillaLexerRuby.html @@ -0,0 +1,451 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerRuby Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerRuby Class Reference</h1><!-- doxytag: class="QextScintillaLexerRuby" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a> class encapsulates the Scintilla Ruby lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexerruby.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerRuby-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6730fb311fd6a77464240d965246ad7f6a3">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673eeafd3440d633a72cd813f24a01fbfed">Error</a> = 1 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673738b3a19138f2358dd0e840ad1baff41">Comment</a> = 2 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67315842cf1f1126bc9d18c1d7d917d09f9">POD</a> = 3 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6738550bc5e3d7ad4ab53ab7155137f09d7">Number</a> = 4 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736fa8d2088612ca0fcaf4c3391aa2bbb1">Keyword</a> = 5 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6737e91f3cc802b93df10cc232d27b6cb74">DoubleQuotedString</a> = 6 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733d453fb290fba122980aa29757cc7839">SingleQuotedString</a> = 7 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67390cede981bd69fe4072ffb911bf07311">ClassName</a> = 8 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67314ae86918218bef8c3541acb55b71a53">FunctionMethodName</a> = 9 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673718d0aefbdbbf8e796f26b9cfab4ef13">Operator</a> = 10 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673aea73bcd3ab39a1b5cca5b05c6741872">Identifier</a> = 11 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6735340c230a6d8d802547fa0bcb95f9951">Regex</a> = 12 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673d8c6f983db7bba3eb8d61c68dd77c5e8">Global</a> = 13 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67365490e92215a20e98a912bb2416abb3a">Symbol</a> = 14 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67358a79aa63d9746f770a906dbbe778595">ModuleName</a> = 15 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673268fa3db8ca5bca860e8b11c74b34cdc">InstanceVariable</a> = 16 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733a64a9cadf197f6c8269ecba5d046462">ClassVariable</a> = 17 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673b00562b7dcf94e55dc5eb0a61d144e9e">Backticks</a> = 18 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67361babe91bc4558e9efc39ba28d60a32f">DataSection</a> = 19 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736cc8ab35f59f4bd95eafce03038cf49d">HereDocumentDelimiter</a> = 20 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673f89d7131a88eb6a518fe225fc7c51ad9">HereDocument</a> = 21 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673372c0fcb1273b52efbc9e4075a565c63">PercentStringq</a> = 24 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673601952601e0ef339e9613b1170b83489">PercentStringQ</a> = 25 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733ee5ed8f3935c538afb3b5eff690311f">PercentStringx</a> = 26 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736502c78bd71b72444de52a9e8bd7b3b4">PercentStringr</a> = 27 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673691db4ca4af38d28327188d6ad0d2183">PercentStringw</a> = 28 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67302c8ffb948274b6c3c66dc21a3d2e2a1">DemotedKeyword</a> = 29 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736756812012bb17abc5529d81cfee6c79">Stdin</a> = 30 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736c9309d09076262eca1130db22c26c78">Stdout</a> = 31 +<li><a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673d5d7c5aa5a2cb67e0129b4a773bc2c0f">Stderr</a> = 40 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6730fb311fd6a77464240d965246ad7f6a3">Default</a> = 0, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673eeafd3440d633a72cd813f24a01fbfed">Error</a> = 1, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673738b3a19138f2358dd0e840ad1baff41">Comment</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67315842cf1f1126bc9d18c1d7d917d09f9">POD</a> = 3, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6738550bc5e3d7ad4ab53ab7155137f09d7">Number</a> = 4, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736fa8d2088612ca0fcaf4c3391aa2bbb1">Keyword</a> = 5, +<br> + <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6737e91f3cc802b93df10cc232d27b6cb74">DoubleQuotedString</a> = 6, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733d453fb290fba122980aa29757cc7839">SingleQuotedString</a> = 7, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67390cede981bd69fe4072ffb911bf07311">ClassName</a> = 8, +<br> + <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67314ae86918218bef8c3541acb55b71a53">FunctionMethodName</a> = 9, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673718d0aefbdbbf8e796f26b9cfab4ef13">Operator</a> = 10, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673aea73bcd3ab39a1b5cca5b05c6741872">Identifier</a> = 11, +<br> + <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6735340c230a6d8d802547fa0bcb95f9951">Regex</a> = 12, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673d8c6f983db7bba3eb8d61c68dd77c5e8">Global</a> = 13, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67365490e92215a20e98a912bb2416abb3a">Symbol</a> = 14, +<br> + <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67358a79aa63d9746f770a906dbbe778595">ModuleName</a> = 15, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673268fa3db8ca5bca860e8b11c74b34cdc">InstanceVariable</a> = 16, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733a64a9cadf197f6c8269ecba5d046462">ClassVariable</a> = 17, +<br> + <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673b00562b7dcf94e55dc5eb0a61d144e9e">Backticks</a> = 18, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67361babe91bc4558e9efc39ba28d60a32f">DataSection</a> = 19, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736cc8ab35f59f4bd95eafce03038cf49d">HereDocumentDelimiter</a> = 20, +<br> + <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673f89d7131a88eb6a518fe225fc7c51ad9">HereDocument</a> = 21, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673372c0fcb1273b52efbc9e4075a565c63">PercentStringq</a> = 24, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673601952601e0ef339e9613b1170b83489">PercentStringQ</a> = 25, +<br> + <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733ee5ed8f3935c538afb3b5eff690311f">PercentStringx</a> = 26, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736502c78bd71b72444de52a9e8bd7b3b4">PercentStringr</a> = 27, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673691db4ca4af38d28327188d6ad0d2183">PercentStringw</a> = 28, +<br> + <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67302c8ffb948274b6c3c66dc21a3d2e2a1">DemotedKeyword</a> = 29, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736756812012bb17abc5529d81cfee6c79">Stdin</a> = 30, +<a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736c9309d09076262eca1130db22c26c78">Stdout</a> = 31, +<br> + <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673d5d7c5aa5a2cb67e0129b4a773bc2c0f">Stderr</a> = 40 +<br> + } +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerRuby.html#f84a7b041a40eec05036417a7333a604">QextScintillaLexerRuby</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerRuby.html#95c00cb154c17d293bf2ef05fe2d8cdb">~QextScintillaLexerRuby</a> () +<li>const char * <a class="el" href="classQextScintillaLexerRuby.html#c99bae5713f65a19f5ea79e2c7af37b7">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerRuby.html#90f0d39fa849f263d841b34e10b93f30">lexer</a> () const +<li><a class="anchor" name="6e04b233f0508992354e47cdcaafd698"></a><!-- doxytag: member="QextScintillaLexerRuby::blockEnd" ref="6e04b233f0508992354e47cdcaafd698" args="(int *style=0) const " --> +const char * <b>blockEnd</b> (int *style=0) const +<li><a class="anchor" name="839b3b2a0b2a4b093f97caf9c295d4b3"></a><!-- doxytag: member="QextScintillaLexerRuby::blockStart" ref="839b3b2a0b2a4b093f97caf9c295d4b3" args="(int *style=0) const " --> +const char * <b>blockStart</b> (int *style=0) const +<li><a class="anchor" name="d9435914bf99a558ac9c2b96b05dadc0"></a><!-- doxytag: member="QextScintillaLexerRuby::blockStartKeyword" ref="d9435914bf99a558ac9c2b96b05dadc0" args="(int *style=0) const " --> +const char * <b>blockStartKeyword</b> (int *style=0) const +<li><a class="anchor" name="14de9e48745c3f785293cf6b4d869f0c"></a><!-- doxytag: member="QextScintillaLexerRuby::braceStyle" ref="14de9e48745c3f785293cf6b4d869f0c" args="() const " --> +int <b>braceStyle</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerRuby.html#7df51cdf4533fb0289a2003844b4fa67">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerRuby.html#b2a03d86d7c2e3c7c11eb778b7c3fe20">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerRuby.html#c37edab4a7892f3c671f88051909878b">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerRuby.html#c2c4e52585720219299637c287d672ac">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerRuby.html#721775e8f6bb6bab9aaa064ff18ed70f">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerRuby.html#3a175244ac607efd0aac7c2a277d2cd2">paper</a> (int style) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a> class encapsulates the Scintilla Ruby lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673"></a><!-- doxytag: member="QextScintillaLexerRuby::@43" ref="c12d2ddff5d8652b10066ef4ab5df673" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the Ruby lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6730fb311fd6a77464240d965246ad7f6a3"></a><!-- doxytag: member="Default" ref="c12d2ddff5d8652b10066ef4ab5df6730fb311fd6a77464240d965246ad7f6a3" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673eeafd3440d633a72cd813f24a01fbfed"></a><!-- doxytag: member="Error" ref="c12d2ddff5d8652b10066ef4ab5df673eeafd3440d633a72cd813f24a01fbfed" args="" -->Error</em> </td><td> +An error. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673738b3a19138f2358dd0e840ad1baff41"></a><!-- doxytag: member="Comment" ref="c12d2ddff5d8652b10066ef4ab5df673738b3a19138f2358dd0e840ad1baff41" args="" -->Comment</em> </td><td> +A comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df67315842cf1f1126bc9d18c1d7d917d09f9"></a><!-- doxytag: member="POD" ref="c12d2ddff5d8652b10066ef4ab5df67315842cf1f1126bc9d18c1d7d917d09f9" args="" -->POD</em> </td><td> +A POD. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6738550bc5e3d7ad4ab53ab7155137f09d7"></a><!-- doxytag: member="Number" ref="c12d2ddff5d8652b10066ef4ab5df6738550bc5e3d7ad4ab53ab7155137f09d7" args="" -->Number</em> </td><td> +A number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6736fa8d2088612ca0fcaf4c3391aa2bbb1"></a><!-- doxytag: member="Keyword" ref="c12d2ddff5d8652b10066ef4ab5df6736fa8d2088612ca0fcaf4c3391aa2bbb1" args="" -->Keyword</em> </td><td> +A keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6737e91f3cc802b93df10cc232d27b6cb74"></a><!-- doxytag: member="DoubleQuotedString" ref="c12d2ddff5d8652b10066ef4ab5df6737e91f3cc802b93df10cc232d27b6cb74" args="" -->DoubleQuotedString</em> </td><td> +A double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6733d453fb290fba122980aa29757cc7839"></a><!-- doxytag: member="SingleQuotedString" ref="c12d2ddff5d8652b10066ef4ab5df6733d453fb290fba122980aa29757cc7839" args="" -->SingleQuotedString</em> </td><td> +A single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df67390cede981bd69fe4072ffb911bf07311"></a><!-- doxytag: member="ClassName" ref="c12d2ddff5d8652b10066ef4ab5df67390cede981bd69fe4072ffb911bf07311" args="" -->ClassName</em> </td><td> +The name of a class. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df67314ae86918218bef8c3541acb55b71a53"></a><!-- doxytag: member="FunctionMethodName" ref="c12d2ddff5d8652b10066ef4ab5df67314ae86918218bef8c3541acb55b71a53" args="" -->FunctionMethodName</em> </td><td> +The name of a function or method. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673718d0aefbdbbf8e796f26b9cfab4ef13"></a><!-- doxytag: member="Operator" ref="c12d2ddff5d8652b10066ef4ab5df673718d0aefbdbbf8e796f26b9cfab4ef13" args="" -->Operator</em> </td><td> +An operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673aea73bcd3ab39a1b5cca5b05c6741872"></a><!-- doxytag: member="Identifier" ref="c12d2ddff5d8652b10066ef4ab5df673aea73bcd3ab39a1b5cca5b05c6741872" args="" -->Identifier</em> </td><td> +An identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6735340c230a6d8d802547fa0bcb95f9951"></a><!-- doxytag: member="Regex" ref="c12d2ddff5d8652b10066ef4ab5df6735340c230a6d8d802547fa0bcb95f9951" args="" -->Regex</em> </td><td> +A regular expression. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673d8c6f983db7bba3eb8d61c68dd77c5e8"></a><!-- doxytag: member="Global" ref="c12d2ddff5d8652b10066ef4ab5df673d8c6f983db7bba3eb8d61c68dd77c5e8" args="" -->Global</em> </td><td> +A global. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df67365490e92215a20e98a912bb2416abb3a"></a><!-- doxytag: member="Symbol" ref="c12d2ddff5d8652b10066ef4ab5df67365490e92215a20e98a912bb2416abb3a" args="" -->Symbol</em> </td><td> +A symbol. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df67358a79aa63d9746f770a906dbbe778595"></a><!-- doxytag: member="ModuleName" ref="c12d2ddff5d8652b10066ef4ab5df67358a79aa63d9746f770a906dbbe778595" args="" -->ModuleName</em> </td><td> +The name of a module. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673268fa3db8ca5bca860e8b11c74b34cdc"></a><!-- doxytag: member="InstanceVariable" ref="c12d2ddff5d8652b10066ef4ab5df673268fa3db8ca5bca860e8b11c74b34cdc" args="" -->InstanceVariable</em> </td><td> +An instance variable. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6733a64a9cadf197f6c8269ecba5d046462"></a><!-- doxytag: member="ClassVariable" ref="c12d2ddff5d8652b10066ef4ab5df6733a64a9cadf197f6c8269ecba5d046462" args="" -->ClassVariable</em> </td><td> +A class variable. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673b00562b7dcf94e55dc5eb0a61d144e9e"></a><!-- doxytag: member="Backticks" ref="c12d2ddff5d8652b10066ef4ab5df673b00562b7dcf94e55dc5eb0a61d144e9e" args="" -->Backticks</em> </td><td> +Backticks. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df67361babe91bc4558e9efc39ba28d60a32f"></a><!-- doxytag: member="DataSection" ref="c12d2ddff5d8652b10066ef4ab5df67361babe91bc4558e9efc39ba28d60a32f" args="" -->DataSection</em> </td><td> +A data section. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6736cc8ab35f59f4bd95eafce03038cf49d"></a><!-- doxytag: member="HereDocumentDelimiter" ref="c12d2ddff5d8652b10066ef4ab5df6736cc8ab35f59f4bd95eafce03038cf49d" args="" -->HereDocumentDelimiter</em> </td><td> +A here document delimiter. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673f89d7131a88eb6a518fe225fc7c51ad9"></a><!-- doxytag: member="HereDocument" ref="c12d2ddff5d8652b10066ef4ab5df673f89d7131a88eb6a518fe225fc7c51ad9" args="" -->HereDocument</em> </td><td> +A here document. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673372c0fcb1273b52efbc9e4075a565c63"></a><!-- doxytag: member="PercentStringq" ref="c12d2ddff5d8652b10066ef4ab5df673372c0fcb1273b52efbc9e4075a565c63" args="" -->PercentStringq</em> </td><td> +A q string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673601952601e0ef339e9613b1170b83489"></a><!-- doxytag: member="PercentStringQ" ref="c12d2ddff5d8652b10066ef4ab5df673601952601e0ef339e9613b1170b83489" args="" -->PercentStringQ</em> </td><td> +A Q string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6733ee5ed8f3935c538afb3b5eff690311f"></a><!-- doxytag: member="PercentStringx" ref="c12d2ddff5d8652b10066ef4ab5df6733ee5ed8f3935c538afb3b5eff690311f" args="" -->PercentStringx</em> </td><td> +A x string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6736502c78bd71b72444de52a9e8bd7b3b4"></a><!-- doxytag: member="PercentStringr" ref="c12d2ddff5d8652b10066ef4ab5df6736502c78bd71b72444de52a9e8bd7b3b4" args="" -->PercentStringr</em> </td><td> +A r string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673691db4ca4af38d28327188d6ad0d2183"></a><!-- doxytag: member="PercentStringw" ref="c12d2ddff5d8652b10066ef4ab5df673691db4ca4af38d28327188d6ad0d2183" args="" -->PercentStringw</em> </td><td> +A w string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df67302c8ffb948274b6c3c66dc21a3d2e2a1"></a><!-- doxytag: member="DemotedKeyword" ref="c12d2ddff5d8652b10066ef4ab5df67302c8ffb948274b6c3c66dc21a3d2e2a1" args="" -->DemotedKeyword</em> </td><td> +A demoted keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6736756812012bb17abc5529d81cfee6c79"></a><!-- doxytag: member="Stdin" ref="c12d2ddff5d8652b10066ef4ab5df6736756812012bb17abc5529d81cfee6c79" args="" -->Stdin</em> </td><td> +stdin. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df6736c9309d09076262eca1130db22c26c78"></a><!-- doxytag: member="Stdout" ref="c12d2ddff5d8652b10066ef4ab5df6736c9309d09076262eca1130db22c26c78" args="" -->Stdout</em> </td><td> +stdout. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="c12d2ddff5d8652b10066ef4ab5df673d5d7c5aa5a2cb67e0129b4a773bc2c0f"></a><!-- doxytag: member="Stderr" ref="c12d2ddff5d8652b10066ef4ab5df673d5d7c5aa5a2cb67e0129b4a773bc2c0f" args="" -->Stderr</em> </td><td> +stderr. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="f84a7b041a40eec05036417a7333a604"></a><!-- doxytag: member="QextScintillaLexerRuby::QextScintillaLexerRuby" ref="f84a7b041a40eec05036417a7333a604" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerRuby::QextScintillaLexerRuby </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="95c00cb154c17d293bf2ef05fe2d8cdb"></a><!-- doxytag: member="QextScintillaLexerRuby::~QextScintillaLexerRuby" ref="95c00cb154c17d293bf2ef05fe2d8cdb" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerRuby::~QextScintillaLexerRuby </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="c99bae5713f65a19f5ea79e2c7af37b7"></a><!-- doxytag: member="QextScintillaLexerRuby::language" ref="c99bae5713f65a19f5ea79e2c7af37b7" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerRuby::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="90f0d39fa849f263d841b34e10b93f30"></a><!-- doxytag: member="QextScintillaLexerRuby::lexer" ref="90f0d39fa849f263d841b34e10b93f30" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerRuby::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="7df51cdf4533fb0289a2003844b4fa67"></a><!-- doxytag: member="QextScintillaLexerRuby::color" ref="7df51cdf4533fb0289a2003844b4fa67" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerRuby::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerRuby.html#3a175244ac607efd0aac7c2a277d2cd2">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="b2a03d86d7c2e3c7c11eb778b7c3fe20"></a><!-- doxytag: member="QextScintillaLexerRuby::eolFill" ref="b2a03d86d7c2e3c7c11eb778b7c3fe20" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerRuby::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="c37edab4a7892f3c671f88051909878b"></a><!-- doxytag: member="QextScintillaLexerRuby::font" ref="c37edab4a7892f3c671f88051909878b" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerRuby::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="c2c4e52585720219299637c287d672ac"></a><!-- doxytag: member="QextScintillaLexerRuby::keywords" ref="c2c4e52585720219299637c287d672ac" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerRuby::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="721775e8f6bb6bab9aaa064ff18ed70f"></a><!-- doxytag: member="QextScintillaLexerRuby::description" ref="721775e8f6bb6bab9aaa064ff18ed70f" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerRuby::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="3a175244ac607efd0aac7c2a277d2cd2"></a><!-- doxytag: member="QextScintillaLexerRuby::paper" ref="3a175244ac607efd0aac7c2a277d2cd2" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerRuby::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerRuby.html#7df51cdf4533fb0289a2003844b4fa67">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerSQL-members.html b/doc/html/classQextScintillaLexerSQL-members.html new file mode 100644 index 0000000..f8959da --- /dev/null +++ b/doc/html/classQextScintillaLexerSQL-members.html @@ -0,0 +1,95 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerSQL Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#11e7e14784d83a1b56e690852cbb0b7d">backslashEscapes</a>() const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a>)</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#03c2d78be78783cd6c35c888bc7c9411">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649371944274b0cfca050f4aefbf3444298c">Comment</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493396c93bc0d6cdeb43856d875909a801d">CommentDoc</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493ab4c3a01d344da55026e112211d2d57b">CommentDocKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264937e389e85f65d05fe740f3a3188263f34">CommentDocKeywordError</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d21d57b380642ebd543020799e63a632">CommentLine</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493527991ffce3f42a3453245dd6b683d7b">CommentLineHash</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264935e1bb31d01d44a495488cf3641c99750">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#033022cf1010cab3db8ad0fc6b4b898e">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493967841c89abb423eb4905acb5a3856e5">DoubleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#ee2473ffa75634fb28c893116d9f2c8e">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#6867e10f4aa8a7c8f040595e18d01967">foldComments</a>() const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#ea2c85ffc4af6dfdc70dacb9bb35957b">foldCompact</a>() const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#f0a430cc19f2da4a5c8a6e7f3d4c104f">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264933abc77df4a22d67ef033c88f55c94107">Identifier</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264931384c1a7b8dfe684172e1e560faba1cd">Keyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#c3bf685a2f608817ef23d48293610559">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649326008070eb4a3af88e804bee1b296916">KeywordSet5</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264930dd6abb83c3e9269a79a1615397f160d">KeywordSet6</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493bcd9f0fd493dd5a6938bd5aaacf84da6">KeywordSet7</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d17d526af135746f161b3b1b7ca3f392">KeywordSet8</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#0fe5b3ab8b64c7628ba1c4282363cce2">language</a>() const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#f11bb7390af4b47ce159a829f82264d0">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493e35ebe476c95b3facea207f144908370">LineComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493590936951ff6172b944c1b561110e32d">Number</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264939305370cfa11a13ffe1068e979adefb4">Operator</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#f48f2bfeccf7ffd7a9e72ad04a7b0882">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d54c83c61889d05d12b7bf1a7a8c4d3b">PlusComment</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649311cca7900ab1e189e415d55276e6ccd3">PlusKeyword</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493506be43dc6a850ffb04d71ec1b9c7166">PlusPrompt</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#87ef4b587bfc5e453a898112d8b22f2d">QextScintillaLexerSQL</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#376c567479019727c755b71274f7710c">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#786e5f3e0b56a8b6a5b0ef6ce5256a36">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#81ee1d8fdc3a43e94d4176189cb8e2b7">setBackslashEscapes</a>(bool enable)</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#a9136c38110a706d75ec7319ed06c098">setFoldComments</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#a89bc20abcc8245a51da795eb3ab8c3e">setFoldCompact</a>(bool fold)</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264935022b23b5cbb05e3edfa0c9d49f866a4">SingleQuotedString</a> enum value</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#0824d031dd1ffc6318197e7e545ff84f">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerSQL.html#d79a35923e0b87040873aa5b8cc369df">~QextScintillaLexerSQL</a>()</td><td><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerSQL.html b/doc/html/classQextScintillaLexerSQL.html new file mode 100644 index 0000000..7960847 --- /dev/null +++ b/doc/html/classQextScintillaLexerSQL.html @@ -0,0 +1,629 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerSQL Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerSQL Class Reference</h1><!-- doxytag: class="QextScintillaLexerSQL" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a> class encapsulates the Scintilla SQL lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexersql.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerSQL-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264935e1bb31d01d44a495488cf3641c99750">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649371944274b0cfca050f4aefbf3444298c">Comment</a> = 1 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d21d57b380642ebd543020799e63a632">CommentLine</a> = 2 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493e35ebe476c95b3facea207f144908370">LineComment</a> = CommentLine +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493396c93bc0d6cdeb43856d875909a801d">CommentDoc</a> = 3 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493590936951ff6172b944c1b561110e32d">Number</a> = 4 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264931384c1a7b8dfe684172e1e560faba1cd">Keyword</a> = 5 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493967841c89abb423eb4905acb5a3856e5">DoubleQuotedString</a> = 6 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264935022b23b5cbb05e3edfa0c9d49f866a4">SingleQuotedString</a> = 7 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649311cca7900ab1e189e415d55276e6ccd3">PlusKeyword</a> = 8 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493506be43dc6a850ffb04d71ec1b9c7166">PlusPrompt</a> = 9 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264939305370cfa11a13ffe1068e979adefb4">Operator</a> = 10 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264933abc77df4a22d67ef033c88f55c94107">Identifier</a> = 11 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d54c83c61889d05d12b7bf1a7a8c4d3b">PlusComment</a> = 13 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493527991ffce3f42a3453245dd6b683d7b">CommentLineHash</a> = 15 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493ab4c3a01d344da55026e112211d2d57b">CommentDocKeyword</a> = 17 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264937e389e85f65d05fe740f3a3188263f34">CommentDocKeywordError</a> = 18 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649326008070eb4a3af88e804bee1b296916">KeywordSet5</a> = 19 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264930dd6abb83c3e9269a79a1615397f160d">KeywordSet6</a> = 20 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493bcd9f0fd493dd5a6938bd5aaacf84da6">KeywordSet7</a> = 21 +<li><a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d17d526af135746f161b3b1b7ca3f392">KeywordSet8</a> = 22 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264935e1bb31d01d44a495488cf3641c99750">Default</a> = 0, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649371944274b0cfca050f4aefbf3444298c">Comment</a> = 1, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d21d57b380642ebd543020799e63a632">CommentLine</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493e35ebe476c95b3facea207f144908370">LineComment</a> = CommentLine, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493396c93bc0d6cdeb43856d875909a801d">CommentDoc</a> = 3, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493590936951ff6172b944c1b561110e32d">Number</a> = 4, +<br> + <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264931384c1a7b8dfe684172e1e560faba1cd">Keyword</a> = 5, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493967841c89abb423eb4905acb5a3856e5">DoubleQuotedString</a> = 6, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264935022b23b5cbb05e3edfa0c9d49f866a4">SingleQuotedString</a> = 7, +<br> + <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649311cca7900ab1e189e415d55276e6ccd3">PlusKeyword</a> = 8, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493506be43dc6a850ffb04d71ec1b9c7166">PlusPrompt</a> = 9, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264939305370cfa11a13ffe1068e979adefb4">Operator</a> = 10, +<br> + <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264933abc77df4a22d67ef033c88f55c94107">Identifier</a> = 11, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d54c83c61889d05d12b7bf1a7a8c4d3b">PlusComment</a> = 13, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493527991ffce3f42a3453245dd6b683d7b">CommentLineHash</a> = 15, +<br> + <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493ab4c3a01d344da55026e112211d2d57b">CommentDocKeyword</a> = 17, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264937e389e85f65d05fe740f3a3188263f34">CommentDocKeywordError</a> = 18, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649326008070eb4a3af88e804bee1b296916">KeywordSet5</a> = 19, +<br> + <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264930dd6abb83c3e9269a79a1615397f160d">KeywordSet6</a> = 20, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493bcd9f0fd493dd5a6938bd5aaacf84da6">KeywordSet7</a> = 21, +<a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d17d526af135746f161b3b1b7ca3f392">KeywordSet8</a> = 22 +<br> + } +</ul> +<h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaLexerSQL.html#a9136c38110a706d75ec7319ed06c098">setFoldComments</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerSQL.html#a89bc20abcc8245a51da795eb3ab8c3e">setFoldCompact</a> (bool fold) +<li>virtual void <a class="el" href="classQextScintillaLexerSQL.html#81ee1d8fdc3a43e94d4176189cb8e2b7">setBackslashEscapes</a> (bool enable) +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerSQL.html#87ef4b587bfc5e453a898112d8b22f2d">QextScintillaLexerSQL</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerSQL.html#d79a35923e0b87040873aa5b8cc369df">~QextScintillaLexerSQL</a> () +<li>const char * <a class="el" href="classQextScintillaLexerSQL.html#0fe5b3ab8b64c7628ba1c4282363cce2">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerSQL.html#f11bb7390af4b47ce159a829f82264d0">lexer</a> () const +<li><a class="anchor" name="4ecae1a9444043658fa61241ad7815dd"></a><!-- doxytag: member="QextScintillaLexerSQL::braceStyle" ref="4ecae1a9444043658fa61241ad7815dd" args="() const " --> +int <b>braceStyle</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerSQL.html#03c2d78be78783cd6c35c888bc7c9411">color</a> (int style) const +<li>bool <a class="el" href="classQextScintillaLexerSQL.html#ee2473ffa75634fb28c893116d9f2c8e">eolFill</a> (int style) const +<li>QFont <a class="el" href="classQextScintillaLexerSQL.html#f0a430cc19f2da4a5c8a6e7f3d4c104f">font</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerSQL.html#c3bf685a2f608817ef23d48293610559">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerSQL.html#033022cf1010cab3db8ad0fc6b4b898e">description</a> (int style) const +<li>QColor <a class="el" href="classQextScintillaLexerSQL.html#f48f2bfeccf7ffd7a9e72ad04a7b0882">paper</a> (int style) const +<li>void <a class="el" href="classQextScintillaLexerSQL.html#786e5f3e0b56a8b6a5b0ef6ce5256a36">refreshProperties</a> () +<li>bool <a class="el" href="classQextScintillaLexerSQL.html#6867e10f4aa8a7c8f040595e18d01967">foldComments</a> () const +<li>bool <a class="el" href="classQextScintillaLexerSQL.html#ea2c85ffc4af6dfdc70dacb9bb35957b">foldCompact</a> () const +<li>bool <a class="el" href="classQextScintillaLexerSQL.html#11e7e14784d83a1b56e690852cbb0b7d">backslashEscapes</a> () const +</ul> +<h2>Protected Member Functions</h2> +<ul> +<li>bool <a class="el" href="classQextScintillaLexerSQL.html#376c567479019727c755b71274f7710c">readProperties</a> (QSettings &qs, const QString &prefix) +<li>bool <a class="el" href="classQextScintillaLexerSQL.html#0824d031dd1ffc6318197e7e545ff84f">writeProperties</a> (QSettings &qs, const QString &prefix) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a> class encapsulates the Scintilla SQL lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493"></a><!-- doxytag: member="QextScintillaLexerSQL::@44" ref="31e2976a0e42d9f90cdfe7aafd426493" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the SQL lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd4264935e1bb31d01d44a495488cf3641c99750"></a><!-- doxytag: member="Default" ref="31e2976a0e42d9f90cdfe7aafd4264935e1bb31d01d44a495488cf3641c99750" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd42649371944274b0cfca050f4aefbf3444298c"></a><!-- doxytag: member="Comment" ref="31e2976a0e42d9f90cdfe7aafd42649371944274b0cfca050f4aefbf3444298c" args="" -->Comment</em> </td><td> +A comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493d21d57b380642ebd543020799e63a632"></a><!-- doxytag: member="CommentLine" ref="31e2976a0e42d9f90cdfe7aafd426493d21d57b380642ebd543020799e63a632" args="" -->CommentLine</em> </td><td> +A line comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493e35ebe476c95b3facea207f144908370"></a><!-- doxytag: member="LineComment" ref="31e2976a0e42d9f90cdfe7aafd426493e35ebe476c95b3facea207f144908370" args="" -->LineComment</em> </td><td> +<dl compact><dt><b><a class="el" href="deprecated.html#_deprecated000005">Deprecated:</a></b></dt><dd>A line comment. </dd></dl> +</td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493396c93bc0d6cdeb43856d875909a801d"></a><!-- doxytag: member="CommentDoc" ref="31e2976a0e42d9f90cdfe7aafd426493396c93bc0d6cdeb43856d875909a801d" args="" -->CommentDoc</em> </td><td> +A JavaDoc/Doxygen style comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493590936951ff6172b944c1b561110e32d"></a><!-- doxytag: member="Number" ref="31e2976a0e42d9f90cdfe7aafd426493590936951ff6172b944c1b561110e32d" args="" -->Number</em> </td><td> +A number. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd4264931384c1a7b8dfe684172e1e560faba1cd"></a><!-- doxytag: member="Keyword" ref="31e2976a0e42d9f90cdfe7aafd4264931384c1a7b8dfe684172e1e560faba1cd" args="" -->Keyword</em> </td><td> +A keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493967841c89abb423eb4905acb5a3856e5"></a><!-- doxytag: member="DoubleQuotedString" ref="31e2976a0e42d9f90cdfe7aafd426493967841c89abb423eb4905acb5a3856e5" args="" -->DoubleQuotedString</em> </td><td> +A double-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd4264935022b23b5cbb05e3edfa0c9d49f866a4"></a><!-- doxytag: member="SingleQuotedString" ref="31e2976a0e42d9f90cdfe7aafd4264935022b23b5cbb05e3edfa0c9d49f866a4" args="" -->SingleQuotedString</em> </td><td> +A single-quoted string. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd42649311cca7900ab1e189e415d55276e6ccd3"></a><!-- doxytag: member="PlusKeyword" ref="31e2976a0e42d9f90cdfe7aafd42649311cca7900ab1e189e415d55276e6ccd3" args="" -->PlusKeyword</em> </td><td> +An SQL*Plus keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493506be43dc6a850ffb04d71ec1b9c7166"></a><!-- doxytag: member="PlusPrompt" ref="31e2976a0e42d9f90cdfe7aafd426493506be43dc6a850ffb04d71ec1b9c7166" args="" -->PlusPrompt</em> </td><td> +An SQL*Plus prompt. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd4264939305370cfa11a13ffe1068e979adefb4"></a><!-- doxytag: member="Operator" ref="31e2976a0e42d9f90cdfe7aafd4264939305370cfa11a13ffe1068e979adefb4" args="" -->Operator</em> </td><td> +An operator. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd4264933abc77df4a22d67ef033c88f55c94107"></a><!-- doxytag: member="Identifier" ref="31e2976a0e42d9f90cdfe7aafd4264933abc77df4a22d67ef033c88f55c94107" args="" -->Identifier</em> </td><td> +An identifier. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493d54c83c61889d05d12b7bf1a7a8c4d3b"></a><!-- doxytag: member="PlusComment" ref="31e2976a0e42d9f90cdfe7aafd426493d54c83c61889d05d12b7bf1a7a8c4d3b" args="" -->PlusComment</em> </td><td> +An SQL*Plus comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493527991ffce3f42a3453245dd6b683d7b"></a><!-- doxytag: member="CommentLineHash" ref="31e2976a0e42d9f90cdfe7aafd426493527991ffce3f42a3453245dd6b683d7b" args="" -->CommentLineHash</em> </td><td> +A '#' line comment. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493ab4c3a01d344da55026e112211d2d57b"></a><!-- doxytag: member="CommentDocKeyword" ref="31e2976a0e42d9f90cdfe7aafd426493ab4c3a01d344da55026e112211d2d57b" args="" -->CommentDocKeyword</em> </td><td> +A JavaDoc/Doxygen keyword. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd4264937e389e85f65d05fe740f3a3188263f34"></a><!-- doxytag: member="CommentDocKeywordError" ref="31e2976a0e42d9f90cdfe7aafd4264937e389e85f65d05fe740f3a3188263f34" args="" -->CommentDocKeywordError</em> </td><td> +A JavaDoc/Doxygen keyword error. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd42649326008070eb4a3af88e804bee1b296916"></a><!-- doxytag: member="KeywordSet5" ref="31e2976a0e42d9f90cdfe7aafd42649326008070eb4a3af88e804bee1b296916" args="" -->KeywordSet5</em> </td><td> +A keyword defined in keyword set number 5. The class must be sub-classed and re-implement <a class="el" href="classQextScintillaLexerSQL.html#c3bf685a2f608817ef23d48293610559">keywords()</a> to make use of this style. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd4264930dd6abb83c3e9269a79a1615397f160d"></a><!-- doxytag: member="KeywordSet6" ref="31e2976a0e42d9f90cdfe7aafd4264930dd6abb83c3e9269a79a1615397f160d" args="" -->KeywordSet6</em> </td><td> +A keyword defined in keyword set number 6. The class must be sub-classed and re-implement <a class="el" href="classQextScintillaLexerSQL.html#c3bf685a2f608817ef23d48293610559">keywords()</a> to make use of this style. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493bcd9f0fd493dd5a6938bd5aaacf84da6"></a><!-- doxytag: member="KeywordSet7" ref="31e2976a0e42d9f90cdfe7aafd426493bcd9f0fd493dd5a6938bd5aaacf84da6" args="" -->KeywordSet7</em> </td><td> +A keyword defined in keyword set number 7. The class must be sub-classed and re-implement <a class="el" href="classQextScintillaLexerSQL.html#c3bf685a2f608817ef23d48293610559">keywords()</a> to make use of this style. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="31e2976a0e42d9f90cdfe7aafd426493d17d526af135746f161b3b1b7ca3f392"></a><!-- doxytag: member="KeywordSet8" ref="31e2976a0e42d9f90cdfe7aafd426493d17d526af135746f161b3b1b7ca3f392" args="" -->KeywordSet8</em> </td><td> +A keyword defined in keyword set number 8. The class must be sub-classed and re-implement <a class="el" href="classQextScintillaLexerSQL.html#c3bf685a2f608817ef23d48293610559">keywords()</a> to make use of this style. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="87ef4b587bfc5e453a898112d8b22f2d"></a><!-- doxytag: member="QextScintillaLexerSQL::QextScintillaLexerSQL" ref="87ef4b587bfc5e453a898112d8b22f2d" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerSQL::QextScintillaLexerSQL </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="d79a35923e0b87040873aa5b8cc369df"></a><!-- doxytag: member="QextScintillaLexerSQL::~QextScintillaLexerSQL" ref="d79a35923e0b87040873aa5b8cc369df" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerSQL::~QextScintillaLexerSQL </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="0fe5b3ab8b64c7628ba1c4282363cce2"></a><!-- doxytag: member="QextScintillaLexerSQL::language" ref="0fe5b3ab8b64c7628ba1c4282363cce2" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerSQL::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="f11bb7390af4b47ce159a829f82264d0"></a><!-- doxytag: member="QextScintillaLexerSQL::lexer" ref="f11bb7390af4b47ce159a829f82264d0" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerSQL::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="03c2d78be78783cd6c35c888bc7c9411"></a><!-- doxytag: member="QextScintillaLexerSQL::color" ref="03c2d78be78783cd6c35c888bc7c9411" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerSQL::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerSQL.html#f48f2bfeccf7ffd7a9e72ad04a7b0882">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="ee2473ffa75634fb28c893116d9f2c8e"></a><!-- doxytag: member="QextScintillaLexerSQL::eolFill" ref="ee2473ffa75634fb28c893116d9f2c8e" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerSQL::eolFill </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the end-of-line fill for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="f0a430cc19f2da4a5c8a6e7f3d4c104f"></a><!-- doxytag: member="QextScintillaLexerSQL::font" ref="f0a430cc19f2da4a5c8a6e7f3d4c104f" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QFont QextScintillaLexerSQL::font </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the font for style number <em>style</em>. +<p> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="c3bf685a2f608817ef23d48293610559"></a><!-- doxytag: member="QextScintillaLexerSQL::keywords" ref="c3bf685a2f608817ef23d48293610559" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerSQL::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="033022cf1010cab3db8ad0fc6b4b898e"></a><!-- doxytag: member="QextScintillaLexerSQL::description" ref="033022cf1010cab3db8ad0fc6b4b898e" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerSQL::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="f48f2bfeccf7ffd7a9e72ad04a7b0882"></a><!-- doxytag: member="QextScintillaLexerSQL::paper" ref="f48f2bfeccf7ffd7a9e72ad04a7b0882" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerSQL::paper </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the background colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerSQL.html#03c2d78be78783cd6c35c888bc7c9411">color()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="786e5f3e0b56a8b6a5b0ef6ce5256a36"></a><!-- doxytag: member="QextScintillaLexerSQL::refreshProperties" ref="786e5f3e0b56a8b6a5b0ef6ce5256a36" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaLexerSQL::refreshProperties </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Causes all properties to be refreshed by emitting the <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged()</a> signal as required. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="6867e10f4aa8a7c8f040595e18d01967"></a><!-- doxytag: member="QextScintillaLexerSQL::foldComments" ref="6867e10f4aa8a7c8f040595e18d01967" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerSQL::foldComments </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if multi-line comment blocks can be folded.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerSQL.html#a9136c38110a706d75ec7319ed06c098">setFoldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="ea2c85ffc4af6dfdc70dacb9bb35957b"></a><!-- doxytag: member="QextScintillaLexerSQL::foldCompact" ref="ea2c85ffc4af6dfdc70dacb9bb35957b" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerSQL::foldCompact </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if trailing blank lines are included in a fold block.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerSQL.html#a89bc20abcc8245a51da795eb3ab8c3e">setFoldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="11e7e14784d83a1b56e690852cbb0b7d"></a><!-- doxytag: member="QextScintillaLexerSQL::backslashEscapes" ref="11e7e14784d83a1b56e690852cbb0b7d" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerSQL::backslashEscapes </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns TRUE if backslash escapes are enabled.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerSQL.html#81ee1d8fdc3a43e94d4176189cb8e2b7">setBackslashEscapes()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a9136c38110a706d75ec7319ed06c098"></a><!-- doxytag: member="QextScintillaLexerSQL::setFoldComments" ref="a9136c38110a706d75ec7319ed06c098" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerSQL::setFoldComments </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then multi-line comment blocks can be folded. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerSQL.html#6867e10f4aa8a7c8f040595e18d01967">foldComments()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="a89bc20abcc8245a51da795eb3ab8c3e"></a><!-- doxytag: member="QextScintillaLexerSQL::setFoldCompact" ref="a89bc20abcc8245a51da795eb3ab8c3e" args="(bool fold)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerSQL::setFoldCompact </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>fold</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>fold</em> is TRUE then trailing blank lines are included in a fold block. The default is TRUE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerSQL.html#ea2c85ffc4af6dfdc70dacb9bb35957b">foldCompact()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="81ee1d8fdc3a43e94d4176189cb8e2b7"></a><!-- doxytag: member="QextScintillaLexerSQL::setBackslashEscapes" ref="81ee1d8fdc3a43e94d4176189cb8e2b7" args="(bool enable)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaLexerSQL::setBackslashEscapes </td> + <td>(</td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>enable</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +If <em>enable</em> is TRUE then backslash escapes are enabled. The default is FALSE.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexerSQL.html#11e7e14784d83a1b56e690852cbb0b7d">backslashEscapes()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="376c567479019727c755b71274f7710c"></a><!-- doxytag: member="QextScintillaLexerSQL::readProperties" ref="376c567479019727c755b71274f7710c" args="(QSettings &qs, const QString &prefix)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerSQL::readProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are read from the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="0824d031dd1ffc6318197e7e545ff84f"></a><!-- doxytag: member="QextScintillaLexerSQL::writeProperties" ref="0824d031dd1ffc6318197e7e545ff84f" args="(QSettings &qs, const QString &prefix) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaLexerSQL::writeProperties </td> + <td>(</td> + <td class="paramtype">QSettings & </td> + <td class="paramname"> <em>qs</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const QString & </td> + <td class="paramname"> <em>prefix</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +The lexer's properties are written to the settings <em>qs</em>. <em>prefix</em> (which has a trailing '/') should be used as a prefix to the key of each setting. TRUE is returned if there is no error. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerTeX-members.html b/doc/html/classQextScintillaLexerTeX-members.html new file mode 100644 index 0000000..4775fda --- /dev/null +++ b/doc/html/classQextScintillaLexerTeX-members.html @@ -0,0 +1,74 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerTeX Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a>, including all inherited members.<p><table> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionFillups</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>autoCompletionStartCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">autoIndentStyle</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockEnd</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockLookback</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStart</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>blockStartKeyword</b>(int *style=0) const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>braceStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#814e299720c89aca2180b048faada4f2">color</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">colorChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b106091b2476359f3cb77e54efde1ff4e9">Command</a> enum value</td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b137e4297866c11d4c1a540f153ee9e6c0">Default</a> enum value</td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">defaultColor</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">defaultFont</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">defaultPaper</a>() const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr bgcolor="#f0f0f0"><td><b>defaultStyle</b>() const (defined in <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#179f7f8ae87d3437f7ec3e536f682cd2">description</a>(int style) const </td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">eolFill</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">eolFillChanged</a>(bool eoffilled, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">font</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">fontChanged</a>(const QFont &f, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b154823b2c003b00f33a78b51c04522755">Group</a> enum value</td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#7fd4e6ac4ff5d9ec92b12db7483000c1">keywords</a>(int set) const </td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#1f77892e32f3efe0adac5fa64fd3a6b6">language</a>() const </td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#38a71b9864c9de3e422d696d49b7e4f0">lexer</a>() const </td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">paper</a>(int style) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">paperChanged</a>(const QColor &c, int style)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">propertyChanged</a>(const char *prop, const char *val)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [signal]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#ded3543e0a0fc392bb8adbcd8660914e">QextScintillaLexerTeX</a>(QObject *parent=0, const char *name=0)</td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">readProperties</a>(QSettings &qs, const QString &prefix)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">readSettings</a>(QSettings &qs, const char *prefix="/Scintilla")</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">refreshProperties</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">setAutoIndentStyle</a>(int autoindentstyle)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">setColor</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">setDefaultColor</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">setDefaultFont</a>(const QFont &f)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">setDefaultPaper</a>(const QColor &c)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">setEolFill</a>(bool eoffill, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">setFont</a>(const QFont &f, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">setPaper</a>(const QColor &c, int style=-1)</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1f46bc40ebff51b439bc0a50c809c9d94">Special</a> enum value</td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1d826b7be57d84563faa5281dea57a067">Symbol</a> enum value</td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1107f5f805d936e4c6ad270382a4b38e1">Text</a> enum value</td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td></td></tr> + <tr bgcolor="#f0f0f0"><td><b>wordCharacters</b>() const (defined in <a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a>)</td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">writeProperties</a>(QSettings &qs, const QString &prefix) const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [protected, virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">writeSettings</a>(QSettings &qs, const char *prefix="/Scintilla") const </td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">~QextScintillaLexer</a>()</td><td><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaLexerTeX.html#51c29124f25bfacfc3a43e85cf616fc1">~QextScintillaLexerTeX</a>()</td><td><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaLexerTeX.html b/doc/html/classQextScintillaLexerTeX.html new file mode 100644 index 0000000..76f6639 --- /dev/null +++ b/doc/html/classQextScintillaLexerTeX.html @@ -0,0 +1,261 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaLexerTeX Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaLexerTeX Class Reference</h1><!-- doxytag: class="QextScintillaLexerTeX" --><!-- doxytag: inherits="QextScintillaLexer" -->The <a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a> class encapsulates the Scintilla TeX lexer. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillalexertex.h></code> +<p> +Inherits <a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a>. +<p> +<a href="classQextScintillaLexerTeX-members.html">List of all members.</a><h2>Public Types</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b137e4297866c11d4c1a540f153ee9e6c0">Default</a> = 0 +<li><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1f46bc40ebff51b439bc0a50c809c9d94">Special</a> = 1 +<li><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b154823b2c003b00f33a78b51c04522755">Group</a> = 2 +<li><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1d826b7be57d84563faa5281dea57a067">Symbol</a> = 3 +<li><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b106091b2476359f3cb77e54efde1ff4e9">Command</a> = 4 +<li><a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1107f5f805d936e4c6ad270382a4b38e1">Text</a> = 5 +<li>enum { <br> + <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b137e4297866c11d4c1a540f153ee9e6c0">Default</a> = 0, +<a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1f46bc40ebff51b439bc0a50c809c9d94">Special</a> = 1, +<a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b154823b2c003b00f33a78b51c04522755">Group</a> = 2, +<br> + <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1d826b7be57d84563faa5281dea57a067">Symbol</a> = 3, +<a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b106091b2476359f3cb77e54efde1ff4e9">Command</a> = 4, +<a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1107f5f805d936e4c6ad270382a4b38e1">Text</a> = 5 +<br> + } +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaLexerTeX.html#ded3543e0a0fc392bb8adbcd8660914e">QextScintillaLexerTeX</a> (QObject *parent=0, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaLexerTeX.html#51c29124f25bfacfc3a43e85cf616fc1">~QextScintillaLexerTeX</a> () +<li>const char * <a class="el" href="classQextScintillaLexerTeX.html#1f77892e32f3efe0adac5fa64fd3a6b6">language</a> () const +<li>const char * <a class="el" href="classQextScintillaLexerTeX.html#38a71b9864c9de3e422d696d49b7e4f0">lexer</a> () const +<li><a class="anchor" name="99e30cf15ab2cf80cd9d9ddf9350a959"></a><!-- doxytag: member="QextScintillaLexerTeX::wordCharacters" ref="99e30cf15ab2cf80cd9d9ddf9350a959" args="() const " --> +const char * <b>wordCharacters</b> () const +<li>QColor <a class="el" href="classQextScintillaLexerTeX.html#814e299720c89aca2180b048faada4f2">color</a> (int style) const +<li>const char * <a class="el" href="classQextScintillaLexerTeX.html#7fd4e6ac4ff5d9ec92b12db7483000c1">keywords</a> (int set) const +<li>QString <a class="el" href="classQextScintillaLexerTeX.html#179f7f8ae87d3437f7ec3e536f682cd2">description</a> (int style) const +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a> class encapsulates the Scintilla TeX lexer. +<p> +<hr><h2>Member Enumeration Documentation</h2> +<a class="anchor" name="9b46570bafefb6865d2da439bb17c3b1"></a><!-- doxytag: member="QextScintillaLexerTeX::@45" ref="9b46570bafefb6865d2da439bb17c3b1" args="" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">anonymous enum </td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +This enum defines the meanings of the different styles used by the TeX lexer. <dl compact><dt><b>Enumerator: </b></dt><dd> +<table border="0" cellspacing="2" cellpadding="0"> +<tr><td valign="top"><em><a class="anchor" name="9b46570bafefb6865d2da439bb17c3b137e4297866c11d4c1a540f153ee9e6c0"></a><!-- doxytag: member="Default" ref="9b46570bafefb6865d2da439bb17c3b137e4297866c11d4c1a540f153ee9e6c0" args="" -->Default</em> </td><td> +The default. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="9b46570bafefb6865d2da439bb17c3b1f46bc40ebff51b439bc0a50c809c9d94"></a><!-- doxytag: member="Special" ref="9b46570bafefb6865d2da439bb17c3b1f46bc40ebff51b439bc0a50c809c9d94" args="" -->Special</em> </td><td> +A special. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="9b46570bafefb6865d2da439bb17c3b154823b2c003b00f33a78b51c04522755"></a><!-- doxytag: member="Group" ref="9b46570bafefb6865d2da439bb17c3b154823b2c003b00f33a78b51c04522755" args="" -->Group</em> </td><td> +A group. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="9b46570bafefb6865d2da439bb17c3b1d826b7be57d84563faa5281dea57a067"></a><!-- doxytag: member="Symbol" ref="9b46570bafefb6865d2da439bb17c3b1d826b7be57d84563faa5281dea57a067" args="" -->Symbol</em> </td><td> +A symbol. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="9b46570bafefb6865d2da439bb17c3b106091b2476359f3cb77e54efde1ff4e9"></a><!-- doxytag: member="Command" ref="9b46570bafefb6865d2da439bb17c3b106091b2476359f3cb77e54efde1ff4e9" args="" -->Command</em> </td><td> +A command. </td></tr> +<tr><td valign="top"><em><a class="anchor" name="9b46570bafefb6865d2da439bb17c3b1107f5f805d936e4c6ad270382a4b38e1"></a><!-- doxytag: member="Text" ref="9b46570bafefb6865d2da439bb17c3b1107f5f805d936e4c6ad270382a4b38e1" args="" -->Text</em> </td><td> +Text. </td></tr> +</table> +</dl> + +</div> +</div><p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="ded3543e0a0fc392bb8adbcd8660914e"></a><!-- doxytag: member="QextScintillaLexerTeX::QextScintillaLexerTeX" ref="ded3543e0a0fc392bb8adbcd8660914e" args="(QObject *parent=0, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaLexerTeX::QextScintillaLexerTeX </td> + <td>(</td> + <td class="paramtype">QObject * </td> + <td class="paramname"> <em>parent</em> = <code>0</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a> with parent <em>parent</em> and name <em>name</em>. <em>parent</em> is typically the <a class="el" href="classQextScintilla.html">QextScintilla</a> instance. +</div> +</div><p> +<a class="anchor" name="51c29124f25bfacfc3a43e85cf616fc1"></a><!-- doxytag: member="QextScintillaLexerTeX::~QextScintillaLexerTeX" ref="51c29124f25bfacfc3a43e85cf616fc1" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaLexerTeX::~QextScintillaLexerTeX </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="1f77892e32f3efe0adac5fa64fd3a6b6"></a><!-- doxytag: member="QextScintillaLexerTeX::language" ref="1f77892e32f3efe0adac5fa64fd3a6b6" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerTeX::language </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the language. +<p> + +<p> +Implements <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="38a71b9864c9de3e422d696d49b7e4f0"></a><!-- doxytag: member="QextScintillaLexerTeX::lexer" ref="38a71b9864c9de3e422d696d49b7e4f0" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerTeX::lexer </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the name of the lexer. Some lexers support a number of languages. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="814e299720c89aca2180b048faada4f2"></a><!-- doxytag: member="QextScintillaLexerTeX::color" ref="814e299720c89aca2180b048faada4f2" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QColor QextScintillaLexerTeX::color </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the foreground colour of the text for style number <em>style</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">paper()</a> </dd></dl> + +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="7fd4e6ac4ff5d9ec92b12db7483000c1"></a><!-- doxytag: member="QextScintillaLexerTeX::keywords" ref="7fd4e6ac4ff5d9ec92b12db7483000c1" args="(int set) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">const char* QextScintillaLexerTeX::keywords </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>set</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the set of keywords for the keyword set <em>set</em> recognised by the lexer as a space separated string. +<p> +Reimplemented from <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a>. +</div> +</div><p> +<a class="anchor" name="179f7f8ae87d3437f7ec3e536f682cd2"></a><!-- doxytag: member="QextScintillaLexerTeX::description" ref="179f7f8ae87d3437f7ec3e536f682cd2" args="(int style) const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QString QextScintillaLexerTeX::description </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>style</em> </td> + <td> ) </td> + <td width="100%"> const<code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Returns the descriptive name for style number <em>style</em>. If the style is invalid for this language then QString::null is returned. This is intended to be used in user preference dialogs. +<p> +Implements <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>. +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaMacro-members.html b/doc/html/classQextScintillaMacro-members.html new file mode 100644 index 0000000..1ce7114 --- /dev/null +++ b/doc/html/classQextScintillaMacro-members.html @@ -0,0 +1,34 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaMacro Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a>, including all inherited members.<p><table> + <tr class="memlist"><td><a class="el" href="classQextScintillaMacro.html#e79848bbd1b6c87430e6401e71a9cf1b">clear</a>()</td><td><a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaMacro.html#97005cdb33759ffe2b82a616d82046f5">endRecording</a>()</td><td><a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaMacro.html#22ba5818bbcc5562c5fd5a5332e8238f">load</a>(const QCString &asc)</td><td><a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaMacro.html#23408394a213fa7fcd5b7cab2a060c27">play</a>()</td><td><a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaMacro.html#05bf326d2ee9df1b319af8f243cab7f2">QextScintillaMacro</a>(QextScintilla *parent, const char *name=0)</td><td><a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaMacro.html#f7a13a836fe98c2cdef8c0e767436b74">QextScintillaMacro</a>(const QCString &asc, QextScintilla *parent, const char *name=0)</td><td><a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaMacro.html#dbdc69113895d3f07b0bdb1f3f075498">save</a>() const </td><td><a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaMacro.html#439f6576433d4633693139192ae9bc98">startRecording</a>()</td><td><a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a></td><td><code> [virtual, slot]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaMacro.html#d20a0db0b92b233a63f72e43c616ce3b">~QextScintillaMacro</a>()</td><td><a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a></td><td><code> [virtual]</code></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaMacro.html b/doc/html/classQextScintillaMacro.html new file mode 100644 index 0000000..7102abb --- /dev/null +++ b/doc/html/classQextScintillaMacro.html @@ -0,0 +1,267 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaMacro Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaMacro Class Reference</h1><!-- doxytag: class="QextScintillaMacro" -->The <a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a> class represents a sequence of recordable editor commands. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillamacro.h></code> +<p> +<a href="classQextScintillaMacro-members.html">List of all members.</a><h2>Public Slots</h2> +<ul> +<li>virtual void <a class="el" href="classQextScintillaMacro.html#23408394a213fa7fcd5b7cab2a060c27">play</a> () +<li>virtual void <a class="el" href="classQextScintillaMacro.html#439f6576433d4633693139192ae9bc98">startRecording</a> () +<li>virtual void <a class="el" href="classQextScintillaMacro.html#97005cdb33759ffe2b82a616d82046f5">endRecording</a> () +</ul> +<h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaMacro.html#05bf326d2ee9df1b319af8f243cab7f2">QextScintillaMacro</a> (<a class="el" href="classQextScintilla.html">QextScintilla</a> *parent, const char *name=0) +<li><a class="el" href="classQextScintillaMacro.html#f7a13a836fe98c2cdef8c0e767436b74">QextScintillaMacro</a> (const QCString &asc, <a class="el" href="classQextScintilla.html">QextScintilla</a> *parent, const char *name=0) +<li>virtual <a class="el" href="classQextScintillaMacro.html#d20a0db0b92b233a63f72e43c616ce3b">~QextScintillaMacro</a> () +<li>void <a class="el" href="classQextScintillaMacro.html#e79848bbd1b6c87430e6401e71a9cf1b">clear</a> () +<li>bool <a class="el" href="classQextScintillaMacro.html#22ba5818bbcc5562c5fd5a5332e8238f">load</a> (const QCString &asc) +<li>QCString <a class="el" href="classQextScintillaMacro.html#dbdc69113895d3f07b0bdb1f3f075498">save</a> () const +</ul> +<h2>Classes</h2> +<ul> +<li>struct <b>Macro</b> +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a> class represents a sequence of recordable editor commands. +<p> +Methods are provided to convert convert a macro to and from a textual representation so that they can be easily written to and read from permanent storage. +<p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="05bf326d2ee9df1b319af8f243cab7f2"></a><!-- doxytag: member="QextScintillaMacro::QextScintillaMacro" ref="05bf326d2ee9df1b319af8f243cab7f2" args="(QextScintilla *parent, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaMacro::QextScintillaMacro </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html">QextScintilla</a> * </td> + <td class="paramname"> <em>parent</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a> with parent <em>parent</em> and name <em>name</em>. +</div> +</div><p> +<a class="anchor" name="f7a13a836fe98c2cdef8c0e767436b74"></a><!-- doxytag: member="QextScintillaMacro::QextScintillaMacro" ref="f7a13a836fe98c2cdef8c0e767436b74" args="(const QCString &asc, QextScintilla *parent, const char *name=0)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaMacro::QextScintillaMacro </td> + <td>(</td> + <td class="paramtype">const QCString & </td> + <td class="paramname"> <em>asc</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype"><a class="el" href="classQextScintilla.html">QextScintilla</a> * </td> + <td class="paramname"> <em>parent</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">const char * </td> + <td class="paramname"> <em>name</em> = <code>0</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Construct a <a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a> from the printable ASCII representation <em>asc</em>, with parent <em>parent</em> and name <em>name</em>. +</div> +</div><p> +<a class="anchor" name="d20a0db0b92b233a63f72e43c616ce3b"></a><!-- doxytag: member="QextScintillaMacro::~QextScintillaMacro" ref="d20a0db0b92b233a63f72e43c616ce3b" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual QextScintillaMacro::~QextScintillaMacro </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroy the <a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="e79848bbd1b6c87430e6401e71a9cf1b"></a><!-- doxytag: member="QextScintillaMacro::clear" ref="e79848bbd1b6c87430e6401e71a9cf1b" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void QextScintillaMacro::clear </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Clear the contents of the macro. +<p> + +</div> +</div><p> +<a class="anchor" name="22ba5818bbcc5562c5fd5a5332e8238f"></a><!-- doxytag: member="QextScintillaMacro::load" ref="22ba5818bbcc5562c5fd5a5332e8238f" args="(const QCString &asc)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">bool QextScintillaMacro::load </td> + <td>(</td> + <td class="paramtype">const QCString & </td> + <td class="paramname"> <em>asc</em> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Load the macro from the printable ASCII representation <em>asc</em>. Returns TRUE if there was no error.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaMacro.html#dbdc69113895d3f07b0bdb1f3f075498">save()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="dbdc69113895d3f07b0bdb1f3f075498"></a><!-- doxytag: member="QextScintillaMacro::save" ref="dbdc69113895d3f07b0bdb1f3f075498" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QCString QextScintillaMacro::save </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const</td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Return a printable ASCII representation of the macro. It is guaranteed that only printable ASCII characters are used and that double quote characters will not be used.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaMacro.html#22ba5818bbcc5562c5fd5a5332e8238f">load()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="23408394a213fa7fcd5b7cab2a060c27"></a><!-- doxytag: member="QextScintillaMacro::play" ref="23408394a213fa7fcd5b7cab2a060c27" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaMacro::play </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Play the macro. +<p> + +</div> +</div><p> +<a class="anchor" name="439f6576433d4633693139192ae9bc98"></a><!-- doxytag: member="QextScintillaMacro::startRecording" ref="439f6576433d4633693139192ae9bc98" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaMacro::startRecording </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Start recording user commands and add them to the macro. +<p> + +</div> +</div><p> +<a class="anchor" name="97005cdb33759ffe2b82a616d82046f5"></a><!-- doxytag: member="QextScintillaMacro::endRecording" ref="97005cdb33759ffe2b82a616d82046f5" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaMacro::endRecording </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"><code> [virtual, slot]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Stop recording user commands. +<p> + +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaPrinter-members.html b/doc/html/classQextScintillaPrinter-members.html new file mode 100644 index 0000000..64e416d --- /dev/null +++ b/doc/html/classQextScintillaPrinter-members.html @@ -0,0 +1,33 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Member List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaPrinter Member List</h1>This is the complete list of members for <a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a>, including all inherited members.<p><table> + <tr class="memlist"><td><a class="el" href="classQextScintillaPrinter.html#5d6f0f8c13568054efbe9003867f1b09">formatPage</a>(QPainter &painter, bool drawing, QRect &area, int pagenr)</td><td><a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaPrinter.html#a990192f1b73683409f23b0bb1ba3e94">magnification</a>() const </td><td><a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaPrinter.html#31d261de4a31e82646f4f75d1a6085f6">printRange</a>(QextScintillaBase *qsb, int from=-1, int to=-1)</td><td><a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaPrinter.html#d304f2d535a10595acc613521f92dc49">QextScintillaPrinter</a>(PrinterMode mode=ScreenResolution)</td><td><a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a></td><td></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaPrinter.html#7343a1deb132bfc5dfd2c4208eff3d00">setMagnification</a>(int magnification)</td><td><a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaPrinter.html#f4904d6ba001f4c7145983f9814f00c1">setWrapMode</a>(QextScintilla::WrapMode wmode)</td><td><a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a></td><td><code> [virtual]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaPrinter.html#8aba0d63efee1fb2d6b5609c9120f970">wrapMode</a>() const </td><td><a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a></td><td><code> [inline]</code></td></tr> + <tr class="memlist"><td><a class="el" href="classQextScintillaPrinter.html#34077d68da930b18eba124ab64555898">~QextScintillaPrinter</a>()</td><td><a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a></td><td></td></tr> +</table><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/classQextScintillaPrinter.html b/doc/html/classQextScintillaPrinter.html new file mode 100644 index 0000000..1e829ca --- /dev/null +++ b/doc/html/classQextScintillaPrinter.html @@ -0,0 +1,252 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: QextScintillaPrinter Class Reference</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QextScintillaPrinter Class Reference</h1><!-- doxytag: class="QextScintillaPrinter" -->The <a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a> class is a sub-class of the Qt QPrinter class that is able to print the text of a Scintilla document. +<a href="#_details">More...</a> +<p> +<code>#include <qextscintillaprinter.h></code> +<p> +<a href="classQextScintillaPrinter-members.html">List of all members.</a><h2>Public Member Functions</h2> +<ul> +<li><a class="el" href="classQextScintillaPrinter.html#d304f2d535a10595acc613521f92dc49">QextScintillaPrinter</a> (PrinterMode mode=ScreenResolution) +<li><a class="el" href="classQextScintillaPrinter.html#34077d68da930b18eba124ab64555898">~QextScintillaPrinter</a> () +<li>virtual void <a class="el" href="classQextScintillaPrinter.html#5d6f0f8c13568054efbe9003867f1b09">formatPage</a> (QPainter &painter, bool drawing, QRect &area, int pagenr) +<li>int <a class="el" href="classQextScintillaPrinter.html#a990192f1b73683409f23b0bb1ba3e94">magnification</a> () const +<li>virtual void <a class="el" href="classQextScintillaPrinter.html#7343a1deb132bfc5dfd2c4208eff3d00">setMagnification</a> (int magnification) +<li>virtual int <a class="el" href="classQextScintillaPrinter.html#31d261de4a31e82646f4f75d1a6085f6">printRange</a> (<a class="el" href="classQextScintillaBase.html">QextScintillaBase</a> *qsb, int from=-1, int to=-1) +<li><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">QextScintilla::WrapMode</a> <a class="el" href="classQextScintillaPrinter.html#8aba0d63efee1fb2d6b5609c9120f970">wrapMode</a> () const +<li>virtual void <a class="el" href="classQextScintillaPrinter.html#f4904d6ba001f4c7145983f9814f00c1">setWrapMode</a> (<a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">QextScintilla::WrapMode</a> wmode) +</ul> +<hr><a name="_details"></a><h2>Detailed Description</h2> +The <a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a> class is a sub-class of the Qt QPrinter class that is able to print the text of a Scintilla document. +<p> +The class can be further sub-classed to alter to layout of the text, adding headers and footers for example. +<p> +<hr><h2>Constructor & Destructor Documentation</h2> +<a class="anchor" name="d304f2d535a10595acc613521f92dc49"></a><!-- doxytag: member="QextScintillaPrinter::QextScintillaPrinter" ref="d304f2d535a10595acc613521f92dc49" args="(PrinterMode mode=ScreenResolution)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaPrinter::QextScintillaPrinter </td> + <td>(</td> + <td class="paramtype">PrinterMode </td> + <td class="paramname"> <em>mode</em> = <code>ScreenResolution</code> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Constructs a printer paint device with mode <em>mode</em>. +<p> + +</div> +</div><p> +<a class="anchor" name="34077d68da930b18eba124ab64555898"></a><!-- doxytag: member="QextScintillaPrinter::~QextScintillaPrinter" ref="34077d68da930b18eba124ab64555898" args="()" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">QextScintillaPrinter::~QextScintillaPrinter </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Destroys the <a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a> instance. +<p> + +</div> +</div><p> +<hr><h2>Member Function Documentation</h2> +<a class="anchor" name="5d6f0f8c13568054efbe9003867f1b09"></a><!-- doxytag: member="QextScintillaPrinter::formatPage" ref="5d6f0f8c13568054efbe9003867f1b09" args="(QPainter &painter, bool drawing, QRect &area, int pagenr)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaPrinter::formatPage </td> + <td>(</td> + <td class="paramtype">QPainter & </td> + <td class="paramname"> <em>painter</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">bool </td> + <td class="paramname"> <em>drawing</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">QRect & </td> + <td class="paramname"> <em>area</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>pagenr</em></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Format a page, by adding headers and footers for example, before the document text is drawn on it. <em>painter</em> is the painter to be used to add customised text and graphics. <em>drawing</em> is TRUE if the page is actually being drawn rather than being sized. <em>painter</em> drawing methods must only be called when <em>drawing</em> is TRUE. <em>area</em> is the area of the page that will be used to draw the text. This should be modified if it is necessary to reserve space for any customised text or graphics. By default the area is relative to the printable area of the page. Use QPrinter::setFullPage() because calling <a class="el" href="classQextScintillaPrinter.html#31d261de4a31e82646f4f75d1a6085f6">printRange()</a> if you want to try and print over the whole page. <em>pagenr</em> is the number of the page. The first page is numbered 1. +</div> +</div><p> +<a class="anchor" name="a990192f1b73683409f23b0bb1ba3e94"></a><!-- doxytag: member="QextScintillaPrinter::magnification" ref="a990192f1b73683409f23b0bb1ba3e94" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int QextScintillaPrinter::magnification </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Return the number of points to add to each font when printing.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaPrinter.html#7343a1deb132bfc5dfd2c4208eff3d00">setMagnification()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="7343a1deb132bfc5dfd2c4208eff3d00"></a><!-- doxytag: member="QextScintillaPrinter::setMagnification" ref="7343a1deb132bfc5dfd2c4208eff3d00" args="(int magnification)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaPrinter::setMagnification </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"> <em>magnification</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the number of points to add to each font when printing to <em>magnification</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaPrinter.html#a990192f1b73683409f23b0bb1ba3e94">magnification()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="31d261de4a31e82646f4f75d1a6085f6"></a><!-- doxytag: member="QextScintillaPrinter::printRange" ref="31d261de4a31e82646f4f75d1a6085f6" args="(QextScintillaBase *qsb, int from=-1, int to=-1)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual int QextScintillaPrinter::printRange </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a> * </td> + <td class="paramname"> <em>qsb</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>from</em> = <code>-1</code>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"> <em>to</em> = <code>-1</code></td><td> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td><td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Print a range of lines from the Scintilla instance <em>qsb</em>. <em>from</em> is the first line to print and a negative value signifies the first line of text. <em>to</em> is the last line to print and a negative value signifies the last line of text. TRUE is returned if there was no error. +</div> +</div><p> +<a class="anchor" name="8aba0d63efee1fb2d6b5609c9120f970"></a><!-- doxytag: member="QextScintillaPrinter::wrapMode" ref="8aba0d63efee1fb2d6b5609c9120f970" args="() const " --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname"><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">QextScintilla::WrapMode</a> QextScintillaPrinter::wrapMode </td> + <td>(</td> + <td class="paramname"> </td> + <td> ) </td> + <td width="100%"> const<code> [inline]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Return the line wrap mode used when printing. The default is <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3a7f65cd359e236aee9ab70d7bf55085c">QextScintilla::WrapWord</a>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaPrinter.html#f4904d6ba001f4c7145983f9814f00c1">setWrapMode()</a> </dd></dl> + +</div> +</div><p> +<a class="anchor" name="f4904d6ba001f4c7145983f9814f00c1"></a><!-- doxytag: member="QextScintillaPrinter::setWrapMode" ref="f4904d6ba001f4c7145983f9814f00c1" args="(QextScintilla::WrapMode wmode)" --> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">virtual void QextScintillaPrinter::setWrapMode </td> + <td>(</td> + <td class="paramtype"><a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">QextScintilla::WrapMode</a> </td> + <td class="paramname"> <em>wmode</em> </td> + <td> ) </td> + <td width="100%"><code> [virtual]</code></td> + </tr> + </table> +</div> +<div class="memdoc"> + +<p> +Sets the line wrap mode used when printing to <em>wmode</em>.<p> +<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classQextScintillaPrinter.html#8aba0d63efee1fb2d6b5609c9120f970">wrapMode()</a> </dd></dl> + +</div> +</div><p> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/deprecated.html b/doc/html/deprecated.html new file mode 100644 index 0000000..7a37e8e --- /dev/null +++ b/doc/html/deprecated.html @@ -0,0 +1,42 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Deprecated List</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<h1><a class="anchor" name="deprecated">Deprecated List</a></h1><a class="anchor" name="_deprecated000001"></a> <dl> +<dt>Member <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11fb2cbda4e68b7a896b938135655895ed">QextScintillaLexerBash::WhiteSpace</a> </dt> +<dd>White space. </dd> +</dl> +<p> +<a class="anchor" name="_deprecated000002"></a> <dl> +<dt>Member <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067">QextScintillaLexerCPP::WhiteSpace</a> </dt> +<dd>White space. </dd> +</dl> +<p> +<a class="anchor" name="_deprecated000003"></a> <dl> +<dt>Member <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdc61d78aea09ff8c9c19282f7fc3c344f">QextScintillaLexerPerl::WhiteSpace</a> </dt> +<dd>White space. </dd> +</dl> +<p> +<a class="anchor" name="_deprecated000004"></a> <dl> +<dt>Member <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7c4b12f8a7c7e4dae3508445700da1bd3">QextScintillaLexerPython::WhiteSpace</a> </dt> +<dd>White space. </dd> +</dl> +<p> +<a class="anchor" name="_deprecated000005"></a> <dl> +<dt>Member <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493e35ebe476c95b3facea207f144908370">QextScintillaLexerSQL::LineComment</a> </dt> +<dd>A line comment. </dd> +</dl> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/doxygen.css b/doc/html/doxygen.css new file mode 100644 index 0000000..5d58369 --- /dev/null +++ b/doc/html/doxygen.css @@ -0,0 +1,358 @@ +BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV { + font-family: Geneva, Arial, Helvetica, sans-serif; +} +BODY,TD { + font-size: 90%; +} +H1 { + text-align: center; + font-size: 160%; +} +H2 { + font-size: 120%; +} +H3 { + font-size: 100%; +} +CAPTION { font-weight: bold } +DIV.qindex { + width: 100%; + background-color: #e8eef2; + border: 1px solid #84b0c7; + text-align: center; + margin: 2px; + padding: 2px; + line-height: 140%; +} +DIV.nav { + width: 100%; + background-color: #e8eef2; + border: 1px solid #84b0c7; + text-align: center; + margin: 2px; + padding: 2px; + line-height: 140%; +} +DIV.navtab { + background-color: #e8eef2; + border: 1px solid #84b0c7; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} +TD.navtab { + font-size: 70%; +} +A.qindex { + text-decoration: none; + font-weight: bold; + color: #1A419D; +} +A.qindex:visited { + text-decoration: none; + font-weight: bold; + color: #1A419D +} +A.qindex:hover { + text-decoration: none; + background-color: #ddddff; +} +A.qindexHL { + text-decoration: none; + font-weight: bold; + background-color: #6666cc; + color: #ffffff; + border: 1px double #9295C2; +} +A.qindexHL:hover { + text-decoration: none; + background-color: #6666cc; + color: #ffffff; +} +A.qindexHL:visited { text-decoration: none; background-color: #6666cc; color: #ffffff } +A.el { text-decoration: none; font-weight: bold } +A.elRef { font-weight: bold } +A.code:link { text-decoration: none; font-weight: normal; color: #0000FF} +A.code:visited { text-decoration: none; font-weight: normal; color: #0000FF} +A.codeRef:link { font-weight: normal; color: #0000FF} +A.codeRef:visited { font-weight: normal; color: #0000FF} +A:hover { text-decoration: none; background-color: #f2f2ff } +DL.el { margin-left: -1cm } +.fragment { + font-family: monospace, fixed; + font-size: 95%; +} +PRE.fragment { + border: 1px solid #CCCCCC; + background-color: #f5f5f5; + margin-top: 4px; + margin-bottom: 4px; + margin-left: 2px; + margin-right: 8px; + padding-left: 6px; + padding-right: 6px; + padding-top: 4px; + padding-bottom: 4px; +} +DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px } + +DIV.groupHeader { + margin-left: 16px; + margin-top: 12px; + margin-bottom: 6px; + font-weight: bold; +} +DIV.groupText { margin-left: 16px; font-style: italic; font-size: 90% } +BODY { + background: white; + color: black; + margin-right: 20px; + margin-left: 20px; +} +TD.indexkey { + background-color: #e8eef2; + font-weight: bold; + padding-right : 10px; + padding-top : 2px; + padding-left : 10px; + padding-bottom : 2px; + margin-left : 0px; + margin-right : 0px; + margin-top : 2px; + margin-bottom : 2px; + border: 1px solid #CCCCCC; +} +TD.indexvalue { + background-color: #e8eef2; + font-style: italic; + padding-right : 10px; + padding-top : 2px; + padding-left : 10px; + padding-bottom : 2px; + margin-left : 0px; + margin-right : 0px; + margin-top : 2px; + margin-bottom : 2px; + border: 1px solid #CCCCCC; +} +TR.memlist { + background-color: #f0f0f0; +} +P.formulaDsp { text-align: center; } +IMG.formulaDsp { } +IMG.formulaInl { vertical-align: middle; } +SPAN.keyword { color: #008000 } +SPAN.keywordtype { color: #604020 } +SPAN.keywordflow { color: #e08000 } +SPAN.comment { color: #800000 } +SPAN.preprocessor { color: #806020 } +SPAN.stringliteral { color: #002080 } +SPAN.charliteral { color: #008080 } +.mdescLeft { + padding: 0px 8px 4px 8px; + font-size: 80%; + font-style: italic; + background-color: #FAFAFA; + border-top: 1px none #E0E0E0; + border-right: 1px none #E0E0E0; + border-bottom: 1px none #E0E0E0; + border-left: 1px none #E0E0E0; + margin: 0px; +} +.mdescRight { + padding: 0px 8px 4px 8px; + font-size: 80%; + font-style: italic; + background-color: #FAFAFA; + border-top: 1px none #E0E0E0; + border-right: 1px none #E0E0E0; + border-bottom: 1px none #E0E0E0; + border-left: 1px none #E0E0E0; + margin: 0px; +} +.memItemLeft { + padding: 1px 0px 0px 8px; + margin: 4px; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; + border-top-color: #E0E0E0; + border-right-color: #E0E0E0; + border-bottom-color: #E0E0E0; + border-left-color: #E0E0E0; + border-top-style: solid; + border-right-style: none; + border-bottom-style: none; + border-left-style: none; + background-color: #FAFAFA; + font-size: 80%; +} +.memItemRight { + padding: 1px 8px 0px 8px; + margin: 4px; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; + border-top-color: #E0E0E0; + border-right-color: #E0E0E0; + border-bottom-color: #E0E0E0; + border-left-color: #E0E0E0; + border-top-style: solid; + border-right-style: none; + border-bottom-style: none; + border-left-style: none; + background-color: #FAFAFA; + font-size: 80%; +} +.memTemplItemLeft { + padding: 1px 0px 0px 8px; + margin: 4px; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; + border-top-color: #E0E0E0; + border-right-color: #E0E0E0; + border-bottom-color: #E0E0E0; + border-left-color: #E0E0E0; + border-top-style: none; + border-right-style: none; + border-bottom-style: none; + border-left-style: none; + background-color: #FAFAFA; + font-size: 80%; +} +.memTemplItemRight { + padding: 1px 8px 0px 8px; + margin: 4px; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; + border-top-color: #E0E0E0; + border-right-color: #E0E0E0; + border-bottom-color: #E0E0E0; + border-left-color: #E0E0E0; + border-top-style: none; + border-right-style: none; + border-bottom-style: none; + border-left-style: none; + background-color: #FAFAFA; + font-size: 80%; +} +.memTemplParams { + padding: 1px 0px 0px 8px; + margin: 4px; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; + border-top-color: #E0E0E0; + border-right-color: #E0E0E0; + border-bottom-color: #E0E0E0; + border-left-color: #E0E0E0; + border-top-style: solid; + border-right-style: none; + border-bottom-style: none; + border-left-style: none; + color: #606060; + background-color: #FAFAFA; + font-size: 80%; +} +.search { color: #003399; + font-weight: bold; +} +FORM.search { + margin-bottom: 0px; + margin-top: 0px; +} +INPUT.search { font-size: 75%; + color: #000080; + font-weight: normal; + background-color: #e8eef2; +} +TD.tiny { font-size: 75%; +} +a { + color: #1A41A8; +} +a:visited { + color: #2A3798; +} +.dirtab { padding: 4px; + border-collapse: collapse; + border: 1px solid #84b0c7; +} +TH.dirtab { background: #e8eef2; + font-weight: bold; +} +HR { height: 1px; + border: none; + border-top: 1px solid black; +} + +/* Style for detailed member documentation */ +.memtemplate { + font-size: 80%; + color: #606060; + font-weight: normal; +} +.memnav { + background-color: #e8eef2; + border: 1px solid #84b0c7; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} +.memitem { + padding: 4px; + background-color: #eef3f5; + border-width: 1px; + border-style: solid; + border-color: #dedeee; + -moz-border-radius: 8px 8px 8px 8px; +} +.memname { + white-space: nowrap; + font-weight: bold; +} +.memdoc{ + padding-left: 10px; +} +.memproto { + background-color: #d5e1e8; + width: 100%; + border-width: 1px; + border-style: solid; + border-color: #84b0c7; + font-weight: bold; + -moz-border-radius: 8px 8px 8px 8px; +} +.paramkey { + text-align: right; +} +.paramtype { + white-space: nowrap; +} +.paramname { + color: #602020; + font-style: italic; +} +/* End Styling for detailed member documentation */ + +/* for the tree view */ +.ftvtree { + font-family: sans-serif; + margin:0.5em; +} +.directory { font-size: 9pt; font-weight: bold; } +.directory h3 { margin: 0px; margin-top: 1em; font-size: 11pt; } +.directory > h3 { margin-top: 0; } +.directory p { margin: 0px; white-space: nowrap; } +.directory div { display: none; margin: 0px; } +.directory img { vertical-align: -30%; } + diff --git a/doc/html/doxygen.png b/doc/html/doxygen.png Binary files differnew file mode 100644 index 0000000..f0a274b --- /dev/null +++ b/doc/html/doxygen.png diff --git a/doc/html/functions.html b/doc/html/functions.html new file mode 100644 index 0000000..ee811c5 --- /dev/null +++ b/doc/html/functions.html @@ -0,0 +1,130 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_a">- a -</a></h3><ul> +<li>AcsAll +: <a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7099252dfa0fbb8e26853a79578b33f7e">QextScintilla</a><li>AcsAPIs +: <a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7af0b70461479558da5cf363a7e3b35c2">QextScintilla</a><li>AcsDocument +: <a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7e8cbc5b781bff6985e4f524668fb3110">QextScintilla</a><li>add() +: <a class="el" href="classQextScintillaAPIs.html#b443486e48c91ae4878a21d30b242d73">QextScintillaAPIs</a><li>AiClosing +: <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae917d10ecdceac133845dc43ed53e0fb64">QextScintilla</a><li>AiMaintain +: <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae9c1e2a26467f02b3fc645a10083d04208">QextScintilla</a><li>AiOpening +: <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae93781e4e24c094255b5cc8c01a6afaf8b">QextScintilla</a><li>alternateKey() +: <a class="el" href="classQextScintillaCommand.html#b42a52b6cc20d45fcce5838fd409f41d">QextScintillaCommand</a><li>append() +: <a class="el" href="classQextScintilla.html#5440db24cf8aeaece95d3ab74ee194a5">QextScintilla</a><li>Array +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd39c94f645a2984a78e7e72804ef3ebf9">QextScintillaLexerPerl</a><li>ASPAtStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c295a4a600cacaa8c6ec8499ff93519279">QextScintillaLexerHTML</a><li>ASPJavaScriptComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ce8556fea973701a336af05d3f57ed1f">QextScintillaLexerHTML</a><li>ASPJavaScriptCommentDoc +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2911ccb89cfe6ba9b65f87fa539a80eb0">QextScintillaLexerHTML</a><li>ASPJavaScriptCommentLine +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24c07df9122c0a565d97ec9b65fa95916">QextScintillaLexerHTML</a><li>ASPJavaScriptDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e309e71e8b1576d5b2b8cc5cbd0f0b59">QextScintillaLexerHTML</a><li>ASPJavaScriptDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d88647d209108078717e03a468a0df43">QextScintillaLexerHTML</a><li>ASPJavaScriptKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c26830b9b12248cdc571306c6283deb92f">QextScintillaLexerHTML</a><li>ASPJavaScriptNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22bfccf25277cc604d8211d69eee2316e">QextScintillaLexerHTML</a><li>ASPJavaScriptRegex +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2895628d586a191ee3520cd5e6931ae39">QextScintillaLexerHTML</a><li>ASPJavaScriptSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f761a3654fe1159db35fd566394116ac">QextScintillaLexerHTML</a><li>ASPJavaScriptStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dbcccf20de63a466a58f2e60096e0edd">QextScintillaLexerHTML</a><li>ASPJavaScriptSymbol +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27f86a0affd409ab2792a5a9d98d8f3f9">QextScintillaLexerHTML</a><li>ASPJavaScriptUnclosedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ad5232daa17c1f57b4b52a026b9aae86">QextScintillaLexerHTML</a><li>ASPJavaScriptWord +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25c1ed69de3f928d05e8c6bd9c1c6841d">QextScintillaLexerHTML</a><li>ASPPythonClassName +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27b5d6e9b3a6220cb650e775e45741514">QextScintillaLexerHTML</a><li>ASPPythonComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e197ac410d81229856a066f3fc0a99af">QextScintillaLexerHTML</a><li>ASPPythonDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22131da85df2b12e74a64db94a537bade">QextScintillaLexerHTML</a><li>ASPPythonDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2343df69515c58e4dfbc91c0944bc6c49">QextScintillaLexerHTML</a><li>ASPPythonFunctionMethodName +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c23c4baa232fea71ddbb074848da1bd691">QextScintillaLexerHTML</a><li>ASPPythonIdentifier +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a2f242e746a05ccb9bf376798cda278f">QextScintillaLexerHTML</a><li>ASPPythonKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e9077279062e6733bc91a883b18b21af">QextScintillaLexerHTML</a><li>ASPPythonNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c293497a604b0a2b64c657a293a76657af">QextScintillaLexerHTML</a><li>ASPPythonOperator +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c262d4e436a6a5938ec462e1a79892c1bd">QextScintillaLexerHTML</a><li>ASPPythonSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e0511f3b87b06999657e4ac64e21b345">QextScintillaLexerHTML</a><li>ASPPythonStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2277aa11e8cfcbf9882d06e8e7b876687">QextScintillaLexerHTML</a><li>ASPPythonTripleDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2495605e33bb56636a465ab8957b751ea">QextScintillaLexerHTML</a><li>ASPPythonTripleSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2cc3f090fdc393cd57fbcb5f6deee7453">QextScintillaLexerHTML</a><li>ASPStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c0d1f87005564d626ed965187401e211">QextScintillaLexerHTML</a><li>ASPVBScriptComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a273f35dce9bd0ff8dcc73cb546ffcec">QextScintillaLexerHTML</a><li>ASPVBScriptDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25dc242c8677a4cdaa93b47dad636efd7">QextScintillaLexerHTML</a><li>ASPVBScriptIdentifier +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dd624c75614c4c80086f68a9890e75b4">QextScintillaLexerHTML</a><li>ASPVBScriptKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c229f266c76f4246c9e28da795a9d83f15">QextScintillaLexerHTML</a><li>ASPVBScriptNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2cf46250ef4baddb851a36b90a3e0f6a4">QextScintillaLexerHTML</a><li>ASPVBScriptStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2801a3d4aed4be15124cc48400ba7cfc0">QextScintillaLexerHTML</a><li>ASPVBScriptString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24b166ced640d675cd9c8b85ef1000625">QextScintillaLexerHTML</a><li>ASPVBScriptUnclosedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2482fd2a76bff9c432b76c11656c69e46">QextScintillaLexerHTML</a><li>ASPXCComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2040775f4dc3caf61bf8a9f0e62341a9d">QextScintillaLexerHTML</a><li>Assignment +: <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275736a3b70e16d94a60cda8ce4b39104d4">QextScintillaLexerProperties</a><li>AtRule +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e6f253e451e5ad04f41595359014ccfe4">QextScintillaLexerCSS</a><li>Attribute +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2259c57b9aaca1a701ddc466504c8f2e0">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46eec81bfe9fb155cd9273850b265b20dfa">QextScintillaLexerCSS</a><li>autoCompleteFromAll() +: <a class="el" href="classQextScintilla.html#311d3dcefa8f5180ababc42bdf38f109">QextScintilla</a><li>autoCompleteFromAPIs() +: <a class="el" href="classQextScintilla.html#a760573163b27895ff6aaac53343338f">QextScintilla</a><li>autoCompleteFromDocument() +: <a class="el" href="classQextScintilla.html#d0e48a5aa94192f985bf6ff207874b82">QextScintilla</a><li>autoCompletionCaseSensitivity() +: <a class="el" href="classQextScintilla.html#5cff73a97337f5976254179a88a47b3a">QextScintilla</a><li>autoCompletionFillupsEnabled() +: <a class="el" href="classQextScintilla.html#e9b647d35f8470e13e42e2e0e683ec6a">QextScintilla</a><li>autoCompletionReplaceWord() +: <a class="el" href="classQextScintilla.html#f0c3f1d2db5029e1c6323fd12962084a">QextScintilla</a><li>autoCompletionShowSingle() +: <a class="el" href="classQextScintilla.html#b70c407c8d3ed1048269fbd2ac439fdc">QextScintilla</a><li>autoCompletionSource() +: <a class="el" href="classQextScintilla.html#9df1501f0ad8c01a9f3bea1867cf8c7b">QextScintilla</a><li>AutoCompletionSource +: <a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7">QextScintilla</a><li>autoCompletionThreshold() +: <a class="el" href="classQextScintilla.html#4dc81e76945748f22f97ce2855b6cffc">QextScintilla</a><li>autoIndent() +: <a class="el" href="classQextScintilla.html#5aafd0d48172014fab301300433f9d79">QextScintilla</a><li>autoIndentStyle() +: <a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">QextScintillaLexer</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x62.html b/doc/html/functions_0x62.html new file mode 100644 index 0000000..039cd58 --- /dev/null +++ b/doc/html/functions_0x62.html @@ -0,0 +1,85 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li id="current"><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_b">- b -</a></h3><ul> +<li>Background +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e679546b0e1f41ec63e751bc1b0c5b358">QextScintilla</a><li>backslashEscapes() +: <a class="el" href="classQextScintillaLexerSQL.html#11e7e14784d83a1b56e690852cbb0b7d">QextScintillaLexerSQL</a><li>backspaceUnindents() +: <a class="el" href="classQextScintilla.html#a930abcf668124af9c07f2a04a06b16f">QextScintilla</a><li>BacktickHereDocument +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd5b4ffdfeee7b9d0bcad8ffe674dcc83e">QextScintillaLexerPerl</a><li>Backticks +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673b00562b7dcf94e55dc5eb0a61d144e9e">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd22d56a1c1a1a10bb1375046cd5dfbc83">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f113df0d6696b34089695443e3fa220b6ba">QextScintillaLexerBash</a><li>BadDirective +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc58fff4177384c4227dc817c81c82eedfb">QextScintillaLexerPOV</a><li>BasicFunctions +: <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e48cbece3fd2db495d995c794b9aeb55">QextScintillaLexerLua</a><li>beginUndoAction() +: <a class="el" href="classQextScintilla.html#992e38601fb13f8d4a49ac58bb4aa5d0">QextScintilla</a><li>BottomLeftCorner +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e9d5a57c4bedde7059bea56f5bd4934cd">QextScintilla</a><li>BoxedFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cfcb1f1d2bd51d589287865f44ae4b08c0">QextScintilla</a><li>BoxedMinus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4a4a4d6c4834ded0218f9795e9390f95">QextScintilla</a><li>BoxedMinusConnected +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e6169156f553cbaa54d2b466fe510dea6">QextScintilla</a><li>BoxedPlus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc6de462d1b5a1c3f90a2b7277894b02">QextScintilla</a><li>BoxedPlusConnected +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72eeb3dd9d4a1c11498f1e2474fd6aec576">QextScintilla</a><li>BoxedTreeFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf8a0fab06a1e5e77a9d3a252a412eb0aa">QextScintilla</a><li>BraceMatch +: <a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b">QextScintilla</a><li>braceMatching() +: <a class="el" href="classQextScintilla.html#2cdccb4225833d6645faa0ac7ae0cbe5">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x63.html b/doc/html/functions_0x63.html new file mode 100644 index 0000000..19b6193 --- /dev/null +++ b/doc/html/functions_0x63.html @@ -0,0 +1,108 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li id="current"><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_c">- c -</a></h3><ul> +<li>callTip() +: <a class="el" href="classQextScintilla.html#46feb30184ded7c63d6edfef45c86061">QextScintilla</a><li>callTipsVisible() +: <a class="el" href="classQextScintilla.html#2008b3d1abf1220308ff30a10182f9d7">QextScintilla</a><li>cancelList() +: <a class="el" href="classQextScintilla.html#eb038b88ef1676504b2a6602af1ce6aa">QextScintilla</a><li>caseSensitiveTags() +: <a class="el" href="classQextScintillaLexerHTML.html#97ef69eb463d62607df4934f8b55870f">QextScintillaLexerHTML</a><li>CDATA +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22ffa7288835367ab2473a0956d285a2d">QextScintillaLexerHTML</a><li>Character +: <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a64bb9035d2a79de51309e1f8df1c2df05">QextScintillaLexerLua</a><li>Circle +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e452faff3eae9ed78188c1468d85a8c5f">QextScintilla</a><li>CircledFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf58df1387aaf6e4a05104d34c06868cdd">QextScintilla</a><li>CircledMinus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee72e33be4b3f7cb3b70638721900d045">QextScintilla</a><li>CircledMinusConnected +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4a6a3f3368636e350699cc60b3415ca5">QextScintilla</a><li>CircledPlus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e95ccb68fe182c2632314e12c74539924">QextScintilla</a><li>CircledPlusConnected +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee6c19ec3354b9e5449fa32a0905bf829">QextScintilla</a><li>CircledTreeFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cfd9215f00cf188ef6259740768e866506">QextScintilla</a><li>ClassName +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67390cede981bd69fe4072ffb911bf07311">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a74caa951bface86c87bfc89d24cda16c0">QextScintillaLexerPython</a><li>ClassSelector +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ea3d2732711a0dccb1448cab829c25fb0">QextScintillaLexerCSS</a><li>ClassVariable +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733a64a9cadf197f6c8269ecba5d046462">QextScintillaLexerRuby</a><li>clear() +: <a class="el" href="classQextScintillaMacro.html#e79848bbd1b6c87430e6401e71a9cf1b">QextScintillaMacro</a>, <a class="el" href="classQextScintillaAPIs.html#f316a9a0e9d1bde57916c09fbd362918">QextScintillaAPIs</a>, <a class="el" href="classQextScintilla.html#8b9654c9a68e6454a7e457a266c329da">QextScintilla</a><li>clearAlternateKeys() +: <a class="el" href="classQextScintillaCommandSet.html#497658e87e32bb8d6e9f3859a70e1107">QextScintillaCommandSet</a><li>clearKeys() +: <a class="el" href="classQextScintillaCommandSet.html#473747a515d9b554748aa4c25b371cc2">QextScintillaCommandSet</a><li>clearRegisteredImages() +: <a class="el" href="classQextScintilla.html#cc818b2e94bc849c1a33e68b8e1f220e">QextScintilla</a><li>color() +: <a class="el" href="classQextScintillaLexerTeX.html#814e299720c89aca2180b048faada4f2">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#03c2d78be78783cd6c35c888bc7c9411">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#7df51cdf4533fb0289a2003844b4fa67">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#69e1a28465f6681a3f906c08ee6b05aa">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#29f362422452175f80aba4a0a30e91d8">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#2d7002207c3c1191db99cb7c4f45863e">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#24d7917a2e5a9856f014b7a51bb66a21">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#5b02a2a7e5a80d2d2cc81f2036ca681c">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#d30f09523c335c17b1a862c44beb4593">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#0d6f5ae54113d25194bba830674835fe">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerIDL.html#ba47acd3bb2f4f29921683d6ca0e1463">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerHTML.html#0a0fec93b6bca1afa67a7586b8cd1f83">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerDiff.html#9c75450ec59c6b9754e9946c765531aa">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#09621fd74b9371c31cfaadc8373c0602">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCSharp.html#db0be111bbbcb49ea20f3ec424104551">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#81d2fac7671aaffb7cb0400eed5f4610">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#8b016e35c2e59956a2df1904ffa1e007">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#ce6da18157d745615fe801abed48de96">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#42f33ad513bb2636e4969ae2beff2463">QextScintilla</a><li>colorChanged() +: <a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">QextScintillaLexer</a><li>Command +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b106091b2476359f3cb77e54efde1ff4e9">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70d0f43a6e272ab88c007c3d5a9f24be56">QextScintillaLexerDiff</a><li>commands() +: <a class="el" href="classQextScintillaCommandSet.html#3d5be67e3bbd4cf614c4baa6f8aacc37">QextScintillaCommandSet</a><li>Comment +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649371944274b0cfca050f4aefbf3444298c">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673738b3a19138f2358dd0e840ad1baff41">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a75190716ac3b52dc832b88f81e6b0140d">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275ec0ef177625174b98e0d7984d7fc70fc">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5a289bdb1d1c8e7e573f1144789990a57">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdf9443583d7b7db41d9b394f3d3710eec">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b846000b8e546d01a058ac7c7ea0cec50">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a698cd8797d93b7ed7ec4b8ae0f7bb04d8">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a707a7f529f3699fc72da3f259c2661fb43">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e24551f9f522fc3d8c7d4418c1ac40948">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e513f17d201238a4a849dcf462eecb3be25">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e91330f125537d1c1ca8b345188e2fcea1">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11d0358386a60d453f2543466f53e3df26">QextScintillaLexerBash</a><li>CommentBlock +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a77051edc413807e403d54faf9a6669a41">QextScintillaLexerPython</a><li>CommentDoc +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493396c93bc0d6cdeb43856d875909a801d">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5162e768eb69a2df5d4533de080b165684">QextScintillaLexerCPP</a><li>CommentDocKeyword +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493ab4c3a01d344da55026e112211d2d57b">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e510e4193332a47314117d11c068820d943">QextScintillaLexerCPP</a><li>CommentDocKeywordError +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264937e389e85f65d05fe740f3a3188263f34">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51bc816efbc8ab656d5538791c6686c305">QextScintillaLexerCPP</a><li>CommentLine +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d21d57b380642ebd543020799e63a632">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5e5b3d09b36e9db444a751936565c99c0">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519bcf1c7b1ed33bac64fb74ac287df923">QextScintillaLexerCPP</a><li>CommentLineDoc +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5150a0e3dc1d79c9914da93abc6739ba85">QextScintillaLexerCPP</a><li>CommentLineHash +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493527991ffce3f42a3453245dd6b683d7b">QextScintillaLexerSQL</a><li>convertEols() +: <a class="el" href="classQextScintilla.html#01b225376be7ea272eb542e46291d89c">QextScintilla</a><li>copy() +: <a class="el" href="classQextScintilla.html#e2554d0e59cde9e5de14351f26c4f6b6">QextScintilla</a><li>copyAvailable() +: <a class="el" href="classQextScintilla.html#c741c9b8ed144370bad992c49a9f5aa4">QextScintilla</a><li>CoroutinesIOSystemFacilities +: <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6c8bd9b4dbcd836a98ecea083b95934ed">QextScintillaLexerLua</a><li>CSS1Property +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e65152fb00b7475ab5ba6f1a8a543b838">QextScintillaLexerCSS</a><li>CSS2Property +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ed045bc94f46fc560c4c321920a76a911">QextScintillaLexerCSS</a><li>cursorPositionChanged() +: <a class="el" href="classQextScintilla.html#7750e4896fb860de1c7a0c3ee79cc8bf">QextScintilla</a><li>cut() +: <a class="el" href="classQextScintilla.html#d5d5178610285dda5004ccc5c5c6c306">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x64.html b/doc/html/functions_0x64.html new file mode 100644 index 0000000..e84403b --- /dev/null +++ b/doc/html/functions_0x64.html @@ -0,0 +1,82 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li id="current"><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_d">- d -</a></h3><ul> +<li>DataSection +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67361babe91bc4558e9efc39ba28d60a32f">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd5840b9be5dfeb70ad8402cd4a571a464">QextScintillaLexerPerl</a><li>Decorator +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a769870133a22bd93c3be1d616bf90ae56">QextScintillaLexerPython</a><li>Default +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b137e4297866c11d4c1a540f153ee9e6c0">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264935e1bb31d01d44a495488cf3641c99750">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6730fb311fd6a77464240d965246ad7f6a3">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a752137f0baf4988fcfb4913ab5d41cba3">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275dc12c096ec8121aad3994377922d0b37">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc54891d0fd9b3bd285d7c9fe2e563fb7a6">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd6433ea3da82ed54ed82cb9fa91f431a2">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b720e68d37fcef6406c60ed6052259339">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a66718ab53e8288e80963d595c32e710fc">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20b469bf4e80504d81d59fb913b417494">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a701e099f532bb96181a427e9da5a1704d5">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e4679d6fe6a601a7f243e27282a03bb93">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51c384bf868159a15c4ab026080d34a32f">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9ed475cdb093f6c8c6041afb504f5282d">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11f1449fee136726bc4949bc757e103873">QextScintillaLexerBash</a><li>defaultColor() +: <a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">QextScintillaLexer</a><li>defaultFont() +: <a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">QextScintillaLexer</a><li>defaultPaper() +: <a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">QextScintillaLexer</a><li>DefaultValue +: <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275af2af2c3cb1ba1ce6b011e10fbeecc6b">QextScintillaLexerProperties</a><li>DemotedKeyword +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67302c8ffb948274b6c3c66dc21a3d2e2a1">QextScintillaLexerRuby</a><li>description() +: <a class="el" href="classQextScintillaLexerTeX.html#179f7f8ae87d3437f7ec3e536f682cd2">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#033022cf1010cab3db8ad0fc6b4b898e">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#721775e8f6bb6bab9aaa064ff18ed70f">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#eccb543b9847ccd0d4d538384061b901">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#419785e6507ee675e2bc06c1fc455806">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#5fe1811445537d27a7cfdd9d25f7c155">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#2e78a85ab81312eaf8199faec2edffd8">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#4c478d2964f8accc12a4b4c9279e02e6">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#de61e22ccec39eefe727b76f43ed000d">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#01c7701133de7049c74dbdfd8cf2adb6">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerIDL.html#30e36f23bd7d56ec59b0b6352c484eba">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerHTML.html#32833c72adf52ecbf9b479ae792df782">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerDiff.html#4ac748484ccda53f6fa3baee5a3ff52e">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#d766fb0ca5b027f9b5e01922210384ac">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCSharp.html#4709aacad69084b713a086c7039a5042">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#cb720f11c91e4491dc0e44e18bfd0079">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#03dca4c7289305a22a745db4d4c5e76f">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#eaf8d3de39a0e93dfb1aa480b99b0642">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>, <a class="el" href="classQextScintillaCommand.html#76940cf10cf05d99baf3d9b989109777">QextScintillaCommand</a><li>Directive +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5f6cb3dd4cbc42838e446302162f71235">QextScintillaLexerPOV</a><li>document() +: <a class="el" href="classQextScintilla.html#93e41e7e1474301d1fdf7b469855fa1d">QextScintilla</a><li>DoubleQuotedHereDocument +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd6420c6d488856b4840d662a313359935">QextScintillaLexerPerl</a><li>DoubleQuotedString +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493967841c89abb423eb4905acb5a3856e5">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6737e91f3cc802b93df10cc232d27b6cb74">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7b05b852762ce579d69e27012f325508c">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdbe54be6a366b9782db424a3858586b52">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e69018092b57e87a9c575c4a2ed18eb25">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51a660e00c101f515b68b5b0d9da7fba75">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11d50afdc76afea477f36c37a24e05c26f">QextScintillaLexerBash</a><li>DownTriangle +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e424e38d2d52e311348f552158596dc7a">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x65.html b/doc/html/functions_0x65.html new file mode 100644 index 0000000..dc2d1ca --- /dev/null +++ b/doc/html/functions_0x65.html @@ -0,0 +1,91 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li id="current"><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_e">- e -</a></h3><ul> +<li>EdgeBackground +: <a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef952b3ab1ab0f1de59c13ed703c9a857c3">QextScintilla</a><li>edgeColor() +: <a class="el" href="classQextScintilla.html#a2f525ae5dd684b0ba3c79b930258155">QextScintilla</a><li>edgeColumn() +: <a class="el" href="classQextScintilla.html#096d84a9a8fa9ca50f758d4ee35c7106">QextScintilla</a><li>EdgeLine +: <a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef983b130b7b74ea372fc3d9b5b19bbd5d4">QextScintilla</a><li>edgeMode() +: <a class="el" href="classQextScintilla.html#265ab349dbe1d3801137cd29f9424eea">QextScintilla</a><li>EdgeMode +: <a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9">QextScintilla</a><li>EdgeNone +: <a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9fb431bfc050ea921924574abdf310643">QextScintilla</a><li>endRecording() +: <a class="el" href="classQextScintillaMacro.html#97005cdb33759ffe2b82a616d82046f5">QextScintillaMacro</a><li>endUndoAction() +: <a class="el" href="classQextScintilla.html#cf85f22ce1ef53cd0851a99282a3cd8b">QextScintilla</a><li>ensureCursorVisible() +: <a class="el" href="classQextScintilla.html#dd5100eebb1241b90da9b77cfca26c8d">QextScintilla</a><li>ensureLineVisible() +: <a class="el" href="classQextScintilla.html#8c5a39688b5ca5995f8060941a8065d4">QextScintilla</a><li>Entity +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2b6bd33457cab34c983d9a274bfce1eee">QextScintillaLexerHTML</a><li>eolFill() +: <a class="el" href="classQextScintillaLexerSQL.html#ee2473ffa75634fb28c893116d9f2c8e">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#b2a03d86d7c2e3c7c11eb778b7c3fe20">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#81954fb1fb4c460fdd679cdf6a8c72ee">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#b673e4f3569b9b5002a7e5fd75c72dae">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#2dc32c72de91eb02b8166dc4ffe1e944">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#6c2179643375e26c86bfbc7258e52408">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#387e4dcdf8e641b71a7549f2e0f68922">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#cfde1f9e0a2ea5ea4581fddb2f889c1c">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#74ad10f97d43c77c24a4fbe5d7ca5d04">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerHTML.html#a3cac0d6cc9e4909d784901d767b6171">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSharp.html#3b11e1f85a47f3caf09a25a0b5db4580">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#5f425be57976a428603b7c14f198ba76">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#d94fd24c1f3d156456d5018e6a202b23">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#f4b2b1343c4501c2e1a40d3b58dab574">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a><li>eolFillChanged() +: <a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">QextScintillaLexer</a><li>EolMac +: <a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a07ec88765cc5f9669aa9ebbf309c54dd">QextScintilla</a><li>eolMode() +: <a class="el" href="classQextScintilla.html#099d5bfe4b4f27ff2b666eeb9bcd4867">QextScintilla</a><li>EolMode +: <a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a">QextScintilla</a><li>EolUnix +: <a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a06657431efe214758a12041f238300b7">QextScintilla</a><li>eolVisibility() +: <a class="el" href="classQextScintilla.html#8e8e0a0c1d7fb0718df7f32cf194eba4">QextScintilla</a><li>EolWindows +: <a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a757794a61cf9baf2de33bac37066554b">QextScintilla</a><li>Error +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673eeafd3440d633a72cd813f24a01fbfed">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd7b14c8c6df9c053cd42225f2fcc49feb">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b3d4063ddbcfa91c6de4096c12a30103b">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11c0ab77e2eb7e7377c5007968a29c328a">QextScintillaLexerBash</a><li>eventFilter() +: <a class="el" href="classQextScintillaBase.html#a31a4b262617ad472c95f700de47a84b">QextScintillaBase</a><li>ExternalCommand +: <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9ebf5d8fb94cea583b143df6de8e3798f">QextScintillaLexerBatch</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x66.html b/doc/html/functions_0x66.html new file mode 100644 index 0000000..39551a6 --- /dev/null +++ b/doc/html/functions_0x66.html @@ -0,0 +1,88 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li id="current"><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_f">- f -</a></h3><ul> +<li>findFirst() +: <a class="el" href="classQextScintilla.html#8f350dd53ae60c25c6b63c7c5fbf6e18">QextScintilla</a><li>findNext() +: <a class="el" href="classQextScintilla.html#480033f7629a1ce9558c8b0e0c240898">QextScintilla</a><li>firstVisibleLine() +: <a class="el" href="classQextScintilla.html#820471fe6c696bda646e93c51a151e5f">QextScintilla</a><li>focusInEvent() +: <a class="el" href="classQextScintillaBase.html#85e6877f9aad613a869fe5b7d97f9035">QextScintillaBase</a><li>focusNextPrevChild() +: <a class="el" href="classQextScintillaBase.html#9516bc2125ea51a8de4c21f6af42a4b1">QextScintillaBase</a><li>focusOutEvent() +: <a class="el" href="classQextScintillaBase.html#f87a97050d71a323d47d666fe4a5547b">QextScintillaBase</a><li>foldAll() +: <a class="el" href="classQextScintilla.html#5b289640689062f4fa5479c7212107c0">QextScintilla</a><li>foldAtElse() +: <a class="el" href="classQextScintillaLexerCPP.html#aa8dd334b06cfc33cac7089ac08c837d">QextScintillaLexerCPP</a><li>foldComments() +: <a class="el" href="classQextScintillaLexerSQL.html#6867e10f4aa8a7c8f040595e18d01967">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPython.html#f1f3fbb28bd65e91a9fcec8ec8702633">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#885b4c1be5bccef4460440a69742a4a2">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#72b38f72f70543e2c7779a8a0e304b0a">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCSS.html#750d95e4905869983a7c984bd05b5148">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#d2011da2c61e08f1ac7283a622a1ff47">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#0dbc06722dc9c789a51313b9a659d8b9">QextScintillaLexerBash</a><li>foldCompact() +: <a class="el" href="classQextScintillaLexerSQL.html#ea2c85ffc4af6dfdc70dacb9bb35957b">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerProperties.html#fad51b4b63aac4551f5bc5fe57b400c9">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#4dfeba7992ab3669da67b829f50dd201">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#4b8ea36946e93afca001e185894a4a0f">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#a83fe43c217c885d4665c830af19a9c4">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#25612261f73a392083b9946af07a8e05">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#5dbd7dcf8cd46e76e0a08dd8be2759a3">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#527f330fa7298c564d104b1b27e5dfb5">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#2b8a0d8fc5e2004809e514826ac2c90f">QextScintillaLexerBash</a><li>foldDirectives() +: <a class="el" href="classQextScintillaLexerPOV.html#ea0986f15e1bad99278b37a4822b5ccd">QextScintillaLexerPOV</a><li>folding() +: <a class="el" href="classQextScintilla.html#86418f82fe35ff366f4ef023c470f0a1">QextScintilla</a><li>foldLine() +: <a class="el" href="classQextScintilla.html#f81c922d74d8746d9cbc8d576c440dd4">QextScintilla</a><li>foldPreprocessor() +: <a class="el" href="classQextScintillaLexerHTML.html#23d3e1f8f7b202808cb13fb1b4fe35dd">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCPP.html#02a2553c485bcaa29cb785d56d8c42c1">QextScintillaLexerCPP</a><li>foldQuotes() +: <a class="el" href="classQextScintillaLexerPython.html#ced0e9f9c61fede62d931536f9dbc609">QextScintillaLexerPython</a><li>FoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf">QextScintilla</a><li>font() +: <a class="el" href="classQextScintillaLexerSQL.html#f0a430cc19f2da4a5c8a6e7f3d4c104f">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c37edab4a7892f3c671f88051909878b">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#34096513a7e9dbab85a3866a113550cb">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#7070a1985d0a6f3aec0e2e06e39a3eba">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#54e012820a85e36069e6ed490d0fbee5">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#452d3bc05e97e04259be5cd39a8fffe8">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#238697bc15872bc4a9e8ded40334ae54">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#a7779e1dcafb87304b611315bc525b90">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#6e1888622ce0ae61936fc0191a536807">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerHTML.html#63117e2e3f25f9a17fba9c59ac6e6a15">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#24017481b708e8c7f272d772e5a1571f">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCSharp.html#42d3dee10cd3efc54a3c583e26defad8">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#c78b287195efa8b2612bb16fbfba8417">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#d23670696aad82a64c8879aea1532b12">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#734cd74da64ec3489c18e0023c56baf6">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a><li>fontChanged() +: <a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">QextScintillaLexer</a><li>formatPage() +: <a class="el" href="classQextScintillaPrinter.html#5d6f0f8c13568054efbe9003867f1b09">QextScintillaPrinter</a><li>FunctionMethodName +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67314ae86918218bef8c3541acb55b71a53">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7c54c9d3a8f8a5d5364f6b13a43993342">QextScintillaLexerPython</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x67.html b/doc/html/functions_0x67.html new file mode 100644 index 0000000..f04e8e0 --- /dev/null +++ b/doc/html/functions_0x67.html @@ -0,0 +1,73 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li id="current"><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_g">- g -</a></h3><ul> +<li>getCursorPosition() +: <a class="el" href="classQextScintilla.html#da3e0b58a20e1c7e4f062cabf40b6d6b">QextScintilla</a><li>getSelection() +: <a class="el" href="classQextScintilla.html#92f76a5a9eb56275d77905738de3f4a1">QextScintilla</a><li>Global +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673d8c6f983db7bba3eb8d61c68dd77c5e8">QextScintillaLexerRuby</a><li>GlobalClass +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51ef1e331b7a3004691a931e2a0e3f16c2">QextScintillaLexerCPP</a><li>Group +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b154823b2c003b00f33a78b51c04522755">QextScintillaLexerTeX</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x68.html b/doc/html/functions_0x68.html new file mode 100644 index 0000000..7d0385a --- /dev/null +++ b/doc/html/functions_0x68.html @@ -0,0 +1,80 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li id="current"><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_h">- h -</a></h3><ul> +<li>Hash +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd536d090d1561f1cf200efca325fe7533">QextScintillaLexerPerl</a><li>hasSelectedText() +: <a class="el" href="classQextScintilla.html#3d12bf3c4d1a80b8fea698c591222855">QextScintilla</a><li>Header +: <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70b176f65f0a0e674524232d7e6aa7bb05">QextScintillaLexerDiff</a><li>HereDocument +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673f89d7131a88eb6a518fe225fc7c51ad9">QextScintillaLexerRuby</a><li>HereDocumentDelimiter +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736cc8ab35f59f4bd95eafce03038cf49d">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd776ec3945c92e6b2d8f40b164c38f91e">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f111dbe93d0bf5b49344b2e48227b7cd225">QextScintillaLexerBash</a><li>HideCommandChar +: <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9d34e98afe7af83eb5a899ddce85af11a">QextScintillaLexerBatch</a><li>HighlightedIdentifier +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7dbea0e0ebb77a8b50f083ac6cee5c562">QextScintillaLexerPython</a><li>HTMLComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c29d72eeb748ac937c132e91aedfea3928">QextScintillaLexerHTML</a><li>HTMLDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ede0f410fa7df585525f4718f77b0171">QextScintillaLexerHTML</a><li>HTMLNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2aa7db8408fdb25be025c0a6baaeb21e8">QextScintillaLexerHTML</a><li>HTMLSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c244fa237af3b280892c5c99b784fccf30">QextScintillaLexerHTML</a><li>HTMLValue +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27b8969f337f194d7055c8acc209f2454">QextScintillaLexerHTML</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x69.html b/doc/html/functions_0x69.html new file mode 100644 index 0000000..af4a83c --- /dev/null +++ b/doc/html/functions_0x69.html @@ -0,0 +1,90 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li id="current"><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_i">- i -</a></h3><ul> +<li>Identifier +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264933abc77df4a22d67ef033c88f55c94107">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673aea73bcd3ab39a1b5cca5b05c6741872">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7910c7f760e782fac068e2ea753336c1f">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5e395ebb7d44b0c09e47c99fed41c9357">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd67c8579274f20e20ba3f69c9f7e7240b">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6b0f27236463324dc717da325eee01f9d">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e514609ac66029ec6e4d88dfe92c4b682cb">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1121c5e5b14225645cb596e83d77a6c2bd">QextScintillaLexerBash</a><li>IDSelector +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e8d7c400afb704e2d0fc63f3a8cab28b3">QextScintillaLexerCSS</a><li>Important +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e540329d3fdd141ef03f541e21ff8055a">QextScintillaLexerCSS</a><li>Inconsistent +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5e5e22547afa8af75617a9e6ee052aeef">QextScintillaLexerPython</a><li>indent() +: <a class="el" href="classQextScintilla.html#0017b86a4fff9d1228b204deda1e9d57">QextScintilla</a><li>indentation() +: <a class="el" href="classQextScintilla.html#a57fae593f33dd9b5d1542c95afd9a01">QextScintilla</a><li>indentationGuides() +: <a class="el" href="classQextScintilla.html#0d63a0fc79c8fae6934f6599d407a3d4">QextScintilla</a><li>indentationsUseTabs() +: <a class="el" href="classQextScintilla.html#53d57d43f67a8dcc9d08369906906a8d">QextScintilla</a><li>indentationWarning() +: <a class="el" href="classQextScintillaLexerPython.html#390ee137bc604c6a2ad14b4dc8b835db">QextScintillaLexerPython</a><li>IndentationWarning +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5">QextScintillaLexerPython</a><li>indentationWidth() +: <a class="el" href="classQextScintilla.html#678d8e15ff532854af87f2ff0575327c">QextScintilla</a><li>insert() +: <a class="el" href="classQextScintilla.html#bd158556a8565eb1bf92f2dd8fa9b66f">QextScintilla</a><li>insertAt() +: <a class="el" href="classQextScintilla.html#45ea4ddcb8a8f0f0c106582d4246e4fb">QextScintilla</a><li>InstanceVariable +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673268fa3db8ca5bca860e8b11c74b34cdc">QextScintillaLexerRuby</a><li>Invisible +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc46bd102729e4ddec0f312b31cc18ab">QextScintilla</a><li>isCallTipActive() +: <a class="el" href="classQextScintilla.html#3a4a72bd99de522e74858217b3eafa31">QextScintilla</a><li>isListActive() +: <a class="el" href="classQextScintilla.html#1b8012fdc00f81007ab979e3a59efba5">QextScintilla</a><li>isModified() +: <a class="el" href="classQextScintilla.html#2ddb6b2ade644a6b2d13b215828b2f4e">QextScintilla</a><li>isReadOnly() +: <a class="el" href="classQextScintilla.html#bf7834644311e59ee424ef57b99771d8">QextScintilla</a><li>isRedoAvailable() +: <a class="el" href="classQextScintilla.html#e36287a0a472ab110c661c80d78aef3f">QextScintilla</a><li>isUndoAvailable() +: <a class="el" href="classQextScintilla.html#df3fac9f4711417ff6c25f34615f67c8">QextScintilla</a><li>isUtf8() +: <a class="el" href="classQextScintilla.html#695d9741eafdf28eb8c26448e2455cca">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x6a.html b/doc/html/functions_0x6a.html new file mode 100644 index 0000000..f61c58d --- /dev/null +++ b/doc/html/functions_0x6a.html @@ -0,0 +1,81 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li id="current"><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_j">- j -</a></h3><ul> +<li>JavaScriptComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f5092597ef53ed44401445615ae9dccc">QextScintillaLexerHTML</a><li>JavaScriptCommentDoc +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ee34429e7a5de77290b281aea261132e">QextScintillaLexerHTML</a><li>JavaScriptCommentLine +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c276e4ac4cfce2d070fe9b9c77720bb7d8">QextScintillaLexerHTML</a><li>JavaScriptDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c21c87086de4123d974883d95c379d73f7">QextScintillaLexerHTML</a><li>JavaScriptDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c23851458e1219b6fab981232e852bb7b6">QextScintillaLexerHTML</a><li>JavaScriptKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e135a126bd44eaf2d4f1bcdefa4c6777">QextScintillaLexerHTML</a><li>JavaScriptNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a0f9032da8450521d9cb39dae33ff863">QextScintillaLexerHTML</a><li>JavaScriptRegex +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c21e07b5f56f662092e208b75d531aa9db">QextScintillaLexerHTML</a><li>JavaScriptSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2743f482924275fb66551788738a50e6a">QextScintillaLexerHTML</a><li>JavaScriptStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d47958ab88781b81e914b1afab94408b">QextScintillaLexerHTML</a><li>JavaScriptSymbol +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2caba88710e3628af2459c6730ab63760">QextScintillaLexerHTML</a><li>JavaScriptUnclosedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e32dabb6ec5ea89cb6777d167296452e">QextScintillaLexerHTML</a><li>JavaScriptWord +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c237aff59f8f47b22255bad5cbedae5a43">QextScintillaLexerHTML</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x6b.html b/doc/html/functions_0x6b.html new file mode 100644 index 0000000..9400d87 --- /dev/null +++ b/doc/html/functions_0x6b.html @@ -0,0 +1,77 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li id="current"><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_k">- k -</a></h3><ul> +<li>key() +: <a class="el" href="classQextScintillaCommand.html#8adefa65b3b42a0e41fd2e440ccd277d">QextScintillaCommand</a><li>keyPressEvent() +: <a class="el" href="classQextScintillaBase.html#f2973f7bf587f7e71902a1b7909a7c60">QextScintillaBase</a><li>Keyword +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264931384c1a7b8dfe684172e1e560faba1cd">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736fa8d2088612ca0fcaf4c3391aa2bbb1">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7eb7fe0c38b385650aea8b38e33904b86">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdb58ff03dcf16f5987126e4895b1d9d83">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a667b65a2ea707a283ee0a98af97cd4757">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5196b337dc6536fe5094879c7eaf519c0e">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9e12625243e7ad8c79ad6ff80fcd1ff09">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11dc75ff87379fcc515c030287e17ca324">QextScintillaLexerBash</a><li>keywords() +: <a class="el" href="classQextScintillaLexerTeX.html#7fd4e6ac4ff5d9ec92b12db7483000c1">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#c3bf685a2f608817ef23d48293610559">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c2c4e52585720219299637c287d672ac">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#599619deb214402b873cc884d1688484">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#80610e8114339c29e83bcb09a72f850b">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#0980393fc763fe06510f0ed38f67defc">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#0f3e22697e17b377405a17a18115d60c">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#9bb399d8f06d5b915c81a402e6d35ee5">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerJava.html#8021e35de49b51d150150996492b3472">QextScintillaLexerJava</a>, <a class="el" href="classQextScintillaLexerIDL.html#5a14b1eff857fa464ebabb186af63804">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerHTML.html#a640562b320733e430174445b11107c6">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#692a86b42d52180ffb1430d96902dac8">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCSharp.html#f21fc95103fa7ddcd3fc00e9ca24b4f2">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#2e15e8d6831c86fbe16841bac3714a17">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#7b364c4a62ec33d88bf148e2a28212ef">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#8d1ba00bbdbf44ef5d90581988585d94">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a><li>KeywordSet2 +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518b514e3238a51f6871b34e9b21822bc9">QextScintillaLexerCPP</a><li>KeywordSet5 +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649326008070eb4a3af88e804bee1b296916">QextScintillaLexerSQL</a><li>KeywordSet6 +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264930dd6abb83c3e9269a79a1615397f160d">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5119c97fcdb7a53eb6220fdb4a5cc7fad">QextScintillaLexerPOV</a><li>KeywordSet7 +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493bcd9f0fd493dd5a6938bd5aaacf84da6">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5318bebcb6c9fbe0f92c8c0ccb0845844">QextScintillaLexerPOV</a><li>KeywordSet8 +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d17d526af135746f161b3b1b7ca3f392">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5ef90639ed6765ac0c18452138d504ebc">QextScintillaLexerPOV</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x6c.html b/doc/html/functions_0x6c.html new file mode 100644 index 0000000..0a2379f --- /dev/null +++ b/doc/html/functions_0x6c.html @@ -0,0 +1,82 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li id="current"><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_l">- l -</a></h3><ul> +<li>Label +: <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9716e376de87998ce993aa478d4121cf6">QextScintillaLexerBatch</a><li>language() +: <a class="el" href="classQextScintillaLexerTeX.html#1f77892e32f3efe0adac5fa64fd3a6b6">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#0fe5b3ab8b64c7628ba1c4282363cce2">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c99bae5713f65a19f5ea79e2c7af37b7">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#9b79dc4e52cc372ce666d9e4ff84a56c">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#436334f1bed5891cfbf3f9efd45e1298">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#853186789364ca310f1474f699082dfa">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#b5da3350644b9b8fa2afd7808253983c">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#c83c70da46c2b7a1c01e2856eb29b92e">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#f2708e7a2aab690da33cd71770db2c93">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#3cfc5a543947879f3525e5abae1abdb7">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerJava.html#c3e2fec409d4eab37271892668064fd1">QextScintillaLexerJava</a>, <a class="el" href="classQextScintillaLexerIDL.html#e3f195e87f6459cbaa2772736c588e4f">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerHTML.html#42e4b633a0884532b1964af951a28694">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerDiff.html#4715beb7d4383a55b02273a28c721753">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#6cb3e5679fd928c05b8fab7e9ad84c64">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCSharp.html#2297bcad4064ab481ef869772e518419">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#4cb81dcd6838b1aad041da166186d349">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#ce8f2eca661457993c6b334c297dd1e9">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#673d80339a5bcba31c1afb5ff63620c0">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a><li>LeftSideRoundedSplitter +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4aae653a78cd0cd197db2987f0eb4150">QextScintilla</a><li>LeftSideSplitter +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e6744df3fdf44463301b645e10c9fcb64">QextScintilla</a><li>length() +: <a class="el" href="classQextScintilla.html#d2c5da20d2f22f0c592330c618f6c7bd">QextScintilla</a><li>lexer() +: <a class="el" href="classQextScintillaLexerTeX.html#38a71b9864c9de3e422d696d49b7e4f0">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#f11bb7390af4b47ce159a829f82264d0">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#90f0d39fa849f263d841b34e10b93f30">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#a8718ec3b6ba82dd0d0477508f18c1cb">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#de484f827e973c4a10ed8ffee30ee6a0">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#9b63a0fb4253efe915c8ead6d8546d64">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#47221e83c089cb23a17f7ad0c1cbf2a9">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#3200a99b7847698fd0026462c4072f63">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#578426b4bb8a4c2b16129a1c60b3911c">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#263c14b01148462aac8d5fd38d63f952">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerDiff.html#19bdc2bd977ea621073ea5cac4c51d5a">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#0f28f522d2b53c7025ab3d227fd1c1ab">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#e11593183bc1457d47b25c41d97ffdc0">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#ad3275fdafc700e7e14cd9d8beb6c589">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#138d5db7d889a1065d14cabf45be423c">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#9221fa7b6665d7ad5490c7db02b1e59b">QextScintilla</a><li>LineAdded +: <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70454dc3a3786c357a923d262beedb9eea">QextScintillaLexerDiff</a><li>lineAt() +: <a class="el" href="classQextScintilla.html#432c50978f56ae8722a42751dd350bdd">QextScintilla</a><li>LineComment +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493e35ebe476c95b3facea207f144908370">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e69c6f51c5d32bd8e9d154d22570dcf9">QextScintillaLexerLua</a><li>lineLength() +: <a class="el" href="classQextScintilla.html#c8823b1c95b8b213d16bb8c801b02842">QextScintilla</a><li>LineRemoved +: <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70540a3db397634130284e62d97c381a59">QextScintillaLexerDiff</a><li>lines() +: <a class="el" href="classQextScintilla.html#8e8c34edc623256f29061a9cd69d9195">QextScintilla</a><li>LiteralString +: <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6edabe8da9049cc395dd7c301c5dc8383">QextScintillaLexerLua</a><li>load() +: <a class="el" href="classQextScintillaMacro.html#22ba5818bbcc5562c5fd5a5332e8238f">QextScintillaMacro</a>, <a class="el" href="classQextScintillaAPIs.html#5d424a6c31b3f91739977a99103c3415">QextScintillaAPIs</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x6d.html b/doc/html/functions_0x6d.html new file mode 100644 index 0000000..3f20854 --- /dev/null +++ b/doc/html/functions_0x6d.html @@ -0,0 +1,89 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li id="current"><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_m">- m -</a></h3><ul> +<li>magnification() +: <a class="el" href="classQextScintillaPrinter.html#a990192f1b73683409f23b0bb1ba3e94">QextScintillaPrinter</a><li>marginClicked() +: <a class="el" href="classQextScintilla.html#e066273695466c6e19cd4e8cd2414e17">QextScintilla</a><li>marginLineNumbers() +: <a class="el" href="classQextScintilla.html#43f2c96091e57ac4818a16ecdf275a6a">QextScintilla</a><li>marginMarkerMask() +: <a class="el" href="classQextScintilla.html#81a2053eef4e0e085a2b8ef2e675466a">QextScintilla</a><li>marginSensitivity() +: <a class="el" href="classQextScintilla.html#9206b50c414a0d42f705acec533e608f">QextScintilla</a><li>marginWidth() +: <a class="el" href="classQextScintilla.html#67b8e6edfca91d945a015c85d4dcf391">QextScintilla</a><li>markerAdd() +: <a class="el" href="classQextScintilla.html#210ded3888b4ec5f6a02078f7baab78a">QextScintilla</a><li>markerDefine() +: <a class="el" href="classQextScintilla.html#8959a19ddf5a574dd9ad8b7ed5461820">QextScintilla</a><li>markerDelete() +: <a class="el" href="classQextScintilla.html#403508173e2292c7d39dc4728420caf0">QextScintilla</a><li>markerDeleteAll() +: <a class="el" href="classQextScintilla.html#ae1c8607b83a83f416832227da5740a5">QextScintilla</a><li>markerDeleteHandle() +: <a class="el" href="classQextScintilla.html#0983b52c2d4454b6a531e07138791d30">QextScintilla</a><li>markerFindNext() +: <a class="el" href="classQextScintilla.html#85a6c94aa396c28e548a151be4465ed4">QextScintilla</a><li>markerFindPrevious() +: <a class="el" href="classQextScintilla.html#d5fd073acbc05e75d957feb9004316f6">QextScintilla</a><li>markerLine() +: <a class="el" href="classQextScintilla.html#e143cb71aa915e9934618282184a9aba">QextScintilla</a><li>markersAtLine() +: <a class="el" href="classQextScintilla.html#b334127d4033b5336d8aa52e0efa581a">QextScintilla</a><li>MarkerSymbol +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e">QextScintilla</a><li>Minus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee9d6088eaf7e66c9446ab6a45d06ee1c">QextScintilla</a><li>modificationAttempted() +: <a class="el" href="classQextScintilla.html#361adb6dbed444724c2b503d1329cc8b">QextScintilla</a><li>modificationChanged() +: <a class="el" href="classQextScintilla.html#429e0a1e9c1cd7bc49b8d6939743e26d">QextScintilla</a><li>ModuleName +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67358a79aa63d9746f770a906dbbe778595">QextScintillaLexerRuby</a><li>moveToMatchingBrace() +: <a class="el" href="classQextScintilla.html#17f49beed46f36d2e80aa28ed40302cf">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x6e.html b/doc/html/functions_0x6e.html new file mode 100644 index 0000000..7d3ce9e --- /dev/null +++ b/doc/html/functions_0x6e.html @@ -0,0 +1,72 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li id="current"><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_n">- n -</a></h3><ul> +<li>NoBraceMatch +: <a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06bb87d61027f50717f9df0526ad9654bfa">QextScintilla</a><li>NoFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf15bf3a37eb510d9e28cffa522aaa938a">QextScintilla</a><li>NoWarning +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c564a063227a2e0d9de1ffd40929b74ec9">QextScintillaLexerPython</a><li>Number +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493590936951ff6172b944c1b561110e32d">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6738550bc5e3d7ad4ab53ab7155137f09d7">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a71767251a0c204858d26f57088b9311c2">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc54c22348dcd877e740878a37fd84f1b01">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd1a2544dd4892c2321ab64e8064502804">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a68fcd66fee6897b8fa4ddb9381b693323">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519d5058c1e46b268ffc3aa7521effc05c">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1113ad1b444dda14833bd70230d58804d0">QextScintillaLexerBash</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x6f.html b/doc/html/functions_0x6f.html new file mode 100644 index 0000000..ccb61e4 --- /dev/null +++ b/doc/html/functions_0x6f.html @@ -0,0 +1,71 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li id="current"><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_o">- o -</a></h3><ul> +<li>ObjectsCSGAppearance +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5511e40759daff09aa602416ba2c8bc33">QextScintillaLexerPOV</a><li>Operator +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264939305370cfa11a13ffe1068e979adefb4">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673718d0aefbdbbf8e796f26b9cfab4ef13">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a70732162aee43c32736dab2129562b68e">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc51a685c160f236f6f8fce651b344829bf">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdd7ae22a2919bbedf43fb7489ac98ee08">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b26ae31d04239b0104b20a6f9a0d8a672">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e1d5da80ef70caafc99e4cadf944c524">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e1d8a0b51d47e279fc4464acee1d3c7f1">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e511af9d62cbdb5bf81216428536529b88b">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e94251aa4bd4773717207d3cc95cf993d4">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11615cb731c7ed97f4d41fa4de38789cd8">QextScintillaLexerBash</a><li>OtherInTag +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c295f3da5022c9073088dd035955547ce2">QextScintillaLexerHTML</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x70.html b/doc/html/functions_0x70.html new file mode 100644 index 0000000..f1c8807 --- /dev/null +++ b/doc/html/functions_0x70.html @@ -0,0 +1,118 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li id="current"><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_p">- p -</a></h3><ul> +<li>paper() +: <a class="el" href="classQextScintillaLexerSQL.html#f48f2bfeccf7ffd7a9e72ad04a7b0882">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#3a175244ac607efd0aac7c2a277d2cd2">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#8f4a2c5f009e7f8f05fe64612922d5ae">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#3d6a97fbd72128254ce96c4f98e8f121">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#16ad1f50b59c21d283fe3ca53df19876">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#8ca422a6d7f5dac8504807b471ca87da">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#79ab0f476fe0822d2d4979ea7d882165">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#069160759fbd9f9942f15447580d53e1">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#edd2a656bf04564ec7494140d2800698">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerHTML.html#61db306c01232b11e66f70fd8dfd140d">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSharp.html#b92dae3e9d5fe9988c5e9f8439ad17a0">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#8cadeffdccdae0c0a3e26f6c8f33f3ee">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#f383c2bfa30a7f5b7d3982949f910326">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#162a91355351b5c66acad2da76dffa17">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#f6e3058d707eabd9f99d1fa93a91ea30">QextScintilla</a><li>paperChanged() +: <a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">QextScintillaLexer</a><li>ParameterExpansion +: <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11cbf60b317d49577f7725602d8c77a22e">QextScintillaLexerBash</a><li>paste() +: <a class="el" href="classQextScintilla.html#b06dcc3f9252043a915595e3398711e4">QextScintilla</a><li>PercentStringq +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673372c0fcb1273b52efbc9e4075a565c63">QextScintillaLexerRuby</a><li>PercentStringQ +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673601952601e0ef339e9613b1170b83489">QextScintillaLexerRuby</a><li>PercentStringr +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736502c78bd71b72444de52a9e8bd7b3b4">QextScintillaLexerRuby</a><li>PercentStringw +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673691db4ca4af38d28327188d6ad0d2183">QextScintillaLexerRuby</a><li>PercentStringx +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733ee5ed8f3935c538afb3b5eff690311f">QextScintillaLexerRuby</a><li>PHPComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22b4926bc98c45fbdfa129a6b4e501365">QextScintillaLexerHTML</a><li>PHPCommentLine +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27547d69c64295672e8d647c4a7721b3f">QextScintillaLexerHTML</a><li>PHPDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2800893a14c74490f427d82ba07371c42">QextScintillaLexerHTML</a><li>PHPDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2eb4c6e34ecd8b7bfb94795b2c771e22c">QextScintillaLexerHTML</a><li>PHPDoubleQuotedVariable +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bbff0ccc2750d185bda4581ddee5f080">QextScintillaLexerHTML</a><li>PHPKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a30dc61f0df4c2a61c23b85fff0d9027">QextScintillaLexerHTML</a><li>PHPNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e16b23daeab8265574ee4d02a399ca81">QextScintillaLexerHTML</a><li>PHPOperator +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20738846719d16721222fa8ccab27200e">QextScintillaLexerHTML</a><li>PHPSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f8ae9f462bb9b23d6f3703b727791940">QextScintillaLexerHTML</a><li>PHPStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ef6650661ac486cba66ba144244829bd">QextScintillaLexerHTML</a><li>PHPVariable +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28132b2eb65e40ece81ee7f00dfd09b80">QextScintillaLexerHTML</a><li>PlainFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cff1c523d088ff3118802f265134f7b0c8">QextScintilla</a><li>play() +: <a class="el" href="classQextScintillaMacro.html#23408394a213fa7fcd5b7cab2a060c27">QextScintillaMacro</a><li>Plus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ec8380a8e0e64281cd3e9235d38f4bdf4">QextScintilla</a><li>PlusComment +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d54c83c61889d05d12b7bf1a7a8c4d3b">QextScintillaLexerSQL</a><li>PlusKeyword +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649311cca7900ab1e189e415d55276e6ccd3">QextScintillaLexerSQL</a><li>PlusPrompt +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493506be43dc6a850ffb04d71ec1b9c7166">QextScintillaLexerSQL</a><li>POD +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67315842cf1f1126bc9d18c1d7d917d09f9">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd75244ee749dfa58697bab175b0237af1">QextScintillaLexerPerl</a><li>PODVerbatim +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd58509059db3ab2ec889bd295748055de">QextScintillaLexerPerl</a><li>pool() +: <a class="el" href="classQextScintillaBase.html#e9a2e982760ae835cdecfcfe6b92c416">QextScintillaBase</a><li>Position +: <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70f07c16d1e763b13988ab6bef5c8c0377">QextScintillaLexerDiff</a><li>PredefinedFunctions +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc504b9dcfd0b91ab60fa567232c077eb7a">QextScintillaLexerPOV</a><li>PredefinedIdentifiers +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5f0014f82a6ab4e9e7c61a0413329cb5d">QextScintillaLexerPOV</a><li>PreProcessor +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51292bfc802f7e67778e276970a2d1e028">QextScintillaLexerCPP</a><li>Preprocessor +: <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b09ea5936c88f92b968d58e6497f406dd">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a68b9c95922bfc06feb46347bf07948238">QextScintillaLexerLua</a><li>printRange() +: <a class="el" href="classQextScintillaPrinter.html#31d261de4a31e82646f4f75d1a6085f6">QextScintillaPrinter</a><li>propertyChanged() +: <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">QextScintillaLexer</a><li>PseudoClass +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e06a85dfafc228beac3ee921787d24a58">QextScintillaLexerCSS</a><li>PythonClassName +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c209c70bdce614a0a9c068d19720906d9c">QextScintillaLexerHTML</a><li>PythonComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c220cdf4d4655d0353bf772e7d90fab1b9">QextScintillaLexerHTML</a><li>PythonDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27a5dcc2ae7e210375d5e7bf3fdeb0f93">QextScintillaLexerHTML</a><li>PythonDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bf848c6a453aadd1806b2cc09652d77a">QextScintillaLexerHTML</a><li>PythonFunctionMethodName +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c263b8af4e31e87230ac44b81da999faf0">QextScintillaLexerHTML</a><li>PythonIdentifier +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c5dd70a02208f0d6d5f53c06b93acd11">QextScintillaLexerHTML</a><li>PythonKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2397c4fd13726b88bdeb2b038f4942cf9">QextScintillaLexerHTML</a><li>PythonNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c234ec0c4a8ba7e993e49415d5af1baecf">QextScintillaLexerHTML</a><li>PythonOperator +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dcfc543de7b11f1b1b5357d6e9aacfdd">QextScintillaLexerHTML</a><li>PythonSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bd9193ec4ab63af58c0c73e0aeaa3ea5">QextScintillaLexerHTML</a><li>PythonStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ac01be44db7f0a2eba2e036a33307fed">QextScintillaLexerHTML</a><li>PythonTripleDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28bb288f4cb0874ac57764d6a0bd1476c">QextScintillaLexerHTML</a><li>PythonTripleSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2fb0408178c31799bdb5bc86c7417c56c">QextScintillaLexerHTML</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x71.html b/doc/html/functions_0x71.html new file mode 100644 index 0000000..dc84b2e --- /dev/null +++ b/doc/html/functions_0x71.html @@ -0,0 +1,100 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li id="current"><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_q">- q -</a></h3><ul> +<li>QextScintilla() +: <a class="el" href="classQextScintilla.html#82bdfb8912254d875b2561ee06e3dac5">QextScintilla</a><li>QextScintillaAPIs() +: <a class="el" href="classQextScintillaAPIs.html#37e89c8f886f627bfffe8c7497c687b4">QextScintillaAPIs</a><li>QextScintillaBase() +: <a class="el" href="classQextScintillaBase.html#e54a418ee8c182e1ddfa404b59a34149">QextScintillaBase</a><li>QextScintillaDocument() +: <a class="el" href="classQextScintillaDocument.html#b3fa870cc66064a6fbb8947cda063574">QextScintillaDocument</a><li>QextScintillaLexer() +: <a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a><li>QextScintillaLexerBash() +: <a class="el" href="classQextScintillaLexerBash.html#3d73bdd3cf21d2d2b365e8c184fe743b">QextScintillaLexerBash</a><li>QextScintillaLexerBatch() +: <a class="el" href="classQextScintillaLexerBatch.html#a2ebe656b90ee7f42f681be2b3f4e39a">QextScintillaLexerBatch</a><li>QextScintillaLexerCPP() +: <a class="el" href="classQextScintillaLexerCPP.html#d019d2bee70433f21b5d2a385cc78561">QextScintillaLexerCPP</a><li>QextScintillaLexerCSharp() +: <a class="el" href="classQextScintillaLexerCSharp.html#bc7e413d90c75a50b801060bd4dc82a4">QextScintillaLexerCSharp</a><li>QextScintillaLexerCSS() +: <a class="el" href="classQextScintillaLexerCSS.html#158086fb9f29682c3f0db383b87c535b">QextScintillaLexerCSS</a><li>QextScintillaLexerDiff() +: <a class="el" href="classQextScintillaLexerDiff.html#6f3d75165a8b7041502a84ee2226d828">QextScintillaLexerDiff</a><li>QextScintillaLexerHTML() +: <a class="el" href="classQextScintillaLexerHTML.html#60b3d0b173242c1c86167861d3f994d3">QextScintillaLexerHTML</a><li>QextScintillaLexerIDL() +: <a class="el" href="classQextScintillaLexerIDL.html#0ae4e3ba2aa88b01141ca9a325c03c1b">QextScintillaLexerIDL</a><li>QextScintillaLexerJava() +: <a class="el" href="classQextScintillaLexerJava.html#64986f30edfe91a663809f184a423111">QextScintillaLexerJava</a><li>QextScintillaLexerJavaScript() +: <a class="el" href="classQextScintillaLexerJavaScript.html#b399d27be19d5fc6ac6bf5b3c555b079">QextScintillaLexerJavaScript</a><li>QextScintillaLexerLua() +: <a class="el" href="classQextScintillaLexerLua.html#43fbffe049e40e7d9116debe7f5a0e01">QextScintillaLexerLua</a><li>QextScintillaLexerMakefile() +: <a class="el" href="classQextScintillaLexerMakefile.html#7817578c09777eec21970da119eea11c">QextScintillaLexerMakefile</a><li>QextScintillaLexerPerl() +: <a class="el" href="classQextScintillaLexerPerl.html#f464c55ef527cfee1a4d99b9d79680a7">QextScintillaLexerPerl</a><li>QextScintillaLexerPOV() +: <a class="el" href="classQextScintillaLexerPOV.html#d8b6b9c830172af6cfcd9272a2d38c07">QextScintillaLexerPOV</a><li>QextScintillaLexerProperties() +: <a class="el" href="classQextScintillaLexerProperties.html#be0f77d8beaf8dabe3d99db45f056d7b">QextScintillaLexerProperties</a><li>QextScintillaLexerPython() +: <a class="el" href="classQextScintillaLexerPython.html#d00e08d9b76c7b85063b3a5f72dbd1f6">QextScintillaLexerPython</a><li>QextScintillaLexerRuby() +: <a class="el" href="classQextScintillaLexerRuby.html#f84a7b041a40eec05036417a7333a604">QextScintillaLexerRuby</a><li>QextScintillaLexerSQL() +: <a class="el" href="classQextScintillaLexerSQL.html#87ef4b587bfc5e453a898112d8b22f2d">QextScintillaLexerSQL</a><li>QextScintillaLexerTeX() +: <a class="el" href="classQextScintillaLexerTeX.html#ded3543e0a0fc392bb8adbcd8660914e">QextScintillaLexerTeX</a><li>QextScintillaMacro() +: <a class="el" href="classQextScintillaMacro.html#f7a13a836fe98c2cdef8c0e767436b74">QextScintillaMacro</a><li>QextScintillaPrinter() +: <a class="el" href="classQextScintillaPrinter.html#d304f2d535a10595acc613521f92dc49">QextScintillaPrinter</a><li>QSCN_SELCHANGED() +: <a class="el" href="classQextScintillaBase.html#98a9d6ccb14bf28e9bf75dc069577b9b">QextScintillaBase</a><li>QuotedStringQ +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd933aeab1fe465716d4f97bc97cebce49">QextScintillaLexerPerl</a><li>QuotedStringQQ +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdfb8a8ae159788ef51bbdebd04ca5778a">QextScintillaLexerPerl</a><li>QuotedStringQR +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd0d121c9178499a2fa6130ae99678c2b8">QextScintillaLexerPerl</a><li>QuotedStringQW +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd0f6aedbdee98cb414e8910ab50109223">QextScintillaLexerPerl</a><li>QuotedStringQX +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd545adfb2d84a0f161e560a0023588318">QextScintillaLexerPerl</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x72.html b/doc/html/functions_0x72.html new file mode 100644 index 0000000..e1d3a5f --- /dev/null +++ b/doc/html/functions_0x72.html @@ -0,0 +1,84 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li id="current"><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_r">- r -</a></h3><ul> +<li>readProperties() +: <a class="el" href="classQextScintillaLexerSQL.html#376c567479019727c755b71274f7710c">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPython.html#496893b8f75a204f1099b42fa06ea0da">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#eaa2f7a219cd9c2ca923b2595b268c35">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#74be8267ef68b998d7cabe8466153c24">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#a2e0f7cdb50bb439f348e57e3d6f8c76">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#5dc890e770301ab5ecca0f37294c69e8">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#c00904b135b7098ac120344e01d6a706">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#2618234cfaaa7bc4d24db9df5e423417">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#58af6f75117c384d0204ac0f65e94c1d">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#09a5f818c0d69023ea459fd59c308b9f">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a><li>readSettings() +: <a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">QextScintillaLexer</a>, <a class="el" href="classQextScintillaCommandSet.html#a6e09aabf6126617ecec01c35fb32e53">QextScintillaCommandSet</a><li>recolor() +: <a class="el" href="classQextScintilla.html#7134334cfb405096fc37a0f53942739d">QextScintilla</a><li>Rectangle +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e9f09b445e420d7da2690fa04a3b47aca">QextScintilla</a><li>redo() +: <a class="el" href="classQextScintilla.html#6cb5d1ef84197df4ebc410de61775e98">QextScintilla</a><li>refreshProperties() +: <a class="el" href="classQextScintillaLexerSQL.html#786e5f3e0b56a8b6a5b0ef6ce5256a36">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPython.html#4e62dbca0f2fecd3a8c28671d3008f4d">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#abf5e5dfb111502bd3b96a8073924746">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#5af07365484f36818be1317cdae81a1a">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#8bfda96d71deb1b8c930c1b2aa02ae33">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#7995cf1a6671a840abf061b3939b5e8b">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#fa1583f1e5edd402ccd6e3cebc1d8c07">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#2954acc8e9d84e6eac7b59bd5409f962">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#a02453989cf7f0fed7f5a72dd7408ca7">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a35486ac2b53bcc04380117ce4282d34">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a><li>Regex +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6735340c230a6d8d802547fa0bcb95f9951">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdc8df05443c05fa04021c57ae99e9f087">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5181fc788d2dfc87c687be8f74f53de535">QextScintillaLexerCPP</a><li>registerImage() +: <a class="el" href="classQextScintilla.html#72462e663c2e41ab79fde1a2b793b0bc">QextScintilla</a><li>removeSelectedText() +: <a class="el" href="classQextScintilla.html#844f15ee19c413f867a8643e98499eb6">QextScintilla</a><li>replace() +: <a class="el" href="classQextScintilla.html#520e57b1a1330e59293ba796bacd3159">QextScintilla</a><li>resetFoldMarginColors() +: <a class="el" href="classQextScintilla.html#b92a8b75e43f431ec2015bef367c548d">QextScintilla</a><li>resetSelectionBackgroundColor() +: <a class="el" href="classQextScintilla.html#5202253f6428debe10bc5f3e2f194048">QextScintilla</a><li>resetSelectionForegroundColor() +: <a class="el" href="classQextScintilla.html#a82474200e54331d49369129cdf03962">QextScintilla</a><li>RightArrow +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc48c1353c0700fbce7934cec712ad46">QextScintilla</a><li>RightTriangle +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e1067d54d6ffc9638173c14eafb94a076">QextScintilla</a><li>RoundedBottomLeftCorner +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ea00fb6bd4558f17771593aae1441c25d">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x73.html b/doc/html/functions_0x73.html new file mode 100644 index 0000000..4c0e473 --- /dev/null +++ b/doc/html/functions_0x73.html @@ -0,0 +1,360 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li id="current"><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_s">- s -</a></h3><ul> +<li>save() +: <a class="el" href="classQextScintillaMacro.html#dbdc69113895d3f07b0bdb1f3f075498">QextScintillaMacro</a><li>SC_MARGIN_BACK +: <a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2202759936bafc4284957c4226f3042db">QextScintillaBase</a><li>SC_MARGIN_FORE +: <a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a23d1e3bb214808a93cf72986b0b461027">QextScintillaBase</a><li>SC_MARGIN_NUMBER +: <a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2ed8932da45c8172b8b9c8fdeca780f62">QextScintillaBase</a><li>SC_MARGIN_SYMBOL +: <a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a27e7af608c20e4123e0c63a4cc773b363">QextScintillaBase</a><li>SC_MARK_ARROW +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4e3b1de6390cc0af837be4f7d7fe2c874">QextScintillaBase</a><li>SC_MARK_ARROWDOWN +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4edad3abdf6caacb6b2e0aa6b5dcb2225">QextScintillaBase</a><li>SC_MARK_ARROWS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f89256799c23918fda728e89cca33202">QextScintillaBase</a><li>SC_MARK_BACKGROUND +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40299712b9cc948d89b63ccb57cc718b1">QextScintillaBase</a><li>SC_MARK_BOXMINUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4562a720141731259a0b103de4bd97d97">QextScintillaBase</a><li>SC_MARK_BOXMINUSCONNECTED +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4796ee8aec20e6718fb0f64ed6842f788">QextScintillaBase</a><li>SC_MARK_BOXPLUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4b44cd3777c6526b38e43729f55d33d9f">QextScintillaBase</a><li>SC_MARK_BOXPLUSCONNECTED +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a273fcfe1adb61f9209aae02dc0255e">QextScintillaBase</a><li>SC_MARK_CHARACTER +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43b6b66013744d32a407bdfd6d09a5b51">QextScintillaBase</a><li>SC_MARK_CIRCLE +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f434a6ab21669939553df7ea20efee63">QextScintillaBase</a><li>SC_MARK_CIRCLEMINUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4d8679bbada38b23e093aca2d7e181cf6">QextScintillaBase</a><li>SC_MARK_CIRCLEMINUSCONNECTED +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ef80900cadb97b802077c229197a5cb3">QextScintillaBase</a><li>SC_MARK_CIRCLEPLUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7d571a7e7e48ae750c7a862e1bbaac">QextScintillaBase</a><li>SC_MARK_CIRCLEPLUSCONNECTED +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f44be3bd3071b92f21bedeb38080297239">QextScintillaBase</a><li>SC_MARK_DOTDOTDOT +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4bc5087b0b7079ec10079a8346c7f5034">QextScintillaBase</a><li>SC_MARK_EMPTY +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f42df2479d1baf9d5576639f46a1222346">QextScintillaBase</a><li>SC_MARK_FULLRECT +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f427aabfe553646e9ab186017b26577a06">QextScintillaBase</a><li>SC_MARK_LCORNER +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f481d4d67f51f4ca1537ed49073485d9a7">QextScintillaBase</a><li>SC_MARK_LCORNERCURVE +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ee7ddee38b57a705314bc6739e488bab">QextScintillaBase</a><li>SC_MARK_MINUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f461a1e23b36a33e7dcbe60829fc9bc8cb">QextScintillaBase</a><li>SC_MARK_PIXMAP +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f45f1d4dcf4839e48bcd9a4e3f134ce7c6">QextScintillaBase</a><li>SC_MARK_PLUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4607f53e1b9693350dbf5317d22af3f36">QextScintillaBase</a><li>SC_MARK_ROUNDRECT +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498c50cda1aa3ef885dd756384991ee61">QextScintillaBase</a><li>SC_MARK_SHORTARROW +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498e14aa4f516be7f37574e209c1e663d">QextScintillaBase</a><li>SC_MARK_SMALLRECT +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a7488c79a3800a9c8790763ed4adbef">QextScintillaBase</a><li>SC_MARK_TCORNER +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7c7a88f1171999c0a794440ca52421">QextScintillaBase</a><li>SC_MARK_TCORNERCURVE +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f724482fbd5d843bae330c83639aae34">QextScintillaBase</a><li>SC_MARK_VLINE +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4723048b3e712e9165c6909e07d01295b">QextScintillaBase</a><li>Scalar +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd4cc9525151756c87ccd08730dab11fe8">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11988ca4848e463e24a09d42d55d3bc153">QextScintillaLexerBash</a><li>SCEN_CHANGE() +: <a class="el" href="classQextScintillaBase.html#13a80e946a24ed608742e90e976b770b">QextScintillaBase</a><li>SCI_ADDTEXT +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0da963008bd0cd3ee5fafd3a033ba5570">QextScintillaBase</a><li>SCI_CLEARREGISTEREDIMAGES +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0eb5af129108965033a6ae40eb45f7789">QextScintillaBase</a><li>SCI_EMPTYUNDOBUFFER +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d3351e3d838d0ecd57d7d9873364e219">QextScintillaBase</a><li>SCI_GETANCHOR +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0caa048913dfa4284aac9304e4d5e2d96">QextScintillaBase</a><li>SCI_GETCURRENTPOS +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a1a628b61fa247d312e3f883fdcbc47">QextScintillaBase</a><li>SCI_GETENDSTYLED +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05ff8be672f9810059ab924770ee7a710">QextScintillaBase</a><li>SCI_GETLEXER +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0f2708d28f4c8b3d30bf4bea14b977945">QextScintillaBase</a><li>SCI_GETMARGINMASKN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a9d75e0d511355318ab72cc7b7d0876">QextScintillaBase</a><li>SCI_GETMARGINSENSITIVEN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fb5a01691811c1ad15519d7023f83df9">QextScintillaBase</a><li>SCI_GETMARGINTYPEN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce">QextScintillaBase</a><li>SCI_GETMARGINWIDTHN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d301d4135e034067d2da57890708198e">QextScintillaBase</a><li>SCI_GETMODIFY +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b076256f845570b29f335820a97bd158a5">QextScintillaBase</a><li>SCI_GETREADONLY +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0918f3e57dfd152bfe12469d2d27de9db">QextScintillaBase</a><li>SCI_GETTEXT +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b09d5e442a3812d53ac8067628098fedb0">QextScintillaBase</a><li>SCI_GETTEXTLENGTH +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b034122ac033e32308cf188f718b0107e9">QextScintillaBase</a><li>SCI_GOTOPOS +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b00ac47051be6366994d747fd07b52077a">QextScintillaBase</a><li>SCI_MARKERADD +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49">QextScintillaBase</a><li>SCI_MARKERDEFINE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b053b5ad6db4f59a08f49888d1fe6014c9">QextScintillaBase</a><li>SCI_MARKERDEFINEPIXMAP +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08b2d54230a47a94bfb2ea2fd88cdabc8">QextScintillaBase</a><li>SCI_MARKERDELETE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0b21015787f6b3914e4d638dee15aa2db">QextScintillaBase</a><li>SCI_MARKERDELETEALL +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0daef3f1a3a46547eb9fdd1faa1dcabba">QextScintillaBase</a><li>SCI_MARKERDELETEHANDLE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04d4abb132cd5c624fb863a4e2e18cb48">QextScintillaBase</a><li>SCI_MARKERGET +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03e011f5a6f9a1933ac95701cbe26e8f1">QextScintillaBase</a><li>SCI_MARKERLINEFROMHANDLE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0c7d428743df3c3270a93ef5458a9c9a4">QextScintillaBase</a><li>SCI_MARKERNEXT +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f423984b7557eb8274ba46962d22021">QextScintillaBase</a><li>SCI_MARKERPREVIOUS +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06f99e3d5fe686e7fc62ea33c7b142bed">QextScintillaBase</a><li>SCI_MARKERSETBACK +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fc75921a28636146af28a8f21ca5ff82">QextScintillaBase</a><li>SCI_MARKERSETFORE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06b0344c924e234c5a73466b86225e0af">QextScintillaBase</a><li>SCI_REGISTERIMAGE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b041ef59413dbfaeb8d13cde610dffb659">QextScintillaBase</a><li>SCI_SETANCHOR +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ddf73f24d674a7deda70e54f8418edcc">QextScintillaBase</a><li>SCI_SETCURRENTPOS +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08f8198351235bce8efe1c9fa4b69419e">QextScintillaBase</a><li>SCI_SETLEXER +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0072c4ebd26abad84f3892a5aef4cf215">QextScintillaBase</a><li>SCI_SETLEXERLANGUAGE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08512ebbc6a1341e1fb55f70e693fb8d0">QextScintillaBase</a><li>SCI_SETMARGINMASKN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04bad9debaf35fc86b8899891bce53c38">QextScintillaBase</a><li>SCI_SETMARGINSENSITIVEN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ac5019b21e5be3cf19fcf999c3da833a">QextScintillaBase</a><li>SCI_SETMARGINTYPEN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f9b3a4194c3ee4d18f9efb8dcb91bb9">QextScintillaBase</a><li>SCI_SETMARGINWIDTHN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0681a357f18daa23daa1f6eaaeb0ea06c">QextScintillaBase</a><li>SCI_SETREADONLY +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b059b1bb6d9d65ac410be6b66b2c426f14">QextScintillaBase</a><li>SCI_SETSAVEPOINT +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0be33d4f870ce79d968106ae73cc431a0">QextScintillaBase</a><li>SCI_SETTEXT +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b004da7b8cb076eacef2372b9bbfe4dc14">QextScintillaBase</a><li>SCI_TEXTWIDTH +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05a873177612d3225d21459d889b51a20">QextScintillaBase</a><li>SCLEX_ADA +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8b9733c9dd7b20e68a1226cf9ed81f69">QextScintillaBase</a><li>SCLEX_APDL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc5a6e143f3b3db4c6b2e80fce8d4f8eb">QextScintillaBase</a><li>SCLEX_ASM +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8c7ff8643a97b01c67a4a9271030d1ac">QextScintillaBase</a><li>SCLEX_ASN1 +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da0b7eaa71bb78dd6d6fced870ba90f24">QextScintillaBase</a><li>SCLEX_ASP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded111ca524237de01b990c8aa9380542">QextScintillaBase</a><li>SCLEX_AU3 +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8dc8d6b0189cd4d471264a824cf1c199">QextScintillaBase</a><li>SCLEX_AVE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6edb4f9bc36f41d26f4a42a3410c7433">QextScintillaBase</a><li>SCLEX_BAAN +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3c9e1bf7b958e31d8ab870a95cab0851">QextScintillaBase</a><li>SCLEX_BASH +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f9e5ea4e564ba6f8d1dae8d7ace454d">QextScintillaBase</a><li>SCLEX_BATCH +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4f36017b6593f4740d006563caa5dd1a">QextScintillaBase</a><li>SCLEX_BLITZBASIC +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2696851be5e73938cc53b02903bf30c2">QextScintillaBase</a><li>SCLEX_BULLANT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0925a82889c406669e7293d180555159">QextScintillaBase</a><li>SCLEX_CAML +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d53e5454136a08b61270dfa0e49e471e6">QextScintillaBase</a><li>SCLEX_CLW +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0651b9876e477b32d5a3825d298098ae">QextScintillaBase</a><li>SCLEX_CLWNOCASE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dafaa399612f323eb30aa2ca13bc0e42a">QextScintillaBase</a><li>SCLEX_CONF +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f3a52fea3e08741ea664dedf5530fa5">QextScintillaBase</a><li>SCLEX_CONTAINER +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df702befd903d9d65fa84af10461828a0">QextScintillaBase</a><li>SCLEX_CPP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d37233777b6512990ad985e41f1470ee0">QextScintillaBase</a><li>SCLEX_CPPNOCASE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddada03b169d0b52daa7c00181f03e897">QextScintillaBase</a><li>SCLEX_CSOUND +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d046e55128e56aeeb7a72f994fb4e015b">QextScintillaBase</a><li>SCLEX_CSS +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc4b56223ccc682279fc18900fe650778">QextScintillaBase</a><li>SCLEX_DIFF +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6842f7058b71411ab80bc1c33a63da63">QextScintillaBase</a><li>SCLEX_EIFFEL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d348f60f0b617eed037b6110e42af0996">QextScintillaBase</a><li>SCLEX_EIFFELKW +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6d8490d0f99f6b329ab5f45c2234adf5">QextScintillaBase</a><li>SCLEX_ERLANG +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da96b775c8fe016a1e7541600f939e201">QextScintillaBase</a><li>SCLEX_ERRORLIST +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da5ccd91896d4f60a1721f59baca56e13">QextScintillaBase</a><li>SCLEX_ESCRIPT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d07f1b0054d239f968dece3bfb2017e6e">QextScintillaBase</a><li>SCLEX_F77 +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb8b68e427523e7e7ac9bc7f20b4347b">QextScintillaBase</a><li>SCLEX_FLAGSHIP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d38bfecc4bc450106195200bf1724a84b">QextScintillaBase</a><li>SCLEX_FORTH +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8cba676e4b42856ea6187a171dc74995">QextScintillaBase</a><li>SCLEX_FORTRAN +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d78c83128f5d3c8ed6b2d87a3c6f61e3d">QextScintillaBase</a><li>SCLEX_FREEBASIC +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d276307014b9460c95ebe5076afa050f2">QextScintillaBase</a><li>SCLEX_GUI4CLI +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dd9dc2f753f14ca5ef729c2883dee1b0d">QextScintillaBase</a><li>SCLEX_HASKELL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d351fd85d3fd522100386bfd9424e3a62">QextScintillaBase</a><li>SCLEX_HTML +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df2338400902a61d96c4057caa0c450a2">QextScintillaBase</a><li>SCLEX_INNOSETUP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0efec3f1d46af6f6a7924de1e19a5761">QextScintillaBase</a><li>SCLEX_KIX +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb1d483ed2becbbe59887bb89f4014d0">QextScintillaBase</a><li>SCLEX_LATEX +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8817495465d06d51a7f29663db3e307d">QextScintillaBase</a><li>SCLEX_LISP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d332fca6d318ec42f4db4191ad6deb193">QextScintillaBase</a><li>SCLEX_LOT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2c42663d4d0f5e3ea1ea6667d467bf5f">QextScintillaBase</a><li>SCLEX_LOUT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62db03b3fda38342d0470fab2357eac2ab0">QextScintillaBase</a><li>SCLEX_LUA +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dda37fcab324043a52fc2b85399644454">QextScintillaBase</a><li>SCLEX_MAKEFILE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3569ea5aea72d6978fb61b6231c3b4da">QextScintillaBase</a><li>SCLEX_MATLAB +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dbd5db8ab589a9223d2e095dcf3855454">QextScintillaBase</a><li>SCLEX_METAPOST +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8953cce4f69b05e263e1f47c617a70fd">QextScintillaBase</a><li>SCLEX_MMIXAL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc09594aa860e17ddff434ba2883e552e">QextScintillaBase</a><li>SCLEX_MSSQL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d85f6c994156a3adcea37f321f8dd6a3d">QextScintillaBase</a><li>SCLEX_NNCRONTAB +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8bbda96ce9f7e57aa479486a2d4edd94">QextScintillaBase</a><li>SCLEX_NSIS +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddd268ef9f9d4209dc241f55828257120">QextScintillaBase</a><li>SCLEX_NULL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a51b24b990fe1e8e3680d25e1331dc6">QextScintillaBase</a><li>SCLEX_OCTAVE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d91d63a0032121624fdae20af80851828">QextScintillaBase</a><li>SCLEX_OPAL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded042730912f5111558955e09214d298">QextScintillaBase</a><li>SCLEX_PASCAL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6210ca0cdb31e06c18ec14294238a3a4">QextScintillaBase</a><li>SCLEX_PERL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0bd817c73cd4b9a00a81c04a8585804b">QextScintillaBase</a><li>SCLEX_PHP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dab90570deb68926f7c76339b9640bc25">QextScintillaBase</a><li>SCLEX_PHPSCRIPT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e89b369bda35c4aebac67f7313a90f2">QextScintillaBase</a><li>SCLEX_POV +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d830f97f74f0966734a36579de53e7f9e">QextScintillaBase</a><li>SCLEX_POWERBASIC +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d055c632267a1a9e088e92893398ac0c2">QextScintillaBase</a><li>SCLEX_PROPERTIES +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d780544fc36639fc09690ad6dbb352f65">QextScintillaBase</a><li>SCLEX_PS +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d338ccc586737eb91dfc4333fea64b1f9">QextScintillaBase</a><li>SCLEX_PUREBASIC +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7764a265dd69743101b3a64e68ae5efa">QextScintillaBase</a><li>SCLEX_PYTHON +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d70827e6b1710d76ca56fce165f726ad2">QextScintillaBase</a><li>SCLEX_REBOL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de5f83876b6fa6a6de26b655e281ffd16">QextScintillaBase</a><li>SCLEX_RUBY +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc062b29c7caa054f57b5b6aa54385f33">QextScintillaBase</a><li>SCLEX_SCRIPTOL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d013005a7d7306628adbcdaa6bd41d24f">QextScintillaBase</a><li>SCLEX_SMALLTALK +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3a1de57f409755a648a5755f914ed028">QextScintillaBase</a><li>SCLEX_SPECMAN +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2a598cbdc1084026ef09a46ac1832c62">QextScintillaBase</a><li>SCLEX_SPICE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d983672d8cd26e849c76717f754e59a80">QextScintillaBase</a><li>SCLEX_SQL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d31b4c7ddbe672064514c775788f56f80">QextScintillaBase</a><li>SCLEX_TADS3 +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dcabaa53d59287ebbdc977eeceb9c3e65">QextScintillaBase</a><li>SCLEX_TCL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e46782e8d9ccda555ec49cfca67e546">QextScintillaBase</a><li>SCLEX_TEX +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6b8c539414c4f2127c04e5bc2c9da03a">QextScintillaBase</a><li>SCLEX_VB +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d42e3b71bd069a7991e73b16a48d44fb3">QextScintillaBase</a><li>SCLEX_VBSCRIPT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4e2037e23a835db605b0620f32511b87">QextScintillaBase</a><li>SCLEX_VERILOG +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8142b07f7de61126fc5e4dd005f09c28">QextScintillaBase</a><li>SCLEX_VHDL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7d9f5bcf567a86ad19f28476539f3c76">QextScintillaBase</a><li>SCLEX_XML +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de4a8bd95f6f567e44a246f46c3d2a7fe">QextScintillaBase</a><li>SCLEX_YAML +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a3b27b45e2066a6dd275b613adb0a1d">QextScintillaBase</a><li>SCMOD_ALT +: <a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e3d58fd86cb23274ec15615fe2c42961f">QextScintillaBase</a><li>SCMOD_CTRL +: <a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4ea69a17f5b83112750f8807a1516b8119">QextScintillaBase</a><li>SCMOD_NORM +: <a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e881b5932870b621432a28e0d7a324695">QextScintillaBase</a><li>SCMOD_SHIFT +: <a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4eeb5363cad0f41ea5332418f63a3ad06f">QextScintillaBase</a><li>SCN_AUTOCSELECTION() +: <a class="el" href="classQextScintillaBase.html#8201e4d6beab5edbb64515d6d52b1fd7">QextScintillaBase</a><li>SCN_CALLTIPCLICK() +: <a class="el" href="classQextScintillaBase.html#dccbc9d664a8bffc9d59971a362febf2">QextScintillaBase</a><li>SCN_CHARADDED() +: <a class="el" href="classQextScintillaBase.html#3af676a6edd1f511a0c46cbc9bbb2cbb">QextScintillaBase</a><li>SCN_HOTSPOTCLICK() +: <a class="el" href="classQextScintillaBase.html#c5a9f540a31b8fa2614eb81ee83a3ca4">QextScintillaBase</a><li>SCN_HOTSPOTDOUBLECLICK() +: <a class="el" href="classQextScintillaBase.html#1ef454f2acaccaa53dcce7e542cdb006">QextScintillaBase</a><li>SCN_MACRORECORD() +: <a class="el" href="classQextScintillaBase.html#48c3b55133b4f2fe40f4a8ad48c8464a">QextScintillaBase</a><li>SCN_MARGINCLICK() +: <a class="el" href="classQextScintillaBase.html#5d37a34b0254cfe015056c25b1b486a5">QextScintillaBase</a><li>SCN_MODIFYATTEMPTRO() +: <a class="el" href="classQextScintillaBase.html#50b6b16bf671969a8e0034b8763a55b2">QextScintillaBase</a><li>SCN_PAINTED() +: <a class="el" href="classQextScintillaBase.html#0812c4c0f7a05df4ede492e5b81c0c5d">QextScintillaBase</a><li>SCN_SAVEPOINTLEFT() +: <a class="el" href="classQextScintillaBase.html#2b5ad5e9701145883210c588caa60859">QextScintillaBase</a><li>SCN_SAVEPOINTREACHED() +: <a class="el" href="classQextScintillaBase.html#72a342de3e6973e7bfee0403bc002585">QextScintillaBase</a><li>SCN_STYLENEEDED() +: <a class="el" href="classQextScintillaBase.html#091c3669666a8d479e8dea5b803f63d7">QextScintillaBase</a><li>Script +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20cc15b3e84292be2c40075a38feafd8d">QextScintillaLexerHTML</a><li>Section +: <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275e54e379d346512d24c43222c626e2345">QextScintillaLexerProperties</a><li>selectAll() +: <a class="el" href="classQextScintilla.html#50499f9105f6dbc9922078139779051c">QextScintilla</a><li>selectedText() +: <a class="el" href="classQextScintilla.html#45d6e53a4310c13170e605134274aa20">QextScintilla</a><li>selectionChanged() +: <a class="el" href="classQextScintilla.html#d4fd9bb7affe4719cb785064b42d685c">QextScintilla</a><li>selectToMatchingBrace() +: <a class="el" href="classQextScintilla.html#b6bfc944a5acbd2b8345529a2416e00a">QextScintilla</a><li>SendScintilla() +: <a class="el" href="classQextScintillaBase.html#35ba57ee3832cf695531cc997b24d821">QextScintillaBase</a><li>setAlternateKey() +: <a class="el" href="classQextScintillaCommand.html#2ceda942ff321060804d2373eecf7ddd">QextScintillaCommand</a><li>setAutoCompletionAPIs() +: <a class="el" href="classQextScintilla.html#36fdcb3b147a92d5bb4b17b11c229137">QextScintilla</a><li>setAutoCompletionCaseSensitivity() +: <a class="el" href="classQextScintilla.html#9454e9ddb11fa6a00eb5ea790182b399">QextScintilla</a><li>setAutoCompletionFillups() +: <a class="el" href="classQextScintilla.html#d1c9c323b852ac98a7713bcfa9575c38">QextScintilla</a><li>setAutoCompletionFillupsEnabled() +: <a class="el" href="classQextScintilla.html#faf2b98416c08a2cb74d0ed9662ffda8">QextScintilla</a><li>setAutoCompletionReplaceWord() +: <a class="el" href="classQextScintilla.html#c3d23d34c0f0640bb22464b86347b0b9">QextScintilla</a><li>setAutoCompletionShowSingle() +: <a class="el" href="classQextScintilla.html#533cdccf3cafb0f71c58aeb9b2624062">QextScintilla</a><li>setAutoCompletionSource() +: <a class="el" href="classQextScintilla.html#4aa5c60bfa3047118edf15ba15a0e431">QextScintilla</a><li>setAutoCompletionStartCharacters() +: <a class="el" href="classQextScintilla.html#dc54314cbcd37186e445c5244d20c3da">QextScintilla</a><li>setAutoCompletionThreshold() +: <a class="el" href="classQextScintilla.html#b8838747494640eaf03262c32f559e4c">QextScintilla</a><li>setAutoIndent() +: <a class="el" href="classQextScintilla.html#12a3363eb37db0a2697bf737e0f750ce">QextScintilla</a><li>setAutoIndentStyle() +: <a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">QextScintillaLexer</a><li>setBackslashEscapes() +: <a class="el" href="classQextScintillaLexerSQL.html#81ee1d8fdc3a43e94d4176189cb8e2b7">QextScintillaLexerSQL</a><li>setBackspaceUnindents() +: <a class="el" href="classQextScintilla.html#b08d343cda48e43490baae62707e97e2">QextScintilla</a><li>setBraceMatching() +: <a class="el" href="classQextScintilla.html#28cda2cba2f6f1317a15f662e157fbbf">QextScintilla</a><li>setCallTipsAPIs() +: <a class="el" href="classQextScintilla.html#3d682f46b23b29e0da9bb0e52560d23e">QextScintilla</a><li>setCallTipsBackgroundColor() +: <a class="el" href="classQextScintilla.html#abd9a8e1e59a15ec3a1217aeb6ee7466">QextScintilla</a><li>setCallTipsForegroundColor() +: <a class="el" href="classQextScintilla.html#727d2a5f880ee4f12dba983ff1dcbee6">QextScintilla</a><li>setCallTipsHighlightColor() +: <a class="el" href="classQextScintilla.html#edede8a8431bca98f760f4e3a999ce50">QextScintilla</a><li>setCallTipsVisible() +: <a class="el" href="classQextScintilla.html#cc8e39f55a32337c3cf949a4cd09201e">QextScintilla</a><li>setCaretForegroundColor() +: <a class="el" href="classQextScintilla.html#6d9ba2d4af256e19049b7ff1b291eb2e">QextScintilla</a><li>setCaretLineBackgroundColor() +: <a class="el" href="classQextScintilla.html#e71f2cf24abfcfe598989e13481bc711">QextScintilla</a><li>setCaretLineVisible() +: <a class="el" href="classQextScintilla.html#dc9f29c940c8c3b8cc57d8cbd89a02ec">QextScintilla</a><li>setCaretWidth() +: <a class="el" href="classQextScintilla.html#8ea3c0a1e23aadb93ae0e6c671a10b09">QextScintilla</a><li>setCaseSensitiveTags() +: <a class="el" href="classQextScintillaLexerHTML.html#00d4c198c14a04b56eb1d029f8985ef1">QextScintillaLexerHTML</a><li>setColor() +: <a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#2dc9e4690becceb27a9a981c23deb8e0">QextScintilla</a><li>setCursorPosition() +: <a class="el" href="classQextScintilla.html#76302c4726ba0c75de2627465c5faddb">QextScintilla</a><li>setDefaultColor() +: <a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">QextScintillaLexer</a><li>setDefaultFont() +: <a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">QextScintillaLexer</a><li>setDefaultPaper() +: <a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">QextScintillaLexer</a><li>setDocument() +: <a class="el" href="classQextScintilla.html#69802b3e4de344601674a231ef2cabd2">QextScintilla</a><li>setEdgeColor() +: <a class="el" href="classQextScintilla.html#2ed5a40c9d6eb4c68895d35b1a828cf3">QextScintilla</a><li>setEdgeColumn() +: <a class="el" href="classQextScintilla.html#a2ca10384773c2a4f67e6f8cc913cb8c">QextScintilla</a><li>setEdgeMode() +: <a class="el" href="classQextScintilla.html#b03b1badfc3f69b10f99a1fb9bb7f647">QextScintilla</a><li>setEolFill() +: <a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">QextScintillaLexer</a><li>setEolMode() +: <a class="el" href="classQextScintilla.html#f372a0b24952de9adf5c06697561ff4f">QextScintilla</a><li>setEolVisibility() +: <a class="el" href="classQextScintilla.html#19bd08e911d00127b02b08b468aa91f9">QextScintilla</a><li>setFoldAtElse() +: <a class="el" href="classQextScintillaLexerCPP.html#f75eff635e4ceec40e092d5640062acf">QextScintillaLexerCPP</a><li>setFoldComments() +: <a class="el" href="classQextScintillaLexerSQL.html#a9136c38110a706d75ec7319ed06c098">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPython.html#221ade4cc1f8042ca178e8658306815d">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#45939e964e3dc80f6a33cec839ae8049">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#8bb2ecf0badf70014a499cc063921b95">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCSS.html#b5125b393e37e0742c9364301738a1c0">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#a8d495fc79547d5a38edcbb3fc9a8a47">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#1e8fbcfc2d9c84c9d5327972c00c89f3">QextScintillaLexerBash</a><li>setFoldCompact() +: <a class="el" href="classQextScintillaLexerSQL.html#a89bc20abcc8245a51da795eb3ab8c3e">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerProperties.html#bc8c42d3facfceaa7c5eaeddf7e4285c">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#020d360ff2cf8ce24e86b4126da6458a">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#4a870962b7e6ba927260600fb022ac9e">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#5f48a7bed25b1481edbb51f3c7614da4">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#148b6caa2ddab54d6c43700e62edf94d">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#f818c14fc087298ae165a85b5f13a9dc">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#ccda9feb64b84763780763d42248db5b">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#66e8c17f35f07a2a98f3b65608e5dd0c">QextScintillaLexerBash</a><li>setFoldDirectives() +: <a class="el" href="classQextScintillaLexerPOV.html#0cfbee2f757d6078faf4171a5310db1e">QextScintillaLexerPOV</a><li>setFolding() +: <a class="el" href="classQextScintilla.html#4c7a389d1492aa92246041545ea0c017">QextScintilla</a><li>setFoldMarginColors() +: <a class="el" href="classQextScintilla.html#255e6f2855091409ee2eb7dfe403ca0a">QextScintilla</a><li>setFoldPreprocessor() +: <a class="el" href="classQextScintillaLexerHTML.html#4accbe3243d38303b0ba6c1d5b1969a6">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCPP.html#83e14ae9d959d987a8d4d5f919ae6091">QextScintillaLexerCPP</a><li>setFoldQuotes() +: <a class="el" href="classQextScintillaLexerPython.html#52f6a99c0fe08a33d492dd715e09c2f0">QextScintillaLexerPython</a><li>setFont() +: <a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#af82bd33f7c35e50ee96547a92cefe13">QextScintilla</a><li>setIndentation() +: <a class="el" href="classQextScintilla.html#cb4de8d10de37d454203fe0fcfcf0aad">QextScintilla</a><li>setIndentationGuides() +: <a class="el" href="classQextScintilla.html#13ff99c97d3928011ec55a54329f7bef">QextScintilla</a><li>setIndentationGuidesBackgroundColor() +: <a class="el" href="classQextScintilla.html#06159cf5a4c8834c05d4ca13ab8e44f6">QextScintilla</a><li>setIndentationGuidesForegroundColor() +: <a class="el" href="classQextScintilla.html#1dc9a7291e60fd738dfa8aedaa9447a5">QextScintilla</a><li>setIndentationsUseTabs() +: <a class="el" href="classQextScintilla.html#46decfe40cf613d5978e50c30231b162">QextScintilla</a><li>setIndentationWarning() +: <a class="el" href="classQextScintillaLexerPython.html#45932671e8c15e7746607f370e74ff49">QextScintillaLexerPython</a><li>setIndentationWidth() +: <a class="el" href="classQextScintilla.html#0670389deb55079381f21764df0e2441">QextScintilla</a><li>setKey() +: <a class="el" href="classQextScintillaCommand.html#5d8f8e66928022855f859f2ef62f98ce">QextScintillaCommand</a><li>setLexer() +: <a class="el" href="classQextScintilla.html#f784daa825798f7e9c16d0a721699fa0">QextScintilla</a><li>setMagnification() +: <a class="el" href="classQextScintillaPrinter.html#7343a1deb132bfc5dfd2c4208eff3d00">QextScintillaPrinter</a><li>setMarginLineNumbers() +: <a class="el" href="classQextScintilla.html#1427cac9893fcc7b952264ff257b32de">QextScintilla</a><li>setMarginMarkerMask() +: <a class="el" href="classQextScintilla.html#6c9e5a77874dfb08b5fb83c650abd414">QextScintilla</a><li>setMarginsBackgroundColor() +: <a class="el" href="classQextScintilla.html#a2a7732db0b17dd08162a7bba8c5af55">QextScintilla</a><li>setMarginSensitivity() +: <a class="el" href="classQextScintilla.html#09e5035f78a603c3e68a22712ac9ae02">QextScintilla</a><li>setMarginsFont() +: <a class="el" href="classQextScintilla.html#b607dd4ea4a5d50ca03878d63d9e99ef">QextScintilla</a><li>setMarginsForegroundColor() +: <a class="el" href="classQextScintilla.html#11d0ceebbc7938c988be6475c0946636">QextScintilla</a><li>setMarginWidth() +: <a class="el" href="classQextScintilla.html#a160ac7908b83f021850d306bd2c7f7f">QextScintilla</a><li>setMarkerBackgroundColor() +: <a class="el" href="classQextScintilla.html#bb5aa0bf13508d14a81e2b0850c524d0">QextScintilla</a><li>setMarkerForegroundColor() +: <a class="el" href="classQextScintilla.html#a0e999a76af9f4a691565081e90ceb24">QextScintilla</a><li>setMatchedBraceBackgroundColor() +: <a class="el" href="classQextScintilla.html#d9f4087923672124c971c1f9ccdacd07">QextScintilla</a><li>setMatchedBraceForegroundColor() +: <a class="el" href="classQextScintilla.html#091dc61d3fca5b38dc789039abdf70bc">QextScintilla</a><li>setModified() +: <a class="el" href="classQextScintilla.html#16ec6f5d6b1020c22f33c164d2fc4a10">QextScintilla</a><li>setPaper() +: <a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#6009167416ef66da0a09fdbc4920b1ba">QextScintilla</a><li>setReadOnly() +: <a class="el" href="classQextScintilla.html#1bb17663785894a85e7fe07ad5768dfb">QextScintilla</a><li>setSelection() +: <a class="el" href="classQextScintilla.html#0abb348ecbb21dcecfa2ba7bb423d50b">QextScintilla</a><li>setSelectionBackgroundColor() +: <a class="el" href="classQextScintilla.html#5720572f4f673b5c877e8a1f35ed76d7">QextScintilla</a><li>setSelectionForegroundColor() +: <a class="el" href="classQextScintilla.html#2236686ea942de0cc50ddbd6d822536f">QextScintilla</a><li>setStylePreprocessor() +: <a class="el" href="classQextScintillaLexerCPP.html#0280643196167caedecbf2adc23034a8">QextScintillaLexerCPP</a><li>setTabIndents() +: <a class="el" href="classQextScintilla.html#221ac401d34a180392e49bacd9b56c4e">QextScintilla</a><li>setTabWidth() +: <a class="el" href="classQextScintilla.html#20b8f9e86b5279f8bf14793beb0254cd">QextScintilla</a><li>setText() +: <a class="el" href="classQextScintilla.html#56ea80d4dad00c736135116e3aa051b6">QextScintilla</a><li>setUnmatchedBraceBackgroundColor() +: <a class="el" href="classQextScintilla.html#da2281d317ab06a6cd17ea80391f645d">QextScintilla</a><li>setUnmatchedBraceForegroundColor() +: <a class="el" href="classQextScintilla.html#6b6f687d01a687a29c3439741006f38f">QextScintilla</a><li>setUtf8() +: <a class="el" href="classQextScintilla.html#4d22589eaa4cf9c37e701c6ec80bc405">QextScintilla</a><li>setWhitespaceVisibility() +: <a class="el" href="classQextScintilla.html#811888818870dd0d9cd74d297f711bc8">QextScintilla</a><li>setWrapMode() +: <a class="el" href="classQextScintillaPrinter.html#f4904d6ba001f4c7145983f9814f00c1">QextScintillaPrinter</a>, <a class="el" href="classQextScintilla.html#945affc0b0f8f25f58138f923d5a270d">QextScintilla</a><li>setWrapVisualFlags() +: <a class="el" href="classQextScintilla.html#11ef30c49b7c6fb96988a94059efa687">QextScintilla</a><li>SGMLBlockDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2937f38f910ec693fc76515c26440b491">QextScintillaLexerHTML</a><li>SGMLCommand +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c239391e27b5f46cd07b44978a9124917a">QextScintillaLexerHTML</a><li>SGMLComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25865e6d33734f87dcb0dec46459683c7">QextScintillaLexerHTML</a><li>SGMLDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c523197bbcd0343f22967228024bf621">QextScintillaLexerHTML</a><li>SGMLDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c239621561af31e2ec6ace5596201f629f">QextScintillaLexerHTML</a><li>SGMLEntity +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20d65c14dcd6d411a14baaac5c3476be2">QextScintillaLexerHTML</a><li>SGMLError +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c238ffbd8e24986d6ea79925f854891eb1">QextScintillaLexerHTML</a><li>SGMLParameter +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c291f270147de0beeb3093de944221de93">QextScintillaLexerHTML</a><li>SGMLParameterComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2916e05b41d19b14c1a5d018b35058638">QextScintillaLexerHTML</a><li>SGMLSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2416616f1d8cc9c4d40e81a19938ddb99">QextScintillaLexerHTML</a><li>SGMLSpecial +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c261be7257f0b33af5eebee59e5daefdff">QextScintillaLexerHTML</a><li>showUserList() +: <a class="el" href="classQextScintilla.html#74a4da1e86eda7f62262cea8a4a9b26a">QextScintilla</a><li>SingleQuotedHereDocument +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdb84f237d13384cb47bcf579f29a77eab">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11ed5c6c7c814c87b3995bc1d0e129cdf6">QextScintillaLexerBash</a><li>SingleQuotedString +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264935022b23b5cbb05e3edfa0c9d49f866a4">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733d453fb290fba122980aa29757cc7839">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7f299751dbcf5d3dc7645fbb54a89cdc3">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd7b9ff96a73c4d75e880eb0977e18a24f">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e4a6cf494de949384a8205d4dc6f320f3">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51f7648858efb30abf136bf9f82a516296">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1177f2cc65d0990de81d205c6672206da0">QextScintillaLexerBash</a><li>sizeHint() +: <a class="el" href="classQextScintillaBase.html#171ce27ddcfabf024cc5539181f253dd">QextScintillaBase</a><li>SloppyBraceMatch +: <a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b0663484a90fdee0162e2e2e267c2da8a">QextScintilla</a><li>SmallRectangle +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee7978b23c827aa996489af72541c670a">QextScintilla</a><li>Spaces +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5dc791abcc679d4267380ead53641ee4e">QextScintillaLexerPython</a><li>Special +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1f46bc40ebff51b439bc0a50c809c9d94">QextScintillaLexerTeX</a><li>standardCommands() +: <a class="el" href="classQextScintilla.html#ea83bb0bc19af4a776b68ee3eda10c61">QextScintilla</a><li>startDrag() +: <a class="el" href="classQextScintillaBase.html#7c1be000329c8f9e328999cbc03ba9a7">QextScintillaBase</a><li>startRecording() +: <a class="el" href="classQextScintillaMacro.html#439f6576433d4633693139192ae9bc98">QextScintillaMacro</a><li>Stderr +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673d5d7c5aa5a2cb67e0129b4a773bc2c0f">QextScintillaLexerRuby</a><li>Stdin +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736756812012bb17abc5529d81cfee6c79">QextScintillaLexerRuby</a><li>Stdout +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736c9309d09076262eca1130db22c26c78">QextScintillaLexerRuby</a><li>StrictBraceMatch +: <a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b630eeb134a1e0a274c9bf70f3c3eaf98">QextScintilla</a><li>String +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc55fdcc94c63c1743f66f96bf6512b7421">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6a7bd9b08519b4fc35df1cae499c6766f">QextScintillaLexerLua</a><li>StringTableMathsFunctions +: <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6cf8fcc5533445fd6d4aea4ffc86a79ce">QextScintillaLexerLua</a><li>stylePreprocessor() +: <a class="el" href="classQextScintillaLexerCPP.html#43bf80480c8d816da5e0c86dcd61cc67">QextScintillaLexerCPP</a><li>Substitution +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdff754f40f75be7c2676bfc9092743c91">QextScintillaLexerPerl</a><li>Symbol +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1d826b7be57d84563faa5281dea57a067">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67365490e92215a20e98a912bb2416abb3a">QextScintillaLexerRuby</a><li>SymbolTable +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd3304777ed864bcb0e356bb6571063922">QextScintillaLexerPerl</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x74.html b/doc/html/functions_0x74.html new file mode 100644 index 0000000..a489bf4 --- /dev/null +++ b/doc/html/functions_0x74.html @@ -0,0 +1,83 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li id="current"><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_t">- t -</a></h3><ul> +<li>tabIndents() +: <a class="el" href="classQextScintilla.html#1deb0e0aff533559500242065e9441a2">QextScintilla</a><li>Tabs +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c530700f362affdc9b64fa5f4d7221e2d6">QextScintillaLexerPython</a><li>TabsAfterSpaces +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5ed745810214ba0a7d63d14cab791df77">QextScintillaLexerPython</a><li>tabWidth() +: <a class="el" href="classQextScintilla.html#9aa14c5d05ea338aecb5214dc4cf99c4">QextScintilla</a><li>Tag +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27c38f4c71e45d034a76f59e5a0dbd165">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e1f02f2a7b12f3e34377e76de8029dfd8">QextScintillaLexerCSS</a><li>Target +: <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305be9e18b8db7aed3607eb3dc1d64efd425">QextScintillaLexerMakefile</a><li>text() +: <a class="el" href="classQextScintilla.html#db77f87ba9bb2518181029e1fba8e51b">QextScintilla</a><li>Text +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1107f5f805d936e4c6ad270382a4b38e1">QextScintillaLexerTeX</a><li>textChanged() +: <a class="el" href="classQextScintilla.html#b4f0af1a6757e30fe5ecdf82b09618c3">QextScintilla</a><li>textHeight() +: <a class="el" href="classQextScintilla.html#d4050cea6a4d23c5ee9be5f952eeb072">QextScintilla</a><li>ThreeDots +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee7a191db8dddab1a3e0531c892d0b27f">QextScintilla</a><li>ThreeRightArrows +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e65222a20a68f9007cf230f71ca2ba718">QextScintilla</a><li>TripleDoubleQuotedString +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a72715b6e12529aabee60481a6aaed222a">QextScintillaLexerPython</a><li>TripleSingleQuotedString +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a716467a665ddd2fc2b810eee360fdb5dd">QextScintillaLexerPython</a><li>TypesModifiersItems +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc516f34a7884166864fd4db97d2a122173">QextScintillaLexerPOV</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x75.html b/doc/html/functions_0x75.html new file mode 100644 index 0000000..bc94eaa --- /dev/null +++ b/doc/html/functions_0x75.html @@ -0,0 +1,77 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li id="current"><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_u">- u -</a></h3><ul> +<li>UnclosedString +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7b5e62e788331f61f9480ec313cac9955">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc599ae23c11691b5c881a431cbe4dc9863">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a639d296e5c1424d043ece54afc3e012bb">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518a0f2ffd95a262823eafa42c8c3e1ca4">QextScintillaLexerCPP</a><li>undo() +: <a class="el" href="classQextScintilla.html#50dd001a80d36e81d4f1616a4b9ead02">QextScintilla</a><li>unindent() +: <a class="el" href="classQextScintilla.html#d4a5197ca9a6957e05047d7af5cfa5fc">QextScintilla</a><li>UnknownAttribute +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25ab139cab5e136502bbb0a6c0116e36c">QextScintillaLexerHTML</a><li>UnknownProperty +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ed603e47cf6a284ceba2843986fb3c815">QextScintillaLexerCSS</a><li>UnknownPseudoClass +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ec941f6ffc69fb441984af322192e2303">QextScintillaLexerCSS</a><li>UnknownTag +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a045871c22ccf98cdd7428cb4df39f42">QextScintillaLexerHTML</a><li>userListActivated() +: <a class="el" href="classQextScintilla.html#1bc718e051677cc538be5c9045abee87">QextScintilla</a><li>UUID +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51b798115a9d9b6a97802ced4410b8eee0">QextScintillaLexerCPP</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x76.html b/doc/html/functions_0x76.html new file mode 100644 index 0000000..7654546 --- /dev/null +++ b/doc/html/functions_0x76.html @@ -0,0 +1,82 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li id="current"><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_v">- v -</a></h3><ul> +<li>validKey() +: <a class="el" href="classQextScintillaCommand.html#d4d553cb5852576f68d55c5952a2c4d9">QextScintillaCommand</a><li>Value +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46eb498123b9895b4418df2a6ea4e37ffba">QextScintillaLexerCSS</a><li>Variable +: <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305be9f9fd591795b5ae83386a804c9aaafc">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e98e3a304c4b0be68caffe787ae4ea7cf4">QextScintillaLexerBatch</a><li>VBScriptComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d67aa012e54ca173ae5534d2c795bc59">QextScintillaLexerHTML</a><li>VBScriptDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c278b49445b8bf0db9334395d0915a2e9d">QextScintillaLexerHTML</a><li>VBScriptIdentifier +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e31f00f5476af6e733fd94d8f198d192">QextScintillaLexerHTML</a><li>VBScriptKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24399fa88755c37504c59ea5c3c076481">QextScintillaLexerHTML</a><li>VBScriptNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28fd8fe44124c54262aea4becf407ecc3">QextScintillaLexerHTML</a><li>VBScriptStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2290d4085bee4829351ce946634280d06">QextScintillaLexerHTML</a><li>VBScriptString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d6ebc6b52a7c4819c9c8c242916d435e">QextScintillaLexerHTML</a><li>VBScriptUnclosedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e0c272a0fef2ee2bd4e63c2babbb4619">QextScintillaLexerHTML</a><li>VerbatimString +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519401e0f2377e0cc0c156386ba730897b">QextScintillaLexerCPP</a><li>VerticalLine +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e03b0246f54901bc552a3177669c891ef">QextScintilla</a><li>viewport() +: <a class="el" href="classQextScintillaBase.html#7c7723d64865b462ecfbf4152d836cae">QextScintillaBase</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x77.html b/doc/html/functions_0x77.html new file mode 100644 index 0000000..7ec4d6a --- /dev/null +++ b/doc/html/functions_0x77.html @@ -0,0 +1,85 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li id="current"><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_w">- w -</a></h3><ul> +<li>WhiteSpace +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7c4b12f8a7c7e4dae3508445700da1bd3">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdc61d78aea09ff8c9c19282f7fc3c344f">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11fb2cbda4e68b7a896b938135655895ed">QextScintillaLexerBash</a><li>WhitespaceVisibility +: <a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e">QextScintilla</a><li>whitespaceVisibility() +: <a class="el" href="classQextScintilla.html#5321010c2f04093c3107cf34b23ebb52">QextScintilla</a><li>WrapCharacter +: <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed30c943c655b94e4b84894e064d2347902">QextScintilla</a><li>WrapFlagByBorder +: <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74105f0883c4c951d09f380ebad17c9518">QextScintilla</a><li>WrapFlagByText +: <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d746c70d596357dcb7913ebf66316a09c3b">QextScintilla</a><li>WrapFlagNone +: <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d7409f39f36c9fcfabe6b2008e14e1284dc">QextScintilla</a><li>wrapMode() +: <a class="el" href="classQextScintillaPrinter.html#8aba0d63efee1fb2d6b5609c9120f970">QextScintillaPrinter</a>, <a class="el" href="classQextScintilla.html#99ec7ecdc8cd8f79aaeeda2b61796b65">QextScintilla</a><li>WrapMode +: <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">QextScintilla</a><li>WrapNone +: <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed35c9a275d8d2ec83e22e8d759307b4f41">QextScintilla</a><li>WrapVisualFlag +: <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74">QextScintilla</a><li>WrapWord +: <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3a7f65cd359e236aee9ab70d7bf55085c">QextScintilla</a><li>writeProperties() +: <a class="el" href="classQextScintillaLexerSQL.html#0824d031dd1ffc6318197e7e545ff84f">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPython.html#c6e164f4a93cdbacd7f3e9ab66ff98dc">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#cc1b8d0916329dab170624db1505b2a6">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#b1077b902db4549ddef0398fb6391489">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#856e7b88f288064e36f2144bf97fdce5">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#92663d1d9f49a0218118d8e48b5c49ad">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#a7ecf8f08c953c661a350d5de2e868fa">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#8c61265f2e059f652de67fac9e0c67fd">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#600506daad28854a957cc20307854202">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#3bee366bd9e502ae386656c7e915ff42">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a><li>writeSettings() +: <a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">QextScintillaLexer</a>, <a class="el" href="classQextScintillaCommandSet.html#3a4981c26ab30164efbf27d15a4828ee">QextScintillaCommandSet</a><li>WsInvisible +: <a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e398be33ca1a9547568fac0a3f4aa4f9b">QextScintilla</a><li>WsVisible +: <a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03ede6353c45c1ff691bd9b623b3b24efda">QextScintilla</a><li>WsVisibleAfterIndent +: <a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03ec266db5b712023c5620b3e2e282f6402">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x78.html b/doc/html/functions_0x78.html new file mode 100644 index 0000000..f21ec8d --- /dev/null +++ b/doc/html/functions_0x78.html @@ -0,0 +1,71 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li id="current"><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_x">- x -</a></h3><ul> +<li>XMLEnd +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c0fcd14e1263affa92cffa239e4ab5b3">QextScintillaLexerHTML</a><li>XMLStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2b9468e4993ec50003f4a84342bf75bf2">QextScintillaLexerHTML</a><li>XMLTagEnd +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25f737ebc3b513d6aa5264243d498be3a">QextScintillaLexerHTML</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x7a.html b/doc/html/functions_0x7a.html new file mode 100644 index 0000000..2a99df9 --- /dev/null +++ b/doc/html/functions_0x7a.html @@ -0,0 +1,71 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li id="current"><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_z">- z -</a></h3><ul> +<li>zoomIn() +: <a class="el" href="classQextScintilla.html#69341ebed602660d09fb47af683ac266">QextScintilla</a><li>zoomOut() +: <a class="el" href="classQextScintilla.html#fa53fc56031df8f657e2e75f95848777">QextScintilla</a><li>zoomTo() +: <a class="el" href="classQextScintilla.html#58bf75fc581f7fc46235a6ad95ef5da5">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_0x7e.html b/doc/html/functions_0x7e.html new file mode 100644 index 0000000..b1a6c22 --- /dev/null +++ b/doc/html/functions_0x7e.html @@ -0,0 +1,93 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions.html#index_a"><span>a</span></a></li> + <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> + <li><a href="functions_0x7a.html#index_z"><span>z</span></a></li> + <li id="current"><a href="functions_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> +Here is a list of all documented class members with links to the class documentation for each member: +<p> +<h3><a class="anchor" name="index_~">- ~ -</a></h3><ul> +<li>~QextScintilla() +: <a class="el" href="classQextScintilla.html#6bec02d815e1e0ca1a0c6a75a5b4e978">QextScintilla</a><li>~QextScintillaAPIs() +: <a class="el" href="classQextScintillaAPIs.html#25c4b5eec176538900c3fb0028e47a80">QextScintillaAPIs</a><li>~QextScintillaBase() +: <a class="el" href="classQextScintillaBase.html#f22e6dadb040870209e511018a4aa0b8">QextScintillaBase</a><li>~QextScintillaLexer() +: <a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">QextScintillaLexer</a><li>~QextScintillaLexerBash() +: <a class="el" href="classQextScintillaLexerBash.html#5ce2dd33fa7529466237bd8b59e9be83">QextScintillaLexerBash</a><li>~QextScintillaLexerBatch() +: <a class="el" href="classQextScintillaLexerBatch.html#07ec0d3cd82cdaec9dd201999a23b498">QextScintillaLexerBatch</a><li>~QextScintillaLexerCPP() +: <a class="el" href="classQextScintillaLexerCPP.html#ff979d7aad2ae33d2e246119d7994492">QextScintillaLexerCPP</a><li>~QextScintillaLexerCSharp() +: <a class="el" href="classQextScintillaLexerCSharp.html#59badf1a786aa2f2cec4206446bea91f">QextScintillaLexerCSharp</a><li>~QextScintillaLexerCSS() +: <a class="el" href="classQextScintillaLexerCSS.html#64da1307d9e09341f055df5b73c07b94">QextScintillaLexerCSS</a><li>~QextScintillaLexerDiff() +: <a class="el" href="classQextScintillaLexerDiff.html#bf28861883962d75839eae6f84056781">QextScintillaLexerDiff</a><li>~QextScintillaLexerHTML() +: <a class="el" href="classQextScintillaLexerHTML.html#786a37770dbf59d33c91e0fcfcd736f9">QextScintillaLexerHTML</a><li>~QextScintillaLexerIDL() +: <a class="el" href="classQextScintillaLexerIDL.html#dede1f597bce7ac4c19d140897a38ce1">QextScintillaLexerIDL</a><li>~QextScintillaLexerJava() +: <a class="el" href="classQextScintillaLexerJava.html#32d0b0f5766293ecc3275ea97638db33">QextScintillaLexerJava</a><li>~QextScintillaLexerJavaScript() +: <a class="el" href="classQextScintillaLexerJavaScript.html#911d027f4a41a3d2f02df1e758d87ee5">QextScintillaLexerJavaScript</a><li>~QextScintillaLexerLua() +: <a class="el" href="classQextScintillaLexerLua.html#58a3c460c4908a7456d1dab47631f9f0">QextScintillaLexerLua</a><li>~QextScintillaLexerMakefile() +: <a class="el" href="classQextScintillaLexerMakefile.html#be9f4464a0d428ea3c9f7cae65b719e8">QextScintillaLexerMakefile</a><li>~QextScintillaLexerPerl() +: <a class="el" href="classQextScintillaLexerPerl.html#8067cc9c836bd237ee0dd8f86c115339">QextScintillaLexerPerl</a><li>~QextScintillaLexerPOV() +: <a class="el" href="classQextScintillaLexerPOV.html#c45bb3f5d070f13d73ab96a8d4d73846">QextScintillaLexerPOV</a><li>~QextScintillaLexerProperties() +: <a class="el" href="classQextScintillaLexerProperties.html#aa826d270e365f358c84a027bee3d167">QextScintillaLexerProperties</a><li>~QextScintillaLexerPython() +: <a class="el" href="classQextScintillaLexerPython.html#fcf6aac74a4f21b160fce08af3c2b3ab">QextScintillaLexerPython</a><li>~QextScintillaLexerRuby() +: <a class="el" href="classQextScintillaLexerRuby.html#95c00cb154c17d293bf2ef05fe2d8cdb">QextScintillaLexerRuby</a><li>~QextScintillaLexerSQL() +: <a class="el" href="classQextScintillaLexerSQL.html#d79a35923e0b87040873aa5b8cc369df">QextScintillaLexerSQL</a><li>~QextScintillaLexerTeX() +: <a class="el" href="classQextScintillaLexerTeX.html#51c29124f25bfacfc3a43e85cf616fc1">QextScintillaLexerTeX</a><li>~QextScintillaMacro() +: <a class="el" href="classQextScintillaMacro.html#d20a0db0b92b233a63f72e43c616ce3b">QextScintillaMacro</a><li>~QextScintillaPrinter() +: <a class="el" href="classQextScintillaPrinter.html#34077d68da930b18eba124ab64555898">QextScintillaPrinter</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_enum.html b/doc/html/functions_enum.html new file mode 100644 index 0000000..7fcaf4b --- /dev/null +++ b/doc/html/functions_enum.html @@ -0,0 +1,46 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerations</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li id="current"><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> + +<p> +<ul> +<li>AutoCompletionSource +: <a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7">QextScintilla</a><li>BraceMatch +: <a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b">QextScintilla</a><li>EdgeMode +: <a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9">QextScintilla</a><li>EolMode +: <a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a">QextScintilla</a><li>FoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf">QextScintilla</a><li>IndentationWarning +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5">QextScintillaLexerPython</a><li>MarkerSymbol +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e">QextScintilla</a><li>WhitespaceVisibility +: <a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e">QextScintilla</a><li>WrapMode +: <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3">QextScintilla</a><li>WrapVisualFlag +: <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval.html b/doc/html/functions_eval.html new file mode 100644 index 0000000..0c1f1bd --- /dev/null +++ b/doc/html/functions_eval.html @@ -0,0 +1,113 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_a">- a -</a></h3><ul> +<li>AcsAll +: <a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7099252dfa0fbb8e26853a79578b33f7e">QextScintilla</a><li>AcsAPIs +: <a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7af0b70461479558da5cf363a7e3b35c2">QextScintilla</a><li>AcsDocument +: <a class="el" href="classQextScintilla.html#e0c7b472315b627de567bd2a69553ff7e8cbc5b781bff6985e4f524668fb3110">QextScintilla</a><li>AiClosing +: <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae917d10ecdceac133845dc43ed53e0fb64">QextScintilla</a><li>AiMaintain +: <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae9c1e2a26467f02b3fc645a10083d04208">QextScintilla</a><li>AiOpening +: <a class="el" href="classQextScintilla.html#659a3300af0a7d7e802b713183c61ae93781e4e24c094255b5cc8c01a6afaf8b">QextScintilla</a><li>Array +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd39c94f645a2984a78e7e72804ef3ebf9">QextScintillaLexerPerl</a><li>ASPAtStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c295a4a600cacaa8c6ec8499ff93519279">QextScintillaLexerHTML</a><li>ASPJavaScriptComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ce8556fea973701a336af05d3f57ed1f">QextScintillaLexerHTML</a><li>ASPJavaScriptCommentDoc +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2911ccb89cfe6ba9b65f87fa539a80eb0">QextScintillaLexerHTML</a><li>ASPJavaScriptCommentLine +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24c07df9122c0a565d97ec9b65fa95916">QextScintillaLexerHTML</a><li>ASPJavaScriptDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e309e71e8b1576d5b2b8cc5cbd0f0b59">QextScintillaLexerHTML</a><li>ASPJavaScriptDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d88647d209108078717e03a468a0df43">QextScintillaLexerHTML</a><li>ASPJavaScriptKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c26830b9b12248cdc571306c6283deb92f">QextScintillaLexerHTML</a><li>ASPJavaScriptNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22bfccf25277cc604d8211d69eee2316e">QextScintillaLexerHTML</a><li>ASPJavaScriptRegex +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2895628d586a191ee3520cd5e6931ae39">QextScintillaLexerHTML</a><li>ASPJavaScriptSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f761a3654fe1159db35fd566394116ac">QextScintillaLexerHTML</a><li>ASPJavaScriptStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dbcccf20de63a466a58f2e60096e0edd">QextScintillaLexerHTML</a><li>ASPJavaScriptSymbol +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27f86a0affd409ab2792a5a9d98d8f3f9">QextScintillaLexerHTML</a><li>ASPJavaScriptUnclosedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ad5232daa17c1f57b4b52a026b9aae86">QextScintillaLexerHTML</a><li>ASPJavaScriptWord +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25c1ed69de3f928d05e8c6bd9c1c6841d">QextScintillaLexerHTML</a><li>ASPPythonClassName +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27b5d6e9b3a6220cb650e775e45741514">QextScintillaLexerHTML</a><li>ASPPythonComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e197ac410d81229856a066f3fc0a99af">QextScintillaLexerHTML</a><li>ASPPythonDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22131da85df2b12e74a64db94a537bade">QextScintillaLexerHTML</a><li>ASPPythonDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2343df69515c58e4dfbc91c0944bc6c49">QextScintillaLexerHTML</a><li>ASPPythonFunctionMethodName +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c23c4baa232fea71ddbb074848da1bd691">QextScintillaLexerHTML</a><li>ASPPythonIdentifier +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a2f242e746a05ccb9bf376798cda278f">QextScintillaLexerHTML</a><li>ASPPythonKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e9077279062e6733bc91a883b18b21af">QextScintillaLexerHTML</a><li>ASPPythonNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c293497a604b0a2b64c657a293a76657af">QextScintillaLexerHTML</a><li>ASPPythonOperator +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c262d4e436a6a5938ec462e1a79892c1bd">QextScintillaLexerHTML</a><li>ASPPythonSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e0511f3b87b06999657e4ac64e21b345">QextScintillaLexerHTML</a><li>ASPPythonStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2277aa11e8cfcbf9882d06e8e7b876687">QextScintillaLexerHTML</a><li>ASPPythonTripleDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2495605e33bb56636a465ab8957b751ea">QextScintillaLexerHTML</a><li>ASPPythonTripleSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2cc3f090fdc393cd57fbcb5f6deee7453">QextScintillaLexerHTML</a><li>ASPStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c0d1f87005564d626ed965187401e211">QextScintillaLexerHTML</a><li>ASPVBScriptComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a273f35dce9bd0ff8dcc73cb546ffcec">QextScintillaLexerHTML</a><li>ASPVBScriptDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25dc242c8677a4cdaa93b47dad636efd7">QextScintillaLexerHTML</a><li>ASPVBScriptIdentifier +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dd624c75614c4c80086f68a9890e75b4">QextScintillaLexerHTML</a><li>ASPVBScriptKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c229f266c76f4246c9e28da795a9d83f15">QextScintillaLexerHTML</a><li>ASPVBScriptNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2cf46250ef4baddb851a36b90a3e0f6a4">QextScintillaLexerHTML</a><li>ASPVBScriptStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2801a3d4aed4be15124cc48400ba7cfc0">QextScintillaLexerHTML</a><li>ASPVBScriptString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24b166ced640d675cd9c8b85ef1000625">QextScintillaLexerHTML</a><li>ASPVBScriptUnclosedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2482fd2a76bff9c432b76c11656c69e46">QextScintillaLexerHTML</a><li>ASPXCComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2040775f4dc3caf61bf8a9f0e62341a9d">QextScintillaLexerHTML</a><li>Assignment +: <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275736a3b70e16d94a60cda8ce4b39104d4">QextScintillaLexerProperties</a><li>AtRule +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e6f253e451e5ad04f41595359014ccfe4">QextScintillaLexerCSS</a><li>Attribute +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2259c57b9aaca1a701ddc466504c8f2e0">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46eec81bfe9fb155cd9273850b265b20dfa">QextScintillaLexerCSS</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x62.html b/doc/html/functions_eval_0x62.html new file mode 100644 index 0000000..e3df794 --- /dev/null +++ b/doc/html/functions_eval_0x62.html @@ -0,0 +1,78 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li id="current"><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_b">- b -</a></h3><ul> +<li>Background +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e679546b0e1f41ec63e751bc1b0c5b358">QextScintilla</a><li>BacktickHereDocument +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd5b4ffdfeee7b9d0bcad8ffe674dcc83e">QextScintillaLexerPerl</a><li>Backticks +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673b00562b7dcf94e55dc5eb0a61d144e9e">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd22d56a1c1a1a10bb1375046cd5dfbc83">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f113df0d6696b34089695443e3fa220b6ba">QextScintillaLexerBash</a><li>BadDirective +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc58fff4177384c4227dc817c81c82eedfb">QextScintillaLexerPOV</a><li>BasicFunctions +: <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e48cbece3fd2db495d995c794b9aeb55">QextScintillaLexerLua</a><li>BottomLeftCorner +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e9d5a57c4bedde7059bea56f5bd4934cd">QextScintilla</a><li>BoxedFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cfcb1f1d2bd51d589287865f44ae4b08c0">QextScintilla</a><li>BoxedMinus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4a4a4d6c4834ded0218f9795e9390f95">QextScintilla</a><li>BoxedMinusConnected +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e6169156f553cbaa54d2b466fe510dea6">QextScintilla</a><li>BoxedPlus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc6de462d1b5a1c3f90a2b7277894b02">QextScintilla</a><li>BoxedPlusConnected +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72eeb3dd9d4a1c11498f1e2474fd6aec576">QextScintilla</a><li>BoxedTreeFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf8a0fab06a1e5e77a9d3a252a412eb0aa">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x63.html b/doc/html/functions_eval_0x63.html new file mode 100644 index 0000000..9e0638f --- /dev/null +++ b/doc/html/functions_eval_0x63.html @@ -0,0 +1,90 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li id="current"><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_c">- c -</a></h3><ul> +<li>CDATA +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22ffa7288835367ab2473a0956d285a2d">QextScintillaLexerHTML</a><li>Character +: <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a64bb9035d2a79de51309e1f8df1c2df05">QextScintillaLexerLua</a><li>Circle +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e452faff3eae9ed78188c1468d85a8c5f">QextScintilla</a><li>CircledFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf58df1387aaf6e4a05104d34c06868cdd">QextScintilla</a><li>CircledMinus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee72e33be4b3f7cb3b70638721900d045">QextScintilla</a><li>CircledMinusConnected +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4a6a3f3368636e350699cc60b3415ca5">QextScintilla</a><li>CircledPlus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e95ccb68fe182c2632314e12c74539924">QextScintilla</a><li>CircledPlusConnected +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee6c19ec3354b9e5449fa32a0905bf829">QextScintilla</a><li>CircledTreeFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cfd9215f00cf188ef6259740768e866506">QextScintilla</a><li>ClassName +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67390cede981bd69fe4072ffb911bf07311">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a74caa951bface86c87bfc89d24cda16c0">QextScintillaLexerPython</a><li>ClassSelector +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ea3d2732711a0dccb1448cab829c25fb0">QextScintillaLexerCSS</a><li>ClassVariable +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733a64a9cadf197f6c8269ecba5d046462">QextScintillaLexerRuby</a><li>Command +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b106091b2476359f3cb77e54efde1ff4e9">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70d0f43a6e272ab88c007c3d5a9f24be56">QextScintillaLexerDiff</a><li>Comment +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649371944274b0cfca050f4aefbf3444298c">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673738b3a19138f2358dd0e840ad1baff41">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a75190716ac3b52dc832b88f81e6b0140d">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275ec0ef177625174b98e0d7984d7fc70fc">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5a289bdb1d1c8e7e573f1144789990a57">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdf9443583d7b7db41d9b394f3d3710eec">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b846000b8e546d01a058ac7c7ea0cec50">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a698cd8797d93b7ed7ec4b8ae0f7bb04d8">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a707a7f529f3699fc72da3f259c2661fb43">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e24551f9f522fc3d8c7d4418c1ac40948">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e513f17d201238a4a849dcf462eecb3be25">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e91330f125537d1c1ca8b345188e2fcea1">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11d0358386a60d453f2543466f53e3df26">QextScintillaLexerBash</a><li>CommentBlock +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a77051edc413807e403d54faf9a6669a41">QextScintillaLexerPython</a><li>CommentDoc +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493396c93bc0d6cdeb43856d875909a801d">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5162e768eb69a2df5d4533de080b165684">QextScintillaLexerCPP</a><li>CommentDocKeyword +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493ab4c3a01d344da55026e112211d2d57b">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e510e4193332a47314117d11c068820d943">QextScintillaLexerCPP</a><li>CommentDocKeywordError +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264937e389e85f65d05fe740f3a3188263f34">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51bc816efbc8ab656d5538791c6686c305">QextScintillaLexerCPP</a><li>CommentLine +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d21d57b380642ebd543020799e63a632">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5e5b3d09b36e9db444a751936565c99c0">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519bcf1c7b1ed33bac64fb74ac287df923">QextScintillaLexerCPP</a><li>CommentLineDoc +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5150a0e3dc1d79c9914da93abc6739ba85">QextScintillaLexerCPP</a><li>CommentLineHash +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493527991ffce3f42a3453245dd6b683d7b">QextScintillaLexerSQL</a><li>CoroutinesIOSystemFacilities +: <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6c8bd9b4dbcd836a98ecea083b95934ed">QextScintillaLexerLua</a><li>CSS1Property +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e65152fb00b7475ab5ba6f1a8a543b838">QextScintillaLexerCSS</a><li>CSS2Property +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ed045bc94f46fc560c4c321920a76a911">QextScintillaLexerCSS</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x64.html b/doc/html/functions_eval_0x64.html new file mode 100644 index 0000000..8f7856f --- /dev/null +++ b/doc/html/functions_eval_0x64.html @@ -0,0 +1,75 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li id="current"><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_d">- d -</a></h3><ul> +<li>DataSection +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67361babe91bc4558e9efc39ba28d60a32f">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd5840b9be5dfeb70ad8402cd4a571a464">QextScintillaLexerPerl</a><li>Decorator +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a769870133a22bd93c3be1d616bf90ae56">QextScintillaLexerPython</a><li>Default +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b137e4297866c11d4c1a540f153ee9e6c0">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264935e1bb31d01d44a495488cf3641c99750">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6730fb311fd6a77464240d965246ad7f6a3">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a752137f0baf4988fcfb4913ab5d41cba3">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275dc12c096ec8121aad3994377922d0b37">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc54891d0fd9b3bd285d7c9fe2e563fb7a6">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd6433ea3da82ed54ed82cb9fa91f431a2">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b720e68d37fcef6406c60ed6052259339">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a66718ab53e8288e80963d595c32e710fc">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20b469bf4e80504d81d59fb913b417494">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a701e099f532bb96181a427e9da5a1704d5">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e4679d6fe6a601a7f243e27282a03bb93">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51c384bf868159a15c4ab026080d34a32f">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9ed475cdb093f6c8c6041afb504f5282d">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11f1449fee136726bc4949bc757e103873">QextScintillaLexerBash</a><li>DefaultValue +: <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275af2af2c3cb1ba1ce6b011e10fbeecc6b">QextScintillaLexerProperties</a><li>DemotedKeyword +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67302c8ffb948274b6c3c66dc21a3d2e2a1">QextScintillaLexerRuby</a><li>Directive +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5f6cb3dd4cbc42838e446302162f71235">QextScintillaLexerPOV</a><li>DoubleQuotedHereDocument +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd6420c6d488856b4840d662a313359935">QextScintillaLexerPerl</a><li>DoubleQuotedString +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493967841c89abb423eb4905acb5a3856e5">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6737e91f3cc802b93df10cc232d27b6cb74">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7b05b852762ce579d69e27012f325508c">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdbe54be6a366b9782db424a3858586b52">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e69018092b57e87a9c575c4a2ed18eb25">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51a660e00c101f515b68b5b0d9da7fba75">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11d50afdc76afea477f36c37a24e05c26f">QextScintillaLexerBash</a><li>DownTriangle +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e424e38d2d52e311348f552158596dc7a">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x65.html b/doc/html/functions_eval_0x65.html new file mode 100644 index 0000000..5fe6872 --- /dev/null +++ b/doc/html/functions_eval_0x65.html @@ -0,0 +1,75 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li id="current"><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_e">- e -</a></h3><ul> +<li>EdgeBackground +: <a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef952b3ab1ab0f1de59c13ed703c9a857c3">QextScintilla</a><li>EdgeLine +: <a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef983b130b7b74ea372fc3d9b5b19bbd5d4">QextScintilla</a><li>EdgeNone +: <a class="el" href="classQextScintilla.html#a0643ae0e2c573079072053151ee1ef9fb431bfc050ea921924574abdf310643">QextScintilla</a><li>Entity +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2b6bd33457cab34c983d9a274bfce1eee">QextScintillaLexerHTML</a><li>EolMac +: <a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a07ec88765cc5f9669aa9ebbf309c54dd">QextScintilla</a><li>EolUnix +: <a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a06657431efe214758a12041f238300b7">QextScintilla</a><li>EolWindows +: <a class="el" href="classQextScintilla.html#58e588a144b0c495a527b4724d13442a757794a61cf9baf2de33bac37066554b">QextScintilla</a><li>Error +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673eeafd3440d633a72cd813f24a01fbfed">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd7b14c8c6df9c053cd42225f2fcc49feb">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b3d4063ddbcfa91c6de4096c12a30103b">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11c0ab77e2eb7e7377c5007968a29c328a">QextScintillaLexerBash</a><li>ExternalCommand +: <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9ebf5d8fb94cea583b143df6de8e3798f">QextScintillaLexerBatch</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x66.html b/doc/html/functions_eval_0x66.html new file mode 100644 index 0000000..13b36ba --- /dev/null +++ b/doc/html/functions_eval_0x66.html @@ -0,0 +1,67 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li id="current"><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_f">- f -</a></h3><ul> +<li>FunctionMethodName +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67314ae86918218bef8c3541acb55b71a53">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7c54c9d3a8f8a5d5364f6b13a43993342">QextScintillaLexerPython</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x67.html b/doc/html/functions_eval_0x67.html new file mode 100644 index 0000000..00bfbb6 --- /dev/null +++ b/doc/html/functions_eval_0x67.html @@ -0,0 +1,69 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li id="current"><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_g">- g -</a></h3><ul> +<li>Global +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673d8c6f983db7bba3eb8d61c68dd77c5e8">QextScintillaLexerRuby</a><li>GlobalClass +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51ef1e331b7a3004691a931e2a0e3f16c2">QextScintillaLexerCPP</a><li>Group +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b154823b2c003b00f33a78b51c04522755">QextScintillaLexerTeX</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x68.html b/doc/html/functions_eval_0x68.html new file mode 100644 index 0000000..e7b589a --- /dev/null +++ b/doc/html/functions_eval_0x68.html @@ -0,0 +1,77 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li id="current"><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_h">- h -</a></h3><ul> +<li>Hash +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd536d090d1561f1cf200efca325fe7533">QextScintillaLexerPerl</a><li>Header +: <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70b176f65f0a0e674524232d7e6aa7bb05">QextScintillaLexerDiff</a><li>HereDocument +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673f89d7131a88eb6a518fe225fc7c51ad9">QextScintillaLexerRuby</a><li>HereDocumentDelimiter +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736cc8ab35f59f4bd95eafce03038cf49d">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd776ec3945c92e6b2d8f40b164c38f91e">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f111dbe93d0bf5b49344b2e48227b7cd225">QextScintillaLexerBash</a><li>HideCommandChar +: <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9d34e98afe7af83eb5a899ddce85af11a">QextScintillaLexerBatch</a><li>HighlightedIdentifier +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7dbea0e0ebb77a8b50f083ac6cee5c562">QextScintillaLexerPython</a><li>HTMLComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c29d72eeb748ac937c132e91aedfea3928">QextScintillaLexerHTML</a><li>HTMLDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ede0f410fa7df585525f4718f77b0171">QextScintillaLexerHTML</a><li>HTMLNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2aa7db8408fdb25be025c0a6baaeb21e8">QextScintillaLexerHTML</a><li>HTMLSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c244fa237af3b280892c5c99b784fccf30">QextScintillaLexerHTML</a><li>HTMLValue +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27b8969f337f194d7055c8acc209f2454">QextScintillaLexerHTML</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x69.html b/doc/html/functions_eval_0x69.html new file mode 100644 index 0000000..44344aa --- /dev/null +++ b/doc/html/functions_eval_0x69.html @@ -0,0 +1,72 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li id="current"><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_i">- i -</a></h3><ul> +<li>Identifier +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264933abc77df4a22d67ef033c88f55c94107">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673aea73bcd3ab39a1b5cca5b05c6741872">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7910c7f760e782fac068e2ea753336c1f">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5e395ebb7d44b0c09e47c99fed41c9357">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd67c8579274f20e20ba3f69c9f7e7240b">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6b0f27236463324dc717da325eee01f9d">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e514609ac66029ec6e4d88dfe92c4b682cb">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1121c5e5b14225645cb596e83d77a6c2bd">QextScintillaLexerBash</a><li>IDSelector +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e8d7c400afb704e2d0fc63f3a8cab28b3">QextScintillaLexerCSS</a><li>Important +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e540329d3fdd141ef03f541e21ff8055a">QextScintillaLexerCSS</a><li>Inconsistent +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5e5e22547afa8af75617a9e6ee052aeef">QextScintillaLexerPython</a><li>InstanceVariable +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673268fa3db8ca5bca860e8b11c74b34cdc">QextScintillaLexerRuby</a><li>Invisible +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc46bd102729e4ddec0f312b31cc18ab">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x6a.html b/doc/html/functions_eval_0x6a.html new file mode 100644 index 0000000..9b3fd9b --- /dev/null +++ b/doc/html/functions_eval_0x6a.html @@ -0,0 +1,79 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li id="current"><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_j">- j -</a></h3><ul> +<li>JavaScriptComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f5092597ef53ed44401445615ae9dccc">QextScintillaLexerHTML</a><li>JavaScriptCommentDoc +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ee34429e7a5de77290b281aea261132e">QextScintillaLexerHTML</a><li>JavaScriptCommentLine +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c276e4ac4cfce2d070fe9b9c77720bb7d8">QextScintillaLexerHTML</a><li>JavaScriptDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c21c87086de4123d974883d95c379d73f7">QextScintillaLexerHTML</a><li>JavaScriptDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c23851458e1219b6fab981232e852bb7b6">QextScintillaLexerHTML</a><li>JavaScriptKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e135a126bd44eaf2d4f1bcdefa4c6777">QextScintillaLexerHTML</a><li>JavaScriptNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a0f9032da8450521d9cb39dae33ff863">QextScintillaLexerHTML</a><li>JavaScriptRegex +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c21e07b5f56f662092e208b75d531aa9db">QextScintillaLexerHTML</a><li>JavaScriptSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2743f482924275fb66551788738a50e6a">QextScintillaLexerHTML</a><li>JavaScriptStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d47958ab88781b81e914b1afab94408b">QextScintillaLexerHTML</a><li>JavaScriptSymbol +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2caba88710e3628af2459c6730ab63760">QextScintillaLexerHTML</a><li>JavaScriptUnclosedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e32dabb6ec5ea89cb6777d167296452e">QextScintillaLexerHTML</a><li>JavaScriptWord +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c237aff59f8f47b22255bad5cbedae5a43">QextScintillaLexerHTML</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x6b.html b/doc/html/functions_eval_0x6b.html new file mode 100644 index 0000000..fe892fe --- /dev/null +++ b/doc/html/functions_eval_0x6b.html @@ -0,0 +1,72 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li id="current"><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_k">- k -</a></h3><ul> +<li>Keyword +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264931384c1a7b8dfe684172e1e560faba1cd">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736fa8d2088612ca0fcaf4c3391aa2bbb1">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7eb7fe0c38b385650aea8b38e33904b86">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdb58ff03dcf16f5987126e4895b1d9d83">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a667b65a2ea707a283ee0a98af97cd4757">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5196b337dc6536fe5094879c7eaf519c0e">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9e12625243e7ad8c79ad6ff80fcd1ff09">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11dc75ff87379fcc515c030287e17ca324">QextScintillaLexerBash</a><li>KeywordSet2 +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518b514e3238a51f6871b34e9b21822bc9">QextScintillaLexerCPP</a><li>KeywordSet5 +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649326008070eb4a3af88e804bee1b296916">QextScintillaLexerSQL</a><li>KeywordSet6 +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264930dd6abb83c3e9269a79a1615397f160d">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5119c97fcdb7a53eb6220fdb4a5cc7fad">QextScintillaLexerPOV</a><li>KeywordSet7 +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493bcd9f0fd493dd5a6938bd5aaacf84da6">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5318bebcb6c9fbe0f92c8c0ccb0845844">QextScintillaLexerPOV</a><li>KeywordSet8 +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d17d526af135746f161b3b1b7ca3f392">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5ef90639ed6765ac0c18452138d504ebc">QextScintillaLexerPOV</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x6c.html b/doc/html/functions_eval_0x6c.html new file mode 100644 index 0000000..507e916 --- /dev/null +++ b/doc/html/functions_eval_0x6c.html @@ -0,0 +1,73 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li id="current"><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_l">- l -</a></h3><ul> +<li>Label +: <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e9716e376de87998ce993aa478d4121cf6">QextScintillaLexerBatch</a><li>LeftSideRoundedSplitter +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e4aae653a78cd0cd197db2987f0eb4150">QextScintilla</a><li>LeftSideSplitter +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e6744df3fdf44463301b645e10c9fcb64">QextScintilla</a><li>LineAdded +: <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70454dc3a3786c357a923d262beedb9eea">QextScintillaLexerDiff</a><li>LineComment +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493e35ebe476c95b3facea207f144908370">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e69c6f51c5d32bd8e9d154d22570dcf9">QextScintillaLexerLua</a><li>LineRemoved +: <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70540a3db397634130284e62d97c381a59">QextScintillaLexerDiff</a><li>LiteralString +: <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6edabe8da9049cc395dd7c301c5dc8383">QextScintillaLexerLua</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x6d.html b/doc/html/functions_eval_0x6d.html new file mode 100644 index 0000000..d5e122d --- /dev/null +++ b/doc/html/functions_eval_0x6d.html @@ -0,0 +1,68 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li id="current"><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_m">- m -</a></h3><ul> +<li>Minus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee9d6088eaf7e66c9446ab6a45d06ee1c">QextScintilla</a><li>ModuleName +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67358a79aa63d9746f770a906dbbe778595">QextScintillaLexerRuby</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x6e.html b/doc/html/functions_eval_0x6e.html new file mode 100644 index 0000000..b5de1d7 --- /dev/null +++ b/doc/html/functions_eval_0x6e.html @@ -0,0 +1,70 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li id="current"><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_n">- n -</a></h3><ul> +<li>NoBraceMatch +: <a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06bb87d61027f50717f9df0526ad9654bfa">QextScintilla</a><li>NoFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cf15bf3a37eb510d9e28cffa522aaa938a">QextScintilla</a><li>NoWarning +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c564a063227a2e0d9de1ffd40929b74ec9">QextScintillaLexerPython</a><li>Number +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493590936951ff6172b944c1b561110e32d">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6738550bc5e3d7ad4ab53ab7155137f09d7">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a71767251a0c204858d26f57088b9311c2">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc54c22348dcd877e740878a37fd84f1b01">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd1a2544dd4892c2321ab64e8064502804">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a68fcd66fee6897b8fa4ddb9381b693323">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519d5058c1e46b268ffc3aa7521effc05c">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1113ad1b444dda14833bd70230d58804d0">QextScintillaLexerBash</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x6f.html b/doc/html/functions_eval_0x6f.html new file mode 100644 index 0000000..498fc39 --- /dev/null +++ b/doc/html/functions_eval_0x6f.html @@ -0,0 +1,69 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li id="current"><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_o">- o -</a></h3><ul> +<li>ObjectsCSGAppearance +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5511e40759daff09aa602416ba2c8bc33">QextScintillaLexerPOV</a><li>Operator +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264939305370cfa11a13ffe1068e979adefb4">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673718d0aefbdbbf8e796f26b9cfab4ef13">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a70732162aee43c32736dab2129562b68e">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc51a685c160f236f6f8fce651b344829bf">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdd7ae22a2919bbedf43fb7489ac98ee08">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b26ae31d04239b0104b20a6f9a0d8a672">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6e1d5da80ef70caafc99e4cadf944c524">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e1d8a0b51d47e279fc4464acee1d3c7f1">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e511af9d62cbdb5bf81216428536529b88b">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e94251aa4bd4773717207d3cc95cf993d4">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11615cb731c7ed97f4d41fa4de38789cd8">QextScintillaLexerBash</a><li>OtherInTag +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c295f3da5022c9073088dd035955547ce2">QextScintillaLexerHTML</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x70.html b/doc/html/functions_eval_0x70.html new file mode 100644 index 0000000..3fb3fd8 --- /dev/null +++ b/doc/html/functions_eval_0x70.html @@ -0,0 +1,109 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li id="current"><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_p">- p -</a></h3><ul> +<li>ParameterExpansion +: <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11cbf60b317d49577f7725602d8c77a22e">QextScintillaLexerBash</a><li>PercentStringq +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673372c0fcb1273b52efbc9e4075a565c63">QextScintillaLexerRuby</a><li>PercentStringQ +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673601952601e0ef339e9613b1170b83489">QextScintillaLexerRuby</a><li>PercentStringr +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736502c78bd71b72444de52a9e8bd7b3b4">QextScintillaLexerRuby</a><li>PercentStringw +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673691db4ca4af38d28327188d6ad0d2183">QextScintillaLexerRuby</a><li>PercentStringx +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733ee5ed8f3935c538afb3b5eff690311f">QextScintillaLexerRuby</a><li>PHPComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c22b4926bc98c45fbdfa129a6b4e501365">QextScintillaLexerHTML</a><li>PHPCommentLine +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27547d69c64295672e8d647c4a7721b3f">QextScintillaLexerHTML</a><li>PHPDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2800893a14c74490f427d82ba07371c42">QextScintillaLexerHTML</a><li>PHPDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2eb4c6e34ecd8b7bfb94795b2c771e22c">QextScintillaLexerHTML</a><li>PHPDoubleQuotedVariable +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bbff0ccc2750d185bda4581ddee5f080">QextScintillaLexerHTML</a><li>PHPKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a30dc61f0df4c2a61c23b85fff0d9027">QextScintillaLexerHTML</a><li>PHPNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e16b23daeab8265574ee4d02a399ca81">QextScintillaLexerHTML</a><li>PHPOperator +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20738846719d16721222fa8ccab27200e">QextScintillaLexerHTML</a><li>PHPSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2f8ae9f462bb9b23d6f3703b727791940">QextScintillaLexerHTML</a><li>PHPStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ef6650661ac486cba66ba144244829bd">QextScintillaLexerHTML</a><li>PHPVariable +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28132b2eb65e40ece81ee7f00dfd09b80">QextScintillaLexerHTML</a><li>PlainFoldStyle +: <a class="el" href="classQextScintilla.html#34af4ea7604b156b69f31b5412db93cff1c523d088ff3118802f265134f7b0c8">QextScintilla</a><li>Plus +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ec8380a8e0e64281cd3e9235d38f4bdf4">QextScintilla</a><li>PlusComment +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493d54c83c61889d05d12b7bf1a7a8c4d3b">QextScintillaLexerSQL</a><li>PlusKeyword +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd42649311cca7900ab1e189e415d55276e6ccd3">QextScintillaLexerSQL</a><li>PlusPrompt +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd426493506be43dc6a850ffb04d71ec1b9c7166">QextScintillaLexerSQL</a><li>POD +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67315842cf1f1126bc9d18c1d7d917d09f9">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd75244ee749dfa58697bab175b0237af1">QextScintillaLexerPerl</a><li>PODVerbatim +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd58509059db3ab2ec889bd295748055de">QextScintillaLexerPerl</a><li>Position +: <a class="el" href="classQextScintillaLexerDiff.html#7ba1bdc799b7a43cadf2cff4364e5a70f07c16d1e763b13988ab6bef5c8c0377">QextScintillaLexerDiff</a><li>PredefinedFunctions +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc504b9dcfd0b91ab60fa567232c077eb7a">QextScintillaLexerPOV</a><li>PredefinedIdentifiers +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc5f0014f82a6ab4e9e7c61a0413329cb5d">QextScintillaLexerPOV</a><li>PreProcessor +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51292bfc802f7e67778e276970a2d1e028">QextScintillaLexerCPP</a><li>Preprocessor +: <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305b09ea5936c88f92b968d58e6497f406dd">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a68b9c95922bfc06feb46347bf07948238">QextScintillaLexerLua</a><li>PseudoClass +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e06a85dfafc228beac3ee921787d24a58">QextScintillaLexerCSS</a><li>PythonClassName +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c209c70bdce614a0a9c068d19720906d9c">QextScintillaLexerHTML</a><li>PythonComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c220cdf4d4655d0353bf772e7d90fab1b9">QextScintillaLexerHTML</a><li>PythonDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27a5dcc2ae7e210375d5e7bf3fdeb0f93">QextScintillaLexerHTML</a><li>PythonDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bf848c6a453aadd1806b2cc09652d77a">QextScintillaLexerHTML</a><li>PythonFunctionMethodName +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c263b8af4e31e87230ac44b81da999faf0">QextScintillaLexerHTML</a><li>PythonIdentifier +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c5dd70a02208f0d6d5f53c06b93acd11">QextScintillaLexerHTML</a><li>PythonKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2397c4fd13726b88bdeb2b038f4942cf9">QextScintillaLexerHTML</a><li>PythonNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c234ec0c4a8ba7e993e49415d5af1baecf">QextScintillaLexerHTML</a><li>PythonOperator +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2dcfc543de7b11f1b1b5357d6e9aacfdd">QextScintillaLexerHTML</a><li>PythonSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2bd9193ec4ab63af58c0c73e0aeaa3ea5">QextScintillaLexerHTML</a><li>PythonStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2ac01be44db7f0a2eba2e036a33307fed">QextScintillaLexerHTML</a><li>PythonTripleDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28bb288f4cb0874ac57764d6a0bd1476c">QextScintillaLexerHTML</a><li>PythonTripleSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2fb0408178c31799bdb5bc86c7417c56c">QextScintillaLexerHTML</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x71.html b/doc/html/functions_eval_0x71.html new file mode 100644 index 0000000..26be482 --- /dev/null +++ b/doc/html/functions_eval_0x71.html @@ -0,0 +1,71 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li id="current"><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_q">- q -</a></h3><ul> +<li>QuotedStringQ +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd933aeab1fe465716d4f97bc97cebce49">QextScintillaLexerPerl</a><li>QuotedStringQQ +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdfb8a8ae159788ef51bbdebd04ca5778a">QextScintillaLexerPerl</a><li>QuotedStringQR +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd0d121c9178499a2fa6130ae99678c2b8">QextScintillaLexerPerl</a><li>QuotedStringQW +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd0f6aedbdee98cb414e8910ab50109223">QextScintillaLexerPerl</a><li>QuotedStringQX +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd545adfb2d84a0f161e560a0023588318">QextScintillaLexerPerl</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x72.html b/doc/html/functions_eval_0x72.html new file mode 100644 index 0000000..608d141 --- /dev/null +++ b/doc/html/functions_eval_0x72.html @@ -0,0 +1,71 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li id="current"><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_r">- r -</a></h3><ul> +<li>Rectangle +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e9f09b445e420d7da2690fa04a3b47aca">QextScintilla</a><li>Regex +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6735340c230a6d8d802547fa0bcb95f9951">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdc8df05443c05fa04021c57ae99e9f087">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5181fc788d2dfc87c687be8f74f53de535">QextScintillaLexerCPP</a><li>RightArrow +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ebc48c1353c0700fbce7934cec712ad46">QextScintilla</a><li>RightTriangle +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e1067d54d6ffc9638173c14eafb94a076">QextScintilla</a><li>RoundedBottomLeftCorner +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ea00fb6bd4558f17771593aae1441c25d">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x73.html b/doc/html/functions_eval_0x73.html new file mode 100644 index 0000000..80213bf --- /dev/null +++ b/doc/html/functions_eval_0x73.html @@ -0,0 +1,250 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li id="current"><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_s">- s -</a></h3><ul> +<li>SC_MARGIN_BACK +: <a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2202759936bafc4284957c4226f3042db">QextScintillaBase</a><li>SC_MARGIN_FORE +: <a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a23d1e3bb214808a93cf72986b0b461027">QextScintillaBase</a><li>SC_MARGIN_NUMBER +: <a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a2ed8932da45c8172b8b9c8fdeca780f62">QextScintillaBase</a><li>SC_MARGIN_SYMBOL +: <a class="el" href="classQextScintillaBase.html#40a5837c85a0ebfd35da641f6bc270a27e7af608c20e4123e0c63a4cc773b363">QextScintillaBase</a><li>SC_MARK_ARROW +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4e3b1de6390cc0af837be4f7d7fe2c874">QextScintillaBase</a><li>SC_MARK_ARROWDOWN +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4edad3abdf6caacb6b2e0aa6b5dcb2225">QextScintillaBase</a><li>SC_MARK_ARROWS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f89256799c23918fda728e89cca33202">QextScintillaBase</a><li>SC_MARK_BACKGROUND +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40299712b9cc948d89b63ccb57cc718b1">QextScintillaBase</a><li>SC_MARK_BOXMINUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4562a720141731259a0b103de4bd97d97">QextScintillaBase</a><li>SC_MARK_BOXMINUSCONNECTED +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4796ee8aec20e6718fb0f64ed6842f788">QextScintillaBase</a><li>SC_MARK_BOXPLUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4b44cd3777c6526b38e43729f55d33d9f">QextScintillaBase</a><li>SC_MARK_BOXPLUSCONNECTED +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a273fcfe1adb61f9209aae02dc0255e">QextScintillaBase</a><li>SC_MARK_CHARACTER +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43b6b66013744d32a407bdfd6d09a5b51">QextScintillaBase</a><li>SC_MARK_CIRCLE +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f434a6ab21669939553df7ea20efee63">QextScintillaBase</a><li>SC_MARK_CIRCLEMINUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4d8679bbada38b23e093aca2d7e181cf6">QextScintillaBase</a><li>SC_MARK_CIRCLEMINUSCONNECTED +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ef80900cadb97b802077c229197a5cb3">QextScintillaBase</a><li>SC_MARK_CIRCLEPLUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7d571a7e7e48ae750c7a862e1bbaac">QextScintillaBase</a><li>SC_MARK_CIRCLEPLUSCONNECTED +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f44be3bd3071b92f21bedeb38080297239">QextScintillaBase</a><li>SC_MARK_DOTDOTDOT +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4bc5087b0b7079ec10079a8346c7f5034">QextScintillaBase</a><li>SC_MARK_EMPTY +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f42df2479d1baf9d5576639f46a1222346">QextScintillaBase</a><li>SC_MARK_FULLRECT +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f427aabfe553646e9ab186017b26577a06">QextScintillaBase</a><li>SC_MARK_LCORNER +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f481d4d67f51f4ca1537ed49073485d9a7">QextScintillaBase</a><li>SC_MARK_LCORNERCURVE +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4ee7ddee38b57a705314bc6739e488bab">QextScintillaBase</a><li>SC_MARK_MINUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f461a1e23b36a33e7dcbe60829fc9bc8cb">QextScintillaBase</a><li>SC_MARK_PIXMAP +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f45f1d4dcf4839e48bcd9a4e3f134ce7c6">QextScintillaBase</a><li>SC_MARK_PLUS +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4607f53e1b9693350dbf5317d22af3f36">QextScintillaBase</a><li>SC_MARK_ROUNDRECT +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498c50cda1aa3ef885dd756384991ee61">QextScintillaBase</a><li>SC_MARK_SHORTARROW +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f498e14aa4f516be7f37574e209c1e663d">QextScintillaBase</a><li>SC_MARK_SMALLRECT +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f40a7488c79a3800a9c8790763ed4adbef">QextScintillaBase</a><li>SC_MARK_TCORNER +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f43f7c7a88f1171999c0a794440ca52421">QextScintillaBase</a><li>SC_MARK_TCORNERCURVE +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4f724482fbd5d843bae330c83639aae34">QextScintillaBase</a><li>SC_MARK_VLINE +: <a class="el" href="classQextScintillaBase.html#b36bd55b33e6bd129af4c01ba58442f4723048b3e712e9165c6909e07d01295b">QextScintillaBase</a><li>Scalar +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd4cc9525151756c87ccd08730dab11fe8">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11988ca4848e463e24a09d42d55d3bc153">QextScintillaLexerBash</a><li>SCI_ADDTEXT +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0da963008bd0cd3ee5fafd3a033ba5570">QextScintillaBase</a><li>SCI_CLEARREGISTEREDIMAGES +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0eb5af129108965033a6ae40eb45f7789">QextScintillaBase</a><li>SCI_EMPTYUNDOBUFFER +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d3351e3d838d0ecd57d7d9873364e219">QextScintillaBase</a><li>SCI_GETANCHOR +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0caa048913dfa4284aac9304e4d5e2d96">QextScintillaBase</a><li>SCI_GETCURRENTPOS +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a1a628b61fa247d312e3f883fdcbc47">QextScintillaBase</a><li>SCI_GETENDSTYLED +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05ff8be672f9810059ab924770ee7a710">QextScintillaBase</a><li>SCI_GETLEXER +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0f2708d28f4c8b3d30bf4bea14b977945">QextScintillaBase</a><li>SCI_GETMARGINMASKN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b07a9d75e0d511355318ab72cc7b7d0876">QextScintillaBase</a><li>SCI_GETMARGINSENSITIVEN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fb5a01691811c1ad15519d7023f83df9">QextScintillaBase</a><li>SCI_GETMARGINTYPEN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03d8d3c7ceee80dd0f5932285ab90e2ce">QextScintillaBase</a><li>SCI_GETMARGINWIDTHN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0d301d4135e034067d2da57890708198e">QextScintillaBase</a><li>SCI_GETMODIFY +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b076256f845570b29f335820a97bd158a5">QextScintillaBase</a><li>SCI_GETREADONLY +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0918f3e57dfd152bfe12469d2d27de9db">QextScintillaBase</a><li>SCI_GETTEXT +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b09d5e442a3812d53ac8067628098fedb0">QextScintillaBase</a><li>SCI_GETTEXTLENGTH +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b034122ac033e32308cf188f718b0107e9">QextScintillaBase</a><li>SCI_GOTOPOS +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b00ac47051be6366994d747fd07b52077a">QextScintillaBase</a><li>SCI_MARKERADD +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b019d49dc1cf9f3f7678cdb291c4d98a49">QextScintillaBase</a><li>SCI_MARKERDEFINE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b053b5ad6db4f59a08f49888d1fe6014c9">QextScintillaBase</a><li>SCI_MARKERDEFINEPIXMAP +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08b2d54230a47a94bfb2ea2fd88cdabc8">QextScintillaBase</a><li>SCI_MARKERDELETE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0b21015787f6b3914e4d638dee15aa2db">QextScintillaBase</a><li>SCI_MARKERDELETEALL +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0daef3f1a3a46547eb9fdd1faa1dcabba">QextScintillaBase</a><li>SCI_MARKERDELETEHANDLE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04d4abb132cd5c624fb863a4e2e18cb48">QextScintillaBase</a><li>SCI_MARKERGET +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b03e011f5a6f9a1933ac95701cbe26e8f1">QextScintillaBase</a><li>SCI_MARKERLINEFROMHANDLE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0c7d428743df3c3270a93ef5458a9c9a4">QextScintillaBase</a><li>SCI_MARKERNEXT +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f423984b7557eb8274ba46962d22021">QextScintillaBase</a><li>SCI_MARKERPREVIOUS +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06f99e3d5fe686e7fc62ea33c7b142bed">QextScintillaBase</a><li>SCI_MARKERSETBACK +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0fc75921a28636146af28a8f21ca5ff82">QextScintillaBase</a><li>SCI_MARKERSETFORE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b06b0344c924e234c5a73466b86225e0af">QextScintillaBase</a><li>SCI_REGISTERIMAGE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b041ef59413dbfaeb8d13cde610dffb659">QextScintillaBase</a><li>SCI_SETANCHOR +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ddf73f24d674a7deda70e54f8418edcc">QextScintillaBase</a><li>SCI_SETCURRENTPOS +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08f8198351235bce8efe1c9fa4b69419e">QextScintillaBase</a><li>SCI_SETLEXER +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0072c4ebd26abad84f3892a5aef4cf215">QextScintillaBase</a><li>SCI_SETLEXERLANGUAGE +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b08512ebbc6a1341e1fb55f70e693fb8d0">QextScintillaBase</a><li>SCI_SETMARGINMASKN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b04bad9debaf35fc86b8899891bce53c38">QextScintillaBase</a><li>SCI_SETMARGINSENSITIVEN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0ac5019b21e5be3cf19fcf999c3da833a">QextScintillaBase</a><li>SCI_SETMARGINTYPEN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05f9b3a4194c3ee4d18f9efb8dcb91bb9">QextScintillaBase</a><li>SCI_SETMARGINWIDTHN +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0681a357f18daa23daa1f6eaaeb0ea06c">QextScintillaBase</a><li>SCI_SETREADONLY +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b059b1bb6d9d65ac410be6b66b2c426f14">QextScintillaBase</a><li>SCI_SETSAVEPOINT +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b0be33d4f870ce79d968106ae73cc431a0">QextScintillaBase</a><li>SCI_SETTEXT +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b004da7b8cb076eacef2372b9bbfe4dc14">QextScintillaBase</a><li>SCI_TEXTWIDTH +: <a class="el" href="classQextScintillaBase.html#ebbb6944d058b48277d6ab33eceab4b05a873177612d3225d21459d889b51a20">QextScintillaBase</a><li>SCLEX_ADA +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8b9733c9dd7b20e68a1226cf9ed81f69">QextScintillaBase</a><li>SCLEX_APDL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc5a6e143f3b3db4c6b2e80fce8d4f8eb">QextScintillaBase</a><li>SCLEX_ASM +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8c7ff8643a97b01c67a4a9271030d1ac">QextScintillaBase</a><li>SCLEX_ASN1 +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da0b7eaa71bb78dd6d6fced870ba90f24">QextScintillaBase</a><li>SCLEX_ASP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded111ca524237de01b990c8aa9380542">QextScintillaBase</a><li>SCLEX_AU3 +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8dc8d6b0189cd4d471264a824cf1c199">QextScintillaBase</a><li>SCLEX_AVE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6edb4f9bc36f41d26f4a42a3410c7433">QextScintillaBase</a><li>SCLEX_BAAN +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3c9e1bf7b958e31d8ab870a95cab0851">QextScintillaBase</a><li>SCLEX_BASH +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f9e5ea4e564ba6f8d1dae8d7ace454d">QextScintillaBase</a><li>SCLEX_BATCH +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4f36017b6593f4740d006563caa5dd1a">QextScintillaBase</a><li>SCLEX_BLITZBASIC +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2696851be5e73938cc53b02903bf30c2">QextScintillaBase</a><li>SCLEX_BULLANT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0925a82889c406669e7293d180555159">QextScintillaBase</a><li>SCLEX_CAML +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d53e5454136a08b61270dfa0e49e471e6">QextScintillaBase</a><li>SCLEX_CLW +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0651b9876e477b32d5a3825d298098ae">QextScintillaBase</a><li>SCLEX_CLWNOCASE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dafaa399612f323eb30aa2ca13bc0e42a">QextScintillaBase</a><li>SCLEX_CONF +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3f3a52fea3e08741ea664dedf5530fa5">QextScintillaBase</a><li>SCLEX_CONTAINER +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df702befd903d9d65fa84af10461828a0">QextScintillaBase</a><li>SCLEX_CPP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d37233777b6512990ad985e41f1470ee0">QextScintillaBase</a><li>SCLEX_CPPNOCASE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddada03b169d0b52daa7c00181f03e897">QextScintillaBase</a><li>SCLEX_CSOUND +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d046e55128e56aeeb7a72f994fb4e015b">QextScintillaBase</a><li>SCLEX_CSS +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc4b56223ccc682279fc18900fe650778">QextScintillaBase</a><li>SCLEX_DIFF +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6842f7058b71411ab80bc1c33a63da63">QextScintillaBase</a><li>SCLEX_EIFFEL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d348f60f0b617eed037b6110e42af0996">QextScintillaBase</a><li>SCLEX_EIFFELKW +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6d8490d0f99f6b329ab5f45c2234adf5">QextScintillaBase</a><li>SCLEX_ERLANG +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da96b775c8fe016a1e7541600f939e201">QextScintillaBase</a><li>SCLEX_ERRORLIST +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62da5ccd91896d4f60a1721f59baca56e13">QextScintillaBase</a><li>SCLEX_ESCRIPT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d07f1b0054d239f968dece3bfb2017e6e">QextScintillaBase</a><li>SCLEX_F77 +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb8b68e427523e7e7ac9bc7f20b4347b">QextScintillaBase</a><li>SCLEX_FLAGSHIP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d38bfecc4bc450106195200bf1724a84b">QextScintillaBase</a><li>SCLEX_FORTH +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8cba676e4b42856ea6187a171dc74995">QextScintillaBase</a><li>SCLEX_FORTRAN +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d78c83128f5d3c8ed6b2d87a3c6f61e3d">QextScintillaBase</a><li>SCLEX_FREEBASIC +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d276307014b9460c95ebe5076afa050f2">QextScintillaBase</a><li>SCLEX_GUI4CLI +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dd9dc2f753f14ca5ef729c2883dee1b0d">QextScintillaBase</a><li>SCLEX_HASKELL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d351fd85d3fd522100386bfd9424e3a62">QextScintillaBase</a><li>SCLEX_HTML +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62df2338400902a61d96c4057caa0c450a2">QextScintillaBase</a><li>SCLEX_INNOSETUP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0efec3f1d46af6f6a7924de1e19a5761">QextScintillaBase</a><li>SCLEX_KIX +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dfb1d483ed2becbbe59887bb89f4014d0">QextScintillaBase</a><li>SCLEX_LATEX +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8817495465d06d51a7f29663db3e307d">QextScintillaBase</a><li>SCLEX_LISP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d332fca6d318ec42f4db4191ad6deb193">QextScintillaBase</a><li>SCLEX_LOT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2c42663d4d0f5e3ea1ea6667d467bf5f">QextScintillaBase</a><li>SCLEX_LOUT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62db03b3fda38342d0470fab2357eac2ab0">QextScintillaBase</a><li>SCLEX_LUA +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dda37fcab324043a52fc2b85399644454">QextScintillaBase</a><li>SCLEX_MAKEFILE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3569ea5aea72d6978fb61b6231c3b4da">QextScintillaBase</a><li>SCLEX_MATLAB +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dbd5db8ab589a9223d2e095dcf3855454">QextScintillaBase</a><li>SCLEX_METAPOST +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8953cce4f69b05e263e1f47c617a70fd">QextScintillaBase</a><li>SCLEX_MMIXAL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc09594aa860e17ddff434ba2883e552e">QextScintillaBase</a><li>SCLEX_MSSQL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d85f6c994156a3adcea37f321f8dd6a3d">QextScintillaBase</a><li>SCLEX_NNCRONTAB +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8bbda96ce9f7e57aa479486a2d4edd94">QextScintillaBase</a><li>SCLEX_NSIS +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ddd268ef9f9d4209dc241f55828257120">QextScintillaBase</a><li>SCLEX_NULL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a51b24b990fe1e8e3680d25e1331dc6">QextScintillaBase</a><li>SCLEX_OCTAVE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d91d63a0032121624fdae20af80851828">QextScintillaBase</a><li>SCLEX_OPAL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62ded042730912f5111558955e09214d298">QextScintillaBase</a><li>SCLEX_PASCAL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6210ca0cdb31e06c18ec14294238a3a4">QextScintillaBase</a><li>SCLEX_PERL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d0bd817c73cd4b9a00a81c04a8585804b">QextScintillaBase</a><li>SCLEX_PHP +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dab90570deb68926f7c76339b9640bc25">QextScintillaBase</a><li>SCLEX_PHPSCRIPT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e89b369bda35c4aebac67f7313a90f2">QextScintillaBase</a><li>SCLEX_POV +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d830f97f74f0966734a36579de53e7f9e">QextScintillaBase</a><li>SCLEX_POWERBASIC +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d055c632267a1a9e088e92893398ac0c2">QextScintillaBase</a><li>SCLEX_PROPERTIES +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d780544fc36639fc09690ad6dbb352f65">QextScintillaBase</a><li>SCLEX_PS +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d338ccc586737eb91dfc4333fea64b1f9">QextScintillaBase</a><li>SCLEX_PUREBASIC +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7764a265dd69743101b3a64e68ae5efa">QextScintillaBase</a><li>SCLEX_PYTHON +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d70827e6b1710d76ca56fce165f726ad2">QextScintillaBase</a><li>SCLEX_REBOL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de5f83876b6fa6a6de26b655e281ffd16">QextScintillaBase</a><li>SCLEX_RUBY +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dc062b29c7caa054f57b5b6aa54385f33">QextScintillaBase</a><li>SCLEX_SCRIPTOL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d013005a7d7306628adbcdaa6bd41d24f">QextScintillaBase</a><li>SCLEX_SMALLTALK +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d3a1de57f409755a648a5755f914ed028">QextScintillaBase</a><li>SCLEX_SPECMAN +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d2a598cbdc1084026ef09a46ac1832c62">QextScintillaBase</a><li>SCLEX_SPICE +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d983672d8cd26e849c76717f754e59a80">QextScintillaBase</a><li>SCLEX_SQL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d31b4c7ddbe672064514c775788f56f80">QextScintillaBase</a><li>SCLEX_TADS3 +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62dcabaa53d59287ebbdc977eeceb9c3e65">QextScintillaBase</a><li>SCLEX_TCL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6e46782e8d9ccda555ec49cfca67e546">QextScintillaBase</a><li>SCLEX_TEX +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d6b8c539414c4f2127c04e5bc2c9da03a">QextScintillaBase</a><li>SCLEX_VB +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d42e3b71bd069a7991e73b16a48d44fb3">QextScintillaBase</a><li>SCLEX_VBSCRIPT +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d4e2037e23a835db605b0620f32511b87">QextScintillaBase</a><li>SCLEX_VERILOG +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8142b07f7de61126fc5e4dd005f09c28">QextScintillaBase</a><li>SCLEX_VHDL +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d7d9f5bcf567a86ad19f28476539f3c76">QextScintillaBase</a><li>SCLEX_XML +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62de4a8bd95f6f567e44a246f46c3d2a7fe">QextScintillaBase</a><li>SCLEX_YAML +: <a class="el" href="classQextScintillaBase.html#6ea255954758cdd35e093fa8208bb62d8a3b27b45e2066a6dd275b613adb0a1d">QextScintillaBase</a><li>SCMOD_ALT +: <a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e3d58fd86cb23274ec15615fe2c42961f">QextScintillaBase</a><li>SCMOD_CTRL +: <a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4ea69a17f5b83112750f8807a1516b8119">QextScintillaBase</a><li>SCMOD_NORM +: <a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4e881b5932870b621432a28e0d7a324695">QextScintillaBase</a><li>SCMOD_SHIFT +: <a class="el" href="classQextScintillaBase.html#bc20c6a555ed33ec7ecae295514e1a4eeb5363cad0f41ea5332418f63a3ad06f">QextScintillaBase</a><li>Script +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20cc15b3e84292be2c40075a38feafd8d">QextScintillaLexerHTML</a><li>Section +: <a class="el" href="classQextScintillaLexerProperties.html#ffbf836ee1c908e09f7b59bbea272275e54e379d346512d24c43222c626e2345">QextScintillaLexerProperties</a><li>SGMLBlockDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2937f38f910ec693fc76515c26440b491">QextScintillaLexerHTML</a><li>SGMLCommand +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c239391e27b5f46cd07b44978a9124917a">QextScintillaLexerHTML</a><li>SGMLComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25865e6d33734f87dcb0dec46459683c7">QextScintillaLexerHTML</a><li>SGMLDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c523197bbcd0343f22967228024bf621">QextScintillaLexerHTML</a><li>SGMLDoubleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c239621561af31e2ec6ace5596201f629f">QextScintillaLexerHTML</a><li>SGMLEntity +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c20d65c14dcd6d411a14baaac5c3476be2">QextScintillaLexerHTML</a><li>SGMLError +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c238ffbd8e24986d6ea79925f854891eb1">QextScintillaLexerHTML</a><li>SGMLParameter +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c291f270147de0beeb3093de944221de93">QextScintillaLexerHTML</a><li>SGMLParameterComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2916e05b41d19b14c1a5d018b35058638">QextScintillaLexerHTML</a><li>SGMLSingleQuotedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2416616f1d8cc9c4d40e81a19938ddb99">QextScintillaLexerHTML</a><li>SGMLSpecial +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c261be7257f0b33af5eebee59e5daefdff">QextScintillaLexerHTML</a><li>SingleQuotedHereDocument +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdb84f237d13384cb47bcf579f29a77eab">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11ed5c6c7c814c87b3995bc1d0e129cdf6">QextScintillaLexerBash</a><li>SingleQuotedString +: <a class="el" href="classQextScintillaLexerSQL.html#31e2976a0e42d9f90cdfe7aafd4264935022b23b5cbb05e3edfa0c9d49f866a4">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6733d453fb290fba122980aa29757cc7839">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7f299751dbcf5d3dc7645fbb54a89cdc3">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd7b9ff96a73c4d75e880eb0977e18a24f">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e4a6cf494de949384a8205d4dc6f320f3">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51f7648858efb30abf136bf9f82a516296">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f1177f2cc65d0990de81d205c6672206da0">QextScintillaLexerBash</a><li>SloppyBraceMatch +: <a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b0663484a90fdee0162e2e2e267c2da8a">QextScintilla</a><li>SmallRectangle +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee7978b23c827aa996489af72541c670a">QextScintilla</a><li>Spaces +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5dc791abcc679d4267380ead53641ee4e">QextScintillaLexerPython</a><li>Special +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1f46bc40ebff51b439bc0a50c809c9d94">QextScintillaLexerTeX</a><li>Stderr +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df673d5d7c5aa5a2cb67e0129b4a773bc2c0f">QextScintillaLexerRuby</a><li>Stdin +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736756812012bb17abc5529d81cfee6c79">QextScintillaLexerRuby</a><li>Stdout +: <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df6736c9309d09076262eca1130db22c26c78">QextScintillaLexerRuby</a><li>StrictBraceMatch +: <a class="el" href="classQextScintilla.html#c9490bc31746441fa4f228f44679b06b630eeb134a1e0a274c9bf70f3c3eaf98">QextScintilla</a><li>String +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc55fdcc94c63c1743f66f96bf6512b7421">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6a7bd9b08519b4fc35df1cae499c6766f">QextScintillaLexerLua</a><li>StringTableMathsFunctions +: <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a6cf8fcc5533445fd6d4aea4ffc86a79ce">QextScintillaLexerLua</a><li>Substitution +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdff754f40f75be7c2676bfc9092743c91">QextScintillaLexerPerl</a><li>Symbol +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1d826b7be57d84563faa5281dea57a067">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerRuby.html#c12d2ddff5d8652b10066ef4ab5df67365490e92215a20e98a912bb2416abb3a">QextScintillaLexerRuby</a><li>SymbolTable +: <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbd3304777ed864bcb0e356bb6571063922">QextScintillaLexerPerl</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x74.html b/doc/html/functions_eval_0x74.html new file mode 100644 index 0000000..e6fe416 --- /dev/null +++ b/doc/html/functions_eval_0x74.html @@ -0,0 +1,76 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li id="current"><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_t">- t -</a></h3><ul> +<li>Tabs +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c530700f362affdc9b64fa5f4d7221e2d6">QextScintillaLexerPython</a><li>TabsAfterSpaces +: <a class="el" href="classQextScintillaLexerPython.html#d4f135ad765fd379f190331dd2f105c5ed745810214ba0a7d63d14cab791df77">QextScintillaLexerPython</a><li>Tag +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c27c38f4c71e45d034a76f59e5a0dbd165">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46e1f02f2a7b12f3e34377e76de8029dfd8">QextScintillaLexerCSS</a><li>Target +: <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305be9e18b8db7aed3607eb3dc1d64efd425">QextScintillaLexerMakefile</a><li>Text +: <a class="el" href="classQextScintillaLexerTeX.html#9b46570bafefb6865d2da439bb17c3b1107f5f805d936e4c6ad270382a4b38e1">QextScintillaLexerTeX</a><li>ThreeDots +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72ee7a191db8dddab1a3e0531c892d0b27f">QextScintilla</a><li>ThreeRightArrows +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e65222a20a68f9007cf230f71ca2ba718">QextScintilla</a><li>TripleDoubleQuotedString +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a72715b6e12529aabee60481a6aaed222a">QextScintillaLexerPython</a><li>TripleSingleQuotedString +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a716467a665ddd2fc2b810eee360fdb5dd">QextScintillaLexerPython</a><li>TypesModifiersItems +: <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc516f34a7884166864fd4db97d2a122173">QextScintillaLexerPOV</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x75.html b/doc/html/functions_eval_0x75.html new file mode 100644 index 0000000..de9de0d --- /dev/null +++ b/doc/html/functions_eval_0x75.html @@ -0,0 +1,72 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li id="current"><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_u">- u -</a></h3><ul> +<li>UnclosedString +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7b5e62e788331f61f9480ec313cac9955">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#e54572a24d718814c963d5451b745dc599ae23c11691b5c881a431cbe4dc9863">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerLua.html#dcc14a2e013a6ce9dd75a4e2740254a639d296e5c1424d043ece54afc3e012bb">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e518a0f2ffd95a262823eafa42c8c3e1ca4">QextScintillaLexerCPP</a><li>UnknownAttribute +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25ab139cab5e136502bbb0a6c0116e36c">QextScintillaLexerHTML</a><li>UnknownProperty +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ed603e47cf6a284ceba2843986fb3c815">QextScintillaLexerCSS</a><li>UnknownPseudoClass +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46ec941f6ffc69fb441984af322192e2303">QextScintillaLexerCSS</a><li>UnknownTag +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2a045871c22ccf98cdd7428cb4df39f42">QextScintillaLexerHTML</a><li>UUID +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e51b798115a9d9b6a97802ced4410b8eee0">QextScintillaLexerCPP</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x76.html b/doc/html/functions_eval_0x76.html new file mode 100644 index 0000000..b74be2b --- /dev/null +++ b/doc/html/functions_eval_0x76.html @@ -0,0 +1,78 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li id="current"><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_v">- v -</a></h3><ul> +<li>Value +: <a class="el" href="classQextScintillaLexerCSS.html#c8ee4747b06e3739126a3ae64f9cb46eb498123b9895b4418df2a6ea4e37ffba">QextScintillaLexerCSS</a><li>Variable +: <a class="el" href="classQextScintillaLexerMakefile.html#152b0cb529e142f85dd840a1ce99305be9f9fd591795b5ae83386a804c9aaafc">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerBatch.html#1c7593d25567abda34c5ae309e5e27e98e3a304c4b0be68caffe787ae4ea7cf4">QextScintillaLexerBatch</a><li>VBScriptComment +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d67aa012e54ca173ae5534d2c795bc59">QextScintillaLexerHTML</a><li>VBScriptDefault +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c278b49445b8bf0db9334395d0915a2e9d">QextScintillaLexerHTML</a><li>VBScriptIdentifier +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e31f00f5476af6e733fd94d8f198d192">QextScintillaLexerHTML</a><li>VBScriptKeyword +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c24399fa88755c37504c59ea5c3c076481">QextScintillaLexerHTML</a><li>VBScriptNumber +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c28fd8fe44124c54262aea4becf407ecc3">QextScintillaLexerHTML</a><li>VBScriptStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2290d4085bee4829351ce946634280d06">QextScintillaLexerHTML</a><li>VBScriptString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2d6ebc6b52a7c4819c9c8c242916d435e">QextScintillaLexerHTML</a><li>VBScriptUnclosedString +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2e0c272a0fef2ee2bd4e63c2babbb4619">QextScintillaLexerHTML</a><li>VerbatimString +: <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e519401e0f2377e0cc0c156386ba730897b">QextScintillaLexerCPP</a><li>VerticalLine +: <a class="el" href="classQextScintilla.html#1cefba8e6020a5b760511f83aa4ca72e03b0246f54901bc552a3177669c891ef">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x77.html b/doc/html/functions_eval_0x77.html new file mode 100644 index 0000000..f88d529 --- /dev/null +++ b/doc/html/functions_eval_0x77.html @@ -0,0 +1,76 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li id="current"><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_w">- w -</a></h3><ul> +<li>WhiteSpace +: <a class="el" href="classQextScintillaLexerPython.html#99004ac9e2112951a73f2dfc7724a5a7c4b12f8a7c7e4dae3508445700da1bd3">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPerl.html#3adbc396a8aceddb3e327505860b1fbdc61d78aea09ff8c9c19282f7fc3c344f">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCPP.html#542bd72841348de065bad4c9d8a39e5138d68bc162c6284fa80c54aac6b4f067">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a161d468183d486788d727114d801f11fb2cbda4e68b7a896b938135655895ed">QextScintillaLexerBash</a><li>WrapCharacter +: <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed30c943c655b94e4b84894e064d2347902">QextScintilla</a><li>WrapFlagByBorder +: <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d74105f0883c4c951d09f380ebad17c9518">QextScintilla</a><li>WrapFlagByText +: <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d746c70d596357dcb7913ebf66316a09c3b">QextScintilla</a><li>WrapFlagNone +: <a class="el" href="classQextScintilla.html#6c9d7053b9535991803885c815b61d7409f39f36c9fcfabe6b2008e14e1284dc">QextScintilla</a><li>WrapNone +: <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed35c9a275d8d2ec83e22e8d759307b4f41">QextScintilla</a><li>WrapWord +: <a class="el" href="classQextScintilla.html#15ead1c6cb74fa8a441f27587ed99ed3a7f65cd359e236aee9ab70d7bf55085c">QextScintilla</a><li>WsInvisible +: <a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03e398be33ca1a9547568fac0a3f4aa4f9b">QextScintilla</a><li>WsVisible +: <a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03ede6353c45c1ff691bd9b623b3b24efda">QextScintilla</a><li>WsVisibleAfterIndent +: <a class="el" href="classQextScintilla.html#2ba13526306398d7afe2b8946ec6a03ec266db5b712023c5620b3e2e282f6402">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_eval_0x78.html b/doc/html/functions_eval_0x78.html new file mode 100644 index 0000000..dd6827d --- /dev/null +++ b/doc/html/functions_eval_0x78.html @@ -0,0 +1,69 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Enumerator</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li id="current"><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_eval.html#index_a"><span>a</span></a></li> + <li><a href="functions_eval_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_eval_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_eval_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_eval_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_eval_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_eval_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_eval_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_eval_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_eval_0x6a.html#index_j"><span>j</span></a></li> + <li><a href="functions_eval_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_eval_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_eval_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_eval_0x6e.html#index_n"><span>n</span></a></li> + <li><a href="functions_eval_0x6f.html#index_o"><span>o</span></a></li> + <li><a href="functions_eval_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_eval_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_eval_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_eval_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_eval_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_eval_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_eval_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_eval_0x77.html#index_w"><span>w</span></a></li> + <li id="current"><a href="functions_eval_0x78.html#index_x"><span>x</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_x">- x -</a></h3><ul> +<li>XMLEnd +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2c0fcd14e1263affa92cffa239e4ab5b3">QextScintillaLexerHTML</a><li>XMLStart +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c2b9468e4993ec50003f4a84342bf75bf2">QextScintillaLexerHTML</a><li>XMLTagEnd +: <a class="el" href="classQextScintillaLexerHTML.html#fa7eeca9e9d6989991ea3dc3386fb8c25f737ebc3b513d6aa5264243d498be3a">QextScintillaLexerHTML</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func.html b/doc/html/functions_func.html new file mode 100644 index 0000000..165faef --- /dev/null +++ b/doc/html/functions_func.html @@ -0,0 +1,78 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li id="current"><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_a">- a -</a></h3><ul> +<li>add() +: <a class="el" href="classQextScintillaAPIs.html#b443486e48c91ae4878a21d30b242d73">QextScintillaAPIs</a><li>alternateKey() +: <a class="el" href="classQextScintillaCommand.html#b42a52b6cc20d45fcce5838fd409f41d">QextScintillaCommand</a><li>append() +: <a class="el" href="classQextScintilla.html#5440db24cf8aeaece95d3ab74ee194a5">QextScintilla</a><li>autoCompleteFromAll() +: <a class="el" href="classQextScintilla.html#311d3dcefa8f5180ababc42bdf38f109">QextScintilla</a><li>autoCompleteFromAPIs() +: <a class="el" href="classQextScintilla.html#a760573163b27895ff6aaac53343338f">QextScintilla</a><li>autoCompleteFromDocument() +: <a class="el" href="classQextScintilla.html#d0e48a5aa94192f985bf6ff207874b82">QextScintilla</a><li>autoCompletionCaseSensitivity() +: <a class="el" href="classQextScintilla.html#5cff73a97337f5976254179a88a47b3a">QextScintilla</a><li>autoCompletionFillupsEnabled() +: <a class="el" href="classQextScintilla.html#e9b647d35f8470e13e42e2e0e683ec6a">QextScintilla</a><li>autoCompletionReplaceWord() +: <a class="el" href="classQextScintilla.html#f0c3f1d2db5029e1c6323fd12962084a">QextScintilla</a><li>autoCompletionShowSingle() +: <a class="el" href="classQextScintilla.html#b70c407c8d3ed1048269fbd2ac439fdc">QextScintilla</a><li>autoCompletionSource() +: <a class="el" href="classQextScintilla.html#9df1501f0ad8c01a9f3bea1867cf8c7b">QextScintilla</a><li>autoCompletionThreshold() +: <a class="el" href="classQextScintilla.html#4dc81e76945748f22f97ce2855b6cffc">QextScintilla</a><li>autoIndent() +: <a class="el" href="classQextScintilla.html#5aafd0d48172014fab301300433f9d79">QextScintilla</a><li>autoIndentStyle() +: <a class="el" href="classQextScintillaLexer.html#3571bc3e7920261544bae8c0103fbea3">QextScintillaLexer</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x62.html b/doc/html/functions_func_0x62.html new file mode 100644 index 0000000..253883d --- /dev/null +++ b/doc/html/functions_func_0x62.html @@ -0,0 +1,68 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li id="current"><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_b">- b -</a></h3><ul> +<li>backslashEscapes() +: <a class="el" href="classQextScintillaLexerSQL.html#11e7e14784d83a1b56e690852cbb0b7d">QextScintillaLexerSQL</a><li>backspaceUnindents() +: <a class="el" href="classQextScintilla.html#a930abcf668124af9c07f2a04a06b16f">QextScintilla</a><li>beginUndoAction() +: <a class="el" href="classQextScintilla.html#992e38601fb13f8d4a49ac58bb4aa5d0">QextScintilla</a><li>braceMatching() +: <a class="el" href="classQextScintilla.html#2cdccb4225833d6645faa0ac7ae0cbe5">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x63.html b/doc/html/functions_func_0x63.html new file mode 100644 index 0000000..fbc6d1c --- /dev/null +++ b/doc/html/functions_func_0x63.html @@ -0,0 +1,80 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li id="current"><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_c">- c -</a></h3><ul> +<li>callTip() +: <a class="el" href="classQextScintilla.html#46feb30184ded7c63d6edfef45c86061">QextScintilla</a><li>callTipsVisible() +: <a class="el" href="classQextScintilla.html#2008b3d1abf1220308ff30a10182f9d7">QextScintilla</a><li>cancelList() +: <a class="el" href="classQextScintilla.html#eb038b88ef1676504b2a6602af1ce6aa">QextScintilla</a><li>caseSensitiveTags() +: <a class="el" href="classQextScintillaLexerHTML.html#97ef69eb463d62607df4934f8b55870f">QextScintillaLexerHTML</a><li>clear() +: <a class="el" href="classQextScintillaMacro.html#e79848bbd1b6c87430e6401e71a9cf1b">QextScintillaMacro</a>, <a class="el" href="classQextScintillaAPIs.html#f316a9a0e9d1bde57916c09fbd362918">QextScintillaAPIs</a>, <a class="el" href="classQextScintilla.html#8b9654c9a68e6454a7e457a266c329da">QextScintilla</a><li>clearAlternateKeys() +: <a class="el" href="classQextScintillaCommandSet.html#497658e87e32bb8d6e9f3859a70e1107">QextScintillaCommandSet</a><li>clearKeys() +: <a class="el" href="classQextScintillaCommandSet.html#473747a515d9b554748aa4c25b371cc2">QextScintillaCommandSet</a><li>clearRegisteredImages() +: <a class="el" href="classQextScintilla.html#cc818b2e94bc849c1a33e68b8e1f220e">QextScintilla</a><li>color() +: <a class="el" href="classQextScintillaLexerTeX.html#814e299720c89aca2180b048faada4f2">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#03c2d78be78783cd6c35c888bc7c9411">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#7df51cdf4533fb0289a2003844b4fa67">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#69e1a28465f6681a3f906c08ee6b05aa">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#29f362422452175f80aba4a0a30e91d8">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#2d7002207c3c1191db99cb7c4f45863e">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#24d7917a2e5a9856f014b7a51bb66a21">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#5b02a2a7e5a80d2d2cc81f2036ca681c">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#d30f09523c335c17b1a862c44beb4593">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#0d6f5ae54113d25194bba830674835fe">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerIDL.html#ba47acd3bb2f4f29921683d6ca0e1463">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerHTML.html#0a0fec93b6bca1afa67a7586b8cd1f83">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerDiff.html#9c75450ec59c6b9754e9946c765531aa">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#09621fd74b9371c31cfaadc8373c0602">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCSharp.html#db0be111bbbcb49ea20f3ec424104551">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#81d2fac7671aaffb7cb0400eed5f4610">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#8b016e35c2e59956a2df1904ffa1e007">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#ce6da18157d745615fe801abed48de96">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#d829bf54912a1909556a517c09857974">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#42f33ad513bb2636e4969ae2beff2463">QextScintilla</a><li>colorChanged() +: <a class="el" href="classQextScintillaLexer.html#96b4b017b291dcf90e42fe231662b261">QextScintillaLexer</a><li>commands() +: <a class="el" href="classQextScintillaCommandSet.html#3d5be67e3bbd4cf614c4baa6f8aacc37">QextScintillaCommandSet</a><li>convertEols() +: <a class="el" href="classQextScintilla.html#01b225376be7ea272eb542e46291d89c">QextScintilla</a><li>copy() +: <a class="el" href="classQextScintilla.html#e2554d0e59cde9e5de14351f26c4f6b6">QextScintilla</a><li>copyAvailable() +: <a class="el" href="classQextScintilla.html#c741c9b8ed144370bad992c49a9f5aa4">QextScintilla</a><li>cursorPositionChanged() +: <a class="el" href="classQextScintilla.html#7750e4896fb860de1c7a0c3ee79cc8bf">QextScintilla</a><li>cut() +: <a class="el" href="classQextScintilla.html#d5d5178610285dda5004ccc5c5c6c306">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x64.html b/doc/html/functions_func_0x64.html new file mode 100644 index 0000000..f4c096e --- /dev/null +++ b/doc/html/functions_func_0x64.html @@ -0,0 +1,69 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li id="current"><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_d">- d -</a></h3><ul> +<li>defaultColor() +: <a class="el" href="classQextScintillaLexer.html#be59d049a8c22b175e0d56d50db238b1">QextScintillaLexer</a><li>defaultFont() +: <a class="el" href="classQextScintillaLexer.html#cb8b3992f2a2315188eaac2219c8f8b3">QextScintillaLexer</a><li>defaultPaper() +: <a class="el" href="classQextScintillaLexer.html#66e4109babde21bee78eaf9e228f5e72">QextScintillaLexer</a><li>description() +: <a class="el" href="classQextScintillaLexerTeX.html#179f7f8ae87d3437f7ec3e536f682cd2">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#033022cf1010cab3db8ad0fc6b4b898e">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#721775e8f6bb6bab9aaa064ff18ed70f">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#eccb543b9847ccd0d4d538384061b901">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#419785e6507ee675e2bc06c1fc455806">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#5fe1811445537d27a7cfdd9d25f7c155">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#2e78a85ab81312eaf8199faec2edffd8">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#4c478d2964f8accc12a4b4c9279e02e6">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#de61e22ccec39eefe727b76f43ed000d">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#01c7701133de7049c74dbdfd8cf2adb6">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerIDL.html#30e36f23bd7d56ec59b0b6352c484eba">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerHTML.html#32833c72adf52ecbf9b479ae792df782">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerDiff.html#4ac748484ccda53f6fa3baee5a3ff52e">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#d766fb0ca5b027f9b5e01922210384ac">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCSharp.html#4709aacad69084b713a086c7039a5042">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#cb720f11c91e4491dc0e44e18bfd0079">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#03dca4c7289305a22a745db4d4c5e76f">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#eaf8d3de39a0e93dfb1aa480b99b0642">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#ddcd7beaeee21a59e4f4f5dee8edf0d8">QextScintillaLexer</a>, <a class="el" href="classQextScintillaCommand.html#76940cf10cf05d99baf3d9b989109777">QextScintillaCommand</a><li>document() +: <a class="el" href="classQextScintilla.html#93e41e7e1474301d1fdf7b469855fa1d">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x65.html b/doc/html/functions_func_0x65.html new file mode 100644 index 0000000..4f79e39 --- /dev/null +++ b/doc/html/functions_func_0x65.html @@ -0,0 +1,76 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li id="current"><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_e">- e -</a></h3><ul> +<li>edgeColor() +: <a class="el" href="classQextScintilla.html#a2f525ae5dd684b0ba3c79b930258155">QextScintilla</a><li>edgeColumn() +: <a class="el" href="classQextScintilla.html#096d84a9a8fa9ca50f758d4ee35c7106">QextScintilla</a><li>edgeMode() +: <a class="el" href="classQextScintilla.html#265ab349dbe1d3801137cd29f9424eea">QextScintilla</a><li>endRecording() +: <a class="el" href="classQextScintillaMacro.html#97005cdb33759ffe2b82a616d82046f5">QextScintillaMacro</a><li>endUndoAction() +: <a class="el" href="classQextScintilla.html#cf85f22ce1ef53cd0851a99282a3cd8b">QextScintilla</a><li>ensureCursorVisible() +: <a class="el" href="classQextScintilla.html#dd5100eebb1241b90da9b77cfca26c8d">QextScintilla</a><li>ensureLineVisible() +: <a class="el" href="classQextScintilla.html#8c5a39688b5ca5995f8060941a8065d4">QextScintilla</a><li>eolFill() +: <a class="el" href="classQextScintillaLexerSQL.html#ee2473ffa75634fb28c893116d9f2c8e">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#b2a03d86d7c2e3c7c11eb778b7c3fe20">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#81954fb1fb4c460fdd679cdf6a8c72ee">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#b673e4f3569b9b5002a7e5fd75c72dae">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#2dc32c72de91eb02b8166dc4ffe1e944">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#6c2179643375e26c86bfbc7258e52408">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#387e4dcdf8e641b71a7549f2e0f68922">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#cfde1f9e0a2ea5ea4581fddb2f889c1c">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#74ad10f97d43c77c24a4fbe5d7ca5d04">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerHTML.html#a3cac0d6cc9e4909d784901d767b6171">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSharp.html#3b11e1f85a47f3caf09a25a0b5db4580">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#5f425be57976a428603b7c14f198ba76">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#d94fd24c1f3d156456d5018e6a202b23">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#f4b2b1343c4501c2e1a40d3b58dab574">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#9e1f5d6b36346910e45c433e22ad05ff">QextScintillaLexer</a><li>eolFillChanged() +: <a class="el" href="classQextScintillaLexer.html#a4dfddbecbb7fc50716f26bd20f810fe">QextScintillaLexer</a><li>eolMode() +: <a class="el" href="classQextScintilla.html#099d5bfe4b4f27ff2b666eeb9bcd4867">QextScintilla</a><li>eolVisibility() +: <a class="el" href="classQextScintilla.html#8e8e0a0c1d7fb0718df7f32cf194eba4">QextScintilla</a><li>eventFilter() +: <a class="el" href="classQextScintillaBase.html#a31a4b262617ad472c95f700de47a84b">QextScintillaBase</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x66.html b/doc/html/functions_func_0x66.html new file mode 100644 index 0000000..68adb56 --- /dev/null +++ b/doc/html/functions_func_0x66.html @@ -0,0 +1,82 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li id="current"><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_f">- f -</a></h3><ul> +<li>findFirst() +: <a class="el" href="classQextScintilla.html#8f350dd53ae60c25c6b63c7c5fbf6e18">QextScintilla</a><li>findNext() +: <a class="el" href="classQextScintilla.html#480033f7629a1ce9558c8b0e0c240898">QextScintilla</a><li>firstVisibleLine() +: <a class="el" href="classQextScintilla.html#820471fe6c696bda646e93c51a151e5f">QextScintilla</a><li>focusInEvent() +: <a class="el" href="classQextScintillaBase.html#85e6877f9aad613a869fe5b7d97f9035">QextScintillaBase</a><li>focusNextPrevChild() +: <a class="el" href="classQextScintillaBase.html#9516bc2125ea51a8de4c21f6af42a4b1">QextScintillaBase</a><li>focusOutEvent() +: <a class="el" href="classQextScintillaBase.html#f87a97050d71a323d47d666fe4a5547b">QextScintillaBase</a><li>foldAll() +: <a class="el" href="classQextScintilla.html#5b289640689062f4fa5479c7212107c0">QextScintilla</a><li>foldAtElse() +: <a class="el" href="classQextScintillaLexerCPP.html#aa8dd334b06cfc33cac7089ac08c837d">QextScintillaLexerCPP</a><li>foldComments() +: <a class="el" href="classQextScintillaLexerSQL.html#6867e10f4aa8a7c8f040595e18d01967">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPython.html#f1f3fbb28bd65e91a9fcec8ec8702633">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#885b4c1be5bccef4460440a69742a4a2">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#72b38f72f70543e2c7779a8a0e304b0a">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCSS.html#750d95e4905869983a7c984bd05b5148">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#d2011da2c61e08f1ac7283a622a1ff47">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#0dbc06722dc9c789a51313b9a659d8b9">QextScintillaLexerBash</a><li>foldCompact() +: <a class="el" href="classQextScintillaLexerSQL.html#ea2c85ffc4af6dfdc70dacb9bb35957b">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerProperties.html#fad51b4b63aac4551f5bc5fe57b400c9">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#4dfeba7992ab3669da67b829f50dd201">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#4b8ea36946e93afca001e185894a4a0f">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#a83fe43c217c885d4665c830af19a9c4">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#25612261f73a392083b9946af07a8e05">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#5dbd7dcf8cd46e76e0a08dd8be2759a3">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#527f330fa7298c564d104b1b27e5dfb5">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#2b8a0d8fc5e2004809e514826ac2c90f">QextScintillaLexerBash</a><li>foldDirectives() +: <a class="el" href="classQextScintillaLexerPOV.html#ea0986f15e1bad99278b37a4822b5ccd">QextScintillaLexerPOV</a><li>folding() +: <a class="el" href="classQextScintilla.html#86418f82fe35ff366f4ef023c470f0a1">QextScintilla</a><li>foldLine() +: <a class="el" href="classQextScintilla.html#f81c922d74d8746d9cbc8d576c440dd4">QextScintilla</a><li>foldPreprocessor() +: <a class="el" href="classQextScintillaLexerHTML.html#23d3e1f8f7b202808cb13fb1b4fe35dd">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCPP.html#02a2553c485bcaa29cb785d56d8c42c1">QextScintillaLexerCPP</a><li>foldQuotes() +: <a class="el" href="classQextScintillaLexerPython.html#ced0e9f9c61fede62d931536f9dbc609">QextScintillaLexerPython</a><li>font() +: <a class="el" href="classQextScintillaLexerSQL.html#f0a430cc19f2da4a5c8a6e7f3d4c104f">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c37edab4a7892f3c671f88051909878b">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#34096513a7e9dbab85a3866a113550cb">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#7070a1985d0a6f3aec0e2e06e39a3eba">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#54e012820a85e36069e6ed490d0fbee5">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#452d3bc05e97e04259be5cd39a8fffe8">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#238697bc15872bc4a9e8ded40334ae54">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#a7779e1dcafb87304b611315bc525b90">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#6e1888622ce0ae61936fc0191a536807">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerHTML.html#63117e2e3f25f9a17fba9c59ac6e6a15">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#24017481b708e8c7f272d772e5a1571f">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCSharp.html#42d3dee10cd3efc54a3c583e26defad8">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#c78b287195efa8b2612bb16fbfba8417">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#d23670696aad82a64c8879aea1532b12">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#734cd74da64ec3489c18e0023c56baf6">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#237079987354f031e8982b60a00b14e0">QextScintillaLexer</a><li>fontChanged() +: <a class="el" href="classQextScintillaLexer.html#529039eee09430949416bf8da7d5065e">QextScintillaLexer</a><li>formatPage() +: <a class="el" href="classQextScintillaPrinter.html#5d6f0f8c13568054efbe9003867f1b09">QextScintillaPrinter</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x67.html b/doc/html/functions_func_0x67.html new file mode 100644 index 0000000..77c7451 --- /dev/null +++ b/doc/html/functions_func_0x67.html @@ -0,0 +1,66 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li id="current"><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_g">- g -</a></h3><ul> +<li>getCursorPosition() +: <a class="el" href="classQextScintilla.html#da3e0b58a20e1c7e4f062cabf40b6d6b">QextScintilla</a><li>getSelection() +: <a class="el" href="classQextScintilla.html#92f76a5a9eb56275d77905738de3f4a1">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x68.html b/doc/html/functions_func_0x68.html new file mode 100644 index 0000000..83449f8 --- /dev/null +++ b/doc/html/functions_func_0x68.html @@ -0,0 +1,65 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li id="current"><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_h">- h -</a></h3><ul> +<li>hasSelectedText() +: <a class="el" href="classQextScintilla.html#3d12bf3c4d1a80b8fea698c591222855">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x69.html b/doc/html/functions_func_0x69.html new file mode 100644 index 0000000..f45b88e --- /dev/null +++ b/doc/html/functions_func_0x69.html @@ -0,0 +1,79 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li id="current"><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_i">- i -</a></h3><ul> +<li>indent() +: <a class="el" href="classQextScintilla.html#0017b86a4fff9d1228b204deda1e9d57">QextScintilla</a><li>indentation() +: <a class="el" href="classQextScintilla.html#a57fae593f33dd9b5d1542c95afd9a01">QextScintilla</a><li>indentationGuides() +: <a class="el" href="classQextScintilla.html#0d63a0fc79c8fae6934f6599d407a3d4">QextScintilla</a><li>indentationsUseTabs() +: <a class="el" href="classQextScintilla.html#53d57d43f67a8dcc9d08369906906a8d">QextScintilla</a><li>indentationWarning() +: <a class="el" href="classQextScintillaLexerPython.html#390ee137bc604c6a2ad14b4dc8b835db">QextScintillaLexerPython</a><li>indentationWidth() +: <a class="el" href="classQextScintilla.html#678d8e15ff532854af87f2ff0575327c">QextScintilla</a><li>insert() +: <a class="el" href="classQextScintilla.html#bd158556a8565eb1bf92f2dd8fa9b66f">QextScintilla</a><li>insertAt() +: <a class="el" href="classQextScintilla.html#45ea4ddcb8a8f0f0c106582d4246e4fb">QextScintilla</a><li>isCallTipActive() +: <a class="el" href="classQextScintilla.html#3a4a72bd99de522e74858217b3eafa31">QextScintilla</a><li>isListActive() +: <a class="el" href="classQextScintilla.html#1b8012fdc00f81007ab979e3a59efba5">QextScintilla</a><li>isModified() +: <a class="el" href="classQextScintilla.html#2ddb6b2ade644a6b2d13b215828b2f4e">QextScintilla</a><li>isReadOnly() +: <a class="el" href="classQextScintilla.html#bf7834644311e59ee424ef57b99771d8">QextScintilla</a><li>isRedoAvailable() +: <a class="el" href="classQextScintilla.html#e36287a0a472ab110c661c80d78aef3f">QextScintilla</a><li>isUndoAvailable() +: <a class="el" href="classQextScintilla.html#df3fac9f4711417ff6c25f34615f67c8">QextScintilla</a><li>isUtf8() +: <a class="el" href="classQextScintilla.html#695d9741eafdf28eb8c26448e2455cca">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x6b.html b/doc/html/functions_func_0x6b.html new file mode 100644 index 0000000..268b943 --- /dev/null +++ b/doc/html/functions_func_0x6b.html @@ -0,0 +1,67 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li id="current"><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_k">- k -</a></h3><ul> +<li>key() +: <a class="el" href="classQextScintillaCommand.html#8adefa65b3b42a0e41fd2e440ccd277d">QextScintillaCommand</a><li>keyPressEvent() +: <a class="el" href="classQextScintillaBase.html#f2973f7bf587f7e71902a1b7909a7c60">QextScintillaBase</a><li>keywords() +: <a class="el" href="classQextScintillaLexerTeX.html#7fd4e6ac4ff5d9ec92b12db7483000c1">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#c3bf685a2f608817ef23d48293610559">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c2c4e52585720219299637c287d672ac">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#599619deb214402b873cc884d1688484">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#80610e8114339c29e83bcb09a72f850b">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#0980393fc763fe06510f0ed38f67defc">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#0f3e22697e17b377405a17a18115d60c">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#9bb399d8f06d5b915c81a402e6d35ee5">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerJava.html#8021e35de49b51d150150996492b3472">QextScintillaLexerJava</a>, <a class="el" href="classQextScintillaLexerIDL.html#5a14b1eff857fa464ebabb186af63804">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerHTML.html#a640562b320733e430174445b11107c6">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#692a86b42d52180ffb1430d96902dac8">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCSharp.html#f21fc95103fa7ddcd3fc00e9ca24b4f2">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#2e15e8d6831c86fbe16841bac3714a17">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#7b364c4a62ec33d88bf148e2a28212ef">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#8d1ba00bbdbf44ef5d90581988585d94">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#00cc06fe8bce85318fd08890f5f614e4">QextScintillaLexer</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x6c.html b/doc/html/functions_func_0x6c.html new file mode 100644 index 0000000..5a4d519 --- /dev/null +++ b/doc/html/functions_func_0x6c.html @@ -0,0 +1,71 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li id="current"><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_l">- l -</a></h3><ul> +<li>language() +: <a class="el" href="classQextScintillaLexerTeX.html#1f77892e32f3efe0adac5fa64fd3a6b6">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#0fe5b3ab8b64c7628ba1c4282363cce2">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#c99bae5713f65a19f5ea79e2c7af37b7">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#9b79dc4e52cc372ce666d9e4ff84a56c">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#436334f1bed5891cfbf3f9efd45e1298">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#853186789364ca310f1474f699082dfa">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#b5da3350644b9b8fa2afd7808253983c">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#c83c70da46c2b7a1c01e2856eb29b92e">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#f2708e7a2aab690da33cd71770db2c93">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#3cfc5a543947879f3525e5abae1abdb7">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerJava.html#c3e2fec409d4eab37271892668064fd1">QextScintillaLexerJava</a>, <a class="el" href="classQextScintillaLexerIDL.html#e3f195e87f6459cbaa2772736c588e4f">QextScintillaLexerIDL</a>, <a class="el" href="classQextScintillaLexerHTML.html#42e4b633a0884532b1964af951a28694">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerDiff.html#4715beb7d4383a55b02273a28c721753">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#6cb3e5679fd928c05b8fab7e9ad84c64">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCSharp.html#2297bcad4064ab481ef869772e518419">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#4cb81dcd6838b1aad041da166186d349">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#ce8f2eca661457993c6b334c297dd1e9">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#673d80339a5bcba31c1afb5ff63620c0">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#59c17e312dff4a9aa90b5e4c2a382218">QextScintillaLexer</a><li>length() +: <a class="el" href="classQextScintilla.html#d2c5da20d2f22f0c592330c618f6c7bd">QextScintilla</a><li>lexer() +: <a class="el" href="classQextScintillaLexerTeX.html#38a71b9864c9de3e422d696d49b7e4f0">QextScintillaLexerTeX</a>, <a class="el" href="classQextScintillaLexerSQL.html#f11bb7390af4b47ce159a829f82264d0">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#90f0d39fa849f263d841b34e10b93f30">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#a8718ec3b6ba82dd0d0477508f18c1cb">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#de484f827e973c4a10ed8ffee30ee6a0">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#9b63a0fb4253efe915c8ead6d8546d64">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#47221e83c089cb23a17f7ad0c1cbf2a9">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#3200a99b7847698fd0026462c4072f63">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#578426b4bb8a4c2b16129a1c60b3911c">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#263c14b01148462aac8d5fd38d63f952">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerDiff.html#19bdc2bd977ea621073ea5cac4c51d5a">QextScintillaLexerDiff</a>, <a class="el" href="classQextScintillaLexerCSS.html#0f28f522d2b53c7025ab3d227fd1c1ab">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#e11593183bc1457d47b25c41d97ffdc0">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#ad3275fdafc700e7e14cd9d8beb6c589">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#138d5db7d889a1065d14cabf45be423c">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#9d63d331f148e68e5cd1dd6b9c3ad7d3">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#9221fa7b6665d7ad5490c7db02b1e59b">QextScintilla</a><li>lineAt() +: <a class="el" href="classQextScintilla.html#432c50978f56ae8722a42751dd350bdd">QextScintilla</a><li>lineLength() +: <a class="el" href="classQextScintilla.html#c8823b1c95b8b213d16bb8c801b02842">QextScintilla</a><li>lines() +: <a class="el" href="classQextScintilla.html#8e8c34edc623256f29061a9cd69d9195">QextScintilla</a><li>load() +: <a class="el" href="classQextScintillaMacro.html#22ba5818bbcc5562c5fd5a5332e8238f">QextScintillaMacro</a>, <a class="el" href="classQextScintillaAPIs.html#5d424a6c31b3f91739977a99103c3415">QextScintillaAPIs</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x6d.html b/doc/html/functions_func_0x6d.html new file mode 100644 index 0000000..71ed9ed --- /dev/null +++ b/doc/html/functions_func_0x6d.html @@ -0,0 +1,82 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li id="current"><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_m">- m -</a></h3><ul> +<li>magnification() +: <a class="el" href="classQextScintillaPrinter.html#a990192f1b73683409f23b0bb1ba3e94">QextScintillaPrinter</a><li>marginClicked() +: <a class="el" href="classQextScintilla.html#e066273695466c6e19cd4e8cd2414e17">QextScintilla</a><li>marginLineNumbers() +: <a class="el" href="classQextScintilla.html#43f2c96091e57ac4818a16ecdf275a6a">QextScintilla</a><li>marginMarkerMask() +: <a class="el" href="classQextScintilla.html#81a2053eef4e0e085a2b8ef2e675466a">QextScintilla</a><li>marginSensitivity() +: <a class="el" href="classQextScintilla.html#9206b50c414a0d42f705acec533e608f">QextScintilla</a><li>marginWidth() +: <a class="el" href="classQextScintilla.html#67b8e6edfca91d945a015c85d4dcf391">QextScintilla</a><li>markerAdd() +: <a class="el" href="classQextScintilla.html#210ded3888b4ec5f6a02078f7baab78a">QextScintilla</a><li>markerDefine() +: <a class="el" href="classQextScintilla.html#8959a19ddf5a574dd9ad8b7ed5461820">QextScintilla</a><li>markerDelete() +: <a class="el" href="classQextScintilla.html#403508173e2292c7d39dc4728420caf0">QextScintilla</a><li>markerDeleteAll() +: <a class="el" href="classQextScintilla.html#ae1c8607b83a83f416832227da5740a5">QextScintilla</a><li>markerDeleteHandle() +: <a class="el" href="classQextScintilla.html#0983b52c2d4454b6a531e07138791d30">QextScintilla</a><li>markerFindNext() +: <a class="el" href="classQextScintilla.html#85a6c94aa396c28e548a151be4465ed4">QextScintilla</a><li>markerFindPrevious() +: <a class="el" href="classQextScintilla.html#d5fd073acbc05e75d957feb9004316f6">QextScintilla</a><li>markerLine() +: <a class="el" href="classQextScintilla.html#e143cb71aa915e9934618282184a9aba">QextScintilla</a><li>markersAtLine() +: <a class="el" href="classQextScintilla.html#b334127d4033b5336d8aa52e0efa581a">QextScintilla</a><li>modificationAttempted() +: <a class="el" href="classQextScintilla.html#361adb6dbed444724c2b503d1329cc8b">QextScintilla</a><li>modificationChanged() +: <a class="el" href="classQextScintilla.html#429e0a1e9c1cd7bc49b8d6939743e26d">QextScintilla</a><li>moveToMatchingBrace() +: <a class="el" href="classQextScintilla.html#17f49beed46f36d2e80aa28ed40302cf">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x70.html b/doc/html/functions_func_0x70.html new file mode 100644 index 0000000..1c05313 --- /dev/null +++ b/doc/html/functions_func_0x70.html @@ -0,0 +1,71 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li id="current"><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_p">- p -</a></h3><ul> +<li>paper() +: <a class="el" href="classQextScintillaLexerSQL.html#f48f2bfeccf7ffd7a9e72ad04a7b0882">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerRuby.html#3a175244ac607efd0aac7c2a277d2cd2">QextScintillaLexerRuby</a>, <a class="el" href="classQextScintillaLexerPython.html#8f4a2c5f009e7f8f05fe64612922d5ae">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#3d6a97fbd72128254ce96c4f98e8f121">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#16ad1f50b59c21d283fe3ca53df19876">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#8ca422a6d7f5dac8504807b471ca87da">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerMakefile.html#79ab0f476fe0822d2d4979ea7d882165">QextScintillaLexerMakefile</a>, <a class="el" href="classQextScintillaLexerLua.html#069160759fbd9f9942f15447580d53e1">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerJavaScript.html#edd2a656bf04564ec7494140d2800698">QextScintillaLexerJavaScript</a>, <a class="el" href="classQextScintillaLexerHTML.html#61db306c01232b11e66f70fd8dfd140d">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSharp.html#b92dae3e9d5fe9988c5e9f8439ad17a0">QextScintillaLexerCSharp</a>, <a class="el" href="classQextScintillaLexerCPP.html#8cadeffdccdae0c0a3e26f6c8f33f3ee">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBatch.html#f383c2bfa30a7f5b7d3982949f910326">QextScintillaLexerBatch</a>, <a class="el" href="classQextScintillaLexerBash.html#162a91355351b5c66acad2da76dffa17">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#791c5d4bcab79828d394975344fae6db">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#f6e3058d707eabd9f99d1fa93a91ea30">QextScintilla</a><li>paperChanged() +: <a class="el" href="classQextScintillaLexer.html#234edeaf7387dfa3afd81f6e459cbb17">QextScintillaLexer</a><li>paste() +: <a class="el" href="classQextScintilla.html#b06dcc3f9252043a915595e3398711e4">QextScintilla</a><li>play() +: <a class="el" href="classQextScintillaMacro.html#23408394a213fa7fcd5b7cab2a060c27">QextScintillaMacro</a><li>pool() +: <a class="el" href="classQextScintillaBase.html#e9a2e982760ae835cdecfcfe6b92c416">QextScintillaBase</a><li>printRange() +: <a class="el" href="classQextScintillaPrinter.html#31d261de4a31e82646f4f75d1a6085f6">QextScintillaPrinter</a><li>propertyChanged() +: <a class="el" href="classQextScintillaLexer.html#f320f847889bb054befdb43d0739b5cf">QextScintillaLexer</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x71.html b/doc/html/functions_func_0x71.html new file mode 100644 index 0000000..c63f5bb --- /dev/null +++ b/doc/html/functions_func_0x71.html @@ -0,0 +1,91 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li id="current"><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_q">- q -</a></h3><ul> +<li>QextScintilla() +: <a class="el" href="classQextScintilla.html#82bdfb8912254d875b2561ee06e3dac5">QextScintilla</a><li>QextScintillaAPIs() +: <a class="el" href="classQextScintillaAPIs.html#37e89c8f886f627bfffe8c7497c687b4">QextScintillaAPIs</a><li>QextScintillaBase() +: <a class="el" href="classQextScintillaBase.html#e54a418ee8c182e1ddfa404b59a34149">QextScintillaBase</a><li>QextScintillaDocument() +: <a class="el" href="classQextScintillaDocument.html#b3fa870cc66064a6fbb8947cda063574">QextScintillaDocument</a><li>QextScintillaLexer() +: <a class="el" href="classQextScintillaLexer.html#635c431e2c58e1864e495b2e5f69bd5e">QextScintillaLexer</a><li>QextScintillaLexerBash() +: <a class="el" href="classQextScintillaLexerBash.html#3d73bdd3cf21d2d2b365e8c184fe743b">QextScintillaLexerBash</a><li>QextScintillaLexerBatch() +: <a class="el" href="classQextScintillaLexerBatch.html#a2ebe656b90ee7f42f681be2b3f4e39a">QextScintillaLexerBatch</a><li>QextScintillaLexerCPP() +: <a class="el" href="classQextScintillaLexerCPP.html#d019d2bee70433f21b5d2a385cc78561">QextScintillaLexerCPP</a><li>QextScintillaLexerCSharp() +: <a class="el" href="classQextScintillaLexerCSharp.html#bc7e413d90c75a50b801060bd4dc82a4">QextScintillaLexerCSharp</a><li>QextScintillaLexerCSS() +: <a class="el" href="classQextScintillaLexerCSS.html#158086fb9f29682c3f0db383b87c535b">QextScintillaLexerCSS</a><li>QextScintillaLexerDiff() +: <a class="el" href="classQextScintillaLexerDiff.html#6f3d75165a8b7041502a84ee2226d828">QextScintillaLexerDiff</a><li>QextScintillaLexerHTML() +: <a class="el" href="classQextScintillaLexerHTML.html#60b3d0b173242c1c86167861d3f994d3">QextScintillaLexerHTML</a><li>QextScintillaLexerIDL() +: <a class="el" href="classQextScintillaLexerIDL.html#0ae4e3ba2aa88b01141ca9a325c03c1b">QextScintillaLexerIDL</a><li>QextScintillaLexerJava() +: <a class="el" href="classQextScintillaLexerJava.html#64986f30edfe91a663809f184a423111">QextScintillaLexerJava</a><li>QextScintillaLexerJavaScript() +: <a class="el" href="classQextScintillaLexerJavaScript.html#b399d27be19d5fc6ac6bf5b3c555b079">QextScintillaLexerJavaScript</a><li>QextScintillaLexerLua() +: <a class="el" href="classQextScintillaLexerLua.html#43fbffe049e40e7d9116debe7f5a0e01">QextScintillaLexerLua</a><li>QextScintillaLexerMakefile() +: <a class="el" href="classQextScintillaLexerMakefile.html#7817578c09777eec21970da119eea11c">QextScintillaLexerMakefile</a><li>QextScintillaLexerPerl() +: <a class="el" href="classQextScintillaLexerPerl.html#f464c55ef527cfee1a4d99b9d79680a7">QextScintillaLexerPerl</a><li>QextScintillaLexerPOV() +: <a class="el" href="classQextScintillaLexerPOV.html#d8b6b9c830172af6cfcd9272a2d38c07">QextScintillaLexerPOV</a><li>QextScintillaLexerProperties() +: <a class="el" href="classQextScintillaLexerProperties.html#be0f77d8beaf8dabe3d99db45f056d7b">QextScintillaLexerProperties</a><li>QextScintillaLexerPython() +: <a class="el" href="classQextScintillaLexerPython.html#d00e08d9b76c7b85063b3a5f72dbd1f6">QextScintillaLexerPython</a><li>QextScintillaLexerRuby() +: <a class="el" href="classQextScintillaLexerRuby.html#f84a7b041a40eec05036417a7333a604">QextScintillaLexerRuby</a><li>QextScintillaLexerSQL() +: <a class="el" href="classQextScintillaLexerSQL.html#87ef4b587bfc5e453a898112d8b22f2d">QextScintillaLexerSQL</a><li>QextScintillaLexerTeX() +: <a class="el" href="classQextScintillaLexerTeX.html#ded3543e0a0fc392bb8adbcd8660914e">QextScintillaLexerTeX</a><li>QextScintillaMacro() +: <a class="el" href="classQextScintillaMacro.html#f7a13a836fe98c2cdef8c0e767436b74">QextScintillaMacro</a><li>QextScintillaPrinter() +: <a class="el" href="classQextScintillaPrinter.html#d304f2d535a10595acc613521f92dc49">QextScintillaPrinter</a><li>QSCN_SELCHANGED() +: <a class="el" href="classQextScintillaBase.html#98a9d6ccb14bf28e9bf75dc069577b9b">QextScintillaBase</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x72.html b/doc/html/functions_func_0x72.html new file mode 100644 index 0000000..ac17933 --- /dev/null +++ b/doc/html/functions_func_0x72.html @@ -0,0 +1,75 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li id="current"><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_r">- r -</a></h3><ul> +<li>readProperties() +: <a class="el" href="classQextScintillaLexerSQL.html#376c567479019727c755b71274f7710c">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPython.html#496893b8f75a204f1099b42fa06ea0da">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#eaa2f7a219cd9c2ca923b2595b268c35">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#74be8267ef68b998d7cabe8466153c24">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#a2e0f7cdb50bb439f348e57e3d6f8c76">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#5dc890e770301ab5ecca0f37294c69e8">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#c00904b135b7098ac120344e01d6a706">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#2618234cfaaa7bc4d24db9df5e423417">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#58af6f75117c384d0204ac0f65e94c1d">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#09a5f818c0d69023ea459fd59c308b9f">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#5c0c72a54932c47687584e2cde90574a">QextScintillaLexer</a><li>readSettings() +: <a class="el" href="classQextScintillaLexer.html#3dc542b9bcbbdb7a0cbb303214ae7f51">QextScintillaLexer</a>, <a class="el" href="classQextScintillaCommandSet.html#a6e09aabf6126617ecec01c35fb32e53">QextScintillaCommandSet</a><li>recolor() +: <a class="el" href="classQextScintilla.html#7134334cfb405096fc37a0f53942739d">QextScintilla</a><li>redo() +: <a class="el" href="classQextScintilla.html#6cb5d1ef84197df4ebc410de61775e98">QextScintilla</a><li>refreshProperties() +: <a class="el" href="classQextScintillaLexerSQL.html#786e5f3e0b56a8b6a5b0ef6ce5256a36">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPython.html#4e62dbca0f2fecd3a8c28671d3008f4d">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#abf5e5dfb111502bd3b96a8073924746">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#5af07365484f36818be1317cdae81a1a">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#8bfda96d71deb1b8c930c1b2aa02ae33">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#7995cf1a6671a840abf061b3939b5e8b">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#fa1583f1e5edd402ccd6e3cebc1d8c07">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#2954acc8e9d84e6eac7b59bd5409f962">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#a02453989cf7f0fed7f5a72dd7408ca7">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#a35486ac2b53bcc04380117ce4282d34">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#8c606f8763ced32f56d4a72d089a50ef">QextScintillaLexer</a><li>registerImage() +: <a class="el" href="classQextScintilla.html#72462e663c2e41ab79fde1a2b793b0bc">QextScintilla</a><li>removeSelectedText() +: <a class="el" href="classQextScintilla.html#844f15ee19c413f867a8643e98499eb6">QextScintilla</a><li>replace() +: <a class="el" href="classQextScintilla.html#520e57b1a1330e59293ba796bacd3159">QextScintilla</a><li>resetFoldMarginColors() +: <a class="el" href="classQextScintilla.html#b92a8b75e43f431ec2015bef367c548d">QextScintilla</a><li>resetSelectionBackgroundColor() +: <a class="el" href="classQextScintilla.html#5202253f6428debe10bc5f3e2f194048">QextScintilla</a><li>resetSelectionForegroundColor() +: <a class="el" href="classQextScintilla.html#a82474200e54331d49369129cdf03962">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x73.html b/doc/html/functions_func_0x73.html new file mode 100644 index 0000000..94123cc --- /dev/null +++ b/doc/html/functions_func_0x73.html @@ -0,0 +1,172 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li id="current"><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_s">- s -</a></h3><ul> +<li>save() +: <a class="el" href="classQextScintillaMacro.html#dbdc69113895d3f07b0bdb1f3f075498">QextScintillaMacro</a><li>SCEN_CHANGE() +: <a class="el" href="classQextScintillaBase.html#13a80e946a24ed608742e90e976b770b">QextScintillaBase</a><li>SCN_AUTOCSELECTION() +: <a class="el" href="classQextScintillaBase.html#8201e4d6beab5edbb64515d6d52b1fd7">QextScintillaBase</a><li>SCN_CALLTIPCLICK() +: <a class="el" href="classQextScintillaBase.html#dccbc9d664a8bffc9d59971a362febf2">QextScintillaBase</a><li>SCN_CHARADDED() +: <a class="el" href="classQextScintillaBase.html#3af676a6edd1f511a0c46cbc9bbb2cbb">QextScintillaBase</a><li>SCN_HOTSPOTCLICK() +: <a class="el" href="classQextScintillaBase.html#c5a9f540a31b8fa2614eb81ee83a3ca4">QextScintillaBase</a><li>SCN_HOTSPOTDOUBLECLICK() +: <a class="el" href="classQextScintillaBase.html#1ef454f2acaccaa53dcce7e542cdb006">QextScintillaBase</a><li>SCN_MACRORECORD() +: <a class="el" href="classQextScintillaBase.html#48c3b55133b4f2fe40f4a8ad48c8464a">QextScintillaBase</a><li>SCN_MARGINCLICK() +: <a class="el" href="classQextScintillaBase.html#5d37a34b0254cfe015056c25b1b486a5">QextScintillaBase</a><li>SCN_MODIFYATTEMPTRO() +: <a class="el" href="classQextScintillaBase.html#50b6b16bf671969a8e0034b8763a55b2">QextScintillaBase</a><li>SCN_PAINTED() +: <a class="el" href="classQextScintillaBase.html#0812c4c0f7a05df4ede492e5b81c0c5d">QextScintillaBase</a><li>SCN_SAVEPOINTLEFT() +: <a class="el" href="classQextScintillaBase.html#2b5ad5e9701145883210c588caa60859">QextScintillaBase</a><li>SCN_SAVEPOINTREACHED() +: <a class="el" href="classQextScintillaBase.html#72a342de3e6973e7bfee0403bc002585">QextScintillaBase</a><li>SCN_STYLENEEDED() +: <a class="el" href="classQextScintillaBase.html#091c3669666a8d479e8dea5b803f63d7">QextScintillaBase</a><li>selectAll() +: <a class="el" href="classQextScintilla.html#50499f9105f6dbc9922078139779051c">QextScintilla</a><li>selectedText() +: <a class="el" href="classQextScintilla.html#45d6e53a4310c13170e605134274aa20">QextScintilla</a><li>selectionChanged() +: <a class="el" href="classQextScintilla.html#d4fd9bb7affe4719cb785064b42d685c">QextScintilla</a><li>selectToMatchingBrace() +: <a class="el" href="classQextScintilla.html#b6bfc944a5acbd2b8345529a2416e00a">QextScintilla</a><li>SendScintilla() +: <a class="el" href="classQextScintillaBase.html#35ba57ee3832cf695531cc997b24d821">QextScintillaBase</a><li>setAlternateKey() +: <a class="el" href="classQextScintillaCommand.html#2ceda942ff321060804d2373eecf7ddd">QextScintillaCommand</a><li>setAutoCompletionAPIs() +: <a class="el" href="classQextScintilla.html#36fdcb3b147a92d5bb4b17b11c229137">QextScintilla</a><li>setAutoCompletionCaseSensitivity() +: <a class="el" href="classQextScintilla.html#9454e9ddb11fa6a00eb5ea790182b399">QextScintilla</a><li>setAutoCompletionFillups() +: <a class="el" href="classQextScintilla.html#d1c9c323b852ac98a7713bcfa9575c38">QextScintilla</a><li>setAutoCompletionFillupsEnabled() +: <a class="el" href="classQextScintilla.html#faf2b98416c08a2cb74d0ed9662ffda8">QextScintilla</a><li>setAutoCompletionReplaceWord() +: <a class="el" href="classQextScintilla.html#c3d23d34c0f0640bb22464b86347b0b9">QextScintilla</a><li>setAutoCompletionShowSingle() +: <a class="el" href="classQextScintilla.html#533cdccf3cafb0f71c58aeb9b2624062">QextScintilla</a><li>setAutoCompletionSource() +: <a class="el" href="classQextScintilla.html#4aa5c60bfa3047118edf15ba15a0e431">QextScintilla</a><li>setAutoCompletionStartCharacters() +: <a class="el" href="classQextScintilla.html#dc54314cbcd37186e445c5244d20c3da">QextScintilla</a><li>setAutoCompletionThreshold() +: <a class="el" href="classQextScintilla.html#b8838747494640eaf03262c32f559e4c">QextScintilla</a><li>setAutoIndent() +: <a class="el" href="classQextScintilla.html#12a3363eb37db0a2697bf737e0f750ce">QextScintilla</a><li>setAutoIndentStyle() +: <a class="el" href="classQextScintillaLexer.html#fca720f057784ddebc44d12e5899bc2e">QextScintillaLexer</a><li>setBackslashEscapes() +: <a class="el" href="classQextScintillaLexerSQL.html#81ee1d8fdc3a43e94d4176189cb8e2b7">QextScintillaLexerSQL</a><li>setBackspaceUnindents() +: <a class="el" href="classQextScintilla.html#b08d343cda48e43490baae62707e97e2">QextScintilla</a><li>setBraceMatching() +: <a class="el" href="classQextScintilla.html#28cda2cba2f6f1317a15f662e157fbbf">QextScintilla</a><li>setCallTipsAPIs() +: <a class="el" href="classQextScintilla.html#3d682f46b23b29e0da9bb0e52560d23e">QextScintilla</a><li>setCallTipsBackgroundColor() +: <a class="el" href="classQextScintilla.html#abd9a8e1e59a15ec3a1217aeb6ee7466">QextScintilla</a><li>setCallTipsForegroundColor() +: <a class="el" href="classQextScintilla.html#727d2a5f880ee4f12dba983ff1dcbee6">QextScintilla</a><li>setCallTipsHighlightColor() +: <a class="el" href="classQextScintilla.html#edede8a8431bca98f760f4e3a999ce50">QextScintilla</a><li>setCallTipsVisible() +: <a class="el" href="classQextScintilla.html#cc8e39f55a32337c3cf949a4cd09201e">QextScintilla</a><li>setCaretForegroundColor() +: <a class="el" href="classQextScintilla.html#6d9ba2d4af256e19049b7ff1b291eb2e">QextScintilla</a><li>setCaretLineBackgroundColor() +: <a class="el" href="classQextScintilla.html#e71f2cf24abfcfe598989e13481bc711">QextScintilla</a><li>setCaretLineVisible() +: <a class="el" href="classQextScintilla.html#dc9f29c940c8c3b8cc57d8cbd89a02ec">QextScintilla</a><li>setCaretWidth() +: <a class="el" href="classQextScintilla.html#8ea3c0a1e23aadb93ae0e6c671a10b09">QextScintilla</a><li>setCaseSensitiveTags() +: <a class="el" href="classQextScintillaLexerHTML.html#00d4c198c14a04b56eb1d029f8985ef1">QextScintillaLexerHTML</a><li>setColor() +: <a class="el" href="classQextScintillaLexer.html#93346e5eacd89a1a9ec220e0cc61dde6">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#2dc9e4690becceb27a9a981c23deb8e0">QextScintilla</a><li>setCursorPosition() +: <a class="el" href="classQextScintilla.html#76302c4726ba0c75de2627465c5faddb">QextScintilla</a><li>setDefaultColor() +: <a class="el" href="classQextScintillaLexer.html#bbc5f85a51dbaaeab47371e90b716541">QextScintillaLexer</a><li>setDefaultFont() +: <a class="el" href="classQextScintillaLexer.html#f14f40f03e36204ff11c3d40c8e56c44">QextScintillaLexer</a><li>setDefaultPaper() +: <a class="el" href="classQextScintillaLexer.html#66802da668e422f81f36a63222e5b63a">QextScintillaLexer</a><li>setDocument() +: <a class="el" href="classQextScintilla.html#69802b3e4de344601674a231ef2cabd2">QextScintilla</a><li>setEdgeColor() +: <a class="el" href="classQextScintilla.html#2ed5a40c9d6eb4c68895d35b1a828cf3">QextScintilla</a><li>setEdgeColumn() +: <a class="el" href="classQextScintilla.html#a2ca10384773c2a4f67e6f8cc913cb8c">QextScintilla</a><li>setEdgeMode() +: <a class="el" href="classQextScintilla.html#b03b1badfc3f69b10f99a1fb9bb7f647">QextScintilla</a><li>setEolFill() +: <a class="el" href="classQextScintillaLexer.html#8838e34f3504e7660a68d02533ec991f">QextScintillaLexer</a><li>setEolMode() +: <a class="el" href="classQextScintilla.html#f372a0b24952de9adf5c06697561ff4f">QextScintilla</a><li>setEolVisibility() +: <a class="el" href="classQextScintilla.html#19bd08e911d00127b02b08b468aa91f9">QextScintilla</a><li>setFoldAtElse() +: <a class="el" href="classQextScintillaLexerCPP.html#f75eff635e4ceec40e092d5640062acf">QextScintillaLexerCPP</a><li>setFoldComments() +: <a class="el" href="classQextScintillaLexerSQL.html#a9136c38110a706d75ec7319ed06c098">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPython.html#221ade4cc1f8042ca178e8658306815d">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerPOV.html#45939e964e3dc80f6a33cec839ae8049">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#8bb2ecf0badf70014a499cc063921b95">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerCSS.html#b5125b393e37e0742c9364301738a1c0">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#a8d495fc79547d5a38edcbb3fc9a8a47">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#1e8fbcfc2d9c84c9d5327972c00c89f3">QextScintillaLexerBash</a><li>setFoldCompact() +: <a class="el" href="classQextScintillaLexerSQL.html#a89bc20abcc8245a51da795eb3ab8c3e">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerProperties.html#bc8c42d3facfceaa7c5eaeddf7e4285c">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#020d360ff2cf8ce24e86b4126da6458a">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#4a870962b7e6ba927260600fb022ac9e">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#5f48a7bed25b1481edbb51f3c7614da4">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#148b6caa2ddab54d6c43700e62edf94d">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#f818c14fc087298ae165a85b5f13a9dc">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#ccda9feb64b84763780763d42248db5b">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#66e8c17f35f07a2a98f3b65608e5dd0c">QextScintillaLexerBash</a><li>setFoldDirectives() +: <a class="el" href="classQextScintillaLexerPOV.html#0cfbee2f757d6078faf4171a5310db1e">QextScintillaLexerPOV</a><li>setFolding() +: <a class="el" href="classQextScintilla.html#4c7a389d1492aa92246041545ea0c017">QextScintilla</a><li>setFoldMarginColors() +: <a class="el" href="classQextScintilla.html#255e6f2855091409ee2eb7dfe403ca0a">QextScintilla</a><li>setFoldPreprocessor() +: <a class="el" href="classQextScintillaLexerHTML.html#4accbe3243d38303b0ba6c1d5b1969a6">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCPP.html#83e14ae9d959d987a8d4d5f919ae6091">QextScintillaLexerCPP</a><li>setFoldQuotes() +: <a class="el" href="classQextScintillaLexerPython.html#52f6a99c0fe08a33d492dd715e09c2f0">QextScintillaLexerPython</a><li>setFont() +: <a class="el" href="classQextScintillaLexer.html#0255bcde4770fa0f41eeb65a306ceb56">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#af82bd33f7c35e50ee96547a92cefe13">QextScintilla</a><li>setIndentation() +: <a class="el" href="classQextScintilla.html#cb4de8d10de37d454203fe0fcfcf0aad">QextScintilla</a><li>setIndentationGuides() +: <a class="el" href="classQextScintilla.html#13ff99c97d3928011ec55a54329f7bef">QextScintilla</a><li>setIndentationGuidesBackgroundColor() +: <a class="el" href="classQextScintilla.html#06159cf5a4c8834c05d4ca13ab8e44f6">QextScintilla</a><li>setIndentationGuidesForegroundColor() +: <a class="el" href="classQextScintilla.html#1dc9a7291e60fd738dfa8aedaa9447a5">QextScintilla</a><li>setIndentationsUseTabs() +: <a class="el" href="classQextScintilla.html#46decfe40cf613d5978e50c30231b162">QextScintilla</a><li>setIndentationWarning() +: <a class="el" href="classQextScintillaLexerPython.html#45932671e8c15e7746607f370e74ff49">QextScintillaLexerPython</a><li>setIndentationWidth() +: <a class="el" href="classQextScintilla.html#0670389deb55079381f21764df0e2441">QextScintilla</a><li>setKey() +: <a class="el" href="classQextScintillaCommand.html#5d8f8e66928022855f859f2ef62f98ce">QextScintillaCommand</a><li>setLexer() +: <a class="el" href="classQextScintilla.html#f784daa825798f7e9c16d0a721699fa0">QextScintilla</a><li>setMagnification() +: <a class="el" href="classQextScintillaPrinter.html#7343a1deb132bfc5dfd2c4208eff3d00">QextScintillaPrinter</a><li>setMarginLineNumbers() +: <a class="el" href="classQextScintilla.html#1427cac9893fcc7b952264ff257b32de">QextScintilla</a><li>setMarginMarkerMask() +: <a class="el" href="classQextScintilla.html#6c9e5a77874dfb08b5fb83c650abd414">QextScintilla</a><li>setMarginsBackgroundColor() +: <a class="el" href="classQextScintilla.html#a2a7732db0b17dd08162a7bba8c5af55">QextScintilla</a><li>setMarginSensitivity() +: <a class="el" href="classQextScintilla.html#09e5035f78a603c3e68a22712ac9ae02">QextScintilla</a><li>setMarginsFont() +: <a class="el" href="classQextScintilla.html#b607dd4ea4a5d50ca03878d63d9e99ef">QextScintilla</a><li>setMarginsForegroundColor() +: <a class="el" href="classQextScintilla.html#11d0ceebbc7938c988be6475c0946636">QextScintilla</a><li>setMarginWidth() +: <a class="el" href="classQextScintilla.html#a160ac7908b83f021850d306bd2c7f7f">QextScintilla</a><li>setMarkerBackgroundColor() +: <a class="el" href="classQextScintilla.html#bb5aa0bf13508d14a81e2b0850c524d0">QextScintilla</a><li>setMarkerForegroundColor() +: <a class="el" href="classQextScintilla.html#a0e999a76af9f4a691565081e90ceb24">QextScintilla</a><li>setMatchedBraceBackgroundColor() +: <a class="el" href="classQextScintilla.html#d9f4087923672124c971c1f9ccdacd07">QextScintilla</a><li>setMatchedBraceForegroundColor() +: <a class="el" href="classQextScintilla.html#091dc61d3fca5b38dc789039abdf70bc">QextScintilla</a><li>setModified() +: <a class="el" href="classQextScintilla.html#16ec6f5d6b1020c22f33c164d2fc4a10">QextScintilla</a><li>setPaper() +: <a class="el" href="classQextScintillaLexer.html#4d8bcbbb950152307c4ef5daf9d4e607">QextScintillaLexer</a>, <a class="el" href="classQextScintilla.html#6009167416ef66da0a09fdbc4920b1ba">QextScintilla</a><li>setReadOnly() +: <a class="el" href="classQextScintilla.html#1bb17663785894a85e7fe07ad5768dfb">QextScintilla</a><li>setSelection() +: <a class="el" href="classQextScintilla.html#0abb348ecbb21dcecfa2ba7bb423d50b">QextScintilla</a><li>setSelectionBackgroundColor() +: <a class="el" href="classQextScintilla.html#5720572f4f673b5c877e8a1f35ed76d7">QextScintilla</a><li>setSelectionForegroundColor() +: <a class="el" href="classQextScintilla.html#2236686ea942de0cc50ddbd6d822536f">QextScintilla</a><li>setStylePreprocessor() +: <a class="el" href="classQextScintillaLexerCPP.html#0280643196167caedecbf2adc23034a8">QextScintillaLexerCPP</a><li>setTabIndents() +: <a class="el" href="classQextScintilla.html#221ac401d34a180392e49bacd9b56c4e">QextScintilla</a><li>setTabWidth() +: <a class="el" href="classQextScintilla.html#20b8f9e86b5279f8bf14793beb0254cd">QextScintilla</a><li>setText() +: <a class="el" href="classQextScintilla.html#56ea80d4dad00c736135116e3aa051b6">QextScintilla</a><li>setUnmatchedBraceBackgroundColor() +: <a class="el" href="classQextScintilla.html#da2281d317ab06a6cd17ea80391f645d">QextScintilla</a><li>setUnmatchedBraceForegroundColor() +: <a class="el" href="classQextScintilla.html#6b6f687d01a687a29c3439741006f38f">QextScintilla</a><li>setUtf8() +: <a class="el" href="classQextScintilla.html#4d22589eaa4cf9c37e701c6ec80bc405">QextScintilla</a><li>setWhitespaceVisibility() +: <a class="el" href="classQextScintilla.html#811888818870dd0d9cd74d297f711bc8">QextScintilla</a><li>setWrapMode() +: <a class="el" href="classQextScintillaPrinter.html#f4904d6ba001f4c7145983f9814f00c1">QextScintillaPrinter</a>, <a class="el" href="classQextScintilla.html#945affc0b0f8f25f58138f923d5a270d">QextScintilla</a><li>setWrapVisualFlags() +: <a class="el" href="classQextScintilla.html#11ef30c49b7c6fb96988a94059efa687">QextScintilla</a><li>showUserList() +: <a class="el" href="classQextScintilla.html#74a4da1e86eda7f62262cea8a4a9b26a">QextScintilla</a><li>sizeHint() +: <a class="el" href="classQextScintillaBase.html#171ce27ddcfabf024cc5539181f253dd">QextScintillaBase</a><li>standardCommands() +: <a class="el" href="classQextScintilla.html#ea83bb0bc19af4a776b68ee3eda10c61">QextScintilla</a><li>startDrag() +: <a class="el" href="classQextScintillaBase.html#7c1be000329c8f9e328999cbc03ba9a7">QextScintillaBase</a><li>startRecording() +: <a class="el" href="classQextScintillaMacro.html#439f6576433d4633693139192ae9bc98">QextScintillaMacro</a><li>stylePreprocessor() +: <a class="el" href="classQextScintillaLexerCPP.html#43bf80480c8d816da5e0c86dcd61cc67">QextScintillaLexerCPP</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x74.html b/doc/html/functions_func_0x74.html new file mode 100644 index 0000000..37c831c --- /dev/null +++ b/doc/html/functions_func_0x74.html @@ -0,0 +1,69 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li id="current"><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_t">- t -</a></h3><ul> +<li>tabIndents() +: <a class="el" href="classQextScintilla.html#1deb0e0aff533559500242065e9441a2">QextScintilla</a><li>tabWidth() +: <a class="el" href="classQextScintilla.html#9aa14c5d05ea338aecb5214dc4cf99c4">QextScintilla</a><li>text() +: <a class="el" href="classQextScintilla.html#db77f87ba9bb2518181029e1fba8e51b">QextScintilla</a><li>textChanged() +: <a class="el" href="classQextScintilla.html#b4f0af1a6757e30fe5ecdf82b09618c3">QextScintilla</a><li>textHeight() +: <a class="el" href="classQextScintilla.html#d4050cea6a4d23c5ee9be5f952eeb072">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x75.html b/doc/html/functions_func_0x75.html new file mode 100644 index 0000000..9c573e9 --- /dev/null +++ b/doc/html/functions_func_0x75.html @@ -0,0 +1,67 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li id="current"><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_u">- u -</a></h3><ul> +<li>undo() +: <a class="el" href="classQextScintilla.html#50dd001a80d36e81d4f1616a4b9ead02">QextScintilla</a><li>unindent() +: <a class="el" href="classQextScintilla.html#d4a5197ca9a6957e05047d7af5cfa5fc">QextScintilla</a><li>userListActivated() +: <a class="el" href="classQextScintilla.html#1bc718e051677cc538be5c9045abee87">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x76.html b/doc/html/functions_func_0x76.html new file mode 100644 index 0000000..89b4102 --- /dev/null +++ b/doc/html/functions_func_0x76.html @@ -0,0 +1,66 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li id="current"><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_v">- v -</a></h3><ul> +<li>validKey() +: <a class="el" href="classQextScintillaCommand.html#d4d553cb5852576f68d55c5952a2c4d9">QextScintillaCommand</a><li>viewport() +: <a class="el" href="classQextScintillaBase.html#7c7723d64865b462ecfbf4152d836cae">QextScintillaBase</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x77.html b/doc/html/functions_func_0x77.html new file mode 100644 index 0000000..6135770 --- /dev/null +++ b/doc/html/functions_func_0x77.html @@ -0,0 +1,68 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li id="current"><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_w">- w -</a></h3><ul> +<li>whitespaceVisibility() +: <a class="el" href="classQextScintilla.html#5321010c2f04093c3107cf34b23ebb52">QextScintilla</a><li>wrapMode() +: <a class="el" href="classQextScintillaPrinter.html#8aba0d63efee1fb2d6b5609c9120f970">QextScintillaPrinter</a>, <a class="el" href="classQextScintilla.html#99ec7ecdc8cd8f79aaeeda2b61796b65">QextScintilla</a><li>writeProperties() +: <a class="el" href="classQextScintillaLexerSQL.html#0824d031dd1ffc6318197e7e545ff84f">QextScintillaLexerSQL</a>, <a class="el" href="classQextScintillaLexerPython.html#c6e164f4a93cdbacd7f3e9ab66ff98dc">QextScintillaLexerPython</a>, <a class="el" href="classQextScintillaLexerProperties.html#cc1b8d0916329dab170624db1505b2a6">QextScintillaLexerProperties</a>, <a class="el" href="classQextScintillaLexerPOV.html#b1077b902db4549ddef0398fb6391489">QextScintillaLexerPOV</a>, <a class="el" href="classQextScintillaLexerPerl.html#856e7b88f288064e36f2144bf97fdce5">QextScintillaLexerPerl</a>, <a class="el" href="classQextScintillaLexerLua.html#92663d1d9f49a0218118d8e48b5c49ad">QextScintillaLexerLua</a>, <a class="el" href="classQextScintillaLexerHTML.html#a7ecf8f08c953c661a350d5de2e868fa">QextScintillaLexerHTML</a>, <a class="el" href="classQextScintillaLexerCSS.html#8c61265f2e059f652de67fac9e0c67fd">QextScintillaLexerCSS</a>, <a class="el" href="classQextScintillaLexerCPP.html#600506daad28854a957cc20307854202">QextScintillaLexerCPP</a>, <a class="el" href="classQextScintillaLexerBash.html#3bee366bd9e502ae386656c7e915ff42">QextScintillaLexerBash</a>, <a class="el" href="classQextScintillaLexer.html#69d35dbbba2530a185de901e9fa12a18">QextScintillaLexer</a><li>writeSettings() +: <a class="el" href="classQextScintillaLexer.html#489a8e9528498cab6c5fd999c004229c">QextScintillaLexer</a>, <a class="el" href="classQextScintillaCommandSet.html#3a4981c26ab30164efbf27d15a4828ee">QextScintillaCommandSet</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x7a.html b/doc/html/functions_func_0x7a.html new file mode 100644 index 0000000..ae042b6 --- /dev/null +++ b/doc/html/functions_func_0x7a.html @@ -0,0 +1,67 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li id="current"><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_z">- z -</a></h3><ul> +<li>zoomIn() +: <a class="el" href="classQextScintilla.html#69341ebed602660d09fb47af683ac266">QextScintilla</a><li>zoomOut() +: <a class="el" href="classQextScintilla.html#fa53fc56031df8f657e2e75f95848777">QextScintilla</a><li>zoomTo() +: <a class="el" href="classQextScintilla.html#58bf75fc581f7fc46235a6ad95ef5da5">QextScintilla</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/functions_func_0x7e.html b/doc/html/functions_func_0x7e.html new file mode 100644 index 0000000..cdf8597 --- /dev/null +++ b/doc/html/functions_func_0x7e.html @@ -0,0 +1,89 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Class Members - Functions</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li id="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="functions.html"><span>All</span></a></li> + <li id="current"><a href="functions_func.html"><span>Functions</span></a></li> + <li><a href="functions_enum.html"><span>Enumerations</span></a></li> + <li><a href="functions_eval.html"><span>Enumerator</span></a></li> + </ul> +</div> +<div class="tabs"> + <ul> + <li><a href="functions_func.html#index_a"><span>a</span></a></li> + <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> + <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> + <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> + <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> + <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> + <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> + <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> + <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> + <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> + <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> + <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> + <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> + <li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li> + <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> + <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> + <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> + <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> + <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> + <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> + <li><a href="functions_func_0x7a.html#index_z"><span>z</span></a></li> + <li id="current"><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> + </ul> +</div> + +<p> + +<p> +<h3><a class="anchor" name="index_~">- ~ -</a></h3><ul> +<li>~QextScintilla() +: <a class="el" href="classQextScintilla.html#6bec02d815e1e0ca1a0c6a75a5b4e978">QextScintilla</a><li>~QextScintillaAPIs() +: <a class="el" href="classQextScintillaAPIs.html#25c4b5eec176538900c3fb0028e47a80">QextScintillaAPIs</a><li>~QextScintillaBase() +: <a class="el" href="classQextScintillaBase.html#f22e6dadb040870209e511018a4aa0b8">QextScintillaBase</a><li>~QextScintillaLexer() +: <a class="el" href="classQextScintillaLexer.html#40573922e7a23fe7dce56892f42b229a">QextScintillaLexer</a><li>~QextScintillaLexerBash() +: <a class="el" href="classQextScintillaLexerBash.html#5ce2dd33fa7529466237bd8b59e9be83">QextScintillaLexerBash</a><li>~QextScintillaLexerBatch() +: <a class="el" href="classQextScintillaLexerBatch.html#07ec0d3cd82cdaec9dd201999a23b498">QextScintillaLexerBatch</a><li>~QextScintillaLexerCPP() +: <a class="el" href="classQextScintillaLexerCPP.html#ff979d7aad2ae33d2e246119d7994492">QextScintillaLexerCPP</a><li>~QextScintillaLexerCSharp() +: <a class="el" href="classQextScintillaLexerCSharp.html#59badf1a786aa2f2cec4206446bea91f">QextScintillaLexerCSharp</a><li>~QextScintillaLexerCSS() +: <a class="el" href="classQextScintillaLexerCSS.html#64da1307d9e09341f055df5b73c07b94">QextScintillaLexerCSS</a><li>~QextScintillaLexerDiff() +: <a class="el" href="classQextScintillaLexerDiff.html#bf28861883962d75839eae6f84056781">QextScintillaLexerDiff</a><li>~QextScintillaLexerHTML() +: <a class="el" href="classQextScintillaLexerHTML.html#786a37770dbf59d33c91e0fcfcd736f9">QextScintillaLexerHTML</a><li>~QextScintillaLexerIDL() +: <a class="el" href="classQextScintillaLexerIDL.html#dede1f597bce7ac4c19d140897a38ce1">QextScintillaLexerIDL</a><li>~QextScintillaLexerJava() +: <a class="el" href="classQextScintillaLexerJava.html#32d0b0f5766293ecc3275ea97638db33">QextScintillaLexerJava</a><li>~QextScintillaLexerJavaScript() +: <a class="el" href="classQextScintillaLexerJavaScript.html#911d027f4a41a3d2f02df1e758d87ee5">QextScintillaLexerJavaScript</a><li>~QextScintillaLexerLua() +: <a class="el" href="classQextScintillaLexerLua.html#58a3c460c4908a7456d1dab47631f9f0">QextScintillaLexerLua</a><li>~QextScintillaLexerMakefile() +: <a class="el" href="classQextScintillaLexerMakefile.html#be9f4464a0d428ea3c9f7cae65b719e8">QextScintillaLexerMakefile</a><li>~QextScintillaLexerPerl() +: <a class="el" href="classQextScintillaLexerPerl.html#8067cc9c836bd237ee0dd8f86c115339">QextScintillaLexerPerl</a><li>~QextScintillaLexerPOV() +: <a class="el" href="classQextScintillaLexerPOV.html#c45bb3f5d070f13d73ab96a8d4d73846">QextScintillaLexerPOV</a><li>~QextScintillaLexerProperties() +: <a class="el" href="classQextScintillaLexerProperties.html#aa826d270e365f358c84a027bee3d167">QextScintillaLexerProperties</a><li>~QextScintillaLexerPython() +: <a class="el" href="classQextScintillaLexerPython.html#fcf6aac74a4f21b160fce08af3c2b3ab">QextScintillaLexerPython</a><li>~QextScintillaLexerRuby() +: <a class="el" href="classQextScintillaLexerRuby.html#95c00cb154c17d293bf2ef05fe2d8cdb">QextScintillaLexerRuby</a><li>~QextScintillaLexerSQL() +: <a class="el" href="classQextScintillaLexerSQL.html#d79a35923e0b87040873aa5b8cc369df">QextScintillaLexerSQL</a><li>~QextScintillaLexerTeX() +: <a class="el" href="classQextScintillaLexerTeX.html#51c29124f25bfacfc3a43e85cf616fc1">QextScintillaLexerTeX</a><li>~QextScintillaMacro() +: <a class="el" href="classQextScintillaMacro.html#d20a0db0b92b233a63f72e43c616ce3b">QextScintillaMacro</a><li>~QextScintillaPrinter() +: <a class="el" href="classQextScintillaPrinter.html#34077d68da930b18eba124ab64555898">QextScintillaPrinter</a></ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/hierarchy.html b/doc/html/hierarchy.html new file mode 100644 index 0000000..84995f7 --- /dev/null +++ b/doc/html/hierarchy.html @@ -0,0 +1,60 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Hierarchical Index</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li id="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<div class="tabs"> + <ul> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li id="current"><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul></div> +<h1>QScintilla Class Hierarchy</h1>This inheritance list is sorted roughly, but not completely, alphabetically:<ul> +<li><a class="el" href="classQextScintillaAPIs.html">QextScintillaAPIs</a> +<li><a class="el" href="classQextScintillaBase.html">QextScintillaBase</a> +<ul> +<li><a class="el" href="classQextScintilla.html">QextScintilla</a> +</ul> +<li><a class="el" href="classQextScintillaCommand.html">QextScintillaCommand</a> +<li><a class="el" href="classQextScintillaCommandSet.html">QextScintillaCommandSet</a> +<li><a class="el" href="classQextScintillaDocument.html">QextScintillaDocument</a> +<li><a class="el" href="classQextScintillaLexer.html">QextScintillaLexer</a> +<ul> +<li><a class="el" href="classQextScintillaLexerBash.html">QextScintillaLexerBash</a> +<li><a class="el" href="classQextScintillaLexerBatch.html">QextScintillaLexerBatch</a> +<li><a class="el" href="classQextScintillaLexerCPP.html">QextScintillaLexerCPP</a> +<ul> +<li><a class="el" href="classQextScintillaLexerCSharp.html">QextScintillaLexerCSharp</a> +<li><a class="el" href="classQextScintillaLexerIDL.html">QextScintillaLexerIDL</a> +<li><a class="el" href="classQextScintillaLexerJava.html">QextScintillaLexerJava</a> +<li><a class="el" href="classQextScintillaLexerJavaScript.html">QextScintillaLexerJavaScript</a> +</ul> +<li><a class="el" href="classQextScintillaLexerCSS.html">QextScintillaLexerCSS</a> +<li><a class="el" href="classQextScintillaLexerDiff.html">QextScintillaLexerDiff</a> +<li><a class="el" href="classQextScintillaLexerHTML.html">QextScintillaLexerHTML</a> +<li><a class="el" href="classQextScintillaLexerLua.html">QextScintillaLexerLua</a> +<li><a class="el" href="classQextScintillaLexerMakefile.html">QextScintillaLexerMakefile</a> +<li><a class="el" href="classQextScintillaLexerPerl.html">QextScintillaLexerPerl</a> +<li><a class="el" href="classQextScintillaLexerPOV.html">QextScintillaLexerPOV</a> +<li><a class="el" href="classQextScintillaLexerProperties.html">QextScintillaLexerProperties</a> +<li><a class="el" href="classQextScintillaLexerPython.html">QextScintillaLexerPython</a> +<li><a class="el" href="classQextScintillaLexerRuby.html">QextScintillaLexerRuby</a> +<li><a class="el" href="classQextScintillaLexerSQL.html">QextScintillaLexerSQL</a> +<li><a class="el" href="classQextScintillaLexerTeX.html">QextScintillaLexerTeX</a> +</ul> +<li><a class="el" href="classQextScintillaMacro.html">QextScintillaMacro</a> +<li><a class="el" href="classQextScintillaPrinter.html">QextScintillaPrinter</a> +</ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/index.html b/doc/html/index.html new file mode 100644 index 0000000..95efba9 --- /dev/null +++ b/doc/html/index.html @@ -0,0 +1,20 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Main Page</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li id="current"><a href="index.html"><span>Main Page</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<h1>QScintilla Documentation</h1> +<p> +<h3 align="center">1.7.1 (based on Scintilla 1.71) </h3><hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/pages.html b/doc/html/pages.html new file mode 100644 index 0000000..e479ad2 --- /dev/null +++ b/doc/html/pages.html @@ -0,0 +1,22 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> +<title>QScintilla: Page Index</title> +<link href="doxygen.css" rel="stylesheet" type="text/css"> +<link href="tabs.css" rel="stylesheet" type="text/css"> +</head><body> +<!-- Generated by Doxygen 1.4.7 --> +<div class="tabs"> + <ul> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li id="current"><a href="pages.html"><span>Related Pages</span></a></li> + </ul></div> +<h1>QScintilla Related Pages</h1>Here is a list of all related documentation pages:<ul> +<li><a class="el" href="deprecated.html">Deprecated List</a> + +</ul> +<hr size="1"><address style="align: right;"><small>Generated on Thu Nov 30 09:32:31 2006 for QScintilla by +<a href="http://www.doxygen.org/index.html"> +<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> +</body> +</html> diff --git a/doc/html/tab_b.gif b/doc/html/tab_b.gif Binary files differnew file mode 100644 index 0000000..0d62348 --- /dev/null +++ b/doc/html/tab_b.gif diff --git a/doc/html/tab_l.gif b/doc/html/tab_l.gif Binary files differnew file mode 100644 index 0000000..9b1e633 --- /dev/null +++ b/doc/html/tab_l.gif diff --git a/doc/html/tab_r.gif b/doc/html/tab_r.gif Binary files differnew file mode 100644 index 0000000..ce9dd9f --- /dev/null +++ b/doc/html/tab_r.gif diff --git a/doc/html/tabs.css b/doc/html/tabs.css new file mode 100644 index 0000000..a61552a --- /dev/null +++ b/doc/html/tabs.css @@ -0,0 +1,102 @@ +/* tabs styles, based on http://www.alistapart.com/articles/slidingdoors */ + +DIV.tabs +{ + float : left; + width : 100%; + background : url("tab_b.gif") repeat-x bottom; + margin-bottom : 4px; +} + +DIV.tabs UL +{ + margin : 0px; + padding-left : 10px; + list-style : none; +} + +DIV.tabs LI, DIV.tabs FORM +{ + display : inline; + margin : 0px; + padding : 0px; +} + +DIV.tabs FORM +{ + float : right; +} + +DIV.tabs A +{ + float : left; + background : url("tab_r.gif") no-repeat right top; + border-bottom : 1px solid #84B0C7; + font-size : x-small; + font-weight : bold; + text-decoration : none; +} + +DIV.tabs A:hover +{ + background-position: 100% -150px; +} + +DIV.tabs A:link, DIV.tabs A:visited, +DIV.tabs A:active, DIV.tabs A:hover +{ + color: #1A419D; +} + +DIV.tabs SPAN +{ + float : left; + display : block; + background : url("tab_l.gif") no-repeat left top; + padding : 5px 9px; + white-space : nowrap; +} + +DIV.tabs INPUT +{ + float : right; + display : inline; + font-size : 1em; +} + +DIV.tabs TD +{ + font-size : x-small; + font-weight : bold; + text-decoration : none; +} + + + +/* Commented Backslash Hack hides rule from IE5-Mac \*/ +DIV.tabs SPAN {float : none;} +/* End IE5-Mac hack */ + +DIV.tabs A:hover SPAN +{ + background-position: 0% -150px; +} + +DIV.tabs LI#current A +{ + background-position: 100% -150px; + border-width : 0px; +} + +DIV.tabs LI#current SPAN +{ + background-position: 0% -150px; + padding-bottom : 6px; +} + +DIV.nav +{ + background : none; + border : none; + border-bottom : 1px solid #84B0C7; +} diff --git a/doc/qscintilla.dxy b/doc/qscintilla.dxy new file mode 100644 index 0000000..0ae31b3 --- /dev/null +++ b/doc/qscintilla.dxy @@ -0,0 +1,1098 @@ +# Doxyfile 1.3.5 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = QScintilla + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = "1.7.1 (based on Scintilla 1.71)" + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, +# Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en +# (Japanese with English messages), Korean, Norwegian, Polish, Portuguese, +# Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian. + +OUTPUT_LANGUAGE = English + +# This tag can be used to specify the encoding used in the generated output. +# The encoding is not always determined by the language that is chosen, +# but also whether or not the output is meant for Windows or non-Windows users. +# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES +# forces the Windows encoding (this is the default for the Windows binary), +# whereas setting the tag to NO uses a Unix-style encoding (the default for +# all platforms other than Windows). + +USE_WINDOWS_ENCODING = NO + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = NO + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is used +# as the annotated text. Otherwise, the brief description is used as-is. If left +# blank, the following values are used ("$name" is automatically replaced with the +# name of the entity): "The $name class" "The $name widget" "The $name file" +# "is" "provides" "specifies" "contains" "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited +# members of a class in the documentation of that class as if those members were +# ordinary class members. Constructors, destructors and assignment operators of +# the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. It is allowed to use relative paths in the argument list. + +STRIP_FROM_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like the Qt-style comments (thus requiring an +# explicit @brief command for a brief description. + +JAVADOC_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the DETAILS_AT_TOP tag is set to YES then Doxygen +# will output the detailed description near the top, like JavaDoc. +# If set to NO, the detailed description appears after the member +# documentation. + +DETAILS_AT_TOP = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources +# only. Doxygen will then generate output that is more tailored for Java. +# For instance, namespaces will be presented as packages, qualified scopes +# will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = YES + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = ../qt + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp +# *.h++ *.idl *.odl *.cs *.php *.php3 *.inc + +FILE_PATTERNS = qext*.h + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories +# that are symbolic links (a Unix filesystem feature) are excluded from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. + +EXCLUDE_PATTERNS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command <filter> <input-file>, where <filter> +# is the value of the INPUT_FILTER tag, and <input-file> is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. + +INPUT_FILTER = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES (the default) +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES (the default) +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = YES + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = NO + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = NO + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 3 + +# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be +# generated containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, +# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are +# probably better off using the HTML help feature. + +GENERATE_TREEVIEW = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = NO + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = NO + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. This is useful +# if you want to understand what is going on. On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_PREDEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse the +# parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::addtions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or +# super classes. Setting the tag to NO turns the diagrams off. Note that this +# option is superseded by the HAVE_DOT option below. This is only a fallback. It is +# recommended to install and use dot, since it yields more powerful graphs. + +CLASS_DIAGRAMS = NO + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will +# generate a call dependency graph for every global function or class method. +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found on the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_WIDTH = 1024 + +# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_HEIGHT = 1024 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes that +# lay further from the root node will be omitted. Note that setting this option to +# 1 or 2 may greatly reduce the computation time needed for large code bases. Also +# note that a graph may be further truncated if the graph's image dimensions are +# not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT). +# If 0 is used for the depth value (the default), the graph is not depth-constrained. + +MAX_DOT_GRAPH_DEPTH = 0 + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Configuration::addtions related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO |