Asks the user to confirm a change required to proceed. More...
#include <depcheck_confirm_change.hpp>
Public Member Functions | |
depcheck_confirm_change (bool action, const std::vector< std::string > &mods, const std::string &requester) | |
Constructor. More... | |
![]() | |
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 |
Returns the cached window exit code. More... | |
void | set_retval (int retval) |
Convenience wrapper to set the window's exit code. More... | |
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) |
Protected Member Functions | |
virtual const std::string & | window_id () const override |
The id of the window to build. More... | |
![]() | |
template<typename T , typename... Args> | |
T * | register_field (Args &&... args) |
Creates a new field of given type with given arguments. More... | |
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... | |
Additional Inherited Members | |
![]() | |
std::unique_ptr< window > | window_ |
The window object build for this dialog. More... | |
Asks the user to confirm a change required to proceed.
Currently used for enabling/disabling modifications.
Key | Type | Mandatory | Description |
---|---|---|---|
message | label | yes | displays the details of the required changes |
itemlist | scroll_label | yes | displays the list of affected items |
cancel | button | yes | refuse to apply changes |
ok | button | yes | agree to apply changes |
Definition at line 36 of file depcheck_confirm_change.hpp.
gui2::dialogs::depcheck_confirm_change::depcheck_confirm_change | ( | bool | action, |
const std::vector< std::string > & | mods, | ||
const std::string & | requester | ||
) |
Constructor.
action | true if the listed modifications are to be enabled, false if they're to be disabled |
mods | the names of the affected modifications |
requester | the name of the component which requests the change |
Definition at line 30 of file depcheck_confirm_change.cpp.
References utils::join(), and VGETTEXT.
|
overrideprotectedvirtual |
The id of the window to build.
Implements gui2::dialogs::modal_dialog.