Slicer 5.4
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
Loading...
Searching...
No Matches
qSlicerExtensionsManagerDialog.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 __qSlicerExtensionsManagerDialog_h
22#define __qSlicerExtensionsManagerDialog_h
23
24// Qt includes
25#include <QDialog>
26
27// QtGUI includes
28#include "qSlicerBaseQTGUIExport.h"
29
30class qSlicerExtensionsManagerDialogPrivate;
32
33class Q_SLICER_BASE_QTGUI_EXPORT qSlicerExtensionsManagerDialog
34 : public QDialog
35{
36 Q_OBJECT
37 Q_PROPERTY(bool restartRequested READ restartRequested WRITE setRestartRequested)
38public:
40 typedef QDialog Superclass;
41
43 explicit qSlicerExtensionsManagerDialog(QWidget* parent = nullptr);
44
47
50
52 bool restartRequested()const;
53
55 void setRestartRequested(bool value);
56
57 void closeEvent(QCloseEvent* event) override;
58 void accept() override;
59 void reject() override;
60
61public slots:
62
65
66protected slots:
69
70protected:
71 QScopedPointer<qSlicerExtensionsManagerDialogPrivate> d_ptr;
72
73private:
74 Q_DECLARE_PRIVATE(qSlicerExtensionsManagerDialog);
75 Q_DISABLE_COPY(qSlicerExtensionsManagerDialog);
76};
77
78#endif
QScopedPointer< qSlicerExtensionsManagerDialogPrivate > d_ptr
Q_INVOKABLE qSlicerExtensionsManagerModel * extensionsManagerModel() const
Q_INVOKABLE void setExtensionsManagerModel(qSlicerExtensionsManagerModel *model)
void closeEvent(QCloseEvent *event) override
~qSlicerExtensionsManagerDialog() override
Destructor.
void setFocusToSearchBox()
Set focus to search box (so that user can find a module just by start typing its name)
void setRestartRequested(bool value)
qSlicerExtensionsManagerDialog(QWidget *parent=nullptr)
Constructor.
bool restartRequested() const
Return True if the application is expected to be restarted.
Class querying and storing extensions data.