aboutsummaryrefslogtreecommitdiff
path: root/desktop-utilities/lumina-terminal/TerminalWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'desktop-utilities/lumina-terminal/TerminalWidget.h')
-rw-r--r--desktop-utilities/lumina-terminal/TerminalWidget.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop-utilities/lumina-terminal/TerminalWidget.h b/desktop-utilities/lumina-terminal/TerminalWidget.h
index 49b255ff..18f0054f 100644
--- a/desktop-utilities/lumina-terminal/TerminalWidget.h
+++ b/desktop-utilities/lumina-terminal/TerminalWidget.h
@@ -25,9 +25,11 @@ public:
private:
TTYProcess *PROC;
- //QProcess *PROC;
QSocketNotifier *sn;
+
+ void applyData(QByteArray data); //overall data parsing
+ void applyANSI(QByteArray code); //individual code application
private slots:
void UpdateText();
bgstack15