2018-10-18 22:58:38 +02:00
|
|
|
#ifndef FTXUI_COMPONENT_INPUT_H_
|
|
|
|
|
#define FTXUI_COMPONENT_INPUT_H_
|
|
|
|
|
|
2021-05-09 20:32:27 +02:00
|
|
|
#include <functional> // for function
|
|
|
|
|
#include <string> // for wstring
|
2018-10-18 22:58:38 +02:00
|
|
|
|
2021-05-09 20:32:27 +02: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
|
2021-05-14 21:43:35 +02:00
|
|
|
#include "ftxui/screen/string.hpp" // for ConstStringRef, StringRef
|
2020-03-23 21:26:00 +01:00
|
|
|
|
2019-01-12 15:00:08 +01:00
|
|
|
namespace ftxui {
|
2021-05-01 20:40:35 +02:00
|
|
|
struct Event;
|
2018-10-18 22:58:38 +02:00
|
|
|
|
2020-08-16 02:24:50 +02:00
|
|
|
/// @brief An input box. The user can type text into it.
|
|
|
|
|
/// @ingroup component.
|
2021-05-09 20:32:27 +02:00
|
|
|
class InputBase : public ComponentBase {
|
2018-10-18 22:58:38 +02:00
|
|
|
public:
|
2021-05-09 20:32:27 +02:00
|
|
|
// Access this interface from a Component
|
|
|
|
|
static InputBase* From(Component component);
|
|
|
|
|
|
2018-10-18 22:58:38 +02:00
|
|
|
// Constructor.
|
2021-05-14 21:43:35 +02:00
|
|
|
InputBase(StringRef content, ConstStringRef placeholder);
|
2021-05-09 20:32:27 +02:00
|
|
|
~InputBase() override = default;
|
2018-10-18 22:58:38 +02:00
|
|
|
|
|
|
|
|
// State.
|
2020-10-24 10:48:59 -04:00
|
|
|
int cursor_position = 0;
|
2018-10-18 22:58:38 +02:00
|
|
|
|
|
|
|
|
// State update callback.
|
2020-09-20 11:47:06 +02:00
|
|
|
std::function<void()> on_change = [] {};
|
|
|
|
|
std::function<void()> on_enter = [] {};
|
2018-10-18 22:58:38 +02:00
|
|
|
|
|
|
|
|
// Component implementation.
|
2019-01-12 15:00:08 +01:00
|
|
|
Element Render() override;
|
2019-01-06 16:10:57 +01:00
|
|
|
bool OnEvent(Event) override;
|
2021-04-25 16:58:16 +02:00
|
|
|
|
|
|
|
|
private:
|
2021-05-14 21:43:35 +02:00
|
|
|
StringRef content_;
|
|
|
|
|
ConstStringRef placeholder_;
|
2021-05-09 20:32:27 +02:00
|
|
|
|
2021-04-25 16:58:16 +02:00
|
|
|
bool OnMouseEvent(Event);
|
|
|
|
|
Box input_box_;
|
|
|
|
|
Box cursor_box_;
|
2018-10-18 22:58:38 +02:00
|
|
|
};
|
|
|
|
|
|
2019-01-12 15:00:08 +01:00
|
|
|
} // namespace ftxui
|
2018-10-18 22:58:38 +02:00
|
|
|
|
|
|
|
|
#endif /* end of include guard: FTXUI_COMPONENT_INPUT_H_ */
|
2020-08-16 00:24:18 +02:00
|
|
|
|
|
|
|
|
// 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.
|