| 38 | fs::Explorer *file_exp; |
| 39 | |
| 40 | inline std::vector<std::string> ReadLines(const u32 line_offset, const u32 count) { |
| 41 | if(this->read_hex) { |
| 42 | return this->file_exp->ReadFileFormatHex(this->path, line_offset, count); |
| 43 | } |
| 44 | else { |
| 45 | return this->file_exp->ReadFileLines(this->path, line_offset, count); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | void OnInput(const u64 keys_down, const u64 keys_up, const u64 keys_held, const pu::ui::TouchPoint touch_pos); |
| 50 | bool ScrollUp(); |
no test coverage detected