videodownloader/itemdelegates/progressbaritemdelegate.h

19 lines
366 B
C
Raw Normal View History

2015-04-22 19:32:04 +02:00
#ifndef PROGRESSBARDELEGATE_H
#define PROGRESSBARDELEGATE_H
#include <QStyledItemDelegate>
namespace QtGui {
class ProgressBarItemDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
ProgressBarItemDelegate(QObject *parent);
void paint(QPainter *, const QStyleOptionViewItem &, const QModelIndex &) const;
};
}
#endif // DOWNLOADSVIEWDELEGATE_H