]>
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"
35 typedef WXSTL_VECTOR_SHALLOW_COPY(int) SPBlockListT
;
39 #include "markup.h" // import MarkupTagsT definition
41 // "colored" codes for highlighted blocks
43 #define RANK_BLACK 0 // common source fragments
44 #define RANK_BLUE 1 // basic types
45 #define RANK_RED 2 // reserved words
46 #define RANK_GREEN 3 // comments
48 // colored block description format :
49 // int( ( rank << 16 ) | ( source_range_len ) )
52 // FOR NOW:: no lagnguage-map selection
54 // source code syntax heighlighter (CPP+JAVA+VB+PASCAL)
61 bool mCollectResultsOn
;
65 bool mCommentIsMultiline
;
68 // assembleResultString == true - instructs painter
69 // to collect each chunk of srouce passed to ProcessSource(),
70 // so that results cann be futher obtained in a single string
71 // instead of vector of block descriptions
73 SourcePainter( bool assembleResultString
= true );
74 virtual ~SourcePainter() {}
76 // can be called multiple times (e.g. on each source line)
77 void ProcessSource( char* src
, int srcLen
);
79 // method, for manually adjusting state of source painter
80 void SetState( bool isInComment
,
81 bool commentIsMultiline
);
83 // reinitializes object - clears results of previouse processing
84 void Init( bool assembleResultString
= true );
86 // generates string of highlighted source for the scipting
87 // language given by "tags" argument
89 virtual void GetResultString(wxString
& result
, MarkupTagsT tags
);
91 // returns vector of block descriptors, see SPBlockListT definition
92 // (block descriptors can be used for fast custom highlighted text generation)
94 SPBlockListT
& GetBlocks();
96 // NOTE:: static method
97 // returns if the given word is a reserved word or basic type identifier
98 static bool IsKeyword( char* word
, int wordLen
);