The Battle for Wesnoth  1.19.0-dev
edit_label.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2010 - 2024
3  by Iris Morelle <shadowm2006@gmail.com>
4  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY.
12 
13  See the COPYING file for more details.
14 */
15 
16 #define GETTEXT_DOMAIN "wesnoth-lib"
17 
19 
20 
21 namespace gui2::dialogs
22 {
23 
24 REGISTER_DIALOG(edit_label)
25 
26 edit_label::edit_label(std::string& label, bool& team_only)
27  : modal_dialog(window_id())
28 {
29  register_text("label", true, label, true);
30  register_bool("team_only_toggle", true, team_only);
31 }
32 } // namespace dialogs
Dialog for editing gamemap labels.
Definition: edit_label.hpp:34
Abstract base class for all modal dialogs.
A label displays text that can be wrapped but no scrollbars are provided.
Definition: label.hpp:56
REGISTER_DIALOG(tod_new_schedule)