| 
									
										
										
										
											2023-08-19 13:56:36 +02:00
										 |  |  | // Copyright 2021 Arthur Sonzogni. All rights reserved.
 | 
					
						
							|  |  |  | // Use of this source code is governed by the MIT license that can be found in
 | 
					
						
							|  |  |  | // the LICENSE file.
 | 
					
						
							| 
									
										
										
										
											2021-05-09 20:32:27 +02:00
										 |  |  | #ifndef FTXUI_COMPONENT_HPP
 | 
					
						
							|  |  |  | #define FTXUI_COMPONENT_HPP
 | 
					
						
							| 
									
										
										
										
											2018-10-09 19:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-09 20:32:27 +02:00
										 |  |  | #include <functional>  // for function
 | 
					
						
							| 
									
										
										
										
											2021-07-17 15:32:08 +05:30
										 |  |  | #include <memory>      // for make_shared, shared_ptr
 | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | #include <utility>     // for forward
 | 
					
						
							| 
									
										
										
										
											2021-05-01 20:40:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-17 11:18:25 +02:00
										 |  |  | #include <ftxui/util/warn_windows_macro.hpp>
 | 
					
						
							| 
									
										
										
										
											2022-06-12 17:08:22 +02:00
										 |  |  | #include "ftxui/component/component_base.hpp"  // for Component, Components
 | 
					
						
							|  |  |  | #include "ftxui/component/component_options.hpp"  // for ButtonOption, CheckboxOption, MenuOption
 | 
					
						
							|  |  |  | #include "ftxui/dom/elements.hpp"  // for Element
 | 
					
						
							| 
									
										
										
										
											2022-08-30 18:52:33 +02:00
										 |  |  | #include "ftxui/util/ref.hpp"  // for ConstRef, Ref, ConstStringRef, ConstStringListRef, StringRef
 | 
					
						
							| 
									
										
										
										
											2018-10-09 19:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 15:00:08 +01:00
										 |  |  | namespace ftxui { | 
					
						
							| 
									
										
										
										
											2021-07-10 13:20:43 +02:00
										 |  |  | struct ButtonOption; | 
					
						
							|  |  |  | struct CheckboxOption; | 
					
						
							| 
									
										
										
										
											2021-07-17 15:32:08 +05:30
										 |  |  | struct Event; | 
					
						
							| 
									
										
										
										
											2021-07-10 13:20:43 +02:00
										 |  |  | struct InputOption; | 
					
						
							|  |  |  | struct MenuOption; | 
					
						
							|  |  |  | struct RadioboxOption; | 
					
						
							| 
									
										
										
										
											2021-09-16 20:45:26 +02:00
										 |  |  | struct MenuEntryOption; | 
					
						
							| 
									
										
										
										
											2018-10-09 19:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-09 20:32:27 +02:00
										 |  |  | template <class T, class... Args> | 
					
						
							|  |  |  | std::shared_ptr<T> Make(Args&&... args) { | 
					
						
							| 
									
										
										
										
											2022-02-16 21:09:08 +08:00
										 |  |  |   return std::make_shared<T>(std::forward<Args>(args)...); | 
					
						
							| 
									
										
										
										
											2021-05-09 20:32:27 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-10-09 19:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | // Pipe operator to decorate components.
 | 
					
						
							|  |  |  | using ComponentDecorator = std::function<Component(Component)>; | 
					
						
							|  |  |  | using ElementDecorator = std::function<Element(Element)>; | 
					
						
							|  |  |  | Component operator|(Component component, ComponentDecorator decorator); | 
					
						
							|  |  |  | Component operator|(Component component, ElementDecorator decorator); | 
					
						
							|  |  |  | Component& operator|=(Component& component, ComponentDecorator decorator); | 
					
						
							|  |  |  | Component& operator|=(Component& component, ElementDecorator decorator); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-02 15:48:56 +01:00
										 |  |  | namespace Container { | 
					
						
							|  |  |  | Component Vertical(Components children); | 
					
						
							|  |  |  | Component Vertical(Components children, int* selector); | 
					
						
							|  |  |  | Component Horizontal(Components children); | 
					
						
							|  |  |  | Component Horizontal(Components children, int* selector); | 
					
						
							|  |  |  | Component Tab(Components children, int* selector); | 
					
						
							| 
									
										
										
										
											2023-07-15 16:29:48 +02:00
										 |  |  | Component Stacked(Components children); | 
					
						
							| 
									
										
										
										
											2022-01-02 15:48:56 +01:00
										 |  |  | }  // namespace Container
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  | Component Button(ButtonOption options); | 
					
						
							| 
									
										
										
										
											2021-05-18 17:49:53 +02:00
										 |  |  | Component Button(ConstStringRef label, | 
					
						
							|  |  |  |                  std::function<void()> on_click, | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  |                  ButtonOption options = ButtonOption::Simple()); | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  | Component Checkbox(CheckboxOption options); | 
					
						
							| 
									
										
										
										
											2021-07-07 22:37:50 +02:00
										 |  |  | Component Checkbox(ConstStringRef label, | 
					
						
							|  |  |  |                    bool* checked, | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  |                    CheckboxOption options = CheckboxOption::Simple()); | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  | Component Input(InputOption options = {}); | 
					
						
							|  |  |  | Component Input(StringRef content, InputOption options = {}); | 
					
						
							| 
									
										
										
										
											2021-07-08 00:01:42 +02:00
										 |  |  | Component Input(StringRef content, | 
					
						
							| 
									
										
										
										
											2023-05-02 13:32:37 +02:00
										 |  |  |                 StringRef placeholder, | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  |                 InputOption options = {}); | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  | Component Menu(MenuOption options); | 
					
						
							| 
									
										
										
										
											2021-08-08 23:25:20 +02:00
										 |  |  | Component Menu(ConstStringListRef entries, | 
					
						
							| 
									
										
										
										
											2021-07-07 22:13:33 +02:00
										 |  |  |                int* selected_, | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  |                MenuOption options = MenuOption::Vertical()); | 
					
						
							|  |  |  | Component MenuEntry(MenuEntryOption options); | 
					
						
							|  |  |  | Component MenuEntry(ConstStringRef label, MenuEntryOption options = {}); | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  | Component Radiobox(RadioboxOption options); | 
					
						
							| 
									
										
										
										
											2021-08-08 23:25:20 +02:00
										 |  |  | Component Radiobox(ConstStringListRef entries, | 
					
						
							| 
									
										
										
										
											2021-07-10 10:50:25 +02:00
										 |  |  |                    int* selected_, | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  |                    RadioboxOption options = {}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Component Dropdown(ConstStringListRef entries, int* selected); | 
					
						
							| 
									
										
										
										
											2024-04-06 16:45:10 +01:00
										 |  |  | Component Dropdown(DropdownOption options); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-13 18:51:46 +01:00
										 |  |  | Component Toggle(ConstStringListRef entries, int* selected); | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-22 21:15:54 +01:00
										 |  |  | // General slider constructor:
 | 
					
						
							| 
									
										
										
										
											2023-02-12 14:07:28 +01:00
										 |  |  | template <typename T> | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  | Component Slider(SliderOption<T> options); | 
					
						
							| 
									
										
										
										
											2022-12-22 21:15:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Shorthand without the `SliderOption` constructor:
 | 
					
						
							| 
									
										
										
										
											2022-08-13 16:26:53 +02:00
										 |  |  | Component Slider(ConstStringRef label, | 
					
						
							|  |  |  |                  Ref<int> value, | 
					
						
							|  |  |  |                  ConstRef<int> min = 0, | 
					
						
							|  |  |  |                  ConstRef<int> max = 100, | 
					
						
							|  |  |  |                  ConstRef<int> increment = 5); | 
					
						
							|  |  |  | Component Slider(ConstStringRef label, | 
					
						
							|  |  |  |                  Ref<float> value, | 
					
						
							|  |  |  |                  ConstRef<float> min = 0.f, | 
					
						
							|  |  |  |                  ConstRef<float> max = 100.f, | 
					
						
							|  |  |  |                  ConstRef<float> increment = 5.f); | 
					
						
							|  |  |  | Component Slider(ConstStringRef label, | 
					
						
							|  |  |  |                  Ref<long> value, | 
					
						
							| 
									
										
										
										
											2024-05-01 11:40:49 +02:00
										 |  |  |                  ConstRef<long> min = 0L, | 
					
						
							|  |  |  |                  ConstRef<long> max = 100L, | 
					
						
							|  |  |  |                  ConstRef<long> increment = 5L); | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 17:22:05 +02:00
										 |  |  | Component ResizableSplit(ResizableSplitOption options); | 
					
						
							| 
									
										
										
										
											2021-07-10 14:23:46 +02:00
										 |  |  | Component ResizableSplitLeft(Component main, Component back, int* main_size); | 
					
						
							|  |  |  | Component ResizableSplitRight(Component main, Component back, int* main_size); | 
					
						
							|  |  |  | Component ResizableSplitTop(Component main, Component back, int* main_size); | 
					
						
							|  |  |  | Component ResizableSplitBottom(Component main, Component back, int* main_size); | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 12:53:20 +02:00
										 |  |  | Component Renderer(Component child, std::function<Element()>); | 
					
						
							|  |  |  | Component Renderer(std::function<Element()>); | 
					
						
							| 
									
										
										
										
											2021-08-06 20:32:33 +02:00
										 |  |  | Component Renderer(std::function<Element(bool /* focused */)>); | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | ComponentDecorator Renderer(ElementDecorator); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 12:53:20 +02:00
										 |  |  | Component CatchEvent(Component child, std::function<bool(Event)>); | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | ComponentDecorator CatchEvent(std::function<bool(Event)> on_event); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-02 15:48:56 +01:00
										 |  |  | Component Maybe(Component, const bool* show); | 
					
						
							| 
									
										
										
										
											2022-03-12 22:18:36 +08:00
										 |  |  | Component Maybe(Component, std::function<bool()>); | 
					
						
							|  |  |  | ComponentDecorator Maybe(const bool* show); | 
					
						
							|  |  |  | ComponentDecorator Maybe(std::function<bool()>); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-12 17:08:22 +02:00
										 |  |  | Component Modal(Component main, Component modal, const bool* show_modal); | 
					
						
							|  |  |  | ComponentDecorator Modal(Component modal, const bool* show_modal); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-02 15:48:56 +01:00
										 |  |  | Component Collapsible(ConstStringRef label, | 
					
						
							|  |  |  |                       Component child, | 
					
						
							|  |  |  |                       Ref<bool> show = false); | 
					
						
							| 
									
										
										
										
											2022-12-04 11:54:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | Component Hoverable(Component component, bool* hover); | 
					
						
							|  |  |  | Component Hoverable(Component component, | 
					
						
							|  |  |  |                     std::function<void()> on_enter, | 
					
						
							|  |  |  |                     std::function<void()> on_leave); | 
					
						
							|  |  |  | Component Hoverable(Component component,  //
 | 
					
						
							|  |  |  |                     std::function<void(bool)> on_change); | 
					
						
							|  |  |  | ComponentDecorator Hoverable(bool* hover); | 
					
						
							|  |  |  | ComponentDecorator Hoverable(std::function<void()> on_enter, | 
					
						
							|  |  |  |                              std::function<void()> on_leave); | 
					
						
							|  |  |  | ComponentDecorator Hoverable(std::function<void(bool)> on_change); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-15 16:29:48 +02:00
										 |  |  | Component Window(WindowOptions option); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-14 22:00:49 +02:00
										 |  |  | }  // namespace ftxui
 | 
					
						
							| 
									
										
										
										
											2018-10-09 19:06:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-09 20:32:27 +02:00
										 |  |  | #endif /* end of include guard: FTXUI_COMPONENT_HPP */
 |