diff options
| author | Kevin Smith <git@kismith.co.uk> | 2009-12-19 19:52:05 (GMT) | 
|---|---|---|
| committer | Kevin Smith <git@kismith.co.uk> | 2009-12-19 19:52:05 (GMT) | 
| commit | ca44245623972e6d52fe72acca09a96772d7e26a (patch) | |
| tree | 6639114733f2769269080efadb24080216745fd6 /Swift/QtUI/QtTabWidget.h | |
| parent | bdb8ace202917809c5492aa37921e0ffd0354730 (diff) | |
| download | swift-ca44245623972e6d52fe72acca09a96772d7e26a.zip swift-ca44245623972e6d52fe72acca09a96772d7e26a.tar.bz2  | |
Colour tabs with waiting messages.
Resolves: #278
Diffstat (limited to 'Swift/QtUI/QtTabWidget.h')
| -rw-r--r-- | Swift/QtUI/QtTabWidget.h | 12 | 
1 files changed, 12 insertions, 0 deletions
diff --git a/Swift/QtUI/QtTabWidget.h b/Swift/QtUI/QtTabWidget.h new file mode 100644 index 0000000..a7721bf --- /dev/null +++ b/Swift/QtUI/QtTabWidget.h @@ -0,0 +1,12 @@ +#pragma once +#include <QTabWidget> + +namespace Swift { +	class QtTabWidget : public QTabWidget { +		Q_OBJECT +		public: +			QtTabWidget(QWidget* parent); +			~QtTabWidget(); +			QTabBar* tabBar(); +	}; +}  | 
 Swift