tauri/examples/multiwindow/main.rs
2022-03-23 20:45:43 -03:00

33 lines
958 B
Rust

// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
#![cfg_attr(
all(not(debug_assertions), target_os = "windows"),
windows_subsystem = "windows"
)]
use tauri::WindowBuilder;
fn main() {
tauri::Builder::default()
.on_page_load(|window, _payload| {
let label = window.label().to_string();
window.listen("clicked".to_string(), move |_payload| {
println!("got 'clicked' event on window '{}'", label);
});
})
.create_window(
"Rust".to_string(),
tauri::WindowUrl::App("index.html".into()),
|window_builder, webview_attributes| {
(window_builder.title("Tauri - Rust"), webview_attributes)
},
)
.unwrap() // safe to unwrap: window label is valid
.run(tauri::generate_context!(
"../../examples/multiwindow/tauri.conf.json"
))
.expect("failed to run tauri application");
}