| 90 | } |
| 91 | |
| 92 | bool FileContentLayout::MoveLeft() { |
| 93 | if(this->x_offset > 0) { |
| 94 | this->x_offset--; |
| 95 | return true; |
| 96 | } |
| 97 | return false; |
| 98 | } |
| 99 | |
| 100 | bool FileContentLayout::MoveRight() { |
| 101 | if((this->x_offset + this->max_line_length) < this->cur_read_lines_max_length) { |