The Battle for Wesnoth  1.19.0-dev
synced_choice_wait.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2014 - 2024
3  by Iris Morelle <shadowm2006@gmail.com>
4  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY.
12 
13  See the COPYING file for more details.
14 */
15 
17 
19 #include "gui/widgets/label.hpp"
20 #include "gui/widgets/button.hpp"
21 #include "gui/widgets/window.hpp"
22 #include "quit_confirmation.hpp"
23 
24 
25 
26 #include <functional>
27 
28 namespace gui2::dialogs
29 {
30 
31 REGISTER_DIALOG(synched_choice_wait)
32 
34  : modal_dialog(window_id())
35  , mgr_(mgr)
36  , message_()
37 {
38  mgr_.changed_event_.attach_handler(this);
39 }
40 
42 {
44 }
45 
47 {
48  message_ = find_widget<label>(&window, "lblMessage", false, true);
49 
50 
51  button& quit_button = find_widget<button>(
52  &window, "btn_quit_game", false);
53 
56 
58  if(mgr_.finished() || !mgr_.waiting()) {
59  window.close();
60  }
61 }
62 
63 void synched_choice_wait::handle_generic_event(const std::string& event_name)
64 {
65  assert(event_name == "user_choice_update");
66  assert(message_);
68  if(mgr_.finished() || !mgr_.waiting()) {
69  get_window()->close();
70  }
71 }
72 
73 } // namespace dialogs
virtual bool detach_handler(observer *obs)
Simple push button.
Definition: button.hpp:36
Abstract base class for all modal dialogs.
window * get_window()
Returns a pointer to the dialog's window.
virtual void pre_show(window &window) override
Actions to be taken before showing the window.
virtual void handle_generic_event(const std::string &event_name) override
virtual void set_label(const t_string &text)
base class of top level items, the only item which needs to store the final canvases to draw on.
Definition: window.hpp:63
void close()
Requests to close the window.
Definition: window.hpp:223
static void quit_to_title()
events::generic_event changed_event_
bool waiting() const
Note: currently finished() does not imply !waiting() so you may need to check both.
const std::string & wait_message() const
This file contains the window object, this object is a top level container which has the event manage...
REGISTER_DIALOG(tod_new_schedule)
void connect_signal_mouse_left_click(dispatcher &dispatcher, const signal &signal)
Connects a signal handler for a left mouse button click.
Definition: dispatcher.cpp:177