first commit

This commit is contained in:
2016-10-18 17:40:45 +02:00
commit f82a7fba1f
151 changed files with 8611 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef CSOURCESBUTTONDELEGATE_H
#define CSOURCESBUTTONDELEGATE_H
#include <QItemDelegate>
class cSourcesButtonDelegate : public QItemDelegate
{
Q_OBJECT
public:
cSourcesButtonDelegate(QObject *parent = 0);
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
bool editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index);
signals:
public slots:
};
#endif // CSOURCESBUTTONDELEGATE_H