summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI')
-rw-r--r--Swift/QtUI/QtTabbable.cpp4
-rw-r--r--Swift/QtUI/QtTabbable.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/Swift/QtUI/QtTabbable.cpp b/Swift/QtUI/QtTabbable.cpp
index 8473529..dafdd3f 100644
--- a/Swift/QtUI/QtTabbable.cpp
+++ b/Swift/QtUI/QtTabbable.cpp
@@ -1,12 +1,16 @@
#include "QtTabbable.h"
#include <QApplication>
namespace Swift {
+QtTabbable::~QtTabbable() {
+ emit windowClosing();
+}
+
bool QtTabbable::isWidgetSelected() {
/*isActiveWindow() shouldn't be necessary, but I don't trust it as far as I can throw it*/
return isActiveWindow() && isAncestorOf(QApplication::focusWidget());
}
}
diff --git a/Swift/QtUI/QtTabbable.h b/Swift/QtUI/QtTabbable.h
index c28e301..be528ce 100644
--- a/Swift/QtUI/QtTabbable.h
+++ b/Swift/QtUI/QtTabbable.h
@@ -4,12 +4,13 @@
namespace Swift {
class QtTabbable : public QWidget {
Q_OBJECT
public:
+ ~QtTabbable();
bool isWidgetSelected();
virtual bool isWidgetAlerting() {return false;};
protected:
QtTabbable() : QWidget() {};
signals: