]>
git.saurik.com Git - wxWidgets.git/blob - utils/HelpGen/src/sourcepainter.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Contrib. demo
4 // Author: Aleksandras Gluchovas
8 // Copyright: (c) Aleskandars Gluchovas
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __SOURCEPAINTER_G__
13 #define __SOURCEPAINTER_G__
16 #define ASSERT(x) if (!(x)) throw
19 #if defined( wxUSE_TEMPLATE_STL )
22 typedef vector
<int> SPBlockListT
;
33 #include "wx/string.h"
36 #define string wxString
38 typedef WXSTL_VECTOR_SHALLOW_COPY(int) SPBlockListT
;
42 #include "markup.h" // import MarkupTagsT definition
44 // "colored" codes for highlighted blocks
46 #define RANK_BLACK 0 // common source fragments
47 #define RANK_BLUE 1 // basic types
48 #define RANK_RED 2 // reserved words
49 #define RANK_GREEN 3 // comments
51 // colored block description format :
52 // int( ( rank << 16 ) | ( source_range_len ) )
55 // FOR NOW:: no lagnguage-map selection
57 // source code syntax heighlighter (CPP+JAVA+VB+PASCAL)
64 bool mCollectResultsOn
;
68 bool mCommentIsMultiline
;
71 // assembleResultString == TRUE - instructs painter
72 // to collect each chunk of srouce passed to ProcessSource(),
73 // so that results cann be futher obtained in a single string
74 // instead of vector of block descriptions
76 SourcePainter( bool assembleResultString
= TRUE
);
77 virtual ~SourcePainter() {}
79 // can be called multiple times (e.g. on each source line)
80 void ProcessSource( char* src
, int srcLen
);
82 // method, for manually adjusting state of source painter
83 void SetState( bool isInComment
,
84 bool commentIsMultiline
);
86 // reinitializes object - clears results of previouse processing
87 void Init( bool assembleResultString
= TRUE
);
89 // generates string of highlighted source for the scipting
90 // language given by "tags" argument
92 virtual void GetResultString(string
& result
, MarkupTagsT tags
);
94 // returns vector of block descriptors, see SPBlockListT definition
95 // (block descriptors can be used for fast custom hightlighted text generation)
97 SPBlockListT
& GetBlocks();
99 // NOTE:: static method
100 // returns if the given word is a reserved word or basic type identifier
101 static bool IsKeyword( char* word
, int wordLen
);