diff options
Diffstat (limited to 'Swift/QtUI/QtTabbable.h')
-rw-r--r-- | Swift/QtUI/QtTabbable.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Swift/QtUI/QtTabbable.h b/Swift/QtUI/QtTabbable.h new file mode 100644 index 0000000..9894bfe --- /dev/null +++ b/Swift/QtUI/QtTabbable.h @@ -0,0 +1,16 @@ +#pragma once + +#include <QWidget> + + +namespace Swift { + class QtTabbable : public QWidget { + Q_OBJECT + protected: + QtTabbable() : QWidget() {}; + + signals: + void titleUpdated(); + void windowClosing(); + }; +} |