diff options
| author | nyamatongwe <devnull@localhost> | 2000-04-06 08:43:00 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-04-06 08:43:00 +0000 | 
| commit | 21b66126441a573050340f344972f35de7f1a52d (patch) | |
| tree | 1352720978356ddc213962ccf1dc248c3b061491 /include/Platform.h | |
| parent | 884b65511efa0fa9c2172d2e70bc73f1fcd30e47 (diff) | |
| download | scintilla-mirror-21b66126441a573050340f344972f35de7f1a52d.tar.gz | |
Initial Unicode support code.
Diffstat (limited to 'include/Platform.h')
| -rw-r--r-- | include/Platform.h | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Platform.h b/include/Platform.h index 021bcf686..1ac931ce2 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -221,6 +221,7 @@ public:  // A surface abstracts a place to draw  class Surface {  private: +	bool unicodeMode;  #if PLAT_GTK  	GdkDrawable *drawable;  	GdkGC *gc; @@ -293,6 +294,10 @@ public:  	int SetPalette(Palette *pal, bool inBackGround);  	void SetClip(PRectangle rc);  	void FlushCachedState(); + +	void SetUnicodeMode(bool unicodeMode_) { +		unicodeMode=unicodeMode_; +	}  };  // Class to hide the details of window manipulation  | 
