Add qmodmaster and move udp app to applications
This commit is contained in:
17
Applications/qModMaster/src/rawdatadelegate.h
Normal file
17
Applications/qModMaster/src/rawdatadelegate.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef RAWDATADELEGATE_H
|
||||
#define RAWDATADELEGATE_H
|
||||
|
||||
#include <QStyledItemDelegate>
|
||||
|
||||
class RawDataDelegate : public QStyledItemDelegate
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
RawDataDelegate(QWidget *parent = 0) : QStyledItemDelegate(parent) {}
|
||||
|
||||
void paint(QPainter *painter, const QStyleOptionViewItem &option,
|
||||
const QModelIndex &index) const;
|
||||
|
||||
};
|
||||
#endif // RAWDATADELEGATE_H
|
||||
Reference in New Issue
Block a user