text_offset_y     105 modules/gui_tbox.c coord text_offset_x, text_offset_y, key_offset_x;
text_offset_y     202 modules/gui_tbox.c             text_offset_y = y+(tbox_height*FONT_HEIGHT)+SPACING_BELOW_TEXT;
text_offset_y     205 modules/gui_tbox.c             tbox_buttons_y = text_offset_y+FONT_HEIGHT+SPACING_BELOW_TEXT; // on place of symbol line
text_offset_y     212 modules/gui_tbox.c         draw_string_justified(text_offset_x, text_offset_y, text+offset, MAKE_COLOR(COLOR_BLACK, COLOR_WHITE), 0, fldlen*FONT_WIDTH, TEXT_LEFT|TEXT_FILL);
text_offset_y     215 modules/gui_tbox.c         draw_char(text_offset_x+fldlen*FONT_WIDTH, text_offset_y, ((strlen(text)-offset)>fldlen) ? '\20' : ' ', MAKE_COLOR(COLOR_GREY, COLOR_RED));
text_offset_y     216 modules/gui_tbox.c         draw_char(text_offset_x-FONT_WIDTH, text_offset_y, (offset>0) ? '\21' : ' ', MAKE_COLOR(COLOR_GREY, COLOR_RED));
text_offset_y     263 modules/gui_tbox.c     draw_line(text_offset_x+(1+cursor-offset)*FONT_WIDTH, text_offset_y+1, text_offset_x+(1+cursor-offset)*FONT_WIDTH, text_offset_y+FONT_HEIGHT-3, cursor_to_draw ? COLOR_YELLOW : COLOR_GREY);
text_offset_y     269 modules/gui_tbox.c     draw_line(text_offset_x+(1+cursor-offset)*FONT_WIDTH, text_offset_y+1, text_offset_x+(1+cursor-offset)*FONT_WIDTH, text_offset_y+FONT_HEIGHT-3, COLOR_BLACK);