-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpositiondelegate.h
42 lines (34 loc) · 1.18 KB
/
positiondelegate.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
/*!
* \file positiondelegate.h
* \author Simon Coakley
* \date 2012
* \copyright Copyright (c) 2012 University of Sheffield
* \brief Header file for position delegate
*/
#ifndef POSITIONDELEGATE_H_
#define POSITIONDELEGATE_H_
#include <QItemDelegate>
#include <QModelIndex>
#include <QList>
#include "./agenttype.h"
#include "./visualsettingsmodel.h"
class PositionDelegate : public QItemDelegate {
Q_OBJECT
public:
PositionDelegate(QList<AgentType> * ats = 0,
VisualSettingsModel * model = 0, QObject *parent = 0);
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
const QModelIndex &index) const;
void paint(QPainter *painter, 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;
private slots:
void commitAndCloseEditor();
void rejectAndCloseEditor();
private:
QList<AgentType> * agentTypes;
VisualSettingsModel * vsm;
};
#endif // POSITIONDELEGATE_H_