feat: commit code

This commit is contained in:
mrxiaozhuox 2022-02-11 10:36:29 +08:00
parent 557201816b
commit da0f596cde
3 changed files with 26 additions and 6 deletions

View file

@ -9,6 +9,8 @@ fn main() {
fn app(cx: Scope) -> Element {
let window = dioxus::desktop::use_window(&cx);
// window.set_fullscreen(true);
cx.render(rsx!(
link { href:"https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css", rel:"stylesheet" }
header {

View file

@ -1,7 +1,7 @@
use std::rc::Rc;
use dioxus_core::ScopeState;
use wry::application::{event_loop::EventLoopProxy, window::Fullscreen};
use wry::application::event_loop::EventLoopProxy;
use crate::UserWindowEvent;
@ -64,10 +64,10 @@ impl DesktopContext {
}
/// change window to fullscreen
pub fn set_fullscreen(&self, fullscreen: Option<Fullscreen>) {
pub fn set_fullscreen(&self, fullscreen: bool) {
let _ = self
.proxy
.send_event(UserWindowEvent::Fullscreen(Box::new(fullscreen)));
.send_event(UserWindowEvent::Fullscreen(fullscreen));
}
/// set resizable state

View file

@ -292,6 +292,11 @@ pub fn launch_with_props<P: 'static + Send>(
let window = webview.window();
// start to drag the window.
// if the drag_window have any err. we don't do anything.
if window.fullscreen().is_some() {
return;
}
let _ = window.drag_window();
}
}
@ -321,10 +326,23 @@ pub fn launch_with_props<P: 'static + Send>(
window.set_maximized(state);
}
}
UserWindowEvent::Fullscreen(fullscreen) => {
UserWindowEvent::Fullscreen(state) => {
for webview in desktop.webviews.values() {
let window = webview.window();
window.set_fullscreen(*fullscreen.clone());
let current_monitor = window.current_monitor();
if current_monitor.is_none() {
return;
}
let fullscreen = if state {
Some(Fullscreen::Borderless(current_monitor))
} else {
None
};
window.set_fullscreen(fullscreen);
}
}
UserWindowEvent::FocusWindow => {
@ -393,7 +411,7 @@ pub enum UserWindowEvent {
Maximize(bool),
Resizable(bool),
AlwaysOnTop(bool),
Fullscreen(Box<Option<Fullscreen>>),
Fullscreen(bool),
CursorVisible(bool),
CursorGrab(bool),