aboutsummaryrefslogtreecommitdiff
path: root/desktop-utilities/lumina-terminal/TerminalWidget.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-04-14 16:21:02 -0400
committerKen Moore <moorekou@gmail.com>2016-04-14 16:21:02 -0400
commit429650ab7cf4eaebd470003c734c98c93537984a (patch)
tree699bf0d1ac665d14dce26ad303b476a8697838ce /desktop-utilities/lumina-terminal/TerminalWidget.h
parentClean up a bit more of the terminal widget/interactions. (diff)
downloadlumina-429650ab7cf4eaebd470003c734c98c93537984a.tar.gz
lumina-429650ab7cf4eaebd470003c734c98c93537984a.tar.bz2
lumina-429650ab7cf4eaebd470003c734c98c93537984a.zip
Get some more of the terminal cleaned up. Now "vi" has partial support (still no functional arrow keys though)
Diffstat (limited to 'desktop-utilities/lumina-terminal/TerminalWidget.h')
-rw-r--r--desktop-utilities/lumina-terminal/TerminalWidget.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop-utilities/lumina-terminal/TerminalWidget.h b/desktop-utilities/lumina-terminal/TerminalWidget.h
index c3cef93e..32fd55ad 100644
--- a/desktop-utilities/lumina-terminal/TerminalWidget.h
+++ b/desktop-utilities/lumina-terminal/TerminalWidget.h
@@ -42,6 +42,9 @@ private:
//Outgoing Data parsing
void sendKeyPress(int key);
+ //Special incoming data flags
+ int startrow, endrow; //indexes for the first/last row ("\x1b[A;Br" CC)
+ bool altkeypad;
private slots:
void UpdateText();
void ShellClosed();
bgstack15