-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsdkconfigdatamodel.cpp
81 lines (72 loc) · 1.91 KB
/
sdkconfigdatamodel.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
78
79
80
81
#include "sdkconfigdatamodel.h"
SdkConfigDataModel::SdkConfigDataModel(QMap<QString, QString> *sdkconfig, QObject* parent)
{
this->sdkconfig = sdkconfig;
}
int SdkConfigDataModel::columnCount(const QModelIndex &parent) const
{
return 2;
}
int SdkConfigDataModel::rowCount(const QModelIndex &parent) const
{
return sdkconfig->count();
}
QVariant SdkConfigDataModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if(orientation == Qt::Horizontal && role == Qt::DisplayRole)
{
switch (section) {
case NAME:
return tr("Option");
case VALUE:
return tr("Value");
default:
break;
break;
}
}
return QVariant();
}
Qt::ItemFlags SdkConfigDataModel::flags(const QModelIndex &index) const
{
switch (index.column()) {
case NAME:
{
QString key = sdkconfig->keys().at(index.row());
if(!sdkconfig->value(key).isEmpty())
return Qt::ItemIsEnabled;
break;
}
case VALUE:
return Qt::ItemIsEnabled | Qt::ItemIsEditable;
break;
default:
break;
}
}
QVariant SdkConfigDataModel::data(const QModelIndex &index, int role) const
{
if(role == Qt::DisplayRole)
{
switch (index.column()) {
case NAME:
return sdkconfig->keys().at(index.row());
case VALUE:
return sdkconfig->values().at(index.row());
default:
break;
}
}
else if(role == Qt::ToolTipRole && index.column() == 1)
return tr("enter: 'y', number or quoted string; space to disable.");
return QVariant();
}
bool SdkConfigDataModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
if(role== Qt::EditRole)
{
QString str = value.toString().trimmed();
sdkconfig->insert(sdkconfig->keys().at(index.row()), value.toString());
}
return false;
}