diff options
| author | Kevin Smith <git@kismith.co.uk> | 2009-07-26 19:17:46 (GMT) | 
|---|---|---|
| committer | Kevin Smith <git@kismith.co.uk> | 2009-07-26 19:17:46 (GMT) | 
| commit | 46e59e0e6bfceee216db3414680825cbdae60daf (patch) | |
| tree | d1e078bb0eec292d628e7d44fccc8345ecc1d911 /Swift/QtUI/Roster/RosterDelegate.h | |
| parent | ce74ccc7c8d2ce4c032a90b1ebc0ebd30b4ea4c8 (diff) | |
| download | swift-46e59e0e6bfceee216db3414680825cbdae60daf.zip swift-46e59e0e6bfceee216db3414680825cbdae60daf.tar.bz2  | |
Use a (boring) delegate for roster rendering.
Diffstat (limited to 'Swift/QtUI/Roster/RosterDelegate.h')
| -rw-r--r-- | Swift/QtUI/Roster/RosterDelegate.h | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/Swift/QtUI/Roster/RosterDelegate.h b/Swift/QtUI/Roster/RosterDelegate.h index e69de29..32bba80 100644 --- a/Swift/QtUI/Roster/RosterDelegate.h +++ b/Swift/QtUI/Roster/RosterDelegate.h @@ -0,0 +1,10 @@ +#pragma once + +#import <QStyledItemDelegate> + +namespace Swift { +	class RosterDelegate : public QStyledItemDelegate { +		QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const; +		void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex index) const; +	}; +}
\ No newline at end of file  | 
 Swift