The Battle for Wesnoth  1.19.0-dev
formula_debugger.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2009 - 2024
3  by Yurii Chernyi <terraninfo@terraninfo.net>
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 wfl
21 {
22 class formula_debugger;
23 }
24 
25 namespace gui2::dialogs
26 {
27 
28 /**
29  * @ingroup GUIWindowDefinitionWML
30  *
31  * This shows the debugger for the formulas.
32  * Key |Type |Mandatory|Description
33  * ------------------|--------------|---------|-----------
34  * stack | control |yes |A stack.
35  * execution | control |yes |Execution trace label.
36  * state | control |yes |The state.
37  * step | @ref button |yes |Button to step into the execution.
38  * stepout | @ref button |yes |Button to step out of the execution.
39  * next | @ref button |yes |Button to execute the next statement.
40  * continue | @ref button |yes |Button to continue the execution.
41  */
43 {
44 public:
46  : modal_dialog(window_id()) , fdb_(fdb)
47  {
48  }
49 
51 
52 private:
53  virtual void pre_show(window& window) override;
54 
55  virtual const std::string& window_id() const override;
56 
57  /***** ***** button callbacks ***** *****/
59 
60  void callback_next_button();
61 
62  void callback_step_button();
63 
65 
67 };
68 
69 } // namespace dialogs
This shows the debugger for the formulas.
virtual const std::string & window_id() const override
The ID of the window to build.
wfl::formula_debugger & fdb_
virtual void pre_show(window &window) override
Actions to be taken before showing the window.
formula_debugger(wfl::formula_debugger &fdb)
Abstract base class for all modal dialogs.
base class of top level items, the only item which needs to store the final canvases to draw on.
Definition: window.hpp:63
#define DEFINE_SIMPLE_DISPLAY_WRAPPER(dialog)
Adds a bare-bones static display function to a dialog class that immediately invokes the dialogs's mo...
Definition: contexts.hpp:43