The Battle for Wesnoth  1.19.0-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
20 {
21 
22 namespace dialogs
23 {
24 class server_info : public modal_dialog
25 {
26 public:
27  /**
28  * Constructor.
29  */
30  server_info(const std::string& info, const std::string& announcement);
31 
32  /**
33  * The display function.
34  *
35  * See @ref modal_dialog for more information.
36  */
37  static void display(const std::string& info, const std::string& announcements)
38  {
39  server_info(info, announcements).show();
40  }
41 
42 private:
43  virtual const std::string& window_id() const override;
44 
45  virtual void pre_show(window& window) override;
46 
47  void tab_switch_callback();
48 
49  const std::string& server_information_;
50  const std::string& announcements_;
51 };
52 }
53 }
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:63
Various uncategorised dialogs.
Generic file dialog.
logger & info()
Definition: log.cpp:314