The Battle for Wesnoth  1.19.5+dev
edit_text.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2013 - 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 #pragma once
17 
19 
20 namespace gui2::dialogs
21 {
22 
23 class edit_text : public modal_dialog
24 {
25 public:
26  /**
27  * Constructor.
28  *
29  * @param title The dialog's title.
30  * @param label Label of the text field.
31  * @param [in, out] text The parameter's usage is:
32  * - Input: The initial value of the text field.
33  * - Output: The new unit name the user entered
34  * if the dialog returns retval::OK,
35  * undefined otherwise.
36  * @param disallow_empty Whether to prevent the user from entering a string that is
37  * empty or consists only of whitespace.
38  */
39  edit_text(const std::string& title,
40  const std::string& label,
41  std::string& text,
42  bool disallow_empty = false);
43 
44  /**
45  * Executes the dialog.
46  * See @ref modal_dialog for more information.
47  */
49 
50 private:
51  virtual const std::string& window_id() const override;
52 
53  virtual void pre_show() override;
54 
55  void on_text_change();
56 
58 };
59 } // namespace dialogs
virtual void pre_show() override
Actions to be taken before showing the window.
Definition: edit_text.cpp:43
virtual const std::string & window_id() const override
Executes the dialog.
edit_text(const std::string &title, const std::string &label, std::string &text, bool disallow_empty=false)
Constructor.
Definition: edit_text.cpp:31
Abstract base class for all modal dialogs.
#define DEFINE_SIMPLE_EXECUTE_WRAPPER(dialog)
Adds a bare-bonesstatic execute function to a dialog class that immediately invokes and return the re...