kas_core/config/mod.rs
1// Licensed under the Apache License, Version 2.0 (the "License");
2// you may not use this file except in compliance with the License.
3// You may obtain a copy of the License in the LICENSE-APACHE file or at:
4// https://www.apache.org/licenses/LICENSE-2.0
5
6//! Configuration items and utilities
7
8mod config;
9pub use config::{Config, ConfigMsg, WindowConfig};
10
11mod event;
12pub use event::{EventConfig, EventConfigMsg, EventWindowConfig, MousePan};
13
14mod font;
15pub use font::{FontConfig, FontConfigMsg, RasterConfig};
16
17mod format;
18pub use format::{Error, Format};
19
20mod factory;
21pub use factory::*;
22
23mod shortcuts;
24pub use shortcuts::Shortcuts;
25
26mod theme;
27pub use theme::{ThemeConfig, ThemeConfigMsg};