1 | 1 | simandl | <?php |
2 | | | /************************************************************************************* |
3 | | | * cpp.php |
4 | | | * ------- |
5 | | | * Author: Iulian M |
6 | | | * Copyright: (c) 2006 Iulian M |
7 | | | * Release Version: 1.0.8.1 |
8 | | | * Date Started: 2004/09/27 |
9 | | | * |
10 | | | * C++ (with QT extensions) language file for GeSHi. |
11 | | | * |
12 | | | * CHANGES |
13 | | | * ------- |
14 | | | * 2008/05/23 (1.0.7.22) |
15 | | | * - Added description of extra language features (SF#1970248) |
16 | | | * |
17 | | | * TODO |
18 | | | * ---- |
19 | | | * |
20 | | | ************************************************************************************* |
21 | | | * |
22 | | | * This file is part of GeSHi. |
23 | | | * |
24 | | | * GeSHi is free software; you can redistribute it and/or modify |
25 | | | * it under the terms of the GNU General Public License as published by |
26 | | | * the Free Software Foundation; either version 2 of the License, or |
27 | | | * (at your option) any later version. |
28 | | | * |
29 | | | * GeSHi is distributed in the hope that it will be useful, |
30 | | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
31 | | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
32 | | | * GNU General Public License for more details. |
33 | | | * |
34 | | | * You should have received a copy of the GNU General Public License |
35 | | | * along with GeSHi; if not, write to the Free Software |
36 | | | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
37 | | | * |
38 | | | ************************************************************************************/ |
39 | | | |
40 | | | $language_data = array ( |
41 | | | 'LANG_NAME' => 'C++ (QT)', |
42 | | | 'COMMENT_SINGLE' => array(1 => '//', 2 => '#'), |
43 | | | 'COMMENT_MULTI' => array('/*' => '*/'), |
44 | | | //Multiline-continued Singleline comments |
45 | | | 'COMMENT_REGEXP' => array(1 => '/\/\/(?:\\\\\\\\|\\\\\\n|.)*$/m'), |
46 | | | 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, |
47 | | | 'QUOTEMARKS' => array("'", '"'), |
48 | | | 'ESCAPE_CHAR' => '\\', |
49 | | | 'NUMBERS' => |
50 | | | GESHI_NUMBER_INT_BASIC | GESHI_NUMBER_INT_CSTYLE | GESHI_NUMBER_BIN_PREFIX_0B | |
51 | | | GESHI_NUMBER_OCT_PREFIX | GESHI_NUMBER_HEX_PREFIX | GESHI_NUMBER_FLT_NONSCI | |
52 | | | GESHI_NUMBER_FLT_NONSCI_F | GESHI_NUMBER_FLT_SCI_SHORT | GESHI_NUMBER_FLT_SCI_ZERO, |
53 | | | 'KEYWORDS' => array( |
54 | | | 1 => array( |
55 | | | 'case', 'continue', 'default', 'do', 'else', 'for', 'goto', 'if', 'return', |
56 | | | 'switch', 'while', 'delete', 'new', 'this' |
57 | | | ), |
58 | | | 2 => array( |
59 | | | 'NULL', 'false', 'break', 'true', 'enum', 'errno', 'EDOM', |
60 | | | 'ERANGE', 'FLT_RADIX', 'FLT_ROUNDS', 'FLT_DIG', 'DBL_DIG', 'LDBL_DIG', |
61 | | | 'FLT_EPSILON', 'DBL_EPSILON', 'LDBL_EPSILON', 'FLT_MANT_DIG', 'DBL_MANT_DIG', |
62 | | | 'LDBL_MANT_DIG', 'FLT_MAX', 'DBL_MAX', 'LDBL_MAX', 'FLT_MAX_EXP', 'DBL_MAX_EXP', |
63 | | | 'LDBL_MAX_EXP', 'FLT_MIN', 'DBL_MIN', 'LDBL_MIN', 'FLT_MIN_EXP', 'DBL_MIN_EXP', |
64 | | | 'LDBL_MIN_EXP', 'CHAR_BIT', 'CHAR_MAX', 'CHAR_MIN', 'SCHAR_MAX', 'SCHAR_MIN', |
65 | | | 'UCHAR_MAX', 'SHRT_MAX', 'SHRT_MIN', 'USHRT_MAX', 'INT_MAX', 'INT_MIN', |
66 | | | 'UINT_MAX', 'LONG_MAX', 'LONG_MIN', 'ULONG_MAX', 'HUGE_VAL', 'SIGABRT', |
67 | | | 'SIGFPE', 'SIGILL', 'SIGINT', 'SIGSEGV', 'SIGTERM', 'SIG_DFL', 'SIG_ERR', |
68 | | | 'SIG_IGN', 'BUFSIZ', 'EOF', 'FILENAME_MAX', 'FOPEN_MAX', 'L_tmpnam', |
69 | | | 'SEEK_CUR', 'SEEK_END', 'SEEK_SET', 'TMP_MAX', 'stdin', 'stdout', 'stderr', |
70 | | | 'EXIT_FAILURE', 'EXIT_SUCCESS', 'RAND_MAX', 'CLOCKS_PER_SEC', |
71 | | | 'virtual', 'public', 'private', 'protected', 'template', 'using', 'namespace', |
72 | | | 'try', 'catch', 'inline', 'dynamic_cast', 'const_cast', 'reinterpret_cast', |
73 | | | 'static_cast', 'explicit', 'friend', 'wchar_t', 'typename', 'typeid', 'class' , |
74 | | | 'foreach','connect', 'Q_OBJECT' , 'slots' , 'signals' |
75 | | | ), |
76 | | | 3 => array( |
77 | | | 'cin', 'cerr', 'clog', 'cout', |
78 | | | 'printf', 'fprintf', 'snprintf', 'sprintf', 'assert', |
79 | | | 'isalnum', 'isalpha', 'isdigit', 'iscntrl', 'isgraph', 'islower', 'isprint', |
80 | | | 'ispunct', 'isspace', 'isupper', 'isxdigit', 'tolower', 'toupper', |
81 | | | 'exp', 'log', 'log10', 'pow', 'sqrt', 'ceil', 'floor', 'fabs', 'ldexp', |
82 | | | 'frexp', 'modf', 'fmod', 'sin', 'cos', 'tan', 'asin', 'acos', 'atan', 'atan2', |
83 | | | 'sinh', 'cosh', 'tanh', 'setjmp', 'longjmp', |
84 | | | 'va_start', 'va_arg', 'va_end', 'offsetof', 'sizeof', 'fopen', 'freopen', |
85 | | | 'fflush', 'fclose', 'remove', 'rename', 'tmpfile', 'tmpname', 'setvbuf', |
86 | | | 'setbuf', 'vfprintf', 'vprintf', 'vsprintf', 'fscanf', 'scanf', 'sscanf', |
87 | | | 'fgetc', 'fgets', 'fputc', 'fputs', 'getc', 'getchar', 'gets', 'putc', |
88 | | | 'putchar', 'puts', 'ungetc', 'fread', 'fwrite', 'fseek', 'ftell', 'rewind', |
89 | | | 'fgetpos', 'fsetpos', 'clearerr', 'feof', 'ferror', 'perror', 'abs', 'labs', |
90 | | | 'div', 'ldiv', 'atof', 'atoi', 'atol', 'strtod', 'strtol', 'strtoul', 'calloc', |
91 | | | 'malloc', 'realloc', 'free', 'abort', 'exit', 'atexit', 'system', 'getenv', |
92 | | | 'bsearch', 'qsort', 'rand', 'srand', 'strcpy', 'strncpy', 'strcat', 'strncat', |
93 | | | 'strcmp', 'strncmp', 'strcoll', 'strchr', 'strrchr', 'strspn', 'strcspn', |
94 | | | 'strpbrk', 'strstr', 'strlen', 'strerror', 'strtok', 'strxfrm', 'memcpy', |
95 | | | 'memmove', 'memcmp', 'memchr', 'memset', 'clock', 'time', 'difftime', 'mktime', |
96 | | | 'asctime', 'ctime', 'gmtime', 'localtime', 'strftime' |
97 | | | ), |
98 | | | 4 => array( |
99 | | | 'auto', 'bool', 'char', 'const', 'double', 'float', 'int', 'long', 'longint', |
100 | | | 'register', 'short', 'shortint', 'signed', 'static', 'struct', |
101 | | | 'typedef', 'union', 'unsigned', 'void', 'volatile', 'extern', 'jmp_buf', |
102 | | | 'signal', 'raise', 'va_list', 'ptrdiff_t', 'size_t', 'FILE', 'fpos_t', |
103 | | | 'div_t', 'ldiv_t', 'clock_t', 'time_t', 'tm', |
104 | | | ), |
105 | | | 5 => array( |
106 | | | 'QAbstractButton','QDir','QIntValidator','QRegExpValidator','QTabWidget','QAbstractEventDispatcher', |
107 | | | 'QDirectPainter','QIODevice','QRegion','QTcpServer','QAbstractExtensionFactory','QDirModel', |
108 | | | 'QItemDelegate','QResizeEvent','QTcpSocket','QAbstractExtensionManager','QDockWidget', |
109 | | | 'QItemEditorCreatorBase','QResource','QTemporaryFile','QAbstractFileEngine','QDomAttr', |
110 | | | 'QItemEditorFactory','QRubberBand','QTestEventList','QAbstractFileEngineHandler','QDomCDATASection', |
111 | | | 'QItemSelection','QScreen','QTextBlock','QAbstractFormBuilder','QDomCharacterData','QItemSelectionModel', |
112 | | | 'QScreenCursor','QTextBlockFormat','QAbstractGraphicsShapeItem','QDomComment','QItemSelectionRange', |
113 | | | 'QScreenDriverFactory','QTextBlockGroup','QAbstractItemDelegate','QDomDocument','QKbdDriverFactory', |
114 | | | 'QScreenDriverPlugin','QTextBlockUserData','QAbstractItemModel','QDomDocumentFragment','QKbdDriverPlugin', |
115 | | | 'QScrollArea','QTextBrowser','QAbstractItemView','QDomDocumentType','QKeyEvent','QScrollBar', |
116 | | | 'QTextCharFormat','QAbstractListModel','QDomElement','QKeySequence','QSemaphore','QTextCodec', |
117 | | | 'QAbstractPrintDialog','QDomEntity','QLabel','QSessionManager','QTextCodecPlugin','QAbstractProxyModel', |
118 | | | 'QDomEntityReference','QLatin1Char','QSet','QTextCursor','QAbstractScrollArea','QDomImplementation', |
119 | | | 'QLatin1String','QSetIterator','QTextDecoder','QAbstractSlider','QDomNamedNodeMap','QLayout','QSettings', |
120 | | | 'QTextDocument','QAbstractSocket','QDomNode','QLayoutItem','QSharedData','QTextDocumentFragment', |
121 | | | 'QAbstractSpinBox','QDomNodeList','QLCDNumber','QSharedDataPointer','QTextEdit','QAbstractTableModel', |
122 | | | 'QDomNotation','QLibrary','QShortcut','QTextEncoder','QAbstractTextDocumentLayout', |
123 | | | 'QDomProcessingInstruction','QLibraryInfo','QShortcutEvent','QTextFormat','QAccessible','QDomText', |
124 | | | 'QLine','QShowEvent','QTextFragment','QAccessibleBridge','QDoubleSpinBox','QLinearGradient', |
125 | | | 'QSignalMapper','QTextFrame','QAccessibleBridgePlugin','QDoubleValidator','QLineEdit','QSignalSpy', |
126 | | | 'QTextFrameFormat','QAccessibleEvent','QDrag','QLineF','QSize','QTextImageFormat','QAccessibleInterface', |
127 | | | 'QDragEnterEvent','QLinkedList','QSizeF','QTextInlineObject','QAccessibleObject','QDragLeaveEvent', |
128 | | | 'QLinkedListIterator','QSizeGrip','QTextLayout','QAccessiblePlugin','QDragMoveEvent','QLinuxFbScreen', |
129 | | | 'QSizePolicy','QTextLength','QAccessibleWidget','QDropEvent','QList','QSlider','QTextLine','QAction', |
130 | | | 'QDynamicPropertyChangeEvent','QListIterator','QSocketNotifier','QTextList','QActionEvent','QErrorMessage', |
131 | | | 'QListView','QSortFilterProxyModel','QTextListFormat','QActionGroup','QEvent','QListWidget','QSound', |
132 | | | 'QTextObject','QApplication','QEventLoop','QListWidgetItem','QSpacerItem','QTextOption','QAssistantClient', |
133 | | | 'QExtensionFactory','QLocale','QSpinBox','QTextStream','QAxAggregated','QExtensionManager', |
134 | | | 'QMacPasteboardMime','QSplashScreen','QTextTable','QAxBase','QFile','QMacStyle','QSplitter', |
135 | | | 'QTextTableCell','QAxBindable','QFileDialog','QMainWindow','QSplitterHandle','QTextTableFormat', |
136 | | | 'QAxFactory','QFileIconProvider','QMap','QSqlDatabase','QThread','QAxObject','QFileInfo','QMapIterator', |
137 | | | 'QSqlDriver','QThreadStorage','QAxScript','QFileOpenEvent','QMatrix','QSqlDriverCreator','QTime', |
138 | | | 'QAxScriptEngine','QFileSystemWatcher','QMenu','QSqlDriverCreatorBase','QTimeEdit','QAxScriptManager', |
139 | | | 'QFlag','QMenuBar','QSqlDriverPlugin','QTimeLine','QAxWidget','QFlags','QMessageBox','QSqlError','QTimer', |
140 | | | 'QBasicTimer','QFocusEvent','QMetaClassInfo','QSqlField','QTimerEvent','QBitArray','QFocusFrame', |
141 | | | 'QMetaEnum','QSqlIndex','QToolBar','QBitmap','QFont','QMetaMethod','QSqlQuery','QToolBox','QBoxLayout', |
142 | | | 'QFontComboBox','QMetaObject','QSqlQueryModel','QToolButton','QBrush','QFontDatabase','QMetaProperty', |
143 | | | 'QSqlRecord','QToolTip','QBuffer','QFontDialog','QMetaType','QSqlRelation','QTransformedScreen', |
144 | | | 'QButtonGroup','QFontInfo','QMimeData','QSqlRelationalDelegate','QTranslator','QByteArray','QFontMetrics', |
145 | | | 'QMimeSource','QSqlRelationalTableModel','QTreeView','QByteArrayMatcher','QFontMetricsF','QModelIndex', |
146 | | | 'QSqlResult','QTreeWidget','QCache','QFormBuilder','QMotifStyle','QSqlTableModel','QTreeWidgetItem', |
147 | | | 'QCalendarWidget','QFrame','QMouseDriverFactory','QStack','QTreeWidgetItemIterator','QCDEStyle', |
148 | | | 'QFSFileEngine','QMouseDriverPlugin','QStackedLayout','QUdpSocket','QChar','QFtp','QMouseEvent', |
149 | | | 'QStackedWidget','QUiLoader','QCheckBox','QGenericArgument','QMoveEvent','QStandardItem','QUndoCommand', |
150 | | | 'QChildEvent','QGenericReturnArgument','QMovie','QStandardItemEditorCreator','QUndoGroup', |
151 | | | 'QCleanlooksStyle','QGLColormap','QMultiHash','QStandardItemModel','QUndoStack','QClipboard', |
152 | | | 'QGLContext','QMultiMap','QStatusBar','QUndoView','QCloseEvent','QGLFormat','QMutableHashIterator', |
153 | | | 'QStatusTipEvent','QUrl','QColor','QGLFramebufferObject','QMutableLinkedListIterator','QString', |
154 | | | 'QUrlInfo','QColorDialog','QGLPixelBuffer','QMutableListIterator','QStringList','QUuid','QColormap', |
155 | | | 'QGLWidget','QMutableMapIterator','QStringListModel','QValidator','QComboBox','QGradient', |
156 | | | 'QMutableSetIterator','QStringMatcher','QVariant','QCommonStyle','QGraphicsEllipseItem', |
157 | | | 'QMutableVectorIterator','QStyle','QVarLengthArray','QCompleter','QGraphicsItem','QMutex', |
158 | | | 'QStyleFactory','QVBoxLayout','QConicalGradient','QGraphicsItemAnimation','QMutexLocker', |
159 | | | 'QStyleHintReturn','QVector','QContextMenuEvent','QGraphicsItemGroup','QNetworkAddressEntry', |
160 | | | 'QStyleHintReturnMask','QVectorIterator','QCopChannel','QGraphicsLineItem','QNetworkInterface', |
161 | | | 'QStyleOption','QVFbScreen','QCoreApplication','QGraphicsPathItem','QNetworkProxy','QStyleOptionButton', |
162 | | | 'QVNCScreen','QCursor','QGraphicsPixmapItem','QObject','QStyleOptionComboBox','QWaitCondition', |
163 | | | 'QCustomRasterPaintDevice','QGraphicsPolygonItem','QObjectCleanupHandler','QStyleOptionComplex', |
164 | | | 'QWhatsThis','QDataStream','QGraphicsRectItem','QPageSetupDialog','QStyleOptionDockWidget', |
165 | | | 'QWhatsThisClickedEvent','QDataWidgetMapper','QGraphicsScene','QPaintDevice','QStyleOptionFocusRect', |
166 | | | 'QWheelEvent','QDate','QGraphicsSceneContextMenuEvent','QPaintEngine','QStyleOptionFrame','QWidget', |
167 | | | 'QDateEdit','QGraphicsSceneEvent','QPaintEngineState','QStyleOptionFrameV2','QWidgetAction','QDateTime', |
168 | | | 'QGraphicsSceneHoverEvent','QPainter','QStyleOptionGraphicsItem','QWidgetItem','QDateTimeEdit', |
169 | | | 'QGraphicsSceneMouseEvent','QPainterPath','QStyleOptionGroupBox','QWindowsMime','QDBusAbstractAdaptor', |
170 | | | 'QGraphicsSceneWheelEvent','QPainterPathStroker','QStyleOptionHeader','QWindowsStyle', |
171 | | | 'QDBusAbstractInterface','QGraphicsSimpleTextItem','QPaintEvent','QStyleOptionMenuItem', |
172 | | | 'QWindowStateChangeEvent','QDBusArgument','QGraphicsSvgItem','QPair','QStyleOptionProgressBar', |
173 | | | 'QWindowsXPStyle','QDBusConnection','QGraphicsTextItem','QPalette','QStyleOptionProgressBarV2', |
174 | | | 'QWorkspace','QDBusConnectionInterface','QGraphicsView','QPen','QStyleOptionQ3DockWindow','QWriteLocker', |
175 | | | 'QDBusError','QGridLayout','QPersistentModelIndex','QStyleOptionQ3ListView','QWSCalibratedMouseHandler', |
176 | | | 'QDBusInterface','QGroupBox','QPicture','QStyleOptionQ3ListViewItem','QWSClient','QDBusMessage','QHash', |
177 | | | 'QPictureFormatPlugin','QStyleOptionRubberBand','QWSEmbedWidget','QDBusObjectPath','QHashIterator', |
178 | | | 'QPictureIO','QStyleOptionSizeGrip','QWSEvent','QDBusReply','QHBoxLayout','QPixmap','QStyleOptionSlider', |
179 | | | 'QWSInputMethod','QDBusServer','QHeaderView','QPixmapCache','QStyleOptionSpinBox','QWSKeyboardHandler', |
180 | | | 'QDBusSignature','QHelpEvent','QPlastiqueStyle','QStyleOptionTab','QWSMouseHandler','QDBusVariant', |
181 | | | 'QHideEvent','QPluginLoader','QStyleOptionTabBarBase','QWSPointerCalibrationData','QDecoration', |
182 | | | 'QHostAddress','QPoint','QStyleOptionTabV2','QWSScreenSaver','QDecorationFactory','QHostInfo','QPointer', |
183 | | | 'QStyleOptionTabWidgetFrame','QWSServer','QDecorationPlugin','QHoverEvent','QPointF','QStyleOptionTitleBar', |
184 | | | 'QWSTslibMouseHandler','QDesignerActionEditorInterface','QHttp','QPolygon','QStyleOptionToolBar','QWSWindow', |
185 | | | 'QDesignerContainerExtension','QHttpHeader','QPolygonF','QStyleOptionToolBox','QWSWindowSurface', |
186 | | | 'QDesignerCustomWidgetCollectionInterface','QHttpRequestHeader','QPrintDialog','QStyleOptionToolButton', |
187 | | | 'QX11EmbedContainer','QDesignerCustomWidgetInterface','QHttpResponseHeader','QPrintEngine', |
188 | | | 'QStyleOptionViewItem','QX11EmbedWidget','QDesignerFormEditorInterface','QIcon','QPrinter', |
189 | | | 'QStyleOptionViewItemV2','QX11Info','QDesignerFormWindowCursorInterface','QIconDragEvent','QProcess', |
190 | | | 'QStylePainter','QXmlAttributes','QDesignerFormWindowInterface','QIconEngine','QProgressBar', |
191 | | | 'QStylePlugin','QXmlContentHandler','QDesignerFormWindowManagerInterface','QIconEnginePlugin', |
192 | | | 'QProgressDialog','QSvgRenderer','QXmlDeclHandler','QDesignerMemberSheetExtension','QImage', |
193 | | | 'QProxyModel','QSvgWidget','QXmlDefaultHandler','QDesignerObjectInspectorInterface','QImageIOHandler', |
194 | | | 'QPushButton','QSyntaxHighlighter','QXmlDTDHandler','QDesignerPropertyEditorInterface','QImageIOPlugin', |
195 | | | 'QQueue','QSysInfo','QXmlEntityResolver','QDesignerPropertySheetExtension','QImageReader','QRadialGradient', |
196 | | | 'QSystemLocale','QXmlErrorHandler','QDesignerTaskMenuExtension','QImageWriter','QRadioButton', |
197 | | | 'QSystemTrayIcon','QXmlInputSource','QDesignerWidgetBoxInterface','QInputContext','QRasterPaintEngine', |
198 | | | 'QTabBar','QXmlLexicalHandler','QDesktopServices','QInputContextFactory','QReadLocker','QTabletEvent', |
199 | | | 'QXmlLocator','QDesktopWidget','QInputContextPlugin','QReadWriteLock','QTableView','QXmlNamespaceSupport', |
200 | | | 'QDial','QInputDialog','QRect','QTableWidget','QXmlParseException','QDialog','QInputEvent','QRectF', |
201 | | | 'QTableWidgetItem','QXmlReader','QDialogButtonBox','QInputMethodEvent','QRegExp', |
202 | | | 'QTableWidgetSelectionRange','QXmlSimpleReader' |
203 | | | ) |
204 | | | ), |
205 | | | 'SYMBOLS' => array( |
206 | | | '(', ')', '{', '}', '[', ']', '=', '+', '-', '*', '/', '!', '%', '^', '&', ':', ',', ';', '|', '<', '>' |
207 | | | ), |
208 | | | 'CASE_SENSITIVE' => array( |
209 | | | GESHI_COMMENTS => false, |
210 | | | 1 => false, |
211 | | | 2 => false, |
212 | | | 3 => false, |
213 | | | 4 => false, |
214 | | | 5 => true, |
215 | | | ), |
216 | | | 'STYLES' => array( |
217 | | | 'KEYWORDS' => array( |
218 | | | 1 => 'color: #000000; font-weight:bold;', |
219 | | | 2 => 'color: #0057AE;', |
220 | | | 3 => 'color: #2B74C7;', |
221 | | | 4 => 'color: #0057AE;', |
222 | | | 5 => 'color: #22aadd;' |
223 | | | ), |
224 | | | 'COMMENTS' => array( |
225 | | | 1 => 'color: #888888;', |
226 | | | 2 => 'color: #006E28;', |
227 | | | 'MULTI' => 'color: #888888; font-style: italic;' |
228 | | | ), |
229 | | | 'ESCAPE_CHAR' => array( |
230 | | | |
231 | | | ), |
232 | | | 'BRACKETS' => array( |
233 | | | |
234 | | | ), |
235 | | | 'STRINGS' => array( |
236 | | | |
237 | | | ), |
238 | | | 'NUMBERS' => array( |
239 | | | |
240 | | | GESHI_NUMBER_BIN_PREFIX_0B => 'color: #208080;', |
241 | | | GESHI_NUMBER_OCT_PREFIX => 'color: #208080;', |
242 | | | GESHI_NUMBER_HEX_PREFIX => 'color: #208080;', |
243 | | | GESHI_NUMBER_FLT_SCI_SHORT => 'color:#800080;', |
244 | | | GESHI_NUMBER_FLT_SCI_ZERO => 'color:#800080;', |
245 | | | GESHI_NUMBER_FLT_NONSCI_F => 'color:#800080;', |
246 | | | GESHI_NUMBER_FLT_NONSCI => 'color:#800080;' |
247 | | | ), |
248 | | | 'METHODS' => array( |
249 | | | 1 => 'color: #2B74C7;', |
250 | | | 2 => 'color: #2B74C7;', |
251 | | | 3 => 'color: #2B74C7;' |
252 | | | ), |
253 | | | 'SYMBOLS' => array( |
254 | | | |
255 | | | ), |
256 | | | 'REGEXPS' => array( |
257 | | | ), |
258 | | | 'SCRIPT' => array( |
259 | | | ) |
260 | | | ), |
261 | | | 'URLS' => array( |
262 | | | 1 => '', |
263 | | | 2 => '', |
264 | | | 3 => '', |
265 | | | 4 => '', |
266 | | | 5 => 'http://doc.trolltech.com/latest/{FNAMEL}.html' |
267 | | | ), |
268 | | | 'OOLANG' => true, |
269 | | | 'OBJECT_SPLITTERS' => array( |
270 | | | 1 => '.', |
271 | | | 2 => '::', |
272 | | | 3 => '->', |
273 | | | ), |
274 | | | 'REGEXPS' => array( |
275 | | | ), |
276 | | | 'STRICT_MODE_APPLIES' => GESHI_NEVER, |
277 | | | 'SCRIPT_DELIMITERS' => array( |
278 | | | ), |
279 | | | 'HIGHLIGHT_STRICT_BLOCK' => array( |
280 | | | ), |
281 | | | 'TAB_WIDTH' => 4, |
282 | | | 'PARSER_CONTROL' => array( |
283 | | | 'KEYWORDS' => array( |
284 | | | 'DISALLOWED_BEFORE' => "(?<![a-zA-Z0-9\$_\|\#>|^])", |
285 | | | 'DISALLOWED_AFTER' => "(?![a-zA-Z0-9_<\|%\\-])" |
286 | | | ), |
287 | | | 'OOLANG' => array( |
288 | | | 'MATCH_AFTER' => '~?[a-zA-Z][a-zA-Z0-9_]*', |
289 | | | ) |
290 | | | ) |
291 | | | ); |
292 | | | |
293 | | | ?> |