diff options
author | nyamatongwe <devnull@localhost> | 2003-03-09 04:08:13 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-03-09 04:08:13 +0000 |
commit | 05dac69d8700671ab7970d6c0ecba61102cbf63a (patch) | |
tree | b11df1d33c65b821e0eabb3c84a5503cefae7534 /include/Platform.h | |
parent | b853debf1f65fad3a6a3e0edebeec0ccf73fa5ae (diff) | |
download | scintilla-mirror-05dac69d8700671ab7970d6c0ecba61102cbf63a.tar.gz |
Added Pango text display support to GTK+ platform.
Added WindowID parameter to all Surface initialisation methods as Pango
requires a window to determine the context used for text functions.
AutoSurface changed because of above to take an Editor* argument so it
can then discover the code page and window.
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/Platform.h b/include/Platform.h index ee6e07c34..fa3c9ea10 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -293,9 +293,9 @@ public: virtual ~Surface() {}; static Surface *Allocate(); - virtual void Init()=0; - virtual void Init(SurfaceID sid)=0; - virtual void InitPixMap(int width, int height, Surface *surface_)=0; + virtual void Init(WindowID wid)=0; + virtual void Init(SurfaceID sid, WindowID wid)=0; + virtual void InitPixMap(int width, int height, Surface *surface_, WindowID wid)=0; virtual void Release()=0; virtual bool Initialised()=0; |