browser-window-core 0.0.1

The non-user friendly inner functionality of crate browser-window, providing an cross-platform and browser engine independent interface.
Documentation
//! This module implements the `Window` trait with the corresponding function definitions found in the C code base of `browser-window-c`.
//! All functions are basically wrapping the FFI provided by crate `browser-window-c`.

use super::{
	WindowExt,
	WindowOptions
};

use crate::{
	application::ApplicationImpl,
	prelude::*
};

use std::ptr;



#[derive(Clone,Copy)]
pub struct WindowImpl {
	pub(in crate) inner: *mut cbw_Window
}



impl WindowImpl {

	pub fn new(
		app: ApplicationImpl,
		parent: Self,
		title: &str,
		width: Option<u32>,
		height: Option<u32>,
		options: &WindowOptions,
		user_data: *mut ()
	) -> Self {
		let str_slice: cbw_CStrSlice = title.into();

		let w = match width {
			None => -1i32,
			Some( x ) => x as i32
		};
		let h = match height {
			None => -1i32,
			Some( x ) => x as i32
		};

		let handle = unsafe { cbw_Window_new(
			app.inner,
			parent.inner,
			str_slice,
			w,
			h,
			options,
			user_data as _
		) };

		// Return
		Self { inner: handle }
	}
}

impl WindowExt for WindowImpl {

	fn app( &self ) -> ApplicationImpl {
		ApplicationImpl { inner: unsafe { (*self.inner).app } }
	}

	fn destroy( &self ) {
		unsafe { cbw_Window_destroy( self.inner ) }
	}

	fn drop( &self ) {
		unsafe { cbw_Window_drop( self.inner ) }
	}

	fn get_content_dimensions( &self ) -> Dims2D {
		unsafe { cbw_Window_getContentDimensions( self.inner ) }
	}

	fn get_opacity( &self ) -> u8 {
		unsafe { cbw_Window_getOpacity( self.inner ) }
	}

	fn get_position( &self ) -> Pos2D {
		unsafe { cbw_Window_getPosition( self.inner ) }
	}

	fn get_title( &self ) -> String {
		// First obtain string size
		let buf_len = unsafe { cbw_Window_getTitle( self.inner, cbw_StrSlice::empty() ) };

		// Allocate buffer and copy string into it
		let mut buf = vec![0u8; buf_len as _];
		let slice = cbw_StrSlice { len: buf_len as _, data: buf.as_mut_ptr() as _ };
		unsafe { cbw_Window_getTitle( self.inner, slice ) };

		// Convert to String
		slice.into()
	}

	fn get_window_dimensions( &self ) -> Dims2D {
		unsafe { cbw_Window_getWindowDimensions( self.inner ) }
	}

	fn hide( &self ) {
		unsafe { cbw_Window_hide( self.inner ) }
	}

	fn set_content_dimensions( &self, dimensions: Dims2D ) {
		unsafe { cbw_Window_setContentDimensions( self.inner, dimensions ) }
	}

	fn set_opacity( &self, opacity: u8 ) {
		unsafe { cbw_Window_setOpacity( self.inner, opacity ) }
	}

	fn set_position( &self, position: Pos2D ) {
		unsafe { cbw_Window_setPosition( self.inner, position ) }
	}

	fn set_title( &self, title: &str ) {
		let slice: cbw_CStrSlice = title.into();
		unsafe { cbw_Window_setTitle( self.inner, slice ) };
	}

	fn set_window_dimensions( &self, dimensions: Dims2D ) {
		unsafe { cbw_Window_setWindowDimensions( self.inner, dimensions ) }
	}

	fn show( &self ) {
		unsafe { cbw_Window_show( self.inner ) }
	}
}

impl Default for WindowImpl {
	fn default() -> Self {
		Self {
			inner: ptr::null_mut()
		}
	}
}