1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 22:35:07 +00:00

ChanViewer: Add a status bar to show loading status

Also update the window title with the current board after loading. :^)
This commit is contained in:
Andreas Kling 2019-08-05 18:54:44 +02:00
parent fdcaf2d2b5
commit cd08c8e1bf
3 changed files with 30 additions and 2 deletions

View file

@ -4,6 +4,7 @@
#include <LibGUI/GApplication.h>
#include <LibGUI/GBoxLayout.h>
#include <LibGUI/GComboBox.h>
#include <LibGUI/GStatusBar.h>
#include <LibGUI/GTableView.h>
#include <LibGUI/GWindow.h>
@ -29,11 +30,25 @@ int main(int argc, char** argv)
auto* catalog_view = new GTableView(widget);
catalog_view->set_model(ThreadCatalogModel::create());
auto& catalog_model = *static_cast<ThreadCatalogModel*>(catalog_view->model());
auto* statusbar = new GStatusBar(widget);
board_combo->on_change = [&] (auto&, const GModelIndex& index) {
auto selected_board = board_combo->model()->data(index, GModel::Role::Custom);
ASSERT(selected_board.is_string());
static_cast<ThreadCatalogModel*>(catalog_view->model())->set_board(selected_board.to_string());
catalog_model.set_board(selected_board.to_string());
};
catalog_model.on_load_started = [&] {
statusbar->set_text(String::format("Loading /%s/...", catalog_model.board().characters()));
};
catalog_model.on_load_finished = [&](bool success) {
statusbar->set_text(success ? "Load finished" : "Load failed");
if (success) {
window->set_title(String::format("/%s/ - ChanViewer", catalog_model.board().characters()));
}
};
window->show();