mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 02:48:12 +08:00
* Impl NetworkMessageHandler * Repalce Frontend fetch like messages with NetworkMessage * Reimpl resource loading with NetworkMessage * Fix wasm * dedublicate resource requests * Embedd font resources created by migration * Fixup * Fix tests * Fix font catalog not loading * Cleanup * Fix layouts not updating when font catalog is loaded * Review * Review * Cleanup
25 lines
501 B
Rust
25 lines
501 B
Rust
//! The root-level messages forming the first layer of the message system architecture.
|
|
|
|
pub mod animation;
|
|
pub mod app_window;
|
|
pub mod broadcast;
|
|
pub mod clipboard;
|
|
pub mod color_picker;
|
|
pub mod debug;
|
|
pub mod defer;
|
|
pub mod dialog;
|
|
pub mod frontend;
|
|
pub mod future;
|
|
pub mod input_mapper;
|
|
pub mod input_preprocessor;
|
|
pub mod layout;
|
|
pub mod menu_bar;
|
|
pub mod message;
|
|
pub mod network;
|
|
pub mod portfolio;
|
|
pub mod preferences;
|
|
pub mod prelude;
|
|
pub mod resource_storage;
|
|
pub mod tool;
|
|
pub mod viewport;
|