aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/ExternalLexer.h
blob: 62d7869919b568aade1bb08d7838a5afd78e6d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Scintilla source code edit control
/** @file ExternalLexer.h
 ** Support external lexers in DLLs.
 **/
// Copyright 2001 Simon Steele <ss@pnotepad.org>, portions copyright Neil Hodgson.
// The License.txt file describes the conditions under which this software may be distributed.

#ifndef EXTERNALLEXER_H
#define EXTERNALLEXER_H

// External Lexer function definitions...
typedef void (__stdcall *ExtLexerFunction)(unsigned int lexer, unsigned int startPos, int length, int initStyle,
                  char *words[], WindowID window, char *props);
typedef void (__stdcall *ExtFoldFunction)(unsigned int lexer, unsigned int startPos, int length, int initStyle,
                  char *words[], WindowID window, char *props);
typedef void* (__stdcall *GetLexerFunction)(unsigned int Index);
typedef int (__stdcall *GetLexerCountFn)();
typedef void (__stdcall *GetLexerNameFn)(unsigned int Index, char *name, int buflength);

// Sub-class of LexerModule to use an external lexer.
class ExternalLexerModule : protected LexerModule {
protected:
	ExtLexerFunction fneLexer;
	ExtFoldFunction fneFolder;
	int externalLanguage;
	char name[100];
public:
	ExternalLexerModule(int language_, LexerFunction fnLexer_, 
		const char *languageName_=0, LexerFunction fnFolder_=0) : LexerModule(language_, fnLexer_, 0, fnFolder_){
		strncpy(name, languageName_, sizeof(name));
		languageName = name;
	};
	virtual void Lex(unsigned int startPos, int lengthDoc, int initStyle,
					WordList *keywordlists[], Accessor &styler);
	virtual void Fold(unsigned int startPos, int lengthDoc, int initStyle,
					WordList *keywordlists[], Accessor &styler);
	virtual void SetExternal(ExtLexerFunction fLexer, ExtFoldFunction fFolder, int index);
};

// LexerMinder points to an ExternalLexerModule - so we don't leak them.
class LexerMinder {
public:
	ExternalLexerModule *self;
	LexerMinder *next;
};

// LexerLibrary exists for every External Lexer DLL, contains LexerMinders.
class LexerLibrary {
public:
	LexerLibrary(LPCTSTR ModuleName);
	~LexerLibrary();
	void Release();
	// Variables
	LexerLibrary	*next;
	SString			m_sModuleName;
private:
	HMODULE m_hModule;
	LexerMinder *first;
	LexerMinder *last;
};

// LexerManager manages external lexers, contains LexerLibrarys.
class LexerManager {
	friend class LMMinder;
public:
	LexerManager();
	~LexerManager();
	void Load();
	static LexerManager *GetInstance();
private:
	bool m_bLoaded;
	void EnumerateLexers();
	static int UseCount;
	static LexerLibrary *first;
	static LexerLibrary *last;
	static LexerManager *firstlm;
};

class LMMinder {
public:
	~LMMinder();
};

#endif