|
utility 2026.1.9
A comprehensive C++ utilities library tailored for the development of modern desktop and extended reality (XR) applications.
|
Text input event for committed UTF-8 text. More...
#include <headers/utility/event/text_input_event.hpp>


Classes | |
| class | Factory |
| Factory for creating TextInputEvent instances. More... | |
Public Member Functions | |
| TextInputEvent (void) | |
| Default constructor. | |
| ~TextInputEvent (void) override | |
| Default destructor. | |
| TextInputEvent & | setText (const std::string &text) |
| Set committed UTF-8 text. | |
| std::string | getText (void) const |
| Get committed UTF-8 text. | |
Public Member Functions inherited from utility::event::Event | |
| Event (void)=default | |
| Default constructor. | |
| virtual | ~Event (void)=default |
| Virtual destructor. | |
Text input event for committed UTF-8 text.
Definition at line 36 of file text_input_event.hpp.
| std::string utility::event::TextInputEvent::getText | ( | void | ) | const |
Get committed UTF-8 text.
Definition at line 51 of file text_input_event.cpp.
| TextInputEvent & utility::event::TextInputEvent::setText | ( | const std::string & | text | ) |
Set committed UTF-8 text.
| text | The committed text. |
Definition at line 45 of file text_input_event.cpp.