FTXUI/include/ftxui/component/component.hpp

53 lines
1.8 KiB
C++
Raw Normal View History

2021-05-10 02:32:27 +08:00
#ifndef FTXUI_COMPONENT_HPP
#define FTXUI_COMPONENT_HPP
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"
#include "ftxui/dom/elements.hpp" // for Element
#include "ftxui/screen/string.hpp" // for ConstStringRef, StringRef
namespace ftxui {
2021-05-10 02:32:27 +08:00
class ComponentBase;
2021-05-23 18:53:20 +08:00
struct Event;
2021-05-10 02:32:27 +08:00
using Component = std::shared_ptr<ComponentBase>;
using Components = std::vector<Component>;
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...);
}
Component Button(ConstStringRef label,
std::function<void()> on_click,
bool border = true);
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);
template <class T> // T = {int, float}
Component Slider(StringRef label, T* value, T min, T max, T increment);
2021-05-23 18:53:20 +08:00
Component Renderer(Component child, std::function<Element()>);
Component Renderer(std::function<Element()>);
Component CatchEvent(Component child, std::function<bool(Event)>);
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);
Component Tab(Components children, int* selector);
2021-05-15 02:56:37 +08:00
} // namespace Container
2021-05-15 04:00:49 +08:00
} // namespace ftxui
2021-05-10 02:32:27 +08:00
#endif /* end of include guard: FTXUI_COMPONENT_HPP */
2021-05-10 02:32:27 +08: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.