unify api and file structure across platforms; make example platform-independent
This commit is contained in:
parent
ff5b7fee79
commit
1b33c3c33e
|
@ -1,5 +1,3 @@
|
||||||
use std::ptr::null_mut;
|
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let window_open_options = baseview::WindowOpenOptions {
|
let window_open_options = baseview::WindowOpenOptions {
|
||||||
title: "baseview",
|
title: "baseview",
|
||||||
|
@ -8,18 +6,5 @@ fn main() {
|
||||||
parent: baseview::Parent::None,
|
parent: baseview::Parent::None,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(target_os = "macos")] {
|
|
||||||
baseview::Window::open(window_open_options);
|
baseview::Window::open(window_open_options);
|
||||||
}
|
}
|
||||||
#[cfg(target_os = "windows")] {
|
|
||||||
baseview::create_window(window_open_options);
|
|
||||||
loop {
|
|
||||||
if !baseview::handle_msg(null_mut()) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#[cfg(target_os = "linux")] {
|
|
||||||
baseview::run(window_open_options);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
11
src/lib.rs
11
src/lib.rs
|
@ -4,12 +4,16 @@ use std::ffi::c_void;
|
||||||
mod win;
|
mod win;
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
pub use win::*;
|
pub use win::*;
|
||||||
|
|
||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
mod x11;
|
mod x11;
|
||||||
|
#[cfg(target_os = "linux")]
|
||||||
|
pub use x11::*;
|
||||||
|
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
mod macos;
|
mod macos;
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
pub use macos::Window;
|
pub use macos::*;
|
||||||
|
|
||||||
pub enum Parent {
|
pub enum Parent {
|
||||||
None,
|
None,
|
||||||
|
@ -25,8 +29,3 @@ pub struct WindowOpenOptions<'a> {
|
||||||
|
|
||||||
pub parent: Parent,
|
pub parent: Parent,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(target_os = "linux")]
|
|
||||||
pub fn run(options: WindowOpenOptions) {
|
|
||||||
x11::run(options);
|
|
||||||
}
|
|
||||||
|
|
2
src/macos/mod.rs
Normal file
2
src/macos/mod.rs
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
mod window;
|
||||||
|
pub use window::*;
|
|
@ -11,7 +11,7 @@ use crate::WindowOpenOptions;
|
||||||
pub struct Window;
|
pub struct Window;
|
||||||
|
|
||||||
impl Window {
|
impl Window {
|
||||||
pub fn open(options: WindowOpenOptions) {
|
pub fn open(options: WindowOpenOptions) -> Self {
|
||||||
unsafe {
|
unsafe {
|
||||||
let _pool = NSAutoreleasePool::new(nil);
|
let _pool = NSAutoreleasePool::new(nil);
|
||||||
|
|
||||||
|
@ -41,6 +41,8 @@ impl Window {
|
||||||
let current_app = NSRunningApplication::currentApplication(nil);
|
let current_app = NSRunningApplication::currentApplication(nil);
|
||||||
current_app.activateWithOptions_(NSApplicationActivateIgnoringOtherApps);
|
current_app.activateWithOptions_(NSApplicationActivateIgnoringOtherApps);
|
||||||
app.run();
|
app.run();
|
||||||
|
|
||||||
|
Window
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,3 +1,2 @@
|
||||||
mod window;
|
mod window;
|
||||||
|
|
||||||
pub use window::*;
|
pub use window::*;
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
extern crate winapi;
|
extern crate winapi;
|
||||||
|
|
||||||
|
use std::ptr::null_mut;
|
||||||
|
|
||||||
use self::winapi::_core::mem::MaybeUninit;
|
use self::winapi::_core::mem::MaybeUninit;
|
||||||
use self::winapi::shared::guiddef::GUID;
|
use self::winapi::shared::guiddef::GUID;
|
||||||
use self::winapi::shared::minwindef::{LPARAM, LPVOID, LRESULT, UINT, WPARAM};
|
use self::winapi::shared::minwindef::{LPARAM, LPVOID, LRESULT, UINT, WPARAM};
|
||||||
|
@ -14,40 +16,10 @@ use self::winapi::um::winuser::{
|
||||||
|
|
||||||
use crate::WindowOpenOptions;
|
use crate::WindowOpenOptions;
|
||||||
|
|
||||||
pub fn handle_msg(_window: HWND) -> bool {
|
pub struct Window;
|
||||||
unsafe {
|
|
||||||
let mut msg: MSG = MaybeUninit::uninit().assume_init();
|
|
||||||
loop {
|
|
||||||
if PeekMessageA(&mut msg, 0 as HWND, 0, 0, PM_REMOVE) == 0 {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
if msg.message == WM_QUIT {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
TranslateMessage(&msg);
|
|
||||||
DispatchMessageA(&msg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub unsafe extern "system" fn wnd_proc(
|
impl Window {
|
||||||
hwnd: HWND,
|
pub fn open(options: WindowOpenOptions) -> Self {
|
||||||
msg: UINT,
|
|
||||||
w_param: WPARAM,
|
|
||||||
l_param: LPARAM,
|
|
||||||
) -> LRESULT {
|
|
||||||
match msg {
|
|
||||||
WM_DESTROY => {
|
|
||||||
PostQuitMessage(0);
|
|
||||||
}
|
|
||||||
_ => {
|
|
||||||
return DefWindowProcA(hwnd, msg, w_param, l_param);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn create_window(w: WindowOpenOptions) {
|
|
||||||
unsafe {
|
unsafe {
|
||||||
// We generate a unique name for the new window class to prevent name collisions
|
// We generate a unique name for the new window class to prevent name collisions
|
||||||
let mut guid: GUID = MaybeUninit::uninit().assume_init();
|
let mut guid: GUID = MaybeUninit::uninit().assume_init();
|
||||||
|
@ -93,12 +65,54 @@ pub fn create_window(w: WindowOpenOptions) {
|
||||||
CW_USEDEFAULT,
|
CW_USEDEFAULT,
|
||||||
CW_USEDEFAULT,
|
CW_USEDEFAULT,
|
||||||
// todo: check if usize fits into i32
|
// todo: check if usize fits into i32
|
||||||
w.width as i32,
|
options.width as i32,
|
||||||
w.height as i32,
|
options.height as i32,
|
||||||
0 as HWND,
|
0 as HWND,
|
||||||
0 as HMENU,
|
0 as HMENU,
|
||||||
hinstance,
|
hinstance,
|
||||||
0 as LPVOID,
|
0 as LPVOID,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
loop {
|
||||||
|
if !handle_msg(null_mut()) {
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Window
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn handle_msg(_window: HWND) -> bool {
|
||||||
|
unsafe {
|
||||||
|
let mut msg: MSG = MaybeUninit::uninit().assume_init();
|
||||||
|
loop {
|
||||||
|
if PeekMessageA(&mut msg, 0 as HWND, 0, 0, PM_REMOVE) == 0 {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if msg.message == WM_QUIT {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
TranslateMessage(&msg);
|
||||||
|
DispatchMessageA(&msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
unsafe extern "system" fn wnd_proc(
|
||||||
|
hwnd: HWND,
|
||||||
|
msg: UINT,
|
||||||
|
w_param: WPARAM,
|
||||||
|
l_param: LPARAM,
|
||||||
|
) -> LRESULT {
|
||||||
|
match msg {
|
||||||
|
WM_DESTROY => {
|
||||||
|
PostQuitMessage(0);
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
return DefWindowProcA(hwnd, msg, w_param, l_param);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
2
src/x11/mod.rs
Normal file
2
src/x11/mod.rs
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
mod window;
|
||||||
|
pub use window::*;
|
|
@ -8,12 +8,12 @@
|
||||||
use crate::Parent;
|
use crate::Parent;
|
||||||
use crate::WindowOpenOptions;
|
use crate::WindowOpenOptions;
|
||||||
|
|
||||||
struct X11Window {
|
pub struct Window {
|
||||||
xcb_connection: xcb::Connection,
|
xcb_connection: xcb::Connection,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl X11Window {
|
impl Window {
|
||||||
pub fn run(options: WindowOpenOptions) -> Self {
|
pub fn open(options: WindowOpenOptions) -> Self {
|
||||||
// Convert the parent to a X11 window ID if we're given one
|
// Convert the parent to a X11 window ID if we're given one
|
||||||
let parent = match options.parent {
|
let parent = match options.parent {
|
||||||
Parent::None => None,
|
Parent::None => None,
|
||||||
|
@ -107,10 +107,6 @@ impl X11Window {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn run(options: WindowOpenOptions) {
|
|
||||||
X11Window::run(options);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Figure out the DPI scaling by opening a new temporary connection and asking XCB
|
// Figure out the DPI scaling by opening a new temporary connection and asking XCB
|
||||||
// TODO: currently returning (96, 96) on my system, even though I have 4k screens. Problem with my setup perhaps?
|
// TODO: currently returning (96, 96) on my system, even though I have 4k screens. Problem with my setup perhaps?
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
Loading…
Reference in a new issue