The Battle for Wesnoth  1.19.5+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 
29 {
30 public:
32  : modal_dialog(window_id()) , fdb_(fdb)
33  {
34  }
35 
37 
38 private:
39  virtual void pre_show() override;
40 
41  virtual const std::string& window_id() const override;
42 
43  /***** ***** button callbacks ***** *****/
45 
46  void callback_next_button();
47 
48  void callback_step_button();
49 
51 
53 };
54 
55 } // namespace dialogs
virtual const std::string & window_id() const override
The ID of the window to build.
wfl::formula_debugger & fdb_
virtual void pre_show() override
Actions to be taken before showing the window.
formula_debugger(wfl::formula_debugger &fdb)
Abstract base class for all modal dialogs.
#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