#pragma once #include namespace Swift { class QtTabbable : public QWidget { Q_OBJECT public: bool isWidgetSelected(); virtual bool isWidgetAlerting() {return false;}; protected: QtTabbable() : QWidget() {}; signals: void titleUpdated(); void windowClosing(); void windowOpening(); void wantsToActivate(); }; }