mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2026-03-22 10:15:31 -05:00
Some checks are pending
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linux32 flags:32 name:Linux GCC 32 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linux64 flags:64 name:Linux GCC x64 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linuxarm32 flags:arm32 name:Linux GCC ARM 32 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linuxarm64 flags:arm64 name:Linux GCC ARM 64 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:macos name:macOS Apple Silicon os:macos-14]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:win32 flags:-A Win32 -DCMAKE_PARALLEL_MSVC=TRUE name:Windows VS2022 Win32 os:windows-2022]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:win64 flags:-A x64 -DCMAKE_PARALLEL_MSVC=TRUE name:Windows VS2022 x64 os:windows-2022]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:winarm64 flags:-A ARM64 -DCMAKE_PARALLEL_MSVC=TRUE name:Windows VS2022 ARM os:windows-2022]) (push) Waiting to run
CD / Create Pi Mono Setup (push) Blocked by required conditions
CD / Publishing (push) Blocked by required conditions
50 lines
1.4 KiB
C++
Executable File
50 lines
1.4 KiB
C++
Executable File
#include "ConnectionMenu.hpp"
|
|
|
|
ConnectionMenu::ConnectionMenu(TextRectanglePool* text_rectangle_pool) : OptionSelectionMenu(){
|
|
this->initialize(text_rectangle_pool);
|
|
}
|
|
|
|
ConnectionMenu::~ConnectionMenu() {
|
|
}
|
|
|
|
void ConnectionMenu::class_setup() {
|
|
this->num_options_per_screen = 4;
|
|
this->min_elements_text_scaling_factor = num_options_per_screen;
|
|
this->width_factor_menu = 16;
|
|
this->width_divisor_menu = 9;
|
|
this->base_height_factor_menu = 10;
|
|
this->base_height_divisor_menu = 6;
|
|
this->min_text_size = 0.3f;
|
|
this->max_width_slack = 1.1f;
|
|
this->menu_color = sf::Color(30, 30, 60, 192);
|
|
this->title = "Device Selection";
|
|
this->show_back_x = false;
|
|
this->show_x = false;
|
|
this->show_title = true;
|
|
}
|
|
|
|
void ConnectionMenu::insert_data(std::vector<CaptureDevice> *devices_list) {
|
|
this->devices_list = devices_list;
|
|
this->prepare_options();
|
|
}
|
|
|
|
void ConnectionMenu::reset_output_option() {
|
|
this->selected_index = -1;
|
|
}
|
|
|
|
void ConnectionMenu::set_output_option(int index, int action) {
|
|
this->selected_index = index;
|
|
}
|
|
|
|
size_t ConnectionMenu::get_num_options() {
|
|
return this->devices_list->size();
|
|
}
|
|
|
|
std::string ConnectionMenu::get_string_option(int index, int action) {
|
|
return (*this->devices_list)[index].name + " - " + (*this->devices_list)[index].serial_number;
|
|
}
|
|
|
|
void ConnectionMenu::prepare(float menu_scaling_factor, int view_size_x, int view_size_y) {
|
|
this->base_prepare(menu_scaling_factor, view_size_x, view_size_y);
|
|
}
|