summaryrefslogtreecommitdiffstats
path: root/src/input/keyboard/event.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/keyboard/event.rs')
-rw-r--r--src/input/keyboard/event.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/input/keyboard/event.rs b/src/input/keyboard/event.rs
new file mode 100644
index 00000000..3804c42d
--- /dev/null
+++ b/src/input/keyboard/event.rs
@@ -0,0 +1,21 @@
+use super::KeyCode;
+use crate::input::ButtonState;
+
+#[derive(Debug, Clone, Copy, PartialEq)]
+/// A keyboard event.
+pub enum Event {
+ /// A keyboard key was pressed or released.
+ Input {
+ /// The state of the key
+ state: ButtonState,
+
+ /// The key identifier
+ key_code: KeyCode,
+ },
+
+ /// Text was entered.
+ TextEntered {
+ /// The character entered
+ character: char,
+ },
+}