diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-19 21:13:32 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-19 21:13:32 +0200 |
| commit | bfdc7d39485bbef90a65b79f6c3b0986133f530d (patch) | |
| tree | 7a50b6c9dc372cb302f064940c25826d0e1e07a1 /src/settingsdialog.hpp | |
| parent | 63103aa8c7f5b56720da097c73aa99da25841d45 (diff) | |
| download | kristall-bfdc7d39485bbef90a65b79f6c3b0986133f530d.tar.gz | |
Reworks TLS trust to enable symmetry between HTTPS and Gemini
Diffstat (limited to 'src/settingsdialog.hpp')
| -rw-r--r-- | src/settingsdialog.hpp | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/src/settingsdialog.hpp b/src/settingsdialog.hpp index d0b0d22..0256f95 100644 --- a/src/settingsdialog.hpp +++ b/src/settingsdialog.hpp @@ -30,8 +30,11 @@ public: ProtocolSetup protocols() const; void setProtocols(ProtocolSetup const & proto); - SslTrust sslTrust() const; - void setSslTrust(SslTrust const & trust); + SslTrust geminiSslTrust() const; + void setGeminiSslTrust(SslTrust const & trust); + + SslTrust httpsSslTrust() const; + void setHttpsSslTrust(SslTrust const & trust); GenericSettings options() const; void setOptions(GenericSettings const & options); @@ -91,14 +94,6 @@ private slots: void on_preset_export_clicked(); - void on_trust_enable_ca_clicked(); - - void on_trust_disable__ca_clicked(); - - void on_trust_level_currentIndexChanged(int index); - - void on_trust_revoke_selected_clicked(); - void on_start_page_textChanged(const QString &arg1); void on_ui_theme_currentIndexChanged(int index); @@ -132,8 +127,6 @@ private: void updateColor(QColor & input); - void on_trusted_server_selection(QModelIndex const & current, QModelIndex const & previous); - private: Ui::SettingsDialog *ui; |
