diff options
author | Kevin Smith <git@kismith.co.uk> | 2009-06-15 21:05:33 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2009-06-15 21:05:33 (GMT) |
commit | 5f1d284169c89c30f061603a9f45ab753f4b8967 (patch) | |
tree | 8e50c8eb3ac5c9e5178983f0bbd7dc69e42311af /Swift/QtUI/QtTabbable.h | |
parent | 2e014f200768c91a1504002af1be5c0ac5eb0f42 (diff) | |
download | swift-5f1d284169c89c30f061603a9f45ab753f4b8967.zip swift-5f1d284169c89c30f061603a9f45ab753f4b8967.tar.bz2 |
Update tab titles for unread count.
Diffstat (limited to 'Swift/QtUI/QtTabbable.h')
-rw-r--r-- | Swift/QtUI/QtTabbable.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Swift/QtUI/QtTabbable.h b/Swift/QtUI/QtTabbable.h new file mode 100644 index 0000000..dfae498 --- /dev/null +++ b/Swift/QtUI/QtTabbable.h @@ -0,0 +1,15 @@ +#pragma once + +#include <QWidget> + + +namespace Swift { + class QtTabbable : public QWidget { + Q_OBJECT + protected: + QtTabbable() : QWidget() {}; + + signals: + void titleUpdated(); + }; +} |