43 lines
905 B
C++
43 lines
905 B
C++
/**
|
|
* @file InputField.h
|
|
* @author apio (cloudapio.eu)
|
|
* @brief Single line text input widget.
|
|
*
|
|
* @copyright Copyright (c) 2024, the Luna authors.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <os/Action.h>
|
|
#include <ui/Font.h>
|
|
#include <ui/TextInput.h>
|
|
|
|
namespace ui
|
|
{
|
|
class InputField : public ui::TextInput
|
|
{
|
|
public:
|
|
InputField(SharedPtr<ui::Font> font);
|
|
|
|
Result<ui::EventResult> handle_key_event(const ui::KeyEventRequest& request) override;
|
|
|
|
Result<void> draw(ui::Canvas& canvas) override;
|
|
|
|
void clear();
|
|
|
|
StringView data();
|
|
|
|
void on_submit(os::Function<StringView>&& action)
|
|
{
|
|
m_on_submit_action = move(action);
|
|
m_has_on_submit_action = true;
|
|
}
|
|
|
|
private:
|
|
SharedPtr<ui::Font> m_font;
|
|
|
|
os::Function<StringView> m_on_submit_action;
|
|
bool m_has_on_submit_action { false };
|
|
};
|
|
}
|