The Battle for Wesnoth  1.17.17+dev
server_info_dialog.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2020 - 2023
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
20 {
21 class listbox;
22 
23 namespace dialogs
24 {
25 class server_info : public modal_dialog
26 {
27 public:
28  /**
29  * Constructor.
30  */
31  server_info(const std::string& info, const std::string& announcement);
32 
33  /**
34  * The display function.
35  *
36  * See @ref modal_dialog for more information.
37  */
38  static void display(const std::string& info, const std::string& announcements)
39  {
40  server_info(info, announcements).show();
41  }
42 
43 private:
44  virtual const std::string& window_id() const override;
45 
46  virtual void pre_show(window& window) override;
47 
48  void tab_switch_callback();
49 
50  const std::string& server_information_;
51  const std::string& announcements_;
52 };
53 }
54 }
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_
server_info(const std::string &info, const std::string &announcement)
Constructor.
const std::string & announcements_
virtual void pre_show(window &window) override
Actions to be taken before showing the window.
base class of top level items, the only item which needs to store the final canvases to draw on.
Definition: window.hpp:67
Various uncategorised dialogs.
Generic file dialog.
logger & info()
Definition: log.cpp:232