2020-03-07 14:35:18 +11:00
|
|
|
//! Constants typically used for referencing around in the Objective-C runtime.
|
|
|
|
//! Specific to this crate.
|
|
|
|
|
|
|
|
pub(crate) static APP_PTR: &str = "rstAppPtr";
|
|
|
|
pub(crate) static BACKGROUND_COLOR: &str = "rstBackgroundColor";
|
|
|
|
pub(crate) static TOOLBAR_PTR: &str = "rstToolbarPtr";
|
|
|
|
pub(crate) static VIEW_CONTROLLER_PTR: &str = "rstViewControllerPtr";
|
2020-03-18 13:11:03 +11:00
|
|
|
|
|
|
|
#[cfg(feature = "webview")]
|
2020-03-07 14:35:18 +11:00
|
|
|
pub(crate) static WEBVIEW_CONFIG_VAR: &str = "rstWebViewConfig";
|
2020-03-18 13:11:03 +11:00
|
|
|
|
|
|
|
#[cfg(feature = "webview")]
|
2020-03-07 14:35:18 +11:00
|
|
|
pub(crate) static WEBVIEW_VAR: &str = "rstWebView";
|
2020-03-18 13:11:03 +11:00
|
|
|
|
|
|
|
#[cfg(feature = "webview")]
|
2020-03-07 14:35:18 +11:00
|
|
|
pub(crate) static WEBVIEW_CONTROLLER_PTR: &str = "rstWebViewControllerPtr";
|
2020-03-18 13:11:03 +11:00
|
|
|
|
2020-03-12 11:56:17 +11:00
|
|
|
pub(crate) static WINDOW_CONTROLLER_PTR: &str = "rstWindowController";
|