aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-11-12 02:13:49 -0800
committerTectu <joel@unormal.org>2012-11-12 02:13:49 -0800
commit0a8a5703913612fe8035c4dad3adb20a90dfe940 (patch)
tree368eeab239b543745f205e9f8b21a3e5ce9186a8 /src
parented73471f99dda8db0c4aa267291d9688b76a3d82 (diff)
parent67ae847970aee780fb28580bd17233df5f5bb3b2 (diff)
downloaduGFX-0a8a5703913612fe8035c4dad3adb20a90dfe940.tar.gz
uGFX-0a8a5703913612fe8035c4dad3adb20a90dfe940.tar.bz2
uGFX-0a8a5703913612fe8035c4dad3adb20a90dfe940.zip
Merge pull request #17 from inmarket/master
gdisp Win32 orientaion support. Revert Macro
Diffstat (limited to 'src')
-rw-r--r--src/gwin.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/gwin.c b/src/gwin.c
index dfc4b1e0..344252f9 100644
--- a/src/gwin.c
+++ b/src/gwin.c
@@ -36,6 +36,9 @@
#include <string.h>
+#define GWIN_CONSOLE_USE_CLEAR_LINES TRUE
+#define GWIN_CONSOLE_USE_FILLED_CHARS FALSE
+
#define GWIN_FLG_DYNAMIC 0x0001
#define GWIN_FIRST_CONTROL_FLAG 0x0002
#define GBTN_FLG_ALLOCTXT (GWIN_FIRST_CONTROL_FLAG<<0)
@@ -633,19 +636,14 @@ void gwinPutChar(GHandle gh, char c) {
#endif
if (c == '\n') {
- /* clear the text at the end of the line */
- if (gcw->cx < gh->width)
- gdispFillArea(gh->x + gcw->cx, gh->y + gcw->cy, gh->width - gcw->cx, gcw->fy, gh->bgcolor);
gcw->cx = 0;
gcw->cy += gcw->fy;
+ // We use lazy scrolling here and only scroll when the next char arrives
} else if (c == '\r') {
// gcw->cx = 0;
} else {
width = gdispGetCharWidth(c, gh->font) + gcw->fp;
if (gcw->cx + width >= gh->width) {
- /* clear the text at the end of the line */
- if (gcw->cy + gcw->fy <= gh->height)
- gdispFillArea(gh->x + gcw->cx, gh->y + gcw->cy, gh->width - (gcw->cx + width), gcw->fy, gh->bgcolor);
gcw->cx = 0;
gcw->cy += gcw->fy;
}
@@ -666,7 +664,16 @@ void gwinPutChar(GHandle gh, char c) {
#endif
}
+#if GWIN_CONSOLE_USE_CLEAR_LINES
+ /* clear to the end of the line */
+ if (gcw->cx == 0)
+ gdispFillArea(gh->x, gh->y + gcw->cy, gh->width, gcw->fy, gh->bgcolor);
+#endif
+#if GWIN_CONSOLE_USE_FILLED_CHARS
+ gdispFillChar(gh->x + gcw->cx, gh->y + gcw->cy, c, gh->font, gh->color, gh->bgcolor);
+#else
gdispDrawChar(gh->x + gcw->cx, gh->y + gcw->cy, c, gh->font, gh->color);
+#endif
/* update cursor */
gcw->cx += width;