#include "settingsdialog.hpp" #include "ui_settingsdialog.h" #include #include #include #include #include #include "kristall.hpp" SettingsDialog::SettingsDialog(QWidget *parent) : QDialog(parent), ui(new Ui::SettingsDialog), current_style() { ui->setupUi(this); static_assert(DocumentStyle::Fixed == 0); static_assert(DocumentStyle::AutoDarkTheme == 1); static_assert(DocumentStyle::AutoLightTheme == 2); this->ui->auto_theme->clear(); this->ui->auto_theme->addItem("Disabled", QVariant::fromValue(DocumentStyle::Fixed)); this->ui->auto_theme->addItem("Dark Theme", QVariant::fromValue(DocumentStyle::AutoDarkTheme)); this->ui->auto_theme->addItem("Light Theme", QVariant::fromValue(DocumentStyle::AutoLightTheme)); this->ui->ui_theme->clear(); this->ui->ui_theme->addItem("Light", QVariant::fromValue("light")); this->ui->ui_theme->addItem("Dark", QVariant::fromValue("dark")); setGeminiStyle(DocumentStyle { }); if(global_settings.value("gophermap_display").toString() == "text") { this->ui->gophermap_text->setChecked(true); } else { this->ui->gophermap_icon->setChecked(true); } if(global_settings.value("text_display").toString() == "plain") { this->ui->fancypants_off->setChecked(true); } else { this->ui->fancypants_on->setChecked(true); } if(global_settings.value("text_decoration").toBool()) { this->ui->texthl_on->setChecked(true); } else { this->ui->texthl_off->setChecked(true); } // settings.beginGroup("Themes"); // int items = settings.beginReadArray("Themes"); // this->ui->presets->clear(); // for(int i = 0; i < items; i++) // { // settings.setArrayIndex(i); // this->ui->presets->addItem(settings.value("name").toString(), QVariant::fromValue(i)); // } // settings.endArray(); this->on_presets_currentIndexChanged(-1); } SettingsDialog::~SettingsDialog() { delete ui; } static QString formatFont(QFont const & font) { QString style; if(font.italic() and font.bold()) style = "bold, italic"; else if(font.italic()) style = "italic"; else if(font.bold()) style = "bold"; else style = "regular"; return QString("%1 (%2pt, %3)") .arg(font.family()) .arg(font.pointSizeF()) .arg(style); } void SettingsDialog::setGeminiStyle(DocumentStyle const &style) { static const QString COLOR_STYLE("border: 1px solid black; padding: 4px; background-color : %1; color : %2;"); this->current_style = style; this->ui->auto_theme->setCurrentIndex(this->current_style.theme); this->ui->page_margin->setValue(this->current_style.margin); auto setFontAndColor = [this](QLabel * label, QFont font, QColor color) { label->setText(formatFont(font)); label->setStyleSheet(COLOR_STYLE .arg(this->current_style.background_color.name()) .arg(color.name())); }; ui->bg_preview->setStyleSheet(COLOR_STYLE .arg(this->current_style.background_color.name()) .arg("#FF00FF")); ui->quote_preview->setStyleSheet(COLOR_STYLE .arg(this->current_style.blockquote_color.name()) .arg("#FF00FF")); ui->link_local_preview->setStyleSheet(COLOR_STYLE .arg(this->current_style.background_color.name()) .arg(this->current_style.internal_link_color.name())); ui->link_foreign_preview->setStyleSheet(COLOR_STYLE .arg(this->current_style.background_color.name()) .arg(this->current_style.external_link_color.name())); ui->link_cross_preview->setStyleSheet(COLOR_STYLE .arg(this->current_style.background_color.name()) .arg(this->current_style.cross_scheme_link_color.name())); setFontAndColor(this->ui->std_preview, this->current_style.standard_font, this->current_style.standard_color); setFontAndColor(this->ui->pre_preview, this->current_style.preformatted_font, this->current_style.preformatted_color); setFontAndColor(this->ui->h1_preview, this->current_style.h1_font, this->current_style.h1_color); setFontAndColor(this->ui->h2_preview, this->current_style.h2_font, this->current_style.h2_color); setFontAndColor(this->ui->h3_preview, this->current_style.h3_font, this->current_style.h3_color); this->reloadStylePreview(); } QUrl SettingsDialog::startPage() const { return QUrl(this->ui->start_page->text()); } void SettingsDialog::setStartPage(const QUrl &url) { this->ui->start_page->setText(url.toString()); } ProtocolSetup SettingsDialog::protocols() const { ProtocolSetup protocols; #define M(X) \ protocols.X = this->ui->enable_##X->isChecked(); PROTOCOLS(M) #undef M return protocols; } void SettingsDialog::setProtocols(ProtocolSetup const & protocols) { #define M(X) \ this->ui->enable_##X->setChecked(protocols.X); PROTOCOLS(M) #undef M } QString SettingsDialog::uiTheme() const { return this->ui->ui_theme->currentData().toString(); } void SettingsDialog::setUiTheme(const QString &theme) { if(theme == "light") this->ui->ui_theme->setCurrentIndex(0); else if(theme == "dark") this->ui->ui_theme->setCurrentIndex(1); else this->ui->ui_theme->setCurrentIndex(0); } void SettingsDialog::reloadStylePreview() { auto const document = R"gemini(# H1 Header ## H2 Header ### H3 Header Plain text document here. * List A * List B => rela-link Same-Site Link => //foreign.host/ Foreign Site Link => https://foreign.host/ Cross-Protocol Link > Multi-lined > block quotes ``` ▄▄▄ ██▀███ ▄▄▄█████▓ ▒████▄ ▓██ ▒ ██▒▓ ██▒ ▓▒ ▒██ ▀█▄ ▓██ ░▄█ ▒▒ ▓██░ ▒░ ░██▄▄▄▄██ ▒██▀▀█▄ ░ ▓██▓ ░ ▓█ ▓██▒░██▓ ▒██▒ ▒██▒ ░ ▒▒ ▓▒█░░ ▒▓ ░▒▓░ ▒ ░░ ▒ ▒▒ ░ ░▒ ░ ▒░ ░ ░ ▒ ░░ ░ ░ ░ ░ ░ )gemini"; QString host = this->ui->preview_url->text(); if(host.length() == 0) host = "preview"; QUrl url { QUrl(QString("about://%1/foobar").arg(host)) }; DocumentOutlineModel outline; auto doc = GeminiRenderer::render( document, url, current_style.derive(url), outline ); ui->style_preview->setStyleSheet(QString("QTextBrowser { background-color: %1; }") .arg(doc->background_color.name())); ui->style_preview->setDocument(doc.get()); preview_document = std::move(doc); } void SettingsDialog::updateFont(QFont & input) { QFontDialog dialog { this }; dialog.setCurrentFont(input); if(dialog.exec() == QDialog::Accepted) { input = dialog.currentFont(); setGeminiStyle(current_style); } } void SettingsDialog::on_std_change_font_clicked() { updateFont(current_style.standard_font); } void SettingsDialog::on_pre_change_font_clicked() { updateFont(current_style.preformatted_font); } void SettingsDialog::on_h1_change_font_clicked() { updateFont(current_style.h1_font); } void SettingsDialog::on_h2_change_font_clicked() { updateFont(current_style.h2_font); } void SettingsDialog::on_h3_change_font_clicked() { updateFont(current_style.h3_font); } void SettingsDialog::updateColor(QColor &input) { QColorDialog dialog { this }; dialog.setCurrentColor(input); if(dialog.exec() == QDialog::Accepted) { input = dialog.currentColor(); setGeminiStyle(current_style); } } void SettingsDialog::on_std_change_color_clicked() { updateColor(current_style.standard_color); } void SettingsDialog::on_pre_change_color_clicked() { updateColor(current_style.preformatted_color); } void SettingsDialog::on_h1_change_color_clicked() { updateColor(current_style.h1_color); } void SettingsDialog::on_h2_change_color_clicked() { updateColor(current_style.h2_color); } void SettingsDialog::on_h3_change_color_clicked() { updateColor(current_style.h3_color); } void SettingsDialog::on_bg_change_color_clicked() { updateColor(current_style.background_color); } void SettingsDialog::on_link_local_change_color_clicked() { updateColor(current_style.internal_link_color); } void SettingsDialog::on_link_foreign_change_color_clicked() { updateColor(current_style.external_link_color); } void SettingsDialog::on_link_cross_change_color_clicked() { updateColor(current_style.cross_scheme_link_color); } void SettingsDialog::on_quote_change_color_clicked() { updateColor(current_style.blockquote_color); } void SettingsDialog::on_link_local_prefix_textChanged(const QString &text) { current_style.internal_link_prefix = text; reloadStylePreview(); } void SettingsDialog::on_link_foreign_prefix_textChanged(const QString &text) { current_style.external_link_prefix = text; reloadStylePreview(); } void SettingsDialog::on_auto_theme_currentIndexChanged(int index) { if(index >= 0) { current_style.theme = DocumentStyle::Theme(index); reloadStylePreview(); } } void SettingsDialog::on_preview_url_textChanged(const QString &) { this->reloadStylePreview(); } void SettingsDialog::on_page_margin_valueChanged(double value) { this->current_style.margin = value; this->reloadStylePreview(); } void SettingsDialog::on_presets_currentIndexChanged(int index) { this->ui->preset_load->setEnabled(index >= 0); this->ui->preset_save->setEnabled(index >= 0); this->ui->preset_export->setEnabled(index >= 0); } void SettingsDialog::on_preset_new_clicked() { QInputDialog dlg { this }; dlg.setInputMode(QInputDialog::TextInput); dlg.setOkButtonText("Save"); dlg.setCancelButtonText("Cancel"); dlg.setLabelText("Enter the name of your new preset:"); if(dlg.exec() != QInputDialog::Accepted) return; QString name = dlg.textValue(); } void SettingsDialog::on_SettingsDialog_accepted() { global_settings.setValue("gophermap_display", this->ui->gophermap_text->isChecked() ? "text" : "rendered"); global_settings.setValue("text_display", this->ui->fancypants_off->isChecked() ? "plain" : "fancy"); global_settings.setValue("text_decoration", this->ui->texthl_on->isChecked()); }