76 lines
3.0 KiB
C++
76 lines
3.0 KiB
C++
|
#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());
|
||
|
//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());
|
||
|
ui->colorCaret->setColor(pSettings->editor().caretColor());
|
||
|
}
|
||
|
|
||
|
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());
|
||
|
//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));
|
||
|
pSettings->editor().setCaretColor(ui->colorCaret->color());
|
||
|
|
||
|
pSettings->editor().save();
|
||
|
pMainWindow->updateEditorSettings();
|
||
|
}
|