settingsmodel.cpp
Go to the documentation of this file.
1
/*
2
* This file is part of ArmarX.
3
*
4
* Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5
*
6
* ArmarX is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License version 2 as
8
* published by the Free Software Foundation.
9
*
10
* ArmarX is distributed in the hope that it will be useful, but
11
* WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
14
*
15
* You should have received a copy of the GNU General Public License
16
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17
*
18
* @package ArmarXCore::core
19
* @author Cedric Seehausen (usdnr at kit dot edu)
20
* @date 2016
21
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22
* GNU General Public License
23
*/
24
25
26
#include "
settingsmodel.h
"
27
28
SettingsModel::SettingsModel
()
29
{
30
rootItem
=
new
SettingsItem
(QList<QVariant>({
"Packages"
,
"Paths"
,
"Remove"
}));
31
}
32
33
QVariant
34
SettingsModel::data
(
const
QModelIndex&
index
,
int
role)
const
35
{
36
if
(!
index
.isValid())
37
{
38
return
QVariant();
39
}
40
41
// if (role == Qt::BackgroundRole){
42
// if(index.column() == 1) {
43
// if(!index.data().toString().compare("Running")){
44
// return QColor(Qt::green);
45
// } else if(!index.data().toString().compare("Stopped")) {
46
// return QColor(Qt::red);
47
// } else if(!index.data().toString().compare("Waiting")) {
48
// return QColor(Qt::darkYellow);
49
// } else {
50
// return QColor(Qt::lightGray); //only for safety reasons
51
// }
52
// }
53
// } else if (role == Qt::DisplayRole) {
54
// if(index.column() == 2) {
55
56
// }
57
// } else if (role != Qt::DisplayRole){
58
// return QVariant();
59
// }
60
if
(role ==
SETTINGSITEMSOURCE
)
61
{
62
return
QVariant::fromValue(
reinterpret_cast<
SettingsItem
*
>
(
index
.internalPointer()));
63
}
64
if
(role != Qt::DisplayRole)
65
{
66
return
QVariant();
67
}
68
69
SettingsItem
* item =
static_cast<
SettingsItem
*
>
(
index
.internalPointer());
70
71
return
item->
data
(
index
.column());
72
}
73
74
void
75
SettingsModel::clear
()
76
{
77
delete
rootItem
;
78
rootItem
=
new
SettingsItem
(QList<QVariant>({
"Packages"
,
"Paths"
,
"Remove"
}));
79
}
80
81
void
82
SettingsModel::update
()
83
{
84
QModelIndex topLeft =
index
(0, 0);
85
QModelIndex bottomRight =
index
(
rowCount
() - 1,
columnCount
() - 1);
86
87
emit dataChanged(topLeft, bottomRight);
88
}
89
90
SettingsItem
*
91
SettingsModel::getRootItem
()
92
{
93
return
static_cast<
SettingsItem
*
>
(
rootItem
);
94
}
TreeModel::index
QModelIndex index(int row, int column, const QModelIndex &parent=QModelIndex()) const override
Definition:
treemodel.cpp:99
SettingsModel::clear
void clear() override
Definition:
settingsmodel.cpp:75
SettingsModel::data
QVariant data(const QModelIndex &index, int role) const override
Definition:
settingsmodel.cpp:34
index
uint8_t index
Definition:
EtherCATFrame.h:59
SettingsModel::getRootItem
SettingsItem * getRootItem()
Definition:
settingsmodel.cpp:91
TreeItem::data
virtual QVariant data(int column) const
Definition:
treeitem.cpp:69
settingsmodel.h
SettingsModel::update
void update()
Definition:
settingsmodel.cpp:82
SETTINGSITEMSOURCE
@ SETTINGSITEMSOURCE
Definition:
treeitem.h:39
SettingsModel::SettingsModel
SettingsModel()
Definition:
settingsmodel.cpp:28
TreeModel::rootItem
TreeItem * rootItem
Definition:
treemodel.h:69
SettingsItem
Definition:
settingsitem.h:32
TreeModel::columnCount
int columnCount(const QModelIndex &parent=QModelIndex()) const override
Definition:
treemodel.cpp:45
TreeModel::rowCount
int rowCount(const QModelIndex &parent=QModelIndex()) const override
Definition:
treemodel.cpp:140
ArmarXGui
gui-plugins
ScenarioManager
gui
settingsmodel.cpp
Generated on Sat Mar 29 2025 09:17:22 for armarx_documentation by
1.8.17