Slicer 5.9
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
Loading...
Searching...
No Matches
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 typedef QWidget Superclass;
60 qSlicerCLIProgressBar(QWidget* parent = nullptr);
62
65
74
84
85public slots:
86
89
93
97
101
102protected slots:
103
106
108 void showDetails(bool show);
109
110protected:
111 QScopedPointer<qSlicerCLIProgressBarPrivate> d_ptr;
112
113private:
114 Q_DECLARE_PRIVATE(qSlicerCLIProgressBar);
115 Q_DISABLE_COPY(qSlicerCLIProgressBar);
116};
117
118#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)....