mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
19 lines
366 B
C
19 lines
366 B
C
|
/*
|
||
|
* ChanGroupDelegate.h
|
||
|
*
|
||
|
* Created on: Sep 7, 2009
|
||
|
* Author: alex
|
||
|
*/
|
||
|
|
||
|
#ifndef CHANGROUPDELEGATE_H_
|
||
|
#define CHANGROUPDELEGATE_H_
|
||
|
|
||
|
#include <QItemDelegate>
|
||
|
|
||
|
class ChanGroupDelegate : public QItemDelegate
|
||
|
{
|
||
|
virtual void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const;
|
||
|
};
|
||
|
|
||
|
#endif /* CHANGROUPDELEGATE_H_ */
|