#include "gui/auxiliary/iterator/iterator.hpp"
#include "gui/widgets/clickable_item.hpp"
#include "gui/widgets/styled_widget.hpp"
#include "gui/widgets/combobox.hpp"
#include "gui/widgets/label.hpp"
#include "gui/widgets/listbox.hpp"
#include "gui/widgets/multi_page.hpp"
#include "gui/widgets/progress_bar.hpp"
#include "gui/widgets/rich_label.hpp"
#include "gui/widgets/scroll_label.hpp"
#include "gui/widgets/scroll_text.hpp"
#include "gui/widgets/selectable_item.hpp"
#include "gui/widgets/slider.hpp"
#include "gui/widgets/stacked_widget.hpp"
#include "gui/widgets/text_box.hpp"
#include "gui/widgets/tree_view.hpp"
#include "gui/widgets/tree_view_node.hpp"
#include "gui/widgets/unit_preview_pane.hpp"
#include "gui/widgets/widget.hpp"
#include "gui/widgets/window.hpp"
#include "log.hpp"
#include "scripting/lua_common.hpp"
#include "scripting/lua_kernel_base.hpp"
#include "scripting/lua_unit.hpp"
#include "scripting/lua_unit_type.hpp"
#include "scripting/push_check.hpp"
#include "scripting/lua_widget.hpp"
#include "scripting/lua_attributes.hpp"
#include "scripting/lua_widget_attributes.hpp"
#include "serialization/string_utils.hpp"
#include <functional>
#include <boost/preprocessor/cat.hpp>
#include <map>
#include <utility>
#include <vector>
Go to the source code of this file.
Namespaces | |
lua_widget | |
Macros | |
#define | ERR_LUA LOG_STREAM(err, log_scripting_lua) |
#define | WIDGET_GETTER4(name, value_type, widgt_type, id) |
#define | WIDGET_SETTER4(name, value_type, widgt_type, id) |
#define | WIDGET_GETTER(name, value_type, widgt_type) WIDGET_GETTER4(name, value_type, widgt_type, __LINE__) |
#define | WIDGET_SETTER(name, value_type, widgt_type) WIDGET_SETTER4(name, value_type, widgt_type, __LINE__) |
Typedefs | |
using | tgetters = std::map< std::string, std::vector< std::function< bool(lua_State *, gui2::widget &, bool)> >> |
using | tsetters = std::map< std::string, std::vector< std::function< bool(lua_State *, int, gui2::widget &, bool)> >> |
Functions | |
static void | try_invalidate_layout (gui2::widget &w) |
static gui2::widget * | find_child_by_index (gui2::widget &w, int i) |
static gui2::widget * | find_child_by_name (gui2::widget &w, const std::string &m) |
template<typename widget_type , typename value_type , typename action_type , bool setter> | |
void | register_widget_attribute (const char *name) |
WIDGET_GETTER ("value_compat,selected_index", int, gui2::listbox) | |
CLASSIC. More... | |
WIDGET_SETTER ("value_compat,selected_index", int, gui2::listbox) | |
WIDGET_GETTER ("value_compat,selected_index", int, gui2::multi_page) | |
WIDGET_SETTER ("value_compat,selected_index", int, gui2::multi_page) | |
WIDGET_GETTER ("value_compat,selected_index", int, gui2::stacked_widget) | |
WIDGET_SETTER ("value_compat,selected_index", int, gui2::stacked_widget) | |
WIDGET_GETTER ("selected_index", int, gui2::selectable_item) | |
WIDGET_SETTER ("selected_index", int, gui2::selectable_item) | |
WIDGET_GETTER ("value_compat,selected", bool, gui2::selectable_item) | |
WIDGET_SETTER ("value_compat,selected", bool, gui2::selectable_item) | |
WIDGET_GETTER ("value_compat,text", std::string, gui2::text_box) | |
WIDGET_SETTER ("value_compat,text", std::string, gui2::text_box) | |
WIDGET_GETTER ("value_compat,value", int, gui2::slider) | |
WIDGET_SETTER ("value_compat,value", int, gui2::slider) | |
WIDGET_GETTER ("best_slider_length", int, gui2::slider) | |
WIDGET_SETTER ("best_slider_length", int, gui2::slider) | |
WIDGET_GETTER ("max_value", int, gui2::slider) | |
WIDGET_SETTER ("max_value", int, gui2::slider) | |
WIDGET_GETTER ("maximum_value_label", t_string, gui2::slider) | |
WIDGET_SETTER ("maximum_value_label", t_string, gui2::slider) | |
WIDGET_GETTER ("min_value", int, gui2::slider) | |
WIDGET_SETTER ("min_value", int, gui2::slider) | |
WIDGET_GETTER ("minimum_value_label", t_string, gui2::slider) | |
WIDGET_SETTER ("minimum_value_label", t_string, gui2::slider) | |
WIDGET_GETTER ("value_compat,percentage", int, gui2::progress_bar) | |
WIDGET_SETTER ("value_compat,percentage", int, gui2::progress_bar) | |
WIDGET_GETTER ("value_compat,selected_item_path", std::vector< int >, gui2::tree_view) | |
WIDGET_GETTER ("path", std::vector< int >, gui2::tree_view_node) | |
WIDGET_GETTER ("unfolded", bool, gui2::tree_view) | |
WIDGET_SETTER ("value_compat,unfolded", bool, gui2::tree_view) | |
WIDGET_GETTER ("unfolded", bool, gui2::tree_view_node) | |
WIDGET_SETTER ("value_compat,unfolded", bool, gui2::tree_view_node) | |
WIDGET_SETTER ("value_compat,unit", lua_index_raw, gui2::unit_preview_pane) | |
WIDGET_GETTER ("item_count", int, gui2::combobox) | |
WIDGET_GETTER ("item_count", int, gui2::listbox) | |
WIDGET_GETTER ("item_count", int, gui2::multi_page) | |
WIDGET_GETTER ("item_count", int, gui2::stacked_widget) | |
WIDGET_GETTER ("item_count", int, gui2::tree_view) | |
WIDGET_GETTER ("item_count", int, gui2::tree_view_node) | |
WIDGET_GETTER ("use_markup", bool, gui2::styled_widget) | |
WIDGET_SETTER ("use_markup", bool, gui2::styled_widget) | |
WIDGET_SETTER ("marked_up_text", t_string, gui2::styled_widget) | |
WIDGET_GETTER ("characters_per_line", int, gui2::label) | |
WIDGET_SETTER ("characters_per_line", int, gui2::label) | |
WIDGET_GETTER ("editable", bool, gui2::text_box) | |
WIDGET_SETTER ("editable", bool, gui2::text_box) | |
WIDGET_GETTER ("ellipsize_mode", std::string, gui2::styled_widget) | |
WIDGET_SETTER ("ellipsize_mode", std::string, gui2::styled_widget) | |
WIDGET_GETTER ("enabled", bool, gui2::styled_widget) | |
WIDGET_SETTER ("enabled", bool, gui2::styled_widget) | |
WIDGET_GETTER ("help", t_string, gui2::styled_widget) | |
WIDGET_SETTER ("help", t_string, gui2::styled_widget) | |
WIDGET_GETTER ("hint_image", std::string, gui2::combobox) | |
WIDGET_SETTER ("hint_image", std::string, gui2::combobox) | |
WIDGET_GETTER ("hint_text", t_string, gui2::combobox) | |
WIDGET_SETTER ("hint_text", t_string, gui2::combobox) | |
WIDGET_GETTER ("hint_image", std::string, gui2::text_box) | |
WIDGET_SETTER ("hint_image", std::string, gui2::text_box) | |
WIDGET_GETTER ("hint_text", t_string, gui2::text_box) | |
WIDGET_SETTER ("hint_text", t_string, gui2::text_box) | |
WIDGET_SETTER ("history", std::string, gui2::text_box) | |
WIDGET_GETTER ("indentation_step_size", int, gui2::tree_view) | |
WIDGET_SETTER ("indentation_step_size", int, gui2::tree_view) | |
WIDGET_GETTER ("link_aware", bool, gui2::label) | |
WIDGET_SETTER ("link_aware", bool, gui2::label) | |
WIDGET_GETTER ("link_aware", bool, gui2::rich_label) | |
WIDGET_SETTER ("link_aware", bool, gui2::rich_label) | |
WIDGET_GETTER ("link_aware", bool, gui2::scroll_label) | |
WIDGET_SETTER ("link_aware", bool, gui2::scroll_label) | |
WIDGET_GETTER ("link_aware", bool, gui2::scroll_text) | |
WIDGET_SETTER ("link_aware", bool, gui2::scroll_text) | |
WIDGET_GETTER ("link_color", std::string, gui2::label) | |
WIDGET_GETTER ("link_color", std::string, gui2::rich_label) | |
WIDGET_GETTER ("max_input_length", int, gui2::combobox) | |
WIDGET_SETTER ("max_input_length", int, gui2::combobox) | |
WIDGET_GETTER ("max_input_length", int, gui2::text_box) | |
WIDGET_SETTER ("max_input_length", int, gui2::text_box) | |
WIDGET_GETTER ("step_size", int, gui2::slider) | |
WIDGET_SETTER ("step_size", int, gui2::slider) | |
WIDGET_GETTER ("text_alignment", std::string, gui2::styled_widget) | |
WIDGET_SETTER ("text_alignment", std::string, gui2::styled_widget) | |
WIDGET_GETTER ("tooltip", t_string, gui2::styled_widget) | |
WIDGET_SETTER ("tooltip", t_string, gui2::styled_widget) | |
WIDGET_GETTER ("overflow_to_tooltip", bool, gui2::styled_widget) | |
WIDGET_SETTER ("overflow_to_tooltip", bool, gui2::styled_widget) | |
WIDGET_GETTER ("wrap", bool, gui2::label) | |
WIDGET_SETTER ("wrap", bool, gui2::label) | |
WIDGET_GETTER ("wrap", bool, gui2::rich_label) | |
WIDGET_SETTER ("wrap", bool, gui2::rich_label) | |
WIDGET_SETTER ("callback", lua_index_raw, gui2::widget) | |
WIDGET_GETTER ("visible", std::string, gui2::styled_widget) | |
WIDGET_SETTER ("visible", lua_index_raw, gui2::styled_widget) | |
WIDGET_GETTER ("value_compat,label", t_string, gui2::styled_widget) | |
WIDGET_SETTER ("value_compat,label", t_string, gui2::styled_widget) | |
WIDGET_GETTER ("type", std::string, gui2::widget) | |
int | lua_widget::impl_widget_get (lua_State *L) |
int | lua_widget::impl_widget_set (lua_State *L) |
int | lua_widget::impl_widget_dir (lua_State *L) |
Variables | |
static lg::log_domain | log_scripting_lua ("scripting/lua") |
static tgetters | getters |
static tsetters | setters |
#define ERR_LUA LOG_STREAM(err, log_scripting_lua) |
Definition at line 56 of file lua_widget_attributes.cpp.
#define WIDGET_GETTER | ( | name, | |
value_type, | |||
widgt_type | |||
) | WIDGET_GETTER4(name, value_type, widgt_type, __LINE__) |
name | string comma seperated list |
value_type | the type of the attribute, for example int or std::string |
widgt_type | the type of the widget, for example gui2::listbox |
Definition at line 184 of file lua_widget_attributes.cpp.
#define WIDGET_GETTER4 | ( | name, | |
value_type, | |||
widgt_type, | |||
id | |||
) |
Definition at line 151 of file lua_widget_attributes.cpp.
#define WIDGET_SETTER | ( | name, | |
value_type, | |||
widgt_type | |||
) | WIDGET_SETTER4(name, value_type, widgt_type, __LINE__) |
Definition at line 186 of file lua_widget_attributes.cpp.
#define WIDGET_SETTER4 | ( | name, | |
value_type, | |||
widgt_type, | |||
id | |||
) |
Definition at line 165 of file lua_widget_attributes.cpp.
using tgetters = std::map<std::string, std::vector<std::function<bool(lua_State*, gui2::widget&, bool)> >> |
Definition at line 112 of file lua_widget_attributes.cpp.
using tsetters = std::map<std::string, std::vector<std::function<bool(lua_State*, int, gui2::widget&, bool)> >> |
Definition at line 115 of file lua_widget_attributes.cpp.
|
static |
Definition at line 65 of file lua_widget_attributes.cpp.
References gui2::tree_view_node::count_children(), gui2::tree_view_node::get_child_at(), i, n, and w.
Referenced by lua_widget::impl_widget_get().
|
static |
Definition at line 107 of file lua_widget_attributes.cpp.
References w.
Referenced by lua_widget::impl_widget_get().
void register_widget_attribute | ( | const char * | name | ) |
Definition at line 119 of file lua_widget_attributes.cpp.
References getters, lua_push(), setter, setters, utils::split_foreach(), and w.
|
static |
Definition at line 58 of file lua_widget_attributes.cpp.
References w.
Referenced by WIDGET_SETTER().
WIDGET_GETTER | ( | "best_slider_length" | , |
int | , | ||
gui2::slider | |||
) |
Definition at line 267 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "characters_per_line" | , |
int | , | ||
gui2::label | |||
) |
Definition at line 436 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "editable" | , |
bool | , | ||
gui2::text_box | |||
) |
Definition at line 450 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "ellipsize_mode" | , |
std::string | , | ||
gui2::styled_widget | |||
) |
Definition at line 460 of file lua_widget_attributes.cpp.
WIDGET_GETTER | ( | "enabled" | , |
bool | , | ||
gui2::styled_widget | |||
) |
Definition at line 497 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "help" | , |
t_string | , | ||
gui2::styled_widget | |||
) |
Definition at line 507 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "hint_image" | , |
std::string | , | ||
gui2::combobox | |||
) |
Definition at line 517 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "hint_image" | , |
std::string | , | ||
gui2::text_box | |||
) |
Definition at line 539 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "hint_text" | , |
t_string | , | ||
gui2::combobox | |||
) |
Definition at line 528 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "hint_text" | , |
t_string | , | ||
gui2::text_box | |||
) |
Definition at line 550 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "indentation_step_size" | , |
int | , | ||
gui2::tree_view | |||
) |
Definition at line 566 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "item_count" | , |
int | , | ||
gui2::combobox | |||
) |
Definition at line 385 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "item_count" | , |
int | , | ||
gui2::listbox | |||
) |
Definition at line 390 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "item_count" | , |
int | , | ||
gui2::multi_page | |||
) |
Definition at line 395 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "item_count" | , |
int | , | ||
gui2::stacked_widget | |||
) |
Definition at line 400 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "item_count" | , |
int | , | ||
gui2::tree_view | |||
) |
Definition at line 405 of file lua_widget_attributes.cpp.
References gui2::tree_view_node::count_children(), and w.
WIDGET_GETTER | ( | "item_count" | , |
int | , | ||
gui2::tree_view_node | |||
) |
Definition at line 411 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "link_aware" | , |
bool | , | ||
gui2::label | |||
) |
Definition at line 580 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "link_aware" | , |
bool | , | ||
gui2::rich_label | |||
) |
Definition at line 591 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "link_aware" | , |
bool | , | ||
gui2::scroll_label | |||
) |
Definition at line 602 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "link_aware" | , |
bool | , | ||
gui2::scroll_text | |||
) |
Definition at line 613 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "link_color" | , |
std::string | , | ||
gui2::label | |||
) |
Definition at line 624 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "link_color" | , |
std::string | , | ||
gui2::rich_label | |||
) |
Definition at line 629 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "max_input_length" | , |
int | , | ||
gui2::combobox | |||
) |
Definition at line 634 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "max_input_length" | , |
int | , | ||
gui2::text_box | |||
) |
Definition at line 648 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "max_value" | , |
int | , | ||
gui2::slider | |||
) |
Definition at line 280 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "maximum_value_label" | , |
t_string | , | ||
gui2::slider | |||
) |
Definition at line 290 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "min_value" | , |
int | , | ||
gui2::slider | |||
) |
Definition at line 301 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "minimum_value_label" | , |
t_string | , | ||
gui2::slider | |||
) |
Definition at line 311 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "overflow_to_tooltip" | , |
bool | , | ||
gui2::styled_widget | |||
) |
Definition at line 716 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "path" | , |
std::vector< int > | , | ||
gui2::tree_view_node | |||
) |
Definition at line 339 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "selected_index" | , |
int | , | ||
gui2::selectable_item | |||
) |
Definition at line 221 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "step_size" | , |
int | , | ||
gui2::slider | |||
) |
Definition at line 662 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "text_alignment" | , |
std::string | , | ||
gui2::styled_widget | |||
) |
Definition at line 675 of file lua_widget_attributes.cpp.
WIDGET_GETTER | ( | "tooltip" | , |
t_string | , | ||
gui2::styled_widget | |||
) |
Definition at line 706 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "type" | , |
std::string | , | ||
gui2::widget | |||
) |
Definition at line 833 of file lua_widget_attributes.cpp.
WIDGET_GETTER | ( | "unfolded" | , |
bool | , | ||
gui2::tree_view | |||
) |
Definition at line 346 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "unfolded" | , |
bool | , | ||
gui2::tree_view_node | |||
) |
Definition at line 360 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "use_markup" | , |
bool | , | ||
gui2::styled_widget | |||
) |
Definition at line 416 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | " | value_compat, |
label" | , | ||
t_string | , | ||
gui2::styled_widget | |||
) |
Definition at line 818 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | " | value_compat, |
percentage" | , | ||
int | , | ||
gui2::progress_bar | |||
) |
Definition at line 322 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | " | value_compat, |
selected" | , | ||
bool | , | ||
gui2::selectable_item | |||
) |
Definition at line 234 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | " | value_compat, |
selected_index" | , | ||
int | , | ||
gui2::listbox | |||
) |
WIDGET_GETTER | ( | " | value_compat, |
selected_index" | , | ||
int | , | ||
gui2::multi_page | |||
) |
Definition at line 201 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | " | value_compat, |
selected_index" | , | ||
int | , | ||
gui2::stacked_widget | |||
) |
Definition at line 211 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | " | value_compat, |
selected_item_path" | , | ||
std::vector< int > | , | ||
gui2::tree_view | |||
) |
Definition at line 332 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | " | value_compat, |
text" | , | ||
std::string | , | ||
gui2::text_box | |||
) |
Definition at line 247 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | " | value_compat, |
value" | , | ||
int | , | ||
gui2::slider | |||
) |
Definition at line 257 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "visible" | , |
std::string | , | ||
gui2::styled_widget | |||
) |
Definition at line 757 of file lua_widget_attributes.cpp.
References gui2::widget::hidden, gui2::widget::invisible, s, gui2::widget::visible, and w.
WIDGET_GETTER | ( | "wrap" | , |
bool | , | ||
gui2::label | |||
) |
Definition at line 727 of file lua_widget_attributes.cpp.
References w.
WIDGET_GETTER | ( | "wrap" | , |
bool | , | ||
gui2::rich_label | |||
) |
Definition at line 737 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "best_slider_length" | , |
int | , | ||
gui2::slider | |||
) |
Definition at line 272 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "callback" | , |
lua_index_raw | , | ||
gui2::widget | |||
) |
Definition at line 747 of file lua_widget_attributes.cpp.
References ERR_LUA, luaW_getglobal(), luaW_pushwidget(), and w.
WIDGET_SETTER | ( | "characters_per_line" | , |
int | , | ||
gui2::label | |||
) |
Definition at line 441 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "editable" | , |
bool | , | ||
gui2::text_box | |||
) |
Definition at line 455 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "ellipsize_mode" | , |
std::string | , | ||
gui2::styled_widget | |||
) |
Definition at line 481 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "enabled" | , |
bool | , | ||
gui2::styled_widget | |||
) |
Definition at line 502 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "help" | , |
t_string | , | ||
gui2::styled_widget | |||
) |
Definition at line 512 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "hint_image" | , |
std::string | , | ||
gui2::combobox | |||
) |
Definition at line 522 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "hint_image" | , |
std::string | , | ||
gui2::text_box | |||
) |
Definition at line 544 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "hint_text" | , |
t_string | , | ||
gui2::combobox | |||
) |
Definition at line 533 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "hint_text" | , |
t_string | , | ||
gui2::text_box | |||
) |
Definition at line 555 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "history" | , |
std::string | , | ||
gui2::text_box | |||
) |
Definition at line 561 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "indentation_step_size" | , |
int | , | ||
gui2::tree_view | |||
) |
Definition at line 571 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "link_aware" | , |
bool | , | ||
gui2::label | |||
) |
Definition at line 585 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "link_aware" | , |
bool | , | ||
gui2::rich_label | |||
) |
Definition at line 596 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "link_aware" | , |
bool | , | ||
gui2::scroll_label | |||
) |
Definition at line 607 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "link_aware" | , |
bool | , | ||
gui2::scroll_text | |||
) |
Definition at line 618 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "marked_up_text" | , |
t_string | , | ||
gui2::styled_widget | |||
) |
Definition at line 430 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "max_input_length" | , |
int | , | ||
gui2::combobox | |||
) |
Definition at line 639 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "max_input_length" | , |
int | , | ||
gui2::text_box | |||
) |
Definition at line 653 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "max_value" | , |
int | , | ||
gui2::slider | |||
) |
Definition at line 285 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "maximum_value_label" | , |
t_string | , | ||
gui2::slider | |||
) |
Definition at line 295 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "min_value" | , |
int | , | ||
gui2::slider | |||
) |
Definition at line 306 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "minimum_value_label" | , |
t_string | , | ||
gui2::slider | |||
) |
Definition at line 316 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "overflow_to_tooltip" | , |
bool | , | ||
gui2::styled_widget | |||
) |
Definition at line 721 of file lua_widget_attributes.cpp.
References try_invalidate_layout(), and w.
WIDGET_SETTER | ( | "selected_index" | , |
int | , | ||
gui2::selectable_item | |||
) |
Definition at line 226 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "step_size" | , |
int | , | ||
gui2::slider | |||
) |
Definition at line 667 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "text_alignment" | , |
std::string | , | ||
gui2::styled_widget | |||
) |
Definition at line 693 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "tooltip" | , |
t_string | , | ||
gui2::styled_widget | |||
) |
Definition at line 711 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "use_markup" | , |
bool | , | ||
gui2::styled_widget | |||
) |
Definition at line 421 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | " | value_compat, |
label" | , | ||
t_string | , | ||
gui2::styled_widget | |||
) |
Definition at line 824 of file lua_widget_attributes.cpp.
References gui2::window::invalidate_layout(), and w.
WIDGET_SETTER | ( | " | value_compat, |
percentage" | , | ||
int | , | ||
gui2::progress_bar | |||
) |
Definition at line 327 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | " | value_compat, |
selected" | , | ||
bool | , | ||
gui2::selectable_item | |||
) |
Definition at line 242 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | " | value_compat, |
selected_index" | , | ||
int | , | ||
gui2::listbox | |||
) |
Definition at line 196 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | " | value_compat, |
selected_index" | , | ||
int | , | ||
gui2::multi_page | |||
) |
Definition at line 206 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | " | value_compat, |
selected_index" | , | ||
int | , | ||
gui2::stacked_widget | |||
) |
Definition at line 216 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | " | value_compat, |
text" | , | ||
std::string | , | ||
gui2::text_box | |||
) |
Definition at line 252 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | " | value_compat, |
unfolded" | , | ||
bool | , | ||
gui2::tree_view | |||
) |
Definition at line 351 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | " | value_compat, |
unfolded" | , | ||
bool | , | ||
gui2::tree_view_node | |||
) |
Definition at line 365 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | " | value_compat, |
unit" | , | ||
lua_index_raw | , | ||
gui2::unit_preview_pane | |||
) |
Definition at line 374 of file lua_widget_attributes.cpp.
References luaW_tounit(), luaW_tounittype(), luaW_type_error(), and w.
WIDGET_SETTER | ( | " | value_compat, |
value" | , | ||
int | , | ||
gui2::slider | |||
) |
Definition at line 262 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "visible" | , |
lua_index_raw | , | ||
gui2::styled_widget | |||
) |
Definition at line 775 of file lua_widget_attributes.cpp.
References game_config::images::flag, gui2::window::invalidate_layout(), luaW_toboolean(), luaW_type_error(), and w.
WIDGET_SETTER | ( | "wrap" | , |
bool | , | ||
gui2::label | |||
) |
Definition at line 732 of file lua_widget_attributes.cpp.
References w.
WIDGET_SETTER | ( | "wrap" | , |
bool | , | ||
gui2::rich_label | |||
) |
Definition at line 742 of file lua_widget_attributes.cpp.
References w.
|
static |
Definition at line 113 of file lua_widget_attributes.cpp.
Referenced by lua_widget::impl_widget_dir(), lua_widget::impl_widget_get(), and register_widget_attribute().
|
static |
|
static |
Definition at line 116 of file lua_widget_attributes.cpp.
Referenced by lua_widget::impl_widget_dir(), lua_widget::impl_widget_set(), and register_widget_attribute().