diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-20 06:11:12 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-20 06:11:12 +0000 |
| commit | d8d9b42777ace234f3471918e1210062578f8188 (patch) | |
| tree | 915e9aa986ba44dda4c357bc834c68b4dc550525 /otk/focuswidget.hh | |
| parent | 0ba441fe8f379ec506000f7fa29f867cb6bc0d51 (diff) | |
widegt using new render system
Diffstat (limited to 'otk/focuswidget.hh')
| -rw-r--r-- | otk/focuswidget.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/otk/focuswidget.hh b/otk/focuswidget.hh index a73bcfb7..b951dcbd 100644 --- a/otk/focuswidget.hh +++ b/otk/focuswidget.hh @@ -17,12 +17,12 @@ public: virtual void focus(void); virtual void unfocus(void); - virtual void setTexture(Texture *texture); + virtual void setTexture(RenderTexture *texture); virtual void setBorderColor(const Color *color); - inline void setUnfocusTexture(Texture *texture) + inline void setUnfocusTexture(RenderTexture *texture) { _unfocus_texture = texture; } - inline Texture *getUnfocusTexture(void) const + inline RenderTexture *getUnfocusTexture(void) const { return _unfocus_texture; } inline void setUnfocusBorderColor(const Color *color) @@ -35,8 +35,8 @@ public: private: - Texture *_unfocus_texture; - Texture *_focus_texture; + RenderTexture *_unfocus_texture; + RenderTexture *_focus_texture; const Color *_unfocus_bcolor; const Color *_focus_bcolor; |
