blob: 475d5b0ae5ca9d637f569de78165d4d74649bb10 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
#ifndef SETTINGSDIALOG_HPP
#define SETTINGSDIALOG_HPP
#include <QDialog>
#include "geminirenderer.hpp"
#include "protocolsetup.hpp"
#include "documentstyle.hpp"
namespace Ui {
class SettingsDialog;
}
class SettingsDialog : public QDialog
{
Q_OBJECT
public:
explicit SettingsDialog(QWidget *parent = nullptr);
~SettingsDialog();
void setGeminiStyle(DocumentStyle const & style);
DocumentStyle geminiStyle() const {
return current_style;
}
QUrl startPage() const;
void setStartPage(QUrl const & url);
ProtocolSetup protocols() const;
void setProtocols(ProtocolSetup const & proto);
QString uiTheme() const;
void setUiTheme(QString const & theme);
private slots:
void on_std_change_font_clicked();
void on_pre_change_font_clicked();
void on_h1_change_font_clicked();
void on_h2_change_font_clicked();
void on_h3_change_font_clicked();
void on_std_change_color_clicked();
void on_pre_change_color_clicked();
void on_h1_change_color_clicked();
void on_h2_change_color_clicked();
void on_h3_change_color_clicked();
void on_bg_change_color_clicked();
void on_link_local_change_color_clicked();
void on_link_foreign_change_color_clicked();
void on_link_cross_change_color_clicked();
void on_link_local_prefix_textChanged(const QString &arg1);
void on_link_foreign_prefix_textChanged(const QString &arg1);
void on_auto_theme_currentIndexChanged(int index);
void on_preview_url_textChanged(const QString &arg1);
void on_page_margin_valueChanged(double arg1);
void on_presets_currentIndexChanged(int index);
void on_preset_new_clicked();
void on_SettingsDialog_accepted();
void on_quote_change_color_clicked();
void on_preset_save_clicked();
void on_preset_load_clicked();
void on_preset_import_clicked();
void on_preset_export_clicked();
private:
void reloadStylePreview();
void updateFont(QFont & input);
void updateColor(QColor & input);
private:
Ui::SettingsDialog *ui;
DocumentStyle current_style;
std::unique_ptr<QTextDocument> preview_document;
QMap<QString, DocumentStyle> predefined_styles;
};
#endif // SETTINGSDIALOG_HPP
|