orbtk-core 0.3.1-alpha4

Core crate that provides base api and elements for OrbTk like widgets basis.
use std::{
    cell::{Cell, RefCell},
    collections::BTreeMap,
    rc::Rc,
    sync::mpsc,
};

use dces::prelude::*;

use super::WindowAdapter;

use crate::{
    event::*,
    layout::*,
    localization::Localization,
    render_object::*,
    shell::{ShellRequest, WindowRequest},
    utils::Point,
    widget_base::*,
};

/// Temporary solution to share dependencies. Will be refactored soon.
#[derive(Clone)]
pub struct ContextProvider {
    /// Reference counted cells of render objects.
    pub render_objects: Rc<RefCell<BTreeMap<Entity, Box<dyn RenderObject>>>>,
    /// Reference counted cells of layouts objects.
    pub layouts: Rc<RefCell<BTreeMap<Entity, Box<dyn Layout>>>>,
    /// Reference counted cells of handler_map objects.
    pub handler_map: Rc<RefCell<EventHandlerMap>>,
    /// Reference counted cells of handler_states.
    pub states: Rc<RefCell<BTreeMap<Entity, Box<dyn State>>>>,
    /// Event adapter objects.
    pub event_adapter: EventAdapter,
    /// Message adapter objects.
    pub message_adapter: MessageAdapter,
    /// Reference counted cells of mouse_positions defined as `points`
    pub mouse_position: Rc<Cell<Point>>,
    /// A window_sender object, used for multiparty session-typed communication.
    pub window_sender: mpsc::Sender<WindowRequest>,
    /// A shell_sender object, used for multiparty session-typed communication.
    pub shell_sender: mpsc::Sender<ShellRequest<WindowAdapter>>,
    /// Holds the application name.
    pub application_name: String,
    /// Reference counted cell to track the `first_run`
    pub first_run: Rc<Cell<bool>>,
    /// Holds a raw window handler object.
    pub raw_window_handle: Option<raw_window_handle::RawWindowHandle>,
    // TODO: make it thread safe
    /// Reference counted cells that hold the supported localization identifiers.
    pub localization: Option<Rc<RefCell<Box<dyn Localization>>>>,
}

impl ContextProvider {
    /// Creates a new context provider.
    pub fn new(
        window_sender: mpsc::Sender<WindowRequest>,
        shell_sender: mpsc::Sender<ShellRequest<WindowAdapter>>,
        application_name: impl Into<String>,
        localization: Option<Rc<RefCell<Box<dyn Localization>>>>,
    ) -> Self {
        ContextProvider {
            render_objects: Rc::new(RefCell::new(BTreeMap::new())),
            layouts: Rc::new(RefCell::new(BTreeMap::new())),
            handler_map: Rc::new(RefCell::new(EventHandlerMap::new())),
            states: Rc::new(RefCell::new(BTreeMap::new())),
            event_adapter: EventAdapter::new(window_sender.clone()),
            message_adapter: MessageAdapter::new(window_sender.clone()),
            mouse_position: Rc::new(Cell::new(Point::new(0.0, 0.0))),
            window_sender,
            shell_sender,
            application_name: application_name.into(),
            first_run: Rc::new(Cell::new(true)),
            raw_window_handle: None,
            localization,
        }
    }
}