some more thoughts about settings widgets

This commit is contained in:
Blue 2022-01-19 23:46:42 +03:00
parent 841e526e59
commit a8a7ce2538
Signed by untrusted user: blue
GPG key ID: 9B203B252A63EE38
12 changed files with 248 additions and 45 deletions

View file

@ -0,0 +1,26 @@
#ifndef PAGEGENERAL_H
#define PAGEGENERAL_H
#include <QWidget>
#include <QScopedPointer>
namespace Ui
{
class PageGeneral;
}
/**
* @todo write docs
*/
class PageGeneral : public QWidget
{
Q_OBJECT
public:
PageGeneral(QWidget* parent = nullptr);
~PageGeneral();
private:
QScopedPointer<Ui::PageGeneral> m_ui;
};
#endif // PAGEGENERAL_H