mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 06:19:52 +08:00
27 lines
441 B
C++
27 lines
441 B
C++
#ifndef MISCPAGE_H
|
|
#define MISCPAGE_H
|
|
|
|
#include "settingspage.h"
|
|
|
|
namespace vnotex
|
|
{
|
|
class MiscPage : public SettingsPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MiscPage(QWidget *p_parent = nullptr);
|
|
|
|
QString title() const Q_DECL_OVERRIDE;
|
|
|
|
protected:
|
|
void loadInternal() Q_DECL_OVERRIDE;
|
|
|
|
bool saveInternal() Q_DECL_OVERRIDE;
|
|
|
|
private:
|
|
void setupUI();
|
|
};
|
|
}
|
|
|
|
#endif // MISCPAGE_H
|