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