The Battle for Wesnoth  1.19.5+dev
prompt.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2023 - 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
20 {
21 
22 namespace dialogs
23 {
24 
25 class prompt : public modal_dialog
26 {
27 public:
28  prompt(std::string& value);
29 
30  /** The execute function. See @ref modal_dialog for more information. */
32 
33 private:
34  virtual void pre_show() override;
35  virtual void post_show() override;
36 
37  virtual const std::string& window_id() const override;
38 
39  std::string& value_;
40 };
41 
42 } // namespace dialogs
43 } // namespace gui2
Abstract base class for all modal dialogs.
std::string & value_
Definition: prompt.hpp:39
virtual void pre_show() override
The execute function.
Definition: prompt.cpp:33
virtual void post_show() override
Actions to be taken after the window has been shown.
Definition: prompt.cpp:39
prompt(std::string &value)
Definition: prompt.cpp:26
virtual const std::string & window_id() const override
The ID of the window to build.
#define DEFINE_SIMPLE_EXECUTE_WRAPPER(dialog)
Adds a bare-bonesstatic execute function to a dialog class that immediately invokes and return the re...
Various uncategorised dialogs.
Generic file dialog.