mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-11-15 11:38:56 +08:00
Add the `SliderOption` option supporting:
```cpp
{
Ref<T> value;
ConstRef<T> min = T(0);
ConstRef<T> max = T(100);
ConstRef<T> increment = (max() - min()) / 20;
GaugeDirection direction = GaugeDirection::Right;
Color color_active = Color::White;
Color color_inactive = Color::GrayDark;
};
```
In particular, this supports multiple direction. This resolves:
https://github.com/ArthurSonzogni/FTXUI/issues/467
This one do not support adding a label. The old constructors can still
be used to have a label.
30 lines
1.0 KiB
CMake
30 lines
1.0 KiB
CMake
set(EXAMPLES_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
function(example name)
|
|
add_executable(ftxui_example_${name} ${name}.cpp)
|
|
target_link_libraries(ftxui_example_${name} PUBLIC ${DIRECTORY_LIB})
|
|
file(RELATIVE_PATH dir ${EXAMPLES_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
|
|
set_property(GLOBAL APPEND PROPERTY FTXUI::EXAMPLES ${dir}/${name})
|
|
set_target_properties(ftxui_example_${name} PROPERTIES
|
|
CXX_STANDARD 20
|
|
)
|
|
endfunction(example)
|
|
|
|
add_subdirectory(component)
|
|
add_subdirectory(dom)
|
|
|
|
if (EMSCRIPTEN)
|
|
# 32MB should be enough to run all the examples, in debug mode.
|
|
target_link_options(component PUBLIC "SHELL: -s TOTAL_MEMORY=33554432")
|
|
target_link_options(component PUBLIC "SHELL: -s ASSERTIONS=1")
|
|
#string(APPEND CMAKE_EXE_LINKER_FLAGS " -s ALLOW_MEMORY_GROWTH=1")
|
|
#target_link_options(component PUBLIC "SHELL: -s ALLOW_MEMORY_GROWTH=1")
|
|
|
|
get_property(EXAMPLES GLOBAL PROPERTY FTXUI::EXAMPLES)
|
|
foreach(file
|
|
"index.html"
|
|
"sw.js"
|
|
"run_webassembly.py")
|
|
configure_file(${file} ${file})
|
|
endforeach(file)
|
|
endif()
|