cursor            213 modules/games/gui_4wins.c     cursor(cursor_position, (cur_player == 1) ? P1_COLOR : P2_COLOR);
cursor            311 modules/games/gui_4wins.c     cursor(cursor_position, BK_COLOR);
cursor            326 modules/games/gui_4wins.c     cursor(cursor_position, (cur_player == 1) ? P1_COLOR : P2_COLOR);
cursor             94 modules/gui_tbox.c int cursor;
cursor            144 modules/gui_tbox.c     cursor = -1;
cursor            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);
cursor            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);
cursor            272 modules/gui_tbox.c         if (cursor >= 0)
cursor            274 modules/gui_tbox.c             cursor--;
cursor            275 modules/gui_tbox.c             if (maxlen>MAX_TEXT_WIDTH && offset != 0 && cursor<offset)
cursor            281 modules/gui_tbox.c         if (cursor < (maxlen-1))
cursor            283 modules/gui_tbox.c             cursor++;
cursor            284 modules/gui_tbox.c             if (maxlen>MAX_TEXT_WIDTH && (cursor-offset)>=MAX_TEXT_WIDTH)
cursor            297 modules/gui_tbox.c         for (i=cursor; i<strlen(text); i++)
cursor            305 modules/gui_tbox.c         for (i=(strlen(text) < maxlen-1)?strlen(text):maxlen-1; i>cursor; i--)
cursor            317 modules/gui_tbox.c         if (text[cursor+1] != '\0')
cursor            320 modules/gui_tbox.c         text[cursor] = ' ';
cursor            331 modules/gui_tbox.c     if (cursor >= 0)
cursor            335 modules/gui_tbox.c         if ((strlen(text) >= MAX_TEXT_WIDTH) && ((cursor-offset) >= MAX_TEXT_WIDTH-1))
cursor            349 modules/gui_tbox.c         text[cursor] = tstr[curchar];
cursor            360 modules/gui_tbox.c             if (cursor < (maxlen-1))
cursor            362 modules/gui_tbox.c                 if (text[cursor+1] != '\0') tbox_move_text(1); //check whether cursor is at the end of the string
cursor            367 modules/gui_tbox.c             text[cursor] = tstr[curchar];
cursor            422 modules/gui_tbox.c                 if (text[cursor+1] != '\0') tbox_move_cursor(1);
cursor            438 modules/gui_tbox.c                 if (text[cursor+1] != '\0') tbox_move_cursor(1);
cursor            451 modules/gui_tbox.c                     if ((cursor+1)<offset) cursor++;
cursor            459 modules/gui_tbox.c                     if ((cursor-offset)>=MAX_TEXT_WIDTH) cursor--;