* Print current position */
| 117 | * Print current position |
| 118 | */ |
| 119 | static void print_position(WINDOW *win) |
| 120 | { |
| 121 | int percent; |
| 122 | |
| 123 | wattrset(win, dlg.position_indicator.atr); |
| 124 | wbkgdset(win, dlg.position_indicator.atr & A_COLOR); |
| 125 | percent = (page - buf) * 100 / strlen(buf); |
| 126 | wmove(win, getmaxy(win) - 3, getmaxx(win) - 9); |
| 127 | wprintw(win, "(%3d%%)", percent); |
| 128 | } |
| 129 | |
| 130 | /* |
| 131 | * refresh window content |