#ifndef __OFFSETMENU_HPP #define __OFFSETMENU_HPP #include "OptionSelectionMenu.hpp" #include #include "TextRectangle.hpp" #include "sfml_gfx_structs.hpp" #include "display_structs.hpp" enum OffsetMenuOutAction{ OFFSET_MENU_NO_ACTION, OFFSET_MENU_BACK, OFFSET_MENU_SMALL_OFFSET_DEC, OFFSET_MENU_SMALL_OFFSET_INC, OFFSET_MENU_SMALL_SCREEN_DISTANCE_DEC, OFFSET_MENU_SMALL_SCREEN_DISTANCE_INC, OFFSET_MENU_SCREENS_X_POS_DEC, OFFSET_MENU_SCREENS_X_POS_INC, OFFSET_MENU_SCREENS_Y_POS_DEC, OFFSET_MENU_SCREENS_Y_POS_INC, }; class OffsetMenu : public OptionSelectionMenu { public: OffsetMenu(TextRectanglePool* text_pool); ~OffsetMenu(); void prepare(float scaling_factor, int view_size_x, int view_size_y, ScreenInfo *info); void insert_data(); OffsetMenuOutAction selected_index = OffsetMenuOutAction::OFFSET_MENU_NO_ACTION; void reset_output_option(); protected: bool is_option_inc_dec(int index); void set_output_option(int index, int action); size_t get_num_options(); std::string get_string_option(int index, int action); void class_setup(); private: int *options_indexes; size_t num_enabled_options; }; #endif