-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmpredelegate.h
50 lines (41 loc) · 1.34 KB
/
mpredelegate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*!
* \file mpredelegate.h
* \author Simon Coakley
* \date 2012
* \copyright Copyright (c) 2012 University of Sheffield
* \brief Header file for mpre delegate
*/
#ifndef MPREDELEGATE_H_
#define MPREDELEGATE_H_
#include <QItemDelegate>
#include <QModelIndex>
#include <QObject>
#include <QSize>
#include <QSpinBox>
#include <QDoubleSpinBox>
#include <QComboBox>
#include "./memorymodel.h"
#include "./machine.h"
#include "./communication.h"
class MpreDelegate : public QItemDelegate {
Q_OBJECT
public:
MpreDelegate(Machine * machine, Communication * comm = 0,
QObject *parent = 0);
void paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index) const;
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
const QModelIndex &index) const;
void setEditorData(QWidget *editor, const QModelIndex &index) const;
void setModelData(QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const;
/*void updateEditorGeometry(QWidget *editor,
const QStyleOptionViewItem &option, const QModelIndex &index) const;*/
private slots:
void commitAndCloseEditor();
private:
MemoryModel * memory;
Machine * machine;
Communication * communication;
};
#endif // MPREDELEGATE_H_