diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-20 20:20:06 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-20 20:20:06 +0000 |
| commit | 25f0151154c90b1c72f049e200d942fb2c18ddc5 (patch) | |
| tree | 64cf6cfb2dc773b2f1f59cd8c63df16f110cf6a7 /otk/rendercontrol.hh | |
| parent | 68a6fce53badb38ba3dc387c4b5c86c02801f657 (diff) | |
drawSolidBackground seems to work :)
Diffstat (limited to 'otk/rendercontrol.hh')
| -rw-r--r-- | otk/rendercontrol.hh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/otk/rendercontrol.hh b/otk/rendercontrol.hh index 20ec8c1d..f4ae6493 100644 --- a/otk/rendercontrol.hh +++ b/otk/rendercontrol.hh @@ -63,18 +63,21 @@ protected: RenderControl(int screen); + virtual void drawSolidBackground(Surface& sf, + const RenderTexture& texture) const; + public: virtual ~RenderControl(); static RenderControl *getRenderControl(int screen); //! Draws a string onto a Surface - virtual void drawString(Surface& sf, const Font &font, int x, int y, - const Color &color, const ustring &string) const; + virtual void drawString(Surface& sf, const Font& font, int x, int y, + const Color& color, const ustring& string) const; //! Draws a background onto a Surface, as specified by a RenderTexture - virtual void drawBackground(Surface &sf, - const RenderTexture &texture) const = 0; + virtual void drawBackground(Surface& sf, + const RenderTexture& texture) const = 0; }; } |
