The Battle for Wesnoth  1.19.7+dev
server_info_dialog.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2020 - 2024
3  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY.
11 
12  See the COPYING file for more details.
13 */
14 
15 #pragma once
16 
18 
19 namespace gui2::dialogs
20 {
21 class server_info : public modal_dialog
22 {
23 public:
24  /**
25  * Constructor.
26  */
27  server_info(const std::string& info, const std::string& announcement);
28 
29  /**
30  * The display function.
31  *
32  * See @ref modal_dialog for more information.
33  */
34  static void display(const std::string& info, const std::string& announcements)
35  {
36  server_info(info, announcements).show();
37  }
38 
39 private:
40  virtual const std::string& window_id() const override;
41 
42  virtual void pre_show() override;
43 
44  void tab_switch_callback();
45 
46  const std::string& server_information_;
47  const std::string& announcements_;
48 };
49 
50 } // namespace gui2::dialogs
Abstract base class for all modal dialogs.
virtual const std::string & window_id() const override
The ID of the window to build.
static void display(const std::string &info, const std::string &announcements)
The display function.
const std::string & server_information_
virtual void pre_show() override
Actions to be taken before showing the window.
server_info(const std::string &info, const std::string &announcement)
Constructor.
const std::string & announcements_
logger & info()
Definition: log.cpp:319