aboutsummaryrefslogtreecommitdiff
path: root/desktop-utilities/lumina-terminal/TermWindow.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-04-13 13:31:20 -0400
committerKen Moore <moorekou@gmail.com>2016-04-13 13:31:20 -0400
commit651ba956dc1b5f257fef00f757bc8ec61bd1414e (patch)
tree00e0259a7f50f455595816e028f5986d6e974e4c /desktop-utilities/lumina-terminal/TermWindow.h
parentMinor cleanup of some build system files. No real changes. (diff)
downloadlumina-651ba956dc1b5f257fef00f757bc8ec61bd1414e.tar.gz
lumina-651ba956dc1b5f257fef00f757bc8ec61bd1414e.tar.bz2
lumina-651ba956dc1b5f257fef00f757bc8ec61bd1414e.zip
Get the new terminal in a more functional state - highlight/copy/paste are now functional as well.
Diffstat (limited to 'desktop-utilities/lumina-terminal/TermWindow.h')
-rw-r--r--desktop-utilities/lumina-terminal/TermWindow.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/desktop-utilities/lumina-terminal/TermWindow.h b/desktop-utilities/lumina-terminal/TermWindow.h
index 135da0ef..d68c5457 100644
--- a/desktop-utilities/lumina-terminal/TermWindow.h
+++ b/desktop-utilities/lumina-terminal/TermWindow.h
@@ -36,7 +36,7 @@ public slots:
private:
QTabWidget *tabWidget;
QSettings *settings;
- QShortcut *hideS, *closeS, *newTabS, *closeTabS;
+ QShortcut *hideS, *closeS, *newTabS, *closeTabS, *prevTabS, *nextTabS;
int screennum;
bool onTop, CLOSING;
QPropertyAnimation *ANIM;
@@ -51,7 +51,9 @@ private slots:
void New_Tab();
void Close_Tab(int tab = -1);
void Close_Tab(QString ID); //alternate form of the close routine - based on tab ID
-
+ void Next_Tab();
+ void Prev_Tab();
+ void focusOnWidget();
//Animation finishing
void AnimFinished();
bgstack15