1#ifndef OPTIONS_VIEW_ITEM_H
2#define OPTIONS_VIEW_ITEM_H
options_view_item get_left_of(const options_view_item item) noexcept
Get the item left of the current one, i.e.
Definition options_view_item.cpp:53
options_view_item
A selectable item at in the Options menu.
Definition options_view_item.h:12
options_view_item get_above(const options_view_item item) noexcept
Get the item above the current one, i.e.
Definition options_view_item.cpp:20
void test_options_view_item()
Test this class and free functions.
Definition options_view_item.cpp:87
options_view_item get_below(const options_view_item item) noexcept
Get the item below the current one, i.e.
Definition options_view_item.cpp:37
std::vector< options_view_item > get_all_options_view_items() noexcept
Get all the options view items.
Definition options_view_item.cpp:10
options_view_item get_right_of(const options_view_item item) noexcept
Get the item right of the current one, i.e.
Definition options_view_item.cpp:70
std::string to_str(const options_view_item item) noexcept
Definition options_view_item.cpp:177