Mantid
Loading...
Searching...
No Matches
LoadDAEDialog.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2009 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
7#pragma once
8
9//----------------------
10// Includes
11//----------------------
13
14//---------------------------
15// Qt Forward declarations
16//---------------------------
17class QLabel;
18class QLineEdit;
19class QPushButton;
20class QString;
21class QVBoxLayout;
22class QCheckBox;
23
24namespace MantidQt {
25namespace CustomDialogs {
26
34 Q_OBJECT
35
36public:
38 LoadDAEDialog(QWidget *parent = nullptr);
40 ~LoadDAEDialog() override;
41
42protected:
44 void initLayout() override;
45
46private:
47 /* GUI components */
48 QLineEdit *lineHost;
49 QLineEdit *lineName;
50 QLineEdit *minSpLineEdit;
51 QLineEdit *maxSpLineEdit;
52 QLineEdit *listSpLineEdit;
53 QLineEdit *updateLineEdit;
54};
55} // namespace CustomDialogs
56} // namespace MantidQt
This class should be the basis for all customised algorithm dialogs.
This class gives specialised dialog for the LoadDAE algorithm.
Definition: LoadDAEDialog.h:33
~LoadDAEDialog() override
Destruktor.
void initLayout() override
This does the work and must be overridden in each deriving class.
The AlgorithmProgressDialogPresenter keeps track of the running algorithms and displays a progress ba...