mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 13:59:52 +08:00
Settings: expose zoom delta and zoom factor configs
This commit is contained in:
parent
69170a88fc
commit
1f7acf2bc5
@ -4,6 +4,7 @@
|
|||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <QCheckBox>
|
#include <QCheckBox>
|
||||||
#include <QGroupBox>
|
#include <QGroupBox>
|
||||||
|
#include <QDoubleSpinBox>
|
||||||
|
|
||||||
#include <widgets/widgetsfactory.h>
|
#include <widgets/widgetsfactory.h>
|
||||||
#include <core/editorconfig.h>
|
#include <core/editorconfig.h>
|
||||||
@ -41,6 +42,8 @@ void MarkdownEditorPage::loadInternal()
|
|||||||
|
|
||||||
m_constrainImageWidthCheckBox->setChecked(markdownConfig.getConstrainImageWidthEnabled());
|
m_constrainImageWidthCheckBox->setChecked(markdownConfig.getConstrainImageWidthEnabled());
|
||||||
|
|
||||||
|
m_zoomFactorSpinBox->setValue(markdownConfig.getZoomFactorInReadMode());
|
||||||
|
|
||||||
m_constrainInPlacePreviewWidthCheckBox->setChecked(markdownConfig.getConstrainInPlacePreviewWidthEnabled());
|
m_constrainInPlacePreviewWidthCheckBox->setChecked(markdownConfig.getConstrainInPlacePreviewWidthEnabled());
|
||||||
|
|
||||||
m_fetchImagesToLocalCheckBox->setChecked(markdownConfig.getFetchImagesInParseAndPaste());
|
m_fetchImagesToLocalCheckBox->setChecked(markdownConfig.getFetchImagesInParseAndPaste());
|
||||||
@ -62,6 +65,8 @@ void MarkdownEditorPage::saveInternal()
|
|||||||
|
|
||||||
markdownConfig.setConstrainImageWidthEnabled(m_constrainImageWidthCheckBox->isChecked());
|
markdownConfig.setConstrainImageWidthEnabled(m_constrainImageWidthCheckBox->isChecked());
|
||||||
|
|
||||||
|
markdownConfig.setZoomFactorInReadMode(m_zoomFactorSpinBox->value());
|
||||||
|
|
||||||
markdownConfig.setConstrainInPlacePreviewWidthEnabled(m_constrainInPlacePreviewWidthCheckBox->isChecked());
|
markdownConfig.setConstrainInPlacePreviewWidthEnabled(m_constrainInPlacePreviewWidthCheckBox->isChecked());
|
||||||
|
|
||||||
markdownConfig.setFetchImagesInParseAndPaste(m_fetchImagesToLocalCheckBox->isChecked());
|
markdownConfig.setFetchImagesInParseAndPaste(m_fetchImagesToLocalCheckBox->isChecked());
|
||||||
@ -105,6 +110,20 @@ QGroupBox *MarkdownEditorPage::setupReadGroup()
|
|||||||
this, &MarkdownEditorPage::pageIsChanged);
|
this, &MarkdownEditorPage::pageIsChanged);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
m_zoomFactorSpinBox = WidgetsFactory::createDoubleSpinBox(box);
|
||||||
|
m_zoomFactorSpinBox->setToolTip(tr("Zoom factor in read mode"));
|
||||||
|
|
||||||
|
m_zoomFactorSpinBox->setRange(0.25, 10);
|
||||||
|
m_zoomFactorSpinBox->setSingleStep(0.25);
|
||||||
|
|
||||||
|
const QString label(tr("Zoom factor:"));
|
||||||
|
layout->addRow(label, m_zoomFactorSpinBox);
|
||||||
|
addSearchItem(label, m_zoomFactorSpinBox->toolTip(), m_zoomFactorSpinBox);
|
||||||
|
connect(m_zoomFactorSpinBox, QOverload<double>::of(&QDoubleSpinBox::valueChanged),
|
||||||
|
this, &MarkdownEditorPage::pageIsChanged);
|
||||||
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
const QString label(tr("HTML tag"));
|
const QString label(tr("HTML tag"));
|
||||||
m_htmlTagCheckBox = WidgetsFactory::createCheckBox(label, box);
|
m_htmlTagCheckBox = WidgetsFactory::createCheckBox(label, box);
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
class QCheckBox;
|
class QCheckBox;
|
||||||
class QGroupBox;
|
class QGroupBox;
|
||||||
|
class QDoubleSpinBox;
|
||||||
|
|
||||||
namespace vnotex
|
namespace vnotex
|
||||||
{
|
{
|
||||||
@ -43,6 +44,8 @@ namespace vnotex
|
|||||||
QCheckBox *m_autoBreakCheckBox = nullptr;
|
QCheckBox *m_autoBreakCheckBox = nullptr;
|
||||||
|
|
||||||
QCheckBox *m_linkifyCheckBox = nullptr;
|
QCheckBox *m_linkifyCheckBox = nullptr;
|
||||||
|
|
||||||
|
QDoubleSpinBox *m_zoomFactorSpinBox = nullptr;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,6 +117,20 @@ void TextEditorPage::setupUI()
|
|||||||
connect(m_tabStopWidthSpinBox, QOverload<int>::of(&QSpinBox::valueChanged),
|
connect(m_tabStopWidthSpinBox, QOverload<int>::of(&QSpinBox::valueChanged),
|
||||||
this, &TextEditorPage::pageIsChanged);
|
this, &TextEditorPage::pageIsChanged);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
m_zoomDeltaSpinBox = WidgetsFactory::createSpinBox(this);
|
||||||
|
m_zoomDeltaSpinBox->setToolTip(tr("Zoom delta of the basic font size"));
|
||||||
|
|
||||||
|
m_zoomDeltaSpinBox->setRange(-20, 20);
|
||||||
|
m_zoomDeltaSpinBox->setSingleStep(1);
|
||||||
|
|
||||||
|
const QString label(tr("Zoom delta:"));
|
||||||
|
mainLayout->addRow(label, m_zoomDeltaSpinBox);
|
||||||
|
addSearchItem(label, m_zoomDeltaSpinBox->toolTip(), m_zoomDeltaSpinBox);
|
||||||
|
connect(m_zoomDeltaSpinBox, QOverload<int>::of(&QSpinBox::valueChanged),
|
||||||
|
this, &TextEditorPage::pageIsChanged);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TextEditorPage::loadInternal()
|
void TextEditorPage::loadInternal()
|
||||||
@ -152,6 +166,8 @@ void TextEditorPage::loadInternal()
|
|||||||
m_expandTabCheckBox->setChecked(textConfig.getExpandTabEnabled());
|
m_expandTabCheckBox->setChecked(textConfig.getExpandTabEnabled());
|
||||||
|
|
||||||
m_tabStopWidthSpinBox->setValue(textConfig.getTabStopWidth());
|
m_tabStopWidthSpinBox->setValue(textConfig.getTabStopWidth());
|
||||||
|
|
||||||
|
m_zoomDeltaSpinBox->setValue(textConfig.getZoomDelta());
|
||||||
}
|
}
|
||||||
|
|
||||||
void TextEditorPage::saveInternal()
|
void TextEditorPage::saveInternal()
|
||||||
@ -184,6 +200,8 @@ void TextEditorPage::saveInternal()
|
|||||||
|
|
||||||
textConfig.setTabStopWidth(m_tabStopWidthSpinBox->value());
|
textConfig.setTabStopWidth(m_tabStopWidthSpinBox->value());
|
||||||
|
|
||||||
|
textConfig.setZoomDelta(m_zoomDeltaSpinBox->value());
|
||||||
|
|
||||||
EditorPage::notifyEditorConfigChange();
|
EditorPage::notifyEditorConfigChange();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,6 +38,8 @@ namespace vnotex
|
|||||||
QCheckBox *m_expandTabCheckBox = nullptr;
|
QCheckBox *m_expandTabCheckBox = nullptr;
|
||||||
|
|
||||||
QSpinBox *m_tabStopWidthSpinBox = nullptr;
|
QSpinBox *m_tabStopWidthSpinBox = nullptr;
|
||||||
|
|
||||||
|
QSpinBox *m_zoomDeltaSpinBox = nullptr;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user