mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2025-06-18 16:45:39 -04:00
27 lines
728 B
C++
Executable File
27 lines
728 B
C++
Executable File
#ifndef __CONNECTIONMENU_HPP
|
|
#define __CONNECTIONMENU_HPP
|
|
|
|
#include "OptionSelectionMenu.hpp"
|
|
|
|
#include "capture_structs.hpp"
|
|
|
|
#define CONNECTION_MENU_NO_ACTION (-1)
|
|
|
|
class ConnectionMenu : public OptionSelectionMenu {
|
|
public:
|
|
ConnectionMenu(TextRectanglePool* text_pool);
|
|
~ConnectionMenu();
|
|
void prepare(float scaling_factor, int view_size_x, int view_size_y);
|
|
void insert_data(std::vector<CaptureDevice> *devices_list);
|
|
int selected_index = CONNECTION_MENU_NO_ACTION;
|
|
void reset_output_option();
|
|
protected:
|
|
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:
|
|
std::vector<CaptureDevice> *devices_list;
|
|
};
|
|
#endif
|