forked from blue/squawk
31 lines
458 B
C++
31 lines
458 B
C++
#ifndef PAGEGENERAL_H
|
|
#define PAGEGENERAL_H
|
|
|
|
#include <QWidget>
|
|
#include <QScopedPointer>
|
|
#include <QVariant>
|
|
|
|
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
|