The Battle for Wesnoth  1.13.4+dev
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
folder_create.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2011 - 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/widgets/settings.hpp"
20 
21 namespace gui2
22 {
23 
24 /*WIKI
25  * @page = GUIWindowDefinitionWML
26  * @order = 2_folder_create
27  *
28  * == Folder Create ==
29  *
30  * Dialog for providing the name of a new folder to create.
31  * Used by the file dialog.
32  *
33  * @begin{table}{dialog_widgets}
34  *
35  * name & & text_box & m &
36  * Input field for the new folder name. $
37  *
38  * @end{table}
39  */
40 
41 REGISTER_DIALOG(folder_create)
42 
43 tfolder_create::tfolder_create(std::string& folder_name)
44 {
45  register_text("name", true, folder_name, true);
46 }
47 }
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.