started to work on settings
This commit is contained in:
parent
62a59eb7a1
commit
6bee149e6b
10 changed files with 260 additions and 2 deletions
26
ui/widgets/settings/settings.h
Normal file
26
ui/widgets/settings/settings.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
#ifndef SETTINGS_H
|
||||
#define SETTINGS_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QScopedPointer>
|
||||
|
||||
namespace Ui
|
||||
{
|
||||
class Settings;
|
||||
}
|
||||
|
||||
/**
|
||||
* @todo write docs
|
||||
*/
|
||||
class Settings : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
Settings(QWidget* parent = nullptr);
|
||||
~Settings();
|
||||
|
||||
private:
|
||||
QScopedPointer<Ui::Settings> m_ui;
|
||||
};
|
||||
|
||||
#endif // SETTINGS_H
|
Loading…
Add table
Add a link
Reference in a new issue