diff options
author | Tectu <joel@unormal.org> | 2013-04-05 05:34:35 -0700 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2013-04-05 05:34:35 -0700 |
commit | 89abbefc0ab5b875a5ec4f596a406b325dccdbc9 (patch) | |
tree | 62ee1f1e179797de6f9a87a05d80a1295f7f52fc /src | |
parent | 48c5fbabb1e4f7c3c682ed8df977d5952e563d1f (diff) | |
parent | be919fc38d46339a254e0d789c69773f7e600ff5 (diff) | |
download | uGFX-89abbefc0ab5b875a5ec4f596a406b325dccdbc9.tar.gz uGFX-89abbefc0ab5b875a5ec4f596a406b325dccdbc9.tar.bz2 uGFX-89abbefc0ab5b875a5ec4f596a406b325dccdbc9.zip |
Merge pull request #59 from inmarket/master
Generic GWIN Draw routine
Diffstat (limited to 'src')
-rw-r--r-- | src/gwin/gwin.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/gwin/gwin.c b/src/gwin/gwin.c index 58d75694..9f009fa1 100644 --- a/src/gwin/gwin.c +++ b/src/gwin/gwin.c @@ -107,6 +107,21 @@ void gwinDestroyWindow(GHandle gh) { } } +void gwinDraw(GHandle gh) { + switch(gh->type) { + #if GWIN_NEED_BUTTON + case GW_BUTTON: + gwinButtonDraw(gh); + break; + #endif + #if GWIN_NEED_SLIDER + case GW_SLIDER: + gwinSliderDraw(gh); + break; + #endif + } +} + #if GDISP_NEED_TEXT void gwinSetFont(GHandle gh, font_t font) { gh->font = font; |