mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-29 16:39:34 +08:00
Add Event.
This commit is contained in:
35
ftxui/include/ftxui/component/input.hpp
Normal file
35
ftxui/include/ftxui/component/input.hpp
Normal file
@@ -0,0 +1,35 @@
|
||||
#ifndef FTXUI_COMPONENT_INPUT_H_
|
||||
#define FTXUI_COMPONENT_INPUT_H_
|
||||
|
||||
#include "ftxui/component/component.hpp"
|
||||
#include <functional>
|
||||
|
||||
namespace ftxui {
|
||||
namespace component {
|
||||
|
||||
class Input : public Component {
|
||||
public:
|
||||
// Constructor.
|
||||
Input(Delegate*);
|
||||
~Input() override;
|
||||
|
||||
// State.
|
||||
std::wstring content = L"input";
|
||||
std::wstring placeholder = L"placeholder";
|
||||
|
||||
// State update callback.
|
||||
std::function<void()> on_change = [](){};
|
||||
std::function<void()> on_enter = [](){};
|
||||
|
||||
// Component implementation.
|
||||
dom::Element Render() override;
|
||||
bool OnEvent(Event) override;
|
||||
|
||||
private:
|
||||
int cursor_position = 0;
|
||||
};
|
||||
|
||||
} // namespace component
|
||||
} // namespace ftxui
|
||||
|
||||
#endif /* end of include guard: FTXUI_COMPONENT_INPUT_H_ */
|
Reference in New Issue
Block a user