diff options
| author | Mike Skec <skec@protonmail.ch> | 2021-01-09 15:55:52 +1100 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2021-01-10 13:40:46 +0100 |
| commit | c635094a6bdfcf2f081eb3c0ed9a1454ae2933fb (patch) | |
| tree | b41aca9c2803ad3acbe89c027b340b15ac473eee /src/browsertab.hpp | |
| parent | dd3e8716b276f9f1646338f8801ca9a2f688fc46 (diff) | |
| download | kristall-c635094a6bdfcf2f081eb3c0ed9a1454ae2933fb.tar.gz | |
status bar: show request status when loading pages
status text for loading HTTP/S is only a simple 'loading webpage'. The other protocols display more information
Diffstat (limited to 'src/browsertab.hpp')
| -rw-r--r-- | src/browsertab.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/browsertab.hpp b/src/browsertab.hpp index 9b0d662..27add74 100644 --- a/src/browsertab.hpp +++ b/src/browsertab.hpp @@ -105,6 +105,7 @@ signals: void titleChanged(QString const & title); void locationChanged(QUrl const & url); void fileLoaded(DocumentStats const & stats); + void requestStateChanged(RequestState state); private slots: void on_url_bar_returnPressed(); @@ -228,6 +229,8 @@ public: bool no_url_style = false; bool was_read_from_cache = false; + + RequestState request_state; }; #endif // BROWSERTAB_HPP |
