macos better alert
Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
parent
30c795dc4f
commit
e1254c0b24
@ -6,14 +6,15 @@ use hbb_common::platform::macos;
|
||||
|
||||
fn main() {
|
||||
#[cfg(target_os = "linux")]
|
||||
linux::system_message("test title", "test message", true).ok();
|
||||
let res = linux::system_message("test title", "test message", true);
|
||||
#[cfg(target_os = "macos")]
|
||||
macos::alert(
|
||||
"RustDesk".to_owned(),
|
||||
let res = macos::alert(
|
||||
"System Preferences".to_owned(),
|
||||
"warning".to_owned(),
|
||||
"test title".to_owned(),
|
||||
"test message".to_owned(),
|
||||
["Ok".to_owned()].to_vec(),
|
||||
)
|
||||
.ok();
|
||||
);
|
||||
#[cfg(any(target_os = "linux", target_os = "macos"))]
|
||||
println!("result {:?}", &res);
|
||||
}
|
||||
|
@ -41,14 +41,23 @@ extern "C" fn breakdown_signal_handler(sig: i32) {
|
||||
)
|
||||
.ok();
|
||||
#[cfg(target_os = "macos")]
|
||||
{
|
||||
use std::sync::mpsc::channel;
|
||||
use std::time::Duration;
|
||||
let (tx, rx) = channel();
|
||||
std::thread::spawn(move || {
|
||||
macos::alert(
|
||||
"RustDesk".to_owned(),
|
||||
"System Preferences".to_owned(),
|
||||
"critical".to_owned(),
|
||||
"Crashed".to_owned(),
|
||||
"RustDesk Crashed".to_owned(),
|
||||
format!("Got signal {} and exit.{}", sig, info),
|
||||
["Ok".to_owned()].to_vec(),
|
||||
)
|
||||
.ok();
|
||||
let _ = tx.send(());
|
||||
});
|
||||
let _ = rx.recv_timeout(Duration::from_millis(1_000));
|
||||
}
|
||||
}
|
||||
exit(0);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user