##// END OF EJS Templates
Creates settings dialog and adds it to a new menu in MainWindow...
Creates settings dialog and adds it to a new menu in MainWindow The dialog will contain a set of widgets saved as a list (one entry per widget). By selecting an entry in the list, the corresponding widget will be displayed

File last commit:

r463:6a4aa86600f2
r463:6a4aa86600f2
Show More
SqpSettingsDialog.h
27 lines | 544 B | text/x-c | CLexer
#ifndef SCIQLOP_SQPSETTINGSDIALOG_H
#define SCIQLOP_SQPSETTINGSDIALOG_H
#include "Settings/ISqpSettingsBindable.h"
#include <QDialog>
namespace Ui {
class SqpSettingsDialog;
} // Ui
/**
* @brief The SqpSettingsDialog class represents the dialog in which the parameters of SciQlop are
* set
*/
class SqpSettingsDialog : public QDialog {
Q_OBJECT
public:
explicit SqpSettingsDialog(QWidget *parent = 0);
virtual ~SqpSettingsDialog() noexcept;
private:
Ui::SqpSettingsDialog *ui;
};
#endif // SCIQLOP_SQPSETTINGSDIALOG_H