mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 06:19:52 +08:00
37 lines
493 B
C++
37 lines
493 B
C++
#include "miscpage.h"
|
|
|
|
#include <QFormLayout>
|
|
|
|
#include <widgets/widgetsfactory.h>
|
|
#include <core/coreconfig.h>
|
|
#include <core/sessionconfig.h>
|
|
#include <core/configmgr.h>
|
|
#include <utils/widgetutils.h>
|
|
|
|
using namespace vnotex;
|
|
|
|
MiscPage::MiscPage(QWidget *p_parent)
|
|
: SettingsPage(p_parent)
|
|
{
|
|
setupUI();
|
|
}
|
|
|
|
void MiscPage::setupUI()
|
|
{
|
|
}
|
|
|
|
void MiscPage::loadInternal()
|
|
{
|
|
|
|
}
|
|
|
|
bool MiscPage::saveInternal()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
QString MiscPage::title() const
|
|
{
|
|
return tr("Misc");
|
|
}
|