@@ -1,12 +1,4 @@
-mod binding;
-mod keymap;
-mod keymap_context;
-
-pub use binding::*;
-pub use keymap::*;
-pub use keymap_context::*;
-
-use crate::Keystroke;
+use crate::{Binding, Keymap, KeymapContext, KeymapVersion, Keystroke};
use smallvec::SmallVec;
use std::any::{Any, TypeId};
@@ -16,13 +8,13 @@ pub trait Action: Any + Send + Sync {
fn as_any(&self) -> &dyn Any;
}
-pub struct KeymapMatcher {
+pub struct KeyMatcher {
pending_keystrokes: Vec<Keystroke>,
keymap: Keymap,
keymap_version: KeymapVersion,
}
-impl KeymapMatcher {
+impl KeyMatcher {
pub fn new(keymap: Keymap) -> Self {
Self {
pending_keystrokes: Vec::new(),
@@ -106,7 +98,7 @@ impl KeymapMatcher {
}
}
-impl Default for KeymapMatcher {
+impl Default for KeyMatcher {
fn default() -> Self {
Self::new(Keymap::default())
}
@@ -2,7 +2,7 @@ use crate::{
px, size, Action, AnyBox, AnyView, AppContext, AsyncWindowContext, AvailableSpace,
BorrowAppContext, Bounds, BoxShadow, Context, Corners, DevicePixels, DisplayId, Edges, Effect,
Element, EntityId, EventEmitter, FocusEvent, FontId, GlobalElementId, GlyphId, Handle, Hsla,
- ImageData, InputEvent, IsZero, KeyListener, KeyMatch, KeymapMatcher, Keystroke, LayoutId,
+ ImageData, InputEvent, IsZero, KeyListener, KeyMatch, KeyMatcher, Keystroke, LayoutId,
MainThread, MainThreadOnly, MonochromeSprite, MouseMoveEvent, Path, Pixels, Platform,
PlatformAtlas, PlatformWindow, Point, PolychromeSprite, Quad, Reference, RenderGlyphParams,
RenderImageParams, RenderSvgParams, ScaledPixels, SceneBuilder, Shadow, SharedString, Size,
@@ -150,8 +150,8 @@ pub struct Window {
pub(crate) element_id_stack: GlobalElementId,
prev_frame_element_states: HashMap<GlobalElementId, AnyBox>,
element_states: HashMap<GlobalElementId, AnyBox>,
- prev_frame_key_matchers: HashMap<GlobalElementId, KeymapMatcher>,
- key_matchers: HashMap<GlobalElementId, KeymapMatcher>,
+ prev_frame_key_matchers: HashMap<GlobalElementId, KeyMatcher>,
+ key_matchers: HashMap<GlobalElementId, KeyMatcher>,
z_index_stack: StackingOrder,
content_mask_stack: Vec<ContentMask<Pixels>>,
mouse_listeners: HashMap<TypeId, Vec<(StackingOrder, AnyListener)>>,