aboutsummaryrefslogtreecommitdiff
path: root/desktop-utilities/lumina-terminal/TermWindow.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-04-11 16:28:13 -0400
committerKen Moore <moorekou@gmail.com>2016-04-11 16:28:13 -0400
commite36db04274e700c154e26e7c459c36329afb2c42 (patch)
treefc8eff3481acd4f7bd0ffabf16fd0231e767af57 /desktop-utilities/lumina-terminal/TermWindow.h
parentEnsure that the current audio volume gets saved to the local file on session ... (diff)
downloadlumina-e36db04274e700c154e26e7c459c36329afb2c42.tar.gz
lumina-e36db04274e700c154e26e7c459c36329afb2c42.tar.bz2
lumina-e36db04274e700c154e26e7c459c36329afb2c42.zip
Get more of the terminal working. Now all the special xterm stuff is getting trimmed out.
Diffstat (limited to 'desktop-utilities/lumina-terminal/TermWindow.h')
-rw-r--r--desktop-utilities/lumina-terminal/TermWindow.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop-utilities/lumina-terminal/TermWindow.h b/desktop-utilities/lumina-terminal/TermWindow.h
index ae40928f..135da0ef 100644
--- a/desktop-utilities/lumina-terminal/TermWindow.h
+++ b/desktop-utilities/lumina-terminal/TermWindow.h
@@ -13,11 +13,12 @@
#include <QDir>
#include <QShortcut>
#include <QMouseEvent>
+#include <QSettings>
class TermWindow : public QWidget{
Q_OBJECT
public:
- TermWindow();
+ TermWindow(QSettings *set);
~TermWindow();
void cleanup(); //called right before the window is closed
@@ -34,6 +35,7 @@ public slots:
private:
QTabWidget *tabWidget;
+ QSettings *settings;
QShortcut *hideS, *closeS, *newTabS, *closeTabS;
int screennum;
bool onTop, CLOSING;
bgstack15