FTXUI/include/ftxui/component/input.hpp

54 lines
1.4 KiB
C++
Raw Normal View History

2018-10-19 04:58:38 +08:00
#ifndef FTXUI_COMPONENT_INPUT_H_
#define FTXUI_COMPONENT_INPUT_H_
2021-05-10 02:32:27 +08:00
#include <functional> // for function
#include <string> // for wstring
2018-10-19 04:58:38 +08:00
2021-05-10 02:32:27 +08:00
#include "ftxui/component/component.hpp" // for Component
#include "ftxui/component/component_base.hpp" // for ComponentBase
#include "ftxui/dom/elements.hpp" // for Element
#include "ftxui/screen/box.hpp" // for Box
#include "ftxui/screen/string.hpp" // for ConstStringRef, StringRef
namespace ftxui {
2021-05-02 02:40:35 +08:00
struct Event;
2018-10-19 04:58:38 +08:00
2020-08-16 08:24:50 +08:00
/// @brief An input box. The user can type text into it.
/// @ingroup component.
2021-05-10 02:32:27 +08:00
class InputBase : public ComponentBase {
2018-10-19 04:58:38 +08:00
public:
2021-05-10 02:32:27 +08:00
// Access this interface from a Component
static InputBase* From(Component component);
2018-10-19 04:58:38 +08:00
// Constructor.
InputBase(StringRef content, ConstStringRef placeholder);
2021-05-10 02:32:27 +08:00
~InputBase() override = default;
2018-10-19 04:58:38 +08:00
// State.
int cursor_position = 0;
2018-10-19 04:58:38 +08:00
// State update callback.
2020-09-20 17:47:06 +08:00
std::function<void()> on_change = [] {};
std::function<void()> on_enter = [] {};
2018-10-19 04:58:38 +08:00
// Component implementation.
Element Render() override;
bool OnEvent(Event) override;
private:
StringRef content_;
ConstStringRef placeholder_;
2021-05-10 02:32:27 +08:00
bool OnMouseEvent(Event);
Box input_box_;
Box cursor_box_;
2018-10-19 04:58:38 +08:00
};
} // namespace ftxui
2018-10-19 04:58:38 +08:00
#endif /* end of include guard: FTXUI_COMPONENT_INPUT_H_ */
// Copyright 2020 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.