The Battle for Wesnoth  1.13.4+dev
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mp_create_game_set_password.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2010 - 2016 by Ignacio Riquelme Morelle <[email protected]>
3  Part of the Battle for Wesnoth Project http://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 #define GETTEXT_DOMAIN "wesnoth-lib"
16 
18 
19 //#include "gui/dialogs/field.hpp"
20 #include "gui/widgets/settings.hpp"
21 
22 namespace gui2
23 {
24 
25 /*WIKI
26  * @page = GUIWindowDefinitionWML
27  * @order = 2_mp_create_game_set_password
28  *
29  * == Create Game: Set Password ==
30  *
31  * Dialog for setting a join password for MP games.
32  *
33  * @begin{table}{dialog_widgets}
34  *
35  * password & & text_box & m &
36  * Input field for the game password. $
37  *
38  * @end{table}
39  */
40 
41 REGISTER_DIALOG(mp_create_game_set_password)
42 
44  std::string& password)
45 {
46  register_text("password", true, password, true);
47 }
48 
49 } // namespace gui2
REGISTER_DIALOG(label_settings)
STL namespace.
A class inherited from ttext_box that displays its input as stars.
Definition: field-fwd.hpp:23
This file contains the settings handling of the widget library.