##// END OF EJS Templates
Add impletation for displaying data that are already in cache when...
Add impletation for displaying data that are already in cache when acquisition is requested

File last commit:

r467:bf267432931b
r573:575eda7156d0
Show More
SqpSettingsGeneralWidget.h
32 lines | 797 B | text/x-c | CLexer
/ gui / include / Settings / SqpSettingsGeneralWidget.h
Alexandre Leroux
Creates widget for "general settings" and registers it to the dialog
r465 #ifndef SCIQLOP_SQPSETTINGSGENERALWIDGET_H
#define SCIQLOP_SQPSETTINGSGENERALWIDGET_H
Alexandre Leroux
Settings binding (2)...
r467 #include "Settings/ISqpSettingsBindable.h"
Alexandre Leroux
Creates widget for "general settings" and registers it to the dialog
r465 #include <QWidget>
namespace Ui {
class SqpSettingsGeneralWidget;
} // Ui
/**
* @brief The SqpSettingsGeneralWidget class represents the general settings of SciQlop
*/
Alexandre Leroux
Settings binding (2)...
r467 class SqpSettingsGeneralWidget : public QWidget, public ISqpSettingsBindable {
Alexandre Leroux
Creates widget for "general settings" and registers it to the dialog
r465 Q_OBJECT
public:
explicit SqpSettingsGeneralWidget(QWidget *parent = 0);
virtual ~SqpSettingsGeneralWidget() noexcept;
Alexandre Leroux
Settings binding (2)...
r467 /// @sa ISqpSettingsBindable::loadSettings()
void loadSettings() override final;
/// @sa ISqpSettingsBindable::saveSettings()
void saveSettings() const override final;
Alexandre Leroux
Creates widget for "general settings" and registers it to the dialog
r465 private:
Ui::SqpSettingsGeneralWidget *ui;
};
#endif // SCIQLOP_SQPSETTINGSGENERALWIDGET_H