File: AddDynamicProperty.cpp

package info (click to toggle)
camitk 5.2.0-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 358,388 kB
  • sloc: cpp: 86,984; xml: 1,295; sh: 1,280; ansic: 142; makefile: 112; perl: 84; sed: 20
file content (228 lines) | stat: -rw-r--r-- 10,292 bytes parent folder | download
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/*****************************************************************************
 * $CAMITK_LICENCE_BEGIN$
 *
 * CamiTK - Computer Assisted Medical Intervention ToolKit
 * (c) 2001-2024 Univ. Grenoble Alpes, CNRS, Grenoble INP - UGA, TIMC, 38000 Grenoble, France
 *
 * Visit http://camitk.imag.fr for more information
 *
 * This file is part of CamiTK.
 *
 * CamiTK is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * CamiTK is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with CamiTK.  If not, see <http://www.gnu.org/licenses/>.
 *
 * $CAMITK_LICENCE_END$
 ****************************************************************************/
#include "AddDynamicProperty.h"

#include <QString>
#include <QDate>
#include <QTextStream>
#include <QVector3D>

#include <Application.h>
#include <ActionWidget.h>
#include <Component.h>
#include <Log.h>
#include <Property.h>

using namespace camitk;


// --------------- Constructor -------------------
AddDynamicProperty::AddDynamicProperty(ActionExtension* extension) : Action(extension) {
    // Setting name, description and input component
    setName("Add Dynamic Property");
    setDescription("Add a dynamic property to the currently selected component.");
    setComponentClassName("Component");

    // Setting classification family and tags
    setFamily("Tutorial");
    addTag("Dynamic Property");
    addTag("Component");

    // Setting the action's parameters
    addParameter(new Property("Name", "", "Name of the new property to add to the selection", ""));
    addParameter(new Property("Initial Value", "", "Initial value of the property", ""));
    addParameter(new Property("Description", "Dynamically <b>added</b> <i>property!</i>", "Description of the property", ""));
    addParameter(new Property("Unit", "", "Unit of Measurement of the property", ""));
    currentType = BOOL;

    // notify this action every time the user change something
    setAutoUpdateProperties(true);
}

// --------------- destructor -------------------
AddDynamicProperty::~AddDynamicProperty() {
    // Do not do anything yet.
    // Delete stuff if you create stuff
    // (except if you use smart pointers of course !!)
}

// --------------- apply -------------------
Action::ApplyStatus AddDynamicProperty::apply() {
    QString description = property("Description").toString();
    QString unit = property("Unit").toString();
    QString name = property("Name").toByteArray().constData();
    foreach (Component* comp, getTargets()) {

        if (comp->getProperty(name)) { // the property already exits, modify its value
            switch (currentType) {
                case AddDynamicProperty::INT:
                    comp->setProperty(name.toStdString().c_str(), QVariant(property("Initial Value").toInt()));
                    break;
                case AddDynamicProperty::CHAR:
                    comp->setProperty(name.toStdString().c_str(), QVariant(property("Initial Value").toChar()));
                    break;
                case AddDynamicProperty::BOOL:
                    comp->setProperty(name.toStdString().c_str(), QVariant(property("Initial Value").toBool()));
                    break;
                case AddDynamicProperty::FLOAT:
                    comp->setProperty(name.toStdString().c_str(), QVariant(property("Initial Value").toDouble()));
                    break;
                case AddDynamicProperty::DOUBLE:
                    comp->setProperty(name.toStdString().c_str(), QVariant(property("Initial Value").toDouble()));
                    break;
                case AddDynamicProperty::QDATE:
                    comp->setProperty(name.toStdString().c_str(), QVariant(property("Initial Value").toDate()));
                    break;
                case AddDynamicProperty::QTIME:
                    comp->setProperty(name.toStdString().c_str(), QVariant(property("Initial Value").toTime()));
                    break;
                case AddDynamicProperty::QCOLOR:
                    comp->setProperty(name.toStdString().c_str(), property("Initial Value").value<QColor>());
                    break;
                case AddDynamicProperty::QPOINT:
                    comp->setProperty(name.toStdString().c_str(), property("Initial Value").value<QPoint>());
                    break;
                case AddDynamicProperty::QPOINTF:
                    comp->setProperty(name.toStdString().c_str(), property("Initial Value").value<QPointF>());
                    break;
                case AddDynamicProperty::QVECTOR3D:
                    comp->setProperty(name.toStdString().c_str(), property("Initial Value").value<QVector3D>());
                    break;
                case AddDynamicProperty::QSTRING:
                default:
                    //setProperty("Initial Value","QString(\"Hello New Property\")");
                    comp->setProperty(name.toStdString().c_str(), property("Initial Value").toString());
                    break;
            }
        }
        else {   // the property doesn't exit yet, add it!
            switch (currentType) {
                case AddDynamicProperty::INT:
                    comp->addProperty(new Property(name, QVariant(property("Initial Value").toInt()), description, unit));
                    break;
                case AddDynamicProperty::CHAR:
                    comp->addProperty(new Property(name, QVariant(property("Initial Value").toChar()), description, unit));
                    break;
                case AddDynamicProperty::BOOL:
                    comp->addProperty(new Property(name, QVariant(property("Initial Value").toBool()), description, unit));
                    break;
                case AddDynamicProperty::FLOAT:
                    comp->addProperty(new Property(name, QVariant(property("Initial Value").toDouble()), description, unit));
                    break;
                case AddDynamicProperty::DOUBLE:
                    comp->addProperty(new Property(name, QVariant(property("Initial Value").toDouble()), description, unit));
                    break;
                case AddDynamicProperty::QDATE:
                    comp->addProperty(new Property(name, QVariant(property("Initial Value").toDate()), description, unit));
                    break;
                case AddDynamicProperty::QTIME:
                    comp->addProperty(new Property(name, QVariant(property("Initial Value").toTime()), description, unit));
                    break;
                case AddDynamicProperty::QCOLOR:
                    comp->addProperty(new Property(name, property("Initial Value").value<QColor>(), description, unit));
                    break;
                case AddDynamicProperty::QPOINT:
                    comp->addProperty(new Property(name, property("Initial Value").value<QPoint>(), description, unit));
                    break;
                case AddDynamicProperty::QPOINTF:
                    comp->addProperty(new Property(name, property("Initial Value").value<QPointF>(), description, unit));
                    break;
                case AddDynamicProperty::QVECTOR3D:
                    comp->addProperty(new Property(name, property("Initial Value").value<QVector3D>(), description, unit));
                    break;
                case AddDynamicProperty::QSTRING:
                default:
                    //setProperty("Initial Value","QString(\"Hello New Property\")");
                    comp->addProperty(new Property(name, property("Initial Value").toString(), description, unit));
                    break;
            }
        }

        // refresh viewers
        comp->refresh();
    }
    return SUCCESS;
}

// --------------- getPropertyType -------------------
AddDynamicProperty::PropertyType AddDynamicProperty::getPropertyType() {
    return currentType;
}

// --------------- setPropertyType -------------------
void AddDynamicProperty::setPropertyType(AddDynamicProperty::PropertyType propertyType) {
    currentType = propertyType;

    switch (currentType) {
        case AddDynamicProperty::INT:
            setProperty("Initial Value", "0");
            break;
        case AddDynamicProperty::CHAR:
            setProperty("Initial Value", "'a'");
            break;
        case AddDynamicProperty::BOOL:
            setProperty("Initial Value", "false");
            break;
        case AddDynamicProperty::DOUBLE:
        case AddDynamicProperty::FLOAT:
            setProperty("Initial Value", "0.0");
            break;
        case AddDynamicProperty::QDATE: {
            QDate today = QDate::currentDate();
            QString defValue;
            QTextStream in(&defValue);
            in << "QDate(" << today.year() << ", " << today.month() << ", " << today.day() << ")";
            setProperty("Initial Value", defValue);
            break;
        }
        case AddDynamicProperty::QTIME: {
            QTime now = QTime::currentTime();
            QString defValue;
            QTextStream in(&defValue);
            in << "QTime(" << now.hour() << ", " << now.minute() << ", " << now.second() << ")";
            setProperty("Initial Value", defValue);
            break;
        }
        case AddDynamicProperty::QCOLOR:
            setProperty("Initial Value", "QColor(255, 255, 255, 255)");
            break;
        case AddDynamicProperty::QPOINT:
            setProperty("Initial Value", "QPoint(0, 0)");
            break;
        case AddDynamicProperty::QPOINTF:
            setProperty("Initial Value", "QPointF(0.0, 0.0)");
            break;
        case AddDynamicProperty::QVECTOR3D:
            setProperty("Initial Value", "QVector3D(0.0, 0.0, 0.0)");
            break;
        case AddDynamicProperty::QSTRING:
        default:
            setProperty("Initial Value", "QString(\"Hello New Property\")");
            break;
    }
}