2021-05-10 02:32:27 +08:00
|
|
|
#ifndef FTXUI_COMPONENT_HPP
|
|
|
|
#define FTXUI_COMPONENT_HPP
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
#include <functional> // for function
|
|
|
|
#include <memory> // for shared_ptr, make_shared
|
|
|
|
#include <string> // for wstring
|
|
|
|
#include <vector> // for vector
|
2021-05-02 02:40:35 +08:00
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
#include "ftxui/component/component_base.hpp"
|
2021-05-15 03:43:35 +08:00
|
|
|
#include "ftxui/dom/elements.hpp" // for Element
|
|
|
|
#include "ftxui/screen/string.hpp" // for ConstStringRef, StringRef
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2019-01-12 22:00:08 +08:00
|
|
|
namespace ftxui {
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
class ComponentBase;
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
using Component = std::shared_ptr<ComponentBase>;
|
|
|
|
using Components = std::vector<Component>;
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
template <class T, class... Args>
|
|
|
|
std::shared_ptr<T> Make(Args&&... args) {
|
|
|
|
return std::make_shared<T>(args...);
|
|
|
|
}
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2021-05-18 23:49:53 +08:00
|
|
|
Component Button(ConstStringRef label,
|
|
|
|
std::function<void()> on_click,
|
|
|
|
bool border = true);
|
2021-05-15 03:43:35 +08:00
|
|
|
Component Checkbox(ConstStringRef label, bool* checked);
|
|
|
|
Component Input(StringRef content, ConstStringRef placeholder);
|
2021-05-10 02:32:27 +08:00
|
|
|
Component Menu(const std::vector<std::wstring>* entries, int* selected_);
|
|
|
|
Component Radiobox(const std::vector<std::wstring>* entries, int* selected_);
|
|
|
|
Component Toggle(const std::vector<std::wstring>* entries, int* selected);
|
2021-05-13 17:44:47 +08:00
|
|
|
Component Renderer(Component child, std::function<Element()>);
|
|
|
|
Component Renderer(std::function<Element()>);
|
2021-05-10 02:32:27 +08:00
|
|
|
template <class T> // T = {int, float}
|
2021-05-15 03:43:35 +08:00
|
|
|
Component Slider(StringRef label, T* value, T min, T max, T increment);
|
2019-01-13 01:24:46 +08:00
|
|
|
|
2021-05-15 02:56:37 +08:00
|
|
|
namespace Container {
|
|
|
|
Component Vertical(Components children);
|
|
|
|
Component Horizontal(Components children);
|
2021-05-15 08:32:42 +08:00
|
|
|
Component Tab(Components children, int* selector);
|
2021-05-15 02:56:37 +08:00
|
|
|
} // namespace Container
|
2020-08-26 20:57:42 +08:00
|
|
|
|
2021-05-15 04:00:49 +08:00
|
|
|
} // namespace ftxui
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
#endif /* end of include guard: FTXUI_COMPONENT_HPP */
|
2020-08-26 20:57:42 +08:00
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
// Copyright 2021 Arthur Sonzogni. All rights reserved.
|
2020-08-16 06:24:18 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be found in
|
|
|
|
// the LICENSE file.
|