The Battle for Wesnoth  1.19.0-dev
community_dialog.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2003 - 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 
22 /**
23  * @ingroup GUIWindowDefinitionWML
24  *
25  * This shows a dialog displaying community links.
26  *
27  * Key |Type |Mandatory|Description
28  * -------|--------|---------|-----------
29  * forums |button |yes |Links to the Wesnoth forums
30  * discord|button |yes |Links to the Wesnoth Discord server
31  * irc |button |yes |Links to a web client for the Wesnoth IRC channels
32  * steam |button |yes |Links to the Wesnoth Steam forums
33  * reddit |button |yes |Links to the Wesnoth sub-reddit
34  * donate |button |yes |Links to the SPI donation page for Wesnoth
35  */
36 
38 {
39 public:
41 
43 
44 private:
45  virtual const std::string& window_id() const override;
46 
47  virtual void pre_show(window& window) override;
48 
49  virtual void post_show(window& window) override;
50 };
51 
52 } // namespace gui2::dialogs
This shows a dialog displaying community links.
virtual void post_show(window &window) override
Actions to be taken after the window has been shown.
virtual void pre_show(window &window) override
Actions to be taken before showing the window.
virtual const std::string & window_id() const override
The ID of the window to build.
Abstract base class for all modal dialogs.
base class of top level items, the only item which needs to store the final canvases to draw on.
Definition: window.hpp:63
#define DEFINE_SIMPLE_EXECUTE_WRAPPER(dialog)
Adds a bare-bonesstatic execute function to a dialog class that immediately invokes and return the re...