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"
|
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-10 02:32:27 +08:00
|
|
|
Component Button(const std::wstring* label, std::function<void()> on_click);
|
|
|
|
Component Checkbox(const std::wstring* label, bool* checked);
|
|
|
|
Component Input(std::wstring* content, const std::wstring* placeholder);
|
|
|
|
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()>);
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
template <class T> // T = {int, float}
|
|
|
|
Component Slider(std::wstring label, T* value, T min, T max, T increment);
|
2019-01-13 01:24:46 +08:00
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
// namespace Component {
|
|
|
|
// Component Vertical(Components children);
|
|
|
|
// Component Horizontal(Components children);
|
|
|
|
// Component Tab(int* selector, Components children);
|
|
|
|
//} // namespace Component
|
2020-08-26 20:57:42 +08:00
|
|
|
|
2021-05-10 02:32:27 +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.
|