Visualization Library 2.0.0-b5

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
Classes | Variables
sources Namespace Reference

Classes

class  SourceBlock
 SOURCE BLOCK CLASS. More...
 
class  SourceBlockFormat
 BLOCK FORMAT PATTERN. More...
 
class  SourceProcessor
 SOURCE PROCESSOR CLASS. More...
 

Variables

string start
 
string column
 
 re_source_block_format1 = SourceBlockFormat( 1, start, column, start )
 
string end
 
 re_source_block_format2 = SourceBlockFormat( 2, start, column, end )
 
list re_source_block_formats = [re_source_block_format1, re_source_block_format2]
 
 re_markup_tag1 = re.compile( )
 
 re_markup_tag2 = re.compile( )
 
list re_markup_tags = [re_markup_tag1, re_markup_tag2]
 
 re_crossref = re.compile( r'@((?:\w|-)*)(.*)' )
 
 re_italic = re.compile( r"_(\w(\w|')*)_(.*)" )
 
 re_bold = re.compile( r"\*(\w(\w|')*)\*(.*)" )
 
 re_source_sep = re.compile( r'\s*/\*\s*\*/' )
 
 re_source_crossref = re.compile( r'(\W*)(\w*)' )
 
 re_source_keywords = re.compile( , re.VERBOSE )
 

Variable Documentation

◆ column

string sources.column
Initial value:
1 = r'''
2  \s* # any number of whitespace
3  /\*{1} # followed by '/' and precisely one asterisk
4  ([^*].*) # followed by anything (group 1)
5  \*{1}/ # followed by one asterisk and a '/'
6  \s*$ # probably followed by whitespace
7 '''

Definition at line 66 of file sources.py.

◆ end

string sources.end
Initial value:
1 = r'''
2  \s* # any number of whitespace
3  \*+/ # followed by at least one asterisk, then '/'
4 '''

Definition at line 101 of file sources.py.

◆ re_bold

sources.re_bold = re.compile( r"\*(\w(\w|')*)\*(.*)" )

Definition at line 141 of file sources.py.

◆ re_crossref

sources.re_crossref = re.compile( r'@((?:\w|-)*)(.*)' )

Definition at line 135 of file sources.py.

◆ re_italic

sources.re_italic = re.compile( r"_(\w(\w|')*)_(.*)" )

Definition at line 140 of file sources.py.

◆ re_markup_tag1

sources.re_markup_tag1 = re.compile( )

Definition at line 123 of file sources.py.

◆ re_markup_tag2

sources.re_markup_tag2 = re.compile( )

Definition at line 124 of file sources.py.

◆ re_markup_tags

list sources.re_markup_tags = [re_markup_tag1, re_markup_tag2]

Definition at line 130 of file sources.py.

◆ re_source_block_format1

sources.re_source_block_format1 = SourceBlockFormat( 1, start, column, start )

Definition at line 74 of file sources.py.

◆ re_source_block_format2

sources.re_source_block_format2 = SourceBlockFormat( 2, start, column, end )

Definition at line 106 of file sources.py.

◆ re_source_block_formats

list sources.re_source_block_formats = [re_source_block_format1, re_source_block_format2]

Definition at line 113 of file sources.py.

◆ re_source_crossref

sources.re_source_crossref = re.compile( r'(\W*)(\w*)' )

Definition at line 151 of file sources.py.

◆ re_source_keywords

sources.re_source_keywords = re.compile( , re.VERBOSE )

Definition at line 156 of file sources.py.

◆ re_source_sep

sources.re_source_sep = re.compile( r'\s*/\*\s*\*/' )

Definition at line 146 of file sources.py.

◆ start

string sources.start
Initial value:
1 = r'''
2  \s* # any number of whitespace
3  /\*{2,}/ # followed by '/' and at least two asterisks then '/'
4  \s*$ # probably followed by whitespace
5 '''

Definition at line 60 of file sources.py.