forked from blue/squawk
32 lines
479 B
C++
32 lines
479 B
C++
#ifndef PAGEGENERAL_H
|
|
#define PAGEGENERAL_H
|
|
|
|
#include <QWidget>
|
|
#include <QScopedPointer>
|
|
#include <QVariant>
|
|
#include <QSettings>
|
|
|
|
namespace Ui
|
|
{
|
|
class PageGeneral;
|
|
}
|
|
|
|
/**
|
|
* @todo write docs
|
|
*/
|
|
class PageGeneral : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
PageGeneral(QWidget* parent = nullptr);
|
|
~PageGeneral();
|
|
|
|
signals:
|
|
void variableModified(const QString& key, const QVariant& value);
|
|
|
|
private:
|
|
QScopedPointer<Ui::PageGeneral> m_ui;
|
|
};
|
|
|
|
#endif // PAGEGENERAL_H
|