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/pageappearance.h
Normal file
26
ui/widgets/settings/pageappearance.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
#ifndef PAGEAPPEARANCE_H
|
||||
#define PAGEAPPEARANCE_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QScopedPointer>
|
||||
|
||||
namespace Ui
|
||||
{
|
||||
class PageAppearance;
|
||||
}
|
||||
|
||||
/**
|
||||
* @todo write docs
|
||||
*/
|
||||
class PageAppearance : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
PageAppearance(QWidget* parent = nullptr);
|
||||
~PageAppearance();
|
||||
|
||||
private:
|
||||
QScopedPointer<Ui::PageAppearance> m_ui;
|
||||
};
|
||||
|
||||
#endif // PAGEAPPEARANCE_H
|
Loading…
Add table
Add a link
Reference in a new issue