You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
767 B
35 lines
767 B
#ifndef UBTGWIDGETTREEDELEGATE_H
|
|
#define UBTGWIDGETTREEDELEGATE_H
|
|
|
|
class QPainter;
|
|
class QStyleOptionViewItem;
|
|
class QModelIndex;
|
|
|
|
#include <QStyledItemDelegate>
|
|
|
|
|
|
typedef enum
|
|
{
|
|
eUBTGAddSubItemWidgetType_None,
|
|
eUBTGAddSubItemWidgetType_Action ,
|
|
eUBTGAddSubItemWidgetType_Media,
|
|
eUBTGAddSubItemWidgetType_Url
|
|
}eUBTGAddSubItemWidgetType;
|
|
|
|
|
|
class UBTGWidgetTreeDelegate : public QStyledItemDelegate
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit UBTGWidgetTreeDelegate(QObject *parent = 0);
|
|
|
|
virtual void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const;
|
|
virtual QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // UBTGWIDGETTREEDELEGATE_H
|
|
|