diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-08 18:36:35 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-08 18:36:35 +0200 |
| commit | 8c9480f6fc1b73b2f9ca5c1463a8ee10a579712d (patch) | |
| tree | 28d5880141380870d040481aeea0b6dab16852e4 /src/mainwindow.hpp | |
| parent | 75deaa0c850d374f526102b0b38402b2632f9751 (diff) | |
| download | kristall-8c9480f6fc1b73b2f9ca5c1463a8ee10a579712d.tar.gz | |
Improves gopher map rendering with icons and monospace font, adds status bar with more infos, fixes file dialog for older qt versions.
Diffstat (limited to 'src/mainwindow.hpp')
| -rw-r--r-- | src/mainwindow.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainwindow.hpp b/src/mainwindow.hpp index 9a460a8..557744d 100644 --- a/src/mainwindow.hpp +++ b/src/mainwindow.hpp @@ -73,6 +73,8 @@ private slots: void on_actionAdd_to_favourites_triggered(); + void on_tab_fileLoaded(qint64 fileSize, QString const & mime, int msec); + private: void reloadTheme(); @@ -86,5 +88,8 @@ private: Ui::MainWindow *ui; QLabel * url_status; + QLabel * file_size; + QLabel * file_mime; + QLabel * load_time; }; #endif // MAINWINDOW_HPP |
