#include <formula_debugger.hpp>
Public Member Functions | |
formula_debugger (wfl::formula_debugger &fdb) | |
![]() | |
modal_dialog () | |
virtual | ~modal_dialog () |
bool | show (const unsigned auto_close_time=0) |
Shows the window. More... | |
window * | get_window () const |
Returns a pointer to the dialog's window. More... | |
int | get_retval () const |
void | set_always_save_fields (const bool always_save_fields) |
void | set_restore (const bool restore) |
void | set_allow_plugin_skip (const bool allow_plugin_skip) |
void | set_show_even_without_video (const bool show_even_without_video) |
Private Member Functions | |
virtual void | pre_show (window &window) override |
Inherited from modal_dialog. More... | |
virtual const std::string & | window_id () const override |
Inherited from modal_dialog, implemented by REGISTER_DIALOG. More... | |
void | callback_continue_button (window &window) |
void | callback_next_button (window &window) |
void | callback_step_button (window &window) |
void | callback_stepout_button (window &window) |
Private Attributes | |
wfl::formula_debugger & | fdb_ |
Additional Inherited Members | |
![]() | |
field_bool * | register_bool (const std::string &id, const bool mandatory, const std::function< bool()> callback_load_value=nullptr, const std::function< void(bool)> callback_save_value=nullptr, const std::function< void(widget &)> callback_change=nullptr, const bool initial_fire=false) |
Creates a new boolean field. More... | |
field_bool * | register_bool (const std::string &id, const bool mandatory, bool &linked_variable, const std::function< void(widget &)> callback_change=nullptr, const bool initial_fire=false) |
Creates a new boolean field. More... | |
field_integer * | register_integer (const std::string &id, const bool mandatory, const std::function< int()> callback_load_value=nullptr, const std::function< void(int)> callback_save_value=nullptr) |
Creates a new integer field. More... | |
field_integer * | register_integer (const std::string &id, const bool mandatory, int &linked_variable) |
Creates a new integer field. More... | |
field_text * | register_text (const std::string &id, const bool mandatory, const std::function< std::string()> callback_load_value=nullptr, const std::function< void(const std::string &)> callback_save_value=nullptr, const bool capture_focus=false) |
Creates a new text field. More... | |
field_text * | register_text (const std::string &id, const bool mandatory, std::string &linked_variable, const bool capture_focus=false) |
Creates a new text field. More... | |
field_label * | register_label (const std::string &id, const bool mandatory, const std::string &text, const bool use_markup=false) |
Registers a new styled_widget as a label. More... | |
field_label * | register_image (const std::string &id, const bool mandatory, const std::string &filename) |
Registers a new styled_widget as image. More... | |
![]() | |
std::unique_ptr< window > | window_ |
The window object build for this dialog. More... | |
Definition at line 29 of file formula_debugger.hpp.
|
inlineexplicit |
Definition at line 32 of file formula_debugger.hpp.
References DEFINE_SIMPLE_DISPLAY_WRAPPER.
|
private |
Definition at line 173 of file formula_debugger.cpp.
References wfl::formula_debugger::add_breakpoint_continue_to_end(), fdb_, gui2::OK, and gui2::window::set_retval().
Referenced by pre_show().
|
private |
Definition at line 179 of file formula_debugger.cpp.
References wfl::formula_debugger::add_breakpoint_next(), fdb_, gui2::OK, and gui2::window::set_retval().
Referenced by pre_show().
|
private |
Definition at line 185 of file formula_debugger.cpp.
References wfl::formula_debugger::add_breakpoint_step_into(), fdb_, gui2::OK, and gui2::window::set_retval().
Referenced by pre_show().
|
private |
Definition at line 191 of file formula_debugger.cpp.
References wfl::formula_debugger::add_breakpoint_step_out(), fdb_, gui2::OK, and gui2::window::set_retval().
Referenced by pre_show().
|
overrideprivatevirtual |
Inherited from modal_dialog.
Reimplemented from gui2::dialogs::modal_dialog.
Definition at line 70 of file formula_debugger.cpp.
References c, callback_continue_button(), callback_next_button(), callback_step_button(), callback_stepout_button(), gui2::event::connect_signal_mouse_left_click(), d, gui2::scrollbar_base::END, font::escape_text(), i, indent, gui2::scrollbar_container::scroll_vertical_scrollbar(), gui2::button::set_active(), gui2::scroll_label::set_label(), and gui2::scroll_label::set_use_markup().
|
overrideprivatevirtual |
Inherited from modal_dialog, implemented by REGISTER_DIALOG.
Implements gui2::dialogs::modal_dialog.
|
private |
Definition at line 54 of file formula_debugger.hpp.
Referenced by callback_continue_button(), callback_next_button(), callback_step_button(), and callback_stepout_button().