aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/WindowAccessor.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-05-01 11:12:42 +0000
committernyamatongwe <devnull@localhost>2001-05-01 11:12:42 +0000
commit2bf292a604d2b8e2bb07be283d8ab0067f24a43b (patch)
tree2d1d090c6804a9af2f81f04c4554c22e819a1487 /include/WindowAccessor.h
parent581baaf98ebddddf0984b7b5bab90216069ac8b6 (diff)
downloadscintilla-mirror-2bf292a604d2b8e2bb07be283d8ab0067f24a43b.tar.gz
External lexer feature added by Simon allows lexers to be housed in DLLs with
a .lexer extension which are automatically loaded at startup. Minor fix to IME support in ScintillaWin.cxx to deal with current mingw headers.
Diffstat (limited to 'include/WindowAccessor.h')
-rw-r--r--include/WindowAccessor.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/WindowAccessor.h b/include/WindowAccessor.h
index 4810a4aa9..7fd8e30fd 100644
--- a/include/WindowAccessor.h
+++ b/include/WindowAccessor.h
@@ -42,6 +42,9 @@ public:
int GetPropertyInt(const char *key, int defaultValue=0) {
return props.GetInt(key, defaultValue);
}
+ char *GetProperties() {
+ return props.ToString();
+ }
void StartAt(unsigned int start, char chMask=31);
void SetFlags(char chFlags_, char chWhile_) {chFlags = chFlags_; chWhile = chWhile_; };