mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 14:18:04 +08:00
14 lines
592 B
Rust
14 lines
592 B
Rust
pub(crate) const APP_NAME: &str = "Graphite";
|
|
#[cfg(target_os = "linux")]
|
|
pub(crate) const APP_ID: &str = "art.graphite.Graphite";
|
|
|
|
pub(crate) const APP_DIRECTORY_NAME: &str = "graphite";
|
|
pub(crate) const APP_LOCK_FILE_NAME: &str = "instance.lock";
|
|
pub(crate) const APP_STATE_FILE_NAME: &str = "state.ron";
|
|
pub(crate) const APP_PREFERENCES_FILE_NAME: &str = "preferences.ron";
|
|
pub(crate) const APP_DOCUMENTS_DIRECTORY_NAME: &str = "documents";
|
|
|
|
// CEF configuration constants
|
|
pub(crate) const CEF_WINDOWLESS_FRAME_RATE: i32 = 60;
|
|
pub(crate) const CEF_MESSAGE_LOOP_MAX_ITERATIONS: usize = 10;
|