21 lines
363 B
C++
21 lines
363 B
C++
#ifndef SETTINGSDIALOG_H
|
|
#define SETTINGSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QSpinBox>
|
|
|
|
class SettingsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SettingsDialog(QWidget *parent = nullptr);
|
|
static void loadSettings();
|
|
private:
|
|
void saveSettings();
|
|
|
|
QSpinBox *m_preloadImages;
|
|
QSpinBox *m_thumSize;
|
|
};
|
|
|
|
#endif // SETTINGSDIALOG_H
|