Some preparations to support EEPROM editor Only enable checksums and EEPROM editor for debug right now
33 lines
463 B
C++
33 lines
463 B
C++
#ifndef SETTINGSWINDOW_H
|
|
#define SETTINGSWINDOW_H
|
|
|
|
#include <QDialog>
|
|
#include <QSettings>
|
|
#include "repraptor.h"
|
|
|
|
using namespace RepRaptor;
|
|
|
|
namespace Ui {
|
|
class SettingsWindow;
|
|
}
|
|
|
|
class SettingsWindow : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SettingsWindow(QWidget *parent = 0);
|
|
|
|
QSettings settings;
|
|
|
|
~SettingsWindow();
|
|
|
|
private slots:
|
|
void on_buttonBox_accepted();
|
|
|
|
private:
|
|
Ui::SettingsWindow *ui;
|
|
};
|
|
|
|
#endif // SETTINGSWINDOW_H
|