Computer Assisted Medical Intervention Tool Kit  version 5.1
 
Loading...
Searching...
No Matches
ActionDescriptionWidget.h
Go to the documentation of this file.
1/*****************************************************************************
2 * $CAMITK_LICENCE_BEGIN$
3 *
4 * CamiTK - Computer Assisted Medical Intervention ToolKit
5 * (c) 2001-2023 Univ. Grenoble Alpes, CNRS, Grenoble INP, TIMC, 38000 Grenoble, France
6 *
7 * Visit http://camitk.imag.fr for more information
8 *
9 * This file is part of CamiTK.
10 *
11 * CamiTK is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * CamiTK is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * version 3 along with CamiTK. If not, see <http://www.gnu.org/licenses/>.
22 *
23 * $CAMITK_LICENCE_END$
24 ****************************************************************************/
25#ifndef ACTIONDESCRIPTIONWIDGET_H
26#define ACTIONDESCRIPTIONWIDGET_H
27
28// Include GUI automatically generated file
29#include "ui_ActionDescriptionWidget.h"
30
31// includes from Qt
32#include <QWidget>
33
41class ActionDescriptionWidget : public QWidget {
42
43 Q_OBJECT;
44
45public:
47 ActionDescriptionWidget(QWidget* parent);
48
50 ~ActionDescriptionWidget() override = default;
51
52 void setToDefault(QString actionExtensionName);
53 void addPossibleComponent(QString possibleComponent);
54
55 void setName(QString name);
56 void setDescription(QString description);
57 void setComponent(QString component);
58
59 QString getActionName();
60 QString getActionDescription();
61 QString getComponentName();
62 bool isItkFilter();
63 QString getOutputType();
64
65public slots:
66 virtual void nextButtonClicked();
67 virtual void cancelButtonClicked();
68 virtual void componentChanged(QString);
69 virtual void itkFilterClicked(bool);
70
71signals:
72 void next();
73 void cancel();
74
75private:
76 QStringList possibleComponents;
77 Ui::ActionDescriptionWidget ui;
78
79 QString actionExtensionName;
80};
81#endif
const char * description
Definition applications/cepgenerator/main.cpp:38
Widget to describe action.
Definition ActionDescriptionWidget.h:41
virtual void nextButtonClicked()
Definition ActionDescriptionWidget.cpp:39
~ActionDescriptionWidget() override=default
Destructor.
QString getComponentName()
Definition ActionDescriptionWidget.cpp:104
bool isItkFilter()
Definition ActionDescriptionWidget.cpp:108
QString getActionDescription()
Definition ActionDescriptionWidget.cpp:100
void setComponent(QString component)
Definition ActionDescriptionWidget.cpp:162
void setDescription(QString description)
Definition ActionDescriptionWidget.cpp:158
virtual void componentChanged(QString)
Definition ActionDescriptionWidget.cpp:166
virtual void itkFilterClicked(bool)
Definition ActionDescriptionWidget.cpp:122
void setName(QString name)
Definition ActionDescriptionWidget.cpp:154
void addPossibleComponent(QString possibleComponent)
Definition ActionDescriptionWidget.cpp:116
void setToDefault(QString actionExtensionName)
Definition ActionDescriptionWidget.cpp:134
virtual void cancelButtonClicked()
Definition ActionDescriptionWidget.cpp:91
QString getActionName()
Definition ActionDescriptionWidget.cpp:96
QString getOutputType()
Definition ActionDescriptionWidget.cpp:112