summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/gwps.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/gui/gwps.h b/apps/gui/gwps.h
index 174dff672b..ecf39ef774 100644
--- a/apps/gui/gwps.h
+++ b/apps/gui/gwps.h
@@ -58,7 +58,7 @@
58/* wps_data*/ 58/* wps_data*/
59 59
60#ifdef HAVE_LCD_BITMAP 60#ifdef HAVE_LCD_BITMAP
61struct gui_img{ 61struct gui_img {
62 struct bitmap bm; 62 struct bitmap bm;
63 struct viewport* vp; /* The viewport to display this image in */ 63 struct viewport* vp; /* The viewport to display this image in */
64 short int x; /* x-pos */ 64 short int x; /* x-pos */
@@ -73,7 +73,9 @@ struct gui_img{
73struct progressbar { 73struct progressbar {
74 /* regular pb */ 74 /* regular pb */
75 short x; 75 short x;
76 /* Negative if y is line number based (-line_num-1), positive if set explicitely */ 76 /* >=0: explicitly set in the tag -> y-coord within the viewport
77 <0 : not set in the tag -> negated 1-based line number within
78 the viewport. y-coord will be computed based on the font height */
77 short y; 79 short y;
78 short width; 80 short width;
79 short height; 81 short height;