-
Notifications
You must be signed in to change notification settings - Fork 0
/
SubjectDateModel.cpp
77 lines (69 loc) · 1.68 KB
/
SubjectDateModel.cpp
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include "SubjectDateModel.hpp"
SubjectDateModel::SubjectDateModel(QObject *parent) :
QAbstractListModel(parent),
m_editable(false)
{
}
int SubjectDateModel::rowCount(const QModelIndex &parent) const
{
return m_dateList.size();
}
QVariant SubjectDateModel::data(const QModelIndex &index, int role) const
{
if (0<=index.row() && index.row()<m_dateList.size())
{
switch (role)
{
case Qt::DisplayRole:
return m_dateList.at(index.row()).toString();
break;
case Qt::EditRole:
return m_dateList.at(index.row());
break;
default:
return QVariant();
}
}
return QVariant();
}
Qt::ItemFlags SubjectDateModel::flags(const QModelIndex &index) const
{
Qt::ItemFlags ret = Qt::ItemIsEnabled | Qt::ItemIsSelectable;
if (m_editable)
ret |= Qt::ItemIsEditable;
return ret;
}
bool SubjectDateModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
if (0<=index.row() && index.row()<m_dateList.size())
{
switch (role)
{
case Qt::EditRole:
{
m_dateList[index.row()] = value.toDate();
emit dataChanged(index, index);
}
break;
default:
return false;
}
}
return false;
}
void SubjectDateModel::setEditable(const bool editable_)
{
beginResetModel();
m_editable = editable_;
endResetModel();
}
const DateList &SubjectDateModel::dateList() const
{
return m_dateList;
}
void SubjectDateModel::setDateList(const DateList &dateList_)
{
beginResetModel();
m_dateList = dateList_;
endResetModel();
}