145 lines
4.2 KiB
C++
145 lines
4.2 KiB
C++
#include "fontpropertiesdialog.h"
|
|
#include "ui_fontpropertiesdialog.h"
|
|
|
|
#include <QDebug>
|
|
#include <QMessageBox>
|
|
|
|
#include "projectcontainer.h"
|
|
|
|
FontPropertiesDialog::FontPropertiesDialog(Font &font, QWidget *parent) :
|
|
QDialog{parent},
|
|
m_ui{std::make_unique<Ui::FontPropertiesDialog>()},
|
|
m_font{font}
|
|
{
|
|
m_ui->setupUi(this);
|
|
|
|
setWindowTitle(tr("Font Properties: %0").arg(m_font.name));
|
|
|
|
m_ui->lineEditName->setText(m_font.name);
|
|
m_ui->fontComboBox->setCurrentFont(m_font.font);
|
|
m_ui->spinBoxSize->setValue(m_font.font.pointSize());
|
|
m_ui->checkBoxBold->setChecked(m_font.font.bold());
|
|
m_ui->checkBoxItalic->setChecked(m_font.font.italic());
|
|
m_ui->spinBoxCharRangeFrom->setValue(m_font.range.from);
|
|
m_ui->spinBoxCharRangeTo->setValue(m_font.range.to);
|
|
|
|
m_ui->labelPreview->setFont(currentFont());
|
|
|
|
connect(m_ui->pushButtonNormal, &QAbstractButton::pressed,
|
|
this, &FontPropertiesDialog::normalRange);
|
|
connect(m_ui->pushButtonDigits, &QAbstractButton::pressed,
|
|
this, &FontPropertiesDialog::digitsRange);
|
|
connect(m_ui->pushButtonAll, &QAbstractButton::pressed,
|
|
this, &FontPropertiesDialog::allRange);
|
|
connect(m_ui->pushButtonLetters, &QAbstractButton::pressed,
|
|
this, &FontPropertiesDialog::lettersRange);
|
|
|
|
connect(m_ui->lineEditName, &QLineEdit::textChanged,
|
|
this, &FontPropertiesDialog::changed);
|
|
connect(m_ui->fontComboBox, &QFontComboBox::currentFontChanged,
|
|
this, &FontPropertiesDialog::changed);
|
|
connect(m_ui->spinBoxSize, &QSpinBox::valueChanged,
|
|
this, &FontPropertiesDialog::changed);
|
|
connect(m_ui->checkBoxBold, &QCheckBox::toggled,
|
|
this, &FontPropertiesDialog::changed);
|
|
connect(m_ui->checkBoxItalic, &QCheckBox::toggled,
|
|
this, &FontPropertiesDialog::changed);
|
|
connect(m_ui->spinBoxCharRangeFrom, &QSpinBox::valueChanged,
|
|
this, &FontPropertiesDialog::changed);
|
|
connect(m_ui->spinBoxCharRangeTo, &QSpinBox::valueChanged,
|
|
this, &FontPropertiesDialog::changed);
|
|
}
|
|
|
|
FontPropertiesDialog::~FontPropertiesDialog() = default;
|
|
|
|
void FontPropertiesDialog::accept()
|
|
{
|
|
if (m_font.name != m_ui->lineEditName->text())
|
|
{
|
|
QMessageBox::critical(this, tr("Not implemented"), tr("Changing the name is not yet implemented!"));
|
|
return;
|
|
}
|
|
|
|
m_font.font = currentFont();
|
|
m_font.range = {
|
|
.from = m_ui->spinBoxCharRangeFrom->value(),
|
|
.to = m_ui->spinBoxCharRangeTo->value(),
|
|
};
|
|
|
|
QDialog::accept();
|
|
}
|
|
|
|
void FontPropertiesDialog::reject()
|
|
{
|
|
if (!m_unsavedChanges)
|
|
{
|
|
QDialog::reject();
|
|
return;
|
|
}
|
|
|
|
const auto result = QMessageBox::warning(
|
|
this,
|
|
tr("The Font has been modified."),
|
|
tr("Do you want to save your changes?"),
|
|
QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel,
|
|
QMessageBox::Save
|
|
);
|
|
switch (result)
|
|
{
|
|
case QMessageBox::Save:
|
|
accept();
|
|
return;
|
|
case QMessageBox::Discard:
|
|
QDialog::reject();
|
|
return;
|
|
case QMessageBox::Cancel:
|
|
return;
|
|
default:
|
|
qWarning() << "unexpected dialog result" << result;
|
|
}
|
|
}
|
|
|
|
void FontPropertiesDialog::normalRange()
|
|
{
|
|
m_ui->spinBoxCharRangeFrom->setValue(32);
|
|
m_ui->spinBoxCharRangeFrom->setValue(127);
|
|
}
|
|
|
|
void FontPropertiesDialog::digitsRange()
|
|
{
|
|
m_ui->spinBoxCharRangeFrom->setValue(48);
|
|
m_ui->spinBoxCharRangeFrom->setValue(57);
|
|
}
|
|
|
|
void FontPropertiesDialog::allRange()
|
|
{
|
|
m_ui->spinBoxCharRangeFrom->setValue(0);
|
|
m_ui->spinBoxCharRangeFrom->setValue(255);
|
|
}
|
|
|
|
void FontPropertiesDialog::lettersRange()
|
|
{
|
|
m_ui->spinBoxCharRangeFrom->setValue(65);
|
|
m_ui->spinBoxCharRangeFrom->setValue(122);
|
|
}
|
|
|
|
void FontPropertiesDialog::changed()
|
|
{
|
|
m_ui->labelPreview->setFont(currentFont());
|
|
if (!m_unsavedChanges)
|
|
{
|
|
setWindowTitle(tr("Font Properties: %0*").arg(m_font.name));
|
|
m_unsavedChanges = true;
|
|
}
|
|
}
|
|
|
|
QFont FontPropertiesDialog::currentFont() const
|
|
{
|
|
QFont font;
|
|
font.setFamily(m_ui->fontComboBox->currentFont().family());
|
|
font.setPointSize(m_ui->spinBoxSize->value());
|
|
font.setBold(m_ui->checkBoxBold->isChecked());
|
|
font.setItalic(m_ui->checkBoxItalic->isChecked());
|
|
return font;
|
|
}
|