ttx 0.1.0
Loading...
Searching...
No Matches
paste_event.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/container/string/string.h"
4#include "di/reflect/field.h"
5#include "di/reflect/prelude.h"
6
7namespace ttx {
8class PasteEvent {
9public:
10 constexpr explicit PasteEvent(di::String text) : m_text(di::move(text)) {}
11
12 auto text() const -> di::StringView { return m_text; }
13
14 auto operator==(PasteEvent const&) const -> bool = default;
15
16private:
17 constexpr friend auto tag_invoke(di::Tag<di::reflect>, di::InPlaceType<PasteEvent>) {
18 return di::make_fields<"PasteEvent">(di::field<"text", &PasteEvent::m_text>);
19 }
20
21 di::String m_text;
22};
23}
auto text() const -> di::StringView
Definition paste_event.h:12
auto operator==(PasteEvent const &) const -> bool=default
constexpr PasteEvent(di::String text)
Definition paste_event.h:10
constexpr friend auto tag_invoke(di::Tag< di::reflect >, di::InPlaceType< PasteEvent >)
Definition paste_event.h:17
Definition cursor_style.h:5