blob: feb045582a09c842a43d39c6ab46b8b5852fcd1f (
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
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#ifndef BROWSERTAB_HPP
#define BROWSERTAB_HPP
#include <QWidget>
#include <QUrl>
#include <QGraphicsScene>
#include <QTextDocument>
#include <QNetworkAccessManager>
#include "geminiclient.hpp"
#include "documentoutlinemodel.hpp"
#include "tabbrowsinghistory.hpp"
#include "geminirenderer.hpp"
#include "webclient.hpp"
#include "gopherclient.hpp"
namespace Ui {
class BrowserTab;
}
class MainWindow;
class BrowserTab : public QWidget
{
Q_OBJECT
public:
enum PushToHistory {
DontPush,
PushImmediate,
PushAfterSuccess,
};
public:
explicit BrowserTab(MainWindow * mainWindow);
~BrowserTab();
void navigateTo(QUrl const & url, PushToHistory mode);
void navigateBack(QModelIndex history_index);
void navOneBackback();
void navOneForward();
void scrollToAnchor(QString const & anchor);
void reloadPage();
signals:
void titleChanged(QString const & title);
void locationChanged(QUrl const & url);
private slots:
void on_url_bar_returnPressed();
void on_refresh_button_clicked();
void on_requestComplete(QByteArray const & data, QString const & mime);
void on_requestFailed(QString const & reason);
void on_protocolViolation(QString const & reason);
void on_inputRequired(QString const & query);
void on_redirected(QUrl const & uri, bool is_permanent);
void on_temporaryFailure(TemporaryFailure reason, QString const & info);
void on_permanentFailure(PermanentFailure reason, QString const & info);
void on_transientCertificateRequested(QString const & reason);
void on_authorisedCertificateRequested(QString const & reason);
void on_certificateRejected(CertificateRejection reason, QString const & info);
void on_linkHovered(const QString &url);
void on_fav_button_clicked();
void on_text_browser_anchorClicked(const QUrl &arg1);
void on_text_browser_highlighted(const QUrl &arg1);
void on_back_button_clicked();
void on_forward_button_clicked();
void on_stop_button_clicked();
private:
void setErrorMessage(QString const & msg);
void pushToHistory(QUrl const & url);
void updateUI();
public:
Ui::BrowserTab *ui;
MainWindow * mainWindow;
QUrl current_location;
GeminiClient gemini_client;
WebClient web_client;
GopherClient gopher_client;
int redirection_count = 0;
bool push_to_history_after_load = false;
bool successfully_loaded = false;
DocumentOutlineModel outline;
QGraphicsScene graphics_scene;
TabBrowsingHistory history;
QModelIndex current_history_index;
std::unique_ptr<QTextDocument> current_document;
};
#endif // BROWSERTAB_HPP
|