2021-06-17 18:09:10 -04:00
|
|
|
#[macro_use]
|
|
|
|
pub mod macros;
|
|
|
|
|
2021-06-14 17:37:17 -04:00
|
|
|
pub mod clipboard;
|
2020-10-22 14:35:07 +09:00
|
|
|
pub mod document;
|
2020-10-16 12:29:22 +09:00
|
|
|
pub mod editor;
|
2021-06-24 20:58:15 -07:00
|
|
|
pub mod graphics;
|
2021-06-23 01:04:04 +08:00
|
|
|
pub mod input;
|
2021-06-24 20:58:15 -07:00
|
|
|
pub mod keyboard;
|
2021-06-04 22:21:31 -04:00
|
|
|
pub mod register_selection;
|
2020-09-21 18:24:16 +09:00
|
|
|
pub mod theme;
|
2021-02-03 19:36:54 +09:00
|
|
|
pub mod tree;
|
2020-09-21 18:24:16 +09:00
|
|
|
pub mod view;
|
|
|
|
|
2021-06-23 01:04:04 +08:00
|
|
|
slotmap::new_key_type! {
|
|
|
|
pub struct DocumentId;
|
|
|
|
pub struct ViewId;
|
|
|
|
}
|
2021-03-16 18:27:57 +09:00
|
|
|
|
2020-10-22 14:35:07 +09:00
|
|
|
pub use document::Document;
|
2020-10-16 12:29:22 +09:00
|
|
|
pub use editor::Editor;
|
2021-06-04 22:21:31 -04:00
|
|
|
pub use register_selection::RegisterSelection;
|
2020-10-19 17:18:03 +09:00
|
|
|
pub use theme::Theme;
|
2020-09-21 18:24:16 +09:00
|
|
|
pub use view::View;
|