summaryrefslogtreecommitdiff
path: root/otk/rendercontrol.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-20 20:20:06 +0000
committerDana Jansens <danakj@orodu.net>2003-01-20 20:20:06 +0000
commit25f0151154c90b1c72f049e200d942fb2c18ddc5 (patch)
tree64cf6cfb2dc773b2f1f59cd8c63df16f110cf6a7 /otk/rendercontrol.hh
parent68a6fce53badb38ba3dc387c4b5c86c02801f657 (diff)
drawSolidBackground seems to work :)
Diffstat (limited to 'otk/rendercontrol.hh')
-rw-r--r--otk/rendercontrol.hh11
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;
};
}