| 12 | using namespace Konsole; |
| 13 | |
| 14 | ScreenWindow::ScreenWindow(Screen *screen, QObject *parent) |
| 15 | : QObject(parent) |
| 16 | , _screen(nullptr) |
| 17 | , _windowBuffer(nullptr) |
| 18 | , _windowBufferSize(0) |
| 19 | , _bufferNeedsUpdate(true) |
| 20 | , _windowLines(1) |
| 21 | , _currentLine(0) |
| 22 | , _currentResultLine(-1) |
| 23 | , _trackOutput(true) |
| 24 | , _scrollCount(0) |
| 25 | { |
| 26 | setScreen(screen); |
| 27 | } |
| 28 | |
| 29 | ScreenWindow::~ScreenWindow() |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected