#include <unit_list.hpp>
Public Member Functions | |
unit_list (std::vector< unit_const_ptr > &unit_list, map_location &scroll_to) | |
![]() | |
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) |
Static Public Member Functions | |
static bool | execute (std::vector< unit_const_ptr > &units, map_location &scroll_to) |
Private Member Functions | |
void | list_item_clicked () |
Callbacks. More... | |
virtual const std::string & | window_id () const override |
The id of the window to build. More... | |
virtual void | pre_show (window &window) override |
Actions to be taken before showing the window. More... | |
virtual void | post_show (window &window) override |
Actions to be taken after the window has been shown. More... | |
Private Attributes | |
std::vector< unit_const_ptr > & | unit_list_ |
map_location & | scroll_to_ |
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 32 of file unit_list.hpp.
|
explicit |
Definition at line 46 of file unit_list.cpp.
Referenced by execute(), and gui2::dialogs::show_unit_list().
|
inlinestatic |
Definition at line 37 of file unit_list.hpp.
References _(), gui2::show_transient_message(), and unit_list().
Referenced by gui2::dialogs::show_unit_list().
|
private |
Callbacks.
Definition at line 175 of file unit_list.cpp.
References gui2::dialogs::modal_dialog::get_window(), and unit_list_.
Referenced by pre_show().
|
overrideprivatevirtual |
Actions to be taken after the window has been shown.
At this point the registered fields already stored their values (if the OK has been pressed).
window | The window which has been shown. |
Reimplemented from gui2::dialogs::modal_dialog.
Definition at line 188 of file unit_list.cpp.
References gui2::dialogs::modal_dialog::get_retval(), gui2::OK, scroll_to_, and unit_list_.
|
overrideprivatevirtual |
Actions to be taken before showing the window.
At this point the registered fields are registered and initialized with their initial values.
window | The window to be shown. |
Reimplemented from gui2::dialogs::modal_dialog.
Definition at line 89 of file unit_list.cpp.
References gui2::listbox::add_row(), unit::can_advance(), gui2::listbox::clear(), gui2::event::connect_signal_notify_modified(), t_string::empty(), unit::experience(), unit::experience_to_advance(), gui2::dialogs::format_if_leader(), gui2::dialogs::format_level_string(), gui2::dialogs::format_movement_string(), unit::get_location(), unit::get_state(), unit::hitpoints(), unit::hp_color(), i, gui2::widget::invisible, unit::invisible(), utils::join(), unit::level(), list_item_clicked(), unit::max_experience(), unit::max_hitpoints(), unit::name(), gui2::listbox::register_sorting_option(), gui2::listbox::register_translatable_sorting_option(), font::span_color(), unit::STATE_PETRIFIED, unit::STATE_POISONED, unit::STATE_SLOWED, t_string::str(), unit::trait_names(), unit::type_name(), font::unicode_en_dash, unit_list_, and unit::xp_color().
|
overrideprivatevirtual |
The id of the window to build.
Implements gui2::dialogs::modal_dialog.
|
private |
Definition at line 50 of file unit_list.hpp.
Referenced by post_show().
|
private |
Definition at line 48 of file unit_list.hpp.
Referenced by list_item_clicked(), post_show(), and pre_show().