transmission/qt/tracker-delegate.h

51 lines
1.3 KiB
C
Raw Normal View History

/*
* This file Copyright (C) 2010-2014 Mnemosyne LLC
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* $Id$
*/
#ifndef QTR_TRACKER_DELEGATE_H
#define QTR_TRACKER_DELEGATE_H
#include <QItemDelegate>
#include <QSize>
class QPainter;
class QStyleOptionViewItem;
class QStyle;
class Session;
struct TrackerInfo;
class TrackerDelegate: public QItemDelegate
{
2013-09-14 22:45:04 +00:00
Q_OBJECT
2013-09-14 22:45:04 +00:00
public:
TrackerDelegate (QObject * parent=0): QItemDelegate(parent), myShowMore(false) {}
virtual ~TrackerDelegate () {}
2013-09-14 22:45:04 +00:00
public:
QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const;
void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const;
2013-09-14 22:45:04 +00:00
public:
void setShowMore (bool b);
2013-09-14 22:45:04 +00:00
protected:
QString getText (const TrackerInfo&) const;
QSize margin (const QStyle& style) const;
virtual QSize sizeHint (const QStyleOptionViewItem&, const TrackerInfo&) const;
void drawTracker (QPainter*, const QStyleOptionViewItem&, const TrackerInfo&) const;
2013-09-14 22:45:04 +00:00
private:
bool myShowMore;
};
#endif