Slicer 5.9
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
qSlicerCLIProgressBar.h
Go to the documentation of this file.
1/*==============================================================================
2
3 Program: 3D Slicer
4
5 Copyright (c) Kitware Inc.
6
7 See COPYRIGHT.txt
8 or http://www.slicer.org/copyright/copyright.txt for details.
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 This file was originally developed by Jean-Christophe Fillion-Robin, Kitware Inc.
17 and was partially funded by NIH grant 3P41RR013218-12S1
18
19==============================================================================*/
20
21#ifndef __qSlicerCLIProgressBar_h
22#define __qSlicerCLIProgressBar_h
23
24// Qt includes
25#include <QMetaType>
26#include <QWidget>
27
28// CTK includes
29#include <ctkVTKObject.h>
30
31// Slicer includes
32#include "qSlicerBaseQTCLIExport.h"
33
35class qSlicerCLIProgressBarPrivate;
36
37class Q_SLICER_BASE_QTCLI_EXPORT qSlicerCLIProgressBar : public QWidget
38{
39 Q_OBJECT
40 Q_ENUMS(Visibility)
41 QVTK_OBJECT
42
58public:
59
60 typedef QWidget Superclass;
61 qSlicerCLIProgressBar(QWidget *parent=nullptr);
63
66
75
85
86public slots:
87
90
94
98
102
103protected slots:
104
107
109 void showDetails(bool show);
110
111protected:
112
113 QScopedPointer<qSlicerCLIProgressBarPrivate> d_ptr;
114
115private:
116
117 Q_DECLARE_PRIVATE(qSlicerCLIProgressBar);
118 Q_DISABLE_COPY(qSlicerCLIProgressBar);
119
120};
121
122
123#endif
Visibility
Visibility behavior of the GUI elements of the CLI progress bar.
void setCommandLineModuleNode(vtkMRMLCommandLineModuleNode *commandLineModuleNode)
Set the commandLineModuleNode.
Visibility progressVisibility() const
qSlicerCLIProgressBar(QWidget *parent=nullptr)
void setStatusVisibility(qSlicerCLIProgressBar::Visibility visibility)
Visibility statusVisibility() const
void setNameVisibility(qSlicerCLIProgressBar::Visibility visibility)
void showDetails(bool show)
Update the ui base on the command line module node.
void setProgressVisibility(qSlicerCLIProgressBar::Visibility visibility)
Q_INVOKABLE vtkMRMLCommandLineModuleNode * commandLineModuleNode() const
Get the commandLineModuleNode.
Visibility nameVisibility() const
void updateUiFromCommandLineModuleNode(vtkObject *commandLineModuleNode)
Update the ui base on the command line module node.
QVTK_OBJECTVisibility nameVisibility
QScopedPointer< qSlicerCLIProgressBarPrivate > d_ptr
MRML node for representing the parameters allowing to run a command line interface module (CLI)....