2024-10-29 17:44:21 +01:00
|
|
|
#include "app_win_2_back.hpp"
|
|
|
|
#include "hello_world.hpp"
|
2024-10-29 18:00:04 +01:00
|
|
|
#include <glibmm/miscutils.h>
|
2024-10-29 20:23:15 +01:00
|
|
|
#include <gtkmm/switch.h>
|
2024-10-29 22:50:42 +01:00
|
|
|
#include <spdlog/spdlog.h>
|
2024-10-29 17:44:21 +01:00
|
|
|
|
|
|
|
namespace gui_to_app {
|
|
|
|
AppWin2Back::AppWin2Back() : Gtk::Application("org.billy_adventures.character_sheet", Flags::HANDLES_OPEN) {
|
|
|
|
Glib::set_application_name("Billy's character sheet");
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppWin2Back::on_startup() {
|
|
|
|
Application::on_startup();
|
|
|
|
const auto menu_bar = []() -> Glib::RefPtr<Gio::Menu> {
|
|
|
|
try {
|
|
|
|
const auto builder = Gtk::Builder::create_from_file("menu_bar.ui");
|
|
|
|
return builder->get_object<Gio::Menu>("menu");
|
|
|
|
} catch (const std::exception &e) {
|
2024-10-29 22:50:42 +01:00
|
|
|
spdlog::error("Error occurred while loader menu bar: {}", e.what());
|
2024-10-29 17:44:21 +01:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
if (!menu_bar) {
|
2024-10-29 22:50:42 +01:00
|
|
|
spdlog::error("Error occured while loading menu bar's.");
|
2024-10-29 17:44:21 +01:00
|
|
|
} else {
|
|
|
|
set_menubar(menu_bar);
|
2024-10-29 18:00:04 +01:00
|
|
|
add_action("quit", sigc::mem_fun(*this, &AppWin2Back::on_quit));
|
2024-10-29 17:44:21 +01:00
|
|
|
set_accel_for_action("app.quit", "<Ctrl>q");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<AppWin2Back> AppWin2Back::create() {
|
|
|
|
return Glib::make_refptr_for_instance(new AppWin2Back());
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppWin2Back::on_activate() {
|
|
|
|
Application::on_activate();
|
|
|
|
|
2024-12-18 22:55:31 +01:00
|
|
|
app_builder = [this]() -> Glib::RefPtr<Gtk::Builder> {
|
2024-10-29 17:44:21 +01:00
|
|
|
try {
|
|
|
|
return Gtk::Builder::create_from_file("window_ui.ui");
|
|
|
|
} catch (const std::exception &e) {
|
2024-10-29 22:50:42 +01:00
|
|
|
spdlog::critical("Error occurred while loading Window's UI: {}", e.what());
|
2024-10-29 17:44:21 +01:00
|
|
|
quit();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
if (!app_builder) {
|
2024-10-29 22:50:42 +01:00
|
|
|
spdlog::critical("Error while loading UI");
|
2024-10-29 17:44:21 +01:00
|
|
|
quit();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
main_window = Gtk::Builder::get_widget_derived<learn_gtkmm4::HelloWorld>(app_builder, "main_window");
|
|
|
|
if (main_window != nullptr) {
|
|
|
|
add_window(*main_window);
|
|
|
|
main_window->set_show_menubar(true);
|
|
|
|
main_window->set_visible(true);
|
|
|
|
} else {
|
2024-10-29 22:50:42 +01:00
|
|
|
spdlog::critical("Error while getting window from builder");
|
2024-10-29 18:00:04 +01:00
|
|
|
on_quit();
|
2024-10-29 20:23:15 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
sword_switch = app_builder->get_widget<Gtk::Switch>("sword_switch");
|
|
|
|
lance_switch = app_builder->get_widget<Gtk::Switch>("lance_switch");
|
|
|
|
morgen_switch = app_builder->get_widget<Gtk::Switch>("morgenstern_switch");
|
|
|
|
bow_switch = app_builder->get_widget<Gtk::Switch>("arc_switch");
|
|
|
|
chainmail_switch = app_builder->get_widget<Gtk::Switch>("chainmail_switch");
|
|
|
|
cookpot_switch = app_builder->get_widget<Gtk::Switch>("cookingpot_switch");
|
|
|
|
pamphlet_switch = app_builder->get_widget<Gtk::Switch>("pamphlet_tourist_switch");
|
|
|
|
medkit_switch = app_builder->get_widget<Gtk::Switch>("medkit_switch");
|
|
|
|
fourche_switch = app_builder->get_widget<Gtk::Switch>("fourche_switch");
|
|
|
|
dagger_switch = app_builder->get_widget<Gtk::Switch>("dagger_switch");
|
|
|
|
rock_kit_switch = app_builder->get_widget<Gtk::Switch>("rock_kit_switch");
|
|
|
|
sack_switch = app_builder->get_widget<Gtk::Switch>("sack_switch");
|
|
|
|
|
|
|
|
const auto test_result = [this]() -> std::vector<const char *> {
|
|
|
|
const std::array test_ptrs{
|
2024-12-18 22:55:42 +01:00
|
|
|
std::pair{ "sword_switch", sword_switch == nullptr },
|
|
|
|
std::pair{ "lance_switch", lance_switch == nullptr },
|
|
|
|
std::pair{ "morgen_switch", morgen_switch == nullptr },
|
|
|
|
std::pair{ "bow_switch", bow_switch == nullptr },
|
|
|
|
std::pair{ "chainmail_switch", chainmail_switch == nullptr },
|
|
|
|
std::pair{ "cookpot_switch", cookpot_switch == nullptr },
|
|
|
|
std::pair{ "pamphlet_switch", pamphlet_switch == nullptr },
|
|
|
|
std::pair{ "medkit_switch", medkit_switch == nullptr },
|
|
|
|
std::pair{ "fourche_switch", fourche_switch == nullptr },
|
|
|
|
std::pair{ "dagger_switch", dagger_switch == nullptr },
|
|
|
|
std::pair{ "rock_kit_switch", rock_kit_switch == nullptr },
|
|
|
|
std::pair{ "sack_switch", sack_switch == nullptr },
|
2024-10-29 20:23:15 +01:00
|
|
|
};
|
2024-12-18 22:55:42 +01:00
|
|
|
std::vector<const char *> local_test_result;
|
|
|
|
local_test_result.reserve(test_ptrs.size());
|
|
|
|
std::for_each(test_ptrs.cbegin(),
|
|
|
|
test_ptrs.cend(),
|
|
|
|
[&local_test_result](const auto &a) {
|
|
|
|
if (a.second) {
|
|
|
|
local_test_result.emplace_back(a.first);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return local_test_result;
|
2024-10-29 20:23:15 +01:00
|
|
|
}();
|
|
|
|
if (!test_result.empty()) {
|
2024-10-29 22:50:42 +01:00
|
|
|
spdlog::critical("Error occurred, at least one switch is not available. See logs below");
|
2024-10-29 20:23:15 +01:00
|
|
|
for (const auto result: test_result) {
|
2024-10-29 22:50:42 +01:00
|
|
|
spdlog::critical(result);
|
2024-10-29 20:23:15 +01:00
|
|
|
}
|
|
|
|
on_quit();
|
|
|
|
return;
|
2024-10-29 18:00:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-29 22:51:14 +01:00
|
|
|
void AppWin2Back::on_quit() noexcept {
|
2024-10-29 18:00:04 +01:00
|
|
|
auto windows = get_windows();
|
|
|
|
for (auto *window: windows) {
|
|
|
|
window->set_visible(false);
|
2024-10-29 20:22:28 +01:00
|
|
|
delete window;
|
2024-10-29 17:44:21 +01:00
|
|
|
}
|
2024-10-29 18:00:04 +01:00
|
|
|
quit();
|
2024-10-29 17:44:21 +01:00
|
|
|
}
|
2024-12-18 22:55:42 +01:00
|
|
|
} // gui_to_app
|