RedPanda-CPP/RedPandaIDE/settingsdialog/editorgeneralwidget.cpp

118 lines
5.2 KiB
C++
Raw Normal View History

2021-06-07 11:02:03 +08:00
#include "editorgeneralwidget.h"
#include "ui_editorgeneralwidget.h"
#include "../settings.h"
#include "../mainwindow.h"
#include <QStandardItemModel>
EditorGeneralWidget::EditorGeneralWidget(const QString& name, const QString& group, QWidget *parent) :
SettingsWidget(name,group,parent),
ui(new Ui::editorgeneralwidget)
{
ui->setupUi(this);
QStringList caretTypes;
caretTypes.append(tr("Vertical Line"));
caretTypes.append(tr("Horizontal Line"));
caretTypes.append(tr("Half Block"));
caretTypes.append(tr("Block"));
ui->cbCaretForInsert->addItems(caretTypes);
ui->cbCaretForOverwrite->addItems(caretTypes);
}
EditorGeneralWidget::~EditorGeneralWidget()
{
delete ui;
}
static void setCaretTypeIndex(QComboBox* combo, SynEditCaretType caretType) {
int t = static_cast<int>(caretType);
combo->setCurrentIndex(t);
}
static SynEditCaretType getCaretTypeIndex(QComboBox* combo) {
if (combo->currentIndex()<0)
return SynEditCaretType::ctVerticalLine;
return static_cast<SynEditCaretType>(combo->currentIndex());
}
void EditorGeneralWidget::doLoad()
{
pSettings->editor().load();
//indents
ui->chkAddIndent->setChecked(pSettings->editor().addIndent());
ui->chkAutoIndent->setChecked(pSettings->editor().autoIndent());
ui->chkTabToSpaces->setChecked(pSettings->editor().autoIndent());
ui->spTabWidth->setValue(pSettings->editor().tabWidth());
ui->chkShowIndentLines->setChecked(pSettings->editor().showIndentLines());
ui->colorIndentLine->setColor(pSettings->editor().indentLineColor());
ui->chkFillIndents->setChecked(pSettings->editor().fillIndents());
2021-06-07 11:02:03 +08:00
//carets
ui->chkEnhanceHome->setChecked(pSettings->editor().enhanceHomeKey());
ui->chkEnhanceEndKey->setChecked(pSettings->editor().enhanceEndKey());
ui->chkKeepCaretX->setChecked(pSettings->editor().keepCaretX());
setCaretTypeIndex(ui->cbCaretForInsert,pSettings->editor().caretForInsert());
setCaretTypeIndex(ui->cbCaretForOverwrite,pSettings->editor().caretForOverwrite());
2021-09-04 19:29:57 +08:00
ui->chkCaretUseTextColor->setChecked(pSettings->editor().caretUseTextColor());
2021-06-07 11:02:03 +08:00
ui->colorCaret->setColor(pSettings->editor().caretColor());
//scrolls;
ui->chkAutoHideScrollBars->setChecked(pSettings->editor().autoHideScrollbar());
ui->chkScrollPastEOF->setChecked(pSettings->editor().scrollPastEof());
ui->chkScrollPastEOL->setChecked(pSettings->editor().scrollPastEol());
ui->chkScrollHalfPage->setChecked(pSettings->editor().halfPageScroll());
ui->chkScrollByOneLess->setChecked(pSettings->editor().scrollByOneLess());
ui->spinMouseWheelScrollSpeed->setValue(pSettings->editor().mouseWheelScrollSpeed());
2021-09-04 19:27:44 +08:00
//right margin line;
ui->grpRightEdge->setChecked(pSettings->editor().showRightEdgeLine());
ui->spRightEdge->setValue(pSettings->editor().rightEdgeWidth());
ui->colorRightEdgeLine->setColor(pSettings->editor().rightEdgeLineColor());
2021-06-07 11:02:03 +08:00
}
void EditorGeneralWidget::doSave()
{
//indents
pSettings->editor().setAddIndent(ui->chkAddIndent->isChecked());
pSettings->editor().setAutoIndent(ui->chkAutoIndent->isChecked());
pSettings->editor().setAutoIndent(ui->chkTabToSpaces->isChecked());
pSettings->editor().setTabWidth(ui->spTabWidth->value());
pSettings->editor().setShowIndentLines(ui->chkShowIndentLines->isChecked());
pSettings->editor().setIndentLineColor(ui->colorIndentLine->color());
pSettings->editor().setFillIndents(ui->chkFillIndents->isChecked());
2021-06-07 11:02:03 +08:00
//carets
pSettings->editor().setEnhanceHomeKey(ui->chkEnhanceHome->isChecked());
pSettings->editor().setEnhanceEndKey(ui->chkEnhanceEndKey->isChecked());
pSettings->editor().setKeepCaretX(ui->chkKeepCaretX->isChecked());
pSettings->editor().setCaretForInsert(getCaretTypeIndex(ui->cbCaretForInsert));
pSettings->editor().setCaretForOverwrite(getCaretTypeIndex(ui->cbCaretForOverwrite));
2021-09-04 19:27:44 +08:00
pSettings->editor().setCaretUseTextColor(ui->chkCaretUseTextColor->isChecked());
2021-06-07 11:02:03 +08:00
pSettings->editor().setCaretColor(ui->colorCaret->color());
//scrolls;
pSettings->editor().setAutoHideScrollbar(ui->chkAutoHideScrollBars->isChecked());
pSettings->editor().setScrollPastEof(ui->chkScrollPastEOF->isChecked());
pSettings->editor().setScrollPastEol(ui->chkScrollPastEOL->isChecked());
pSettings->editor().setScrollByOneLess(ui->chkScrollByOneLess->isChecked());
pSettings->editor().setHalfPageScroll(ui->chkScrollHalfPage->isChecked());
pSettings->editor().setMouseWheelScrollSpeed(ui->spinMouseWheelScrollSpeed->value());
2021-06-07 11:02:03 +08:00
2021-09-04 19:27:44 +08:00
//right margin line;
pSettings->editor().setShowRightEdgeLine(ui->grpRightEdge->isChecked());
pSettings->editor().setRightEdgeWidth(ui->spRightEdge->value());
pSettings->editor().setRightEdgeLineColor(ui->colorRightEdgeLine->color());
2021-06-25 12:40:11 +08:00
pSettings->editor().save();
2021-06-07 11:02:03 +08:00
pMainWindow->updateEditorSettings();
}
void EditorGeneralWidget::on_chkCaretUseTextColor_stateChanged(int )
{
ui->lbCaretColor->setVisible(!ui->chkCaretUseTextColor->isChecked());
ui->colorCaret->setVisible(!ui->chkCaretUseTextColor->isChecked());
}
void EditorGeneralWidget::on_chkShowIndentLines_stateChanged(int)
{
ui->lbIndentLineColor->setVisible(ui->chkShowIndentLines->isChecked());
ui->colorIndentLine->setVisible(ui->chkShowIndentLines->isChecked());
}