##// END OF EJS Templates
Started PySide2 migration, builds with CMake and produces a working binary...
Started PySide2 migration, builds with CMake and produces a working binary Need to port all previous stuff from Pybind11 to PySide2/shboken Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r467:bf267432931b
r1477:70de8bd3d575
Show More
SqpSettingsGeneralWidget.h
32 lines | 797 B | text/x-c | CLexer
/ gui / include / Settings / SqpSettingsGeneralWidget.h
#ifndef SCIQLOP_SQPSETTINGSGENERALWIDGET_H
#define SCIQLOP_SQPSETTINGSGENERALWIDGET_H
#include "Settings/ISqpSettingsBindable.h"
#include <QWidget>
namespace Ui {
class SqpSettingsGeneralWidget;
} // Ui
/**
* @brief The SqpSettingsGeneralWidget class represents the general settings of SciQlop
*/
class SqpSettingsGeneralWidget : public QWidget, public ISqpSettingsBindable {
Q_OBJECT
public:
explicit SqpSettingsGeneralWidget(QWidget *parent = 0);
virtual ~SqpSettingsGeneralWidget() noexcept;
/// @sa ISqpSettingsBindable::loadSettings()
void loadSettings() override final;
/// @sa ISqpSettingsBindable::saveSettings()
void saveSettings() const override final;
private:
Ui::SqpSettingsGeneralWidget *ui;
};
#endif // SCIQLOP_SQPSETTINGSGENERALWIDGET_H