forked from blue/squawk
some more thoughts about settings widgets
This commit is contained in:
parent
841e526e59
commit
a8a7ce2538
12 changed files with 248 additions and 45 deletions
26
ui/widgets/settings/pagegeneral.h
Normal file
26
ui/widgets/settings/pagegeneral.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue