mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-30 13:51:13 +00:00
27 lines
928 B
Rust
27 lines
928 B
Rust
/* LICENSE BEGIN
|
|
This file is part of the SixtyFPS Project -- https://sixtyfps.io
|
|
Copyright (c) 2020 Olivier Goffart <olivier.goffart@sixtyfps.io>
|
|
Copyright (c) 2020 Simon Hausmann <simon.hausmann@sixtyfps.io>
|
|
|
|
SPDX-License-Identifier: GPL-3.0-only
|
|
This file is also available under commercial licensing terms.
|
|
Please contact info@sixtyfps.io for more information.
|
|
LICENSE END */
|
|
#![deny(unsafe_code)]
|
|
|
|
sixtyfps::include_modules!();
|
|
|
|
fn main() {
|
|
let app = Hello::new();
|
|
let app_weak = app.clone().as_weak();
|
|
app.as_ref().on_plus_clicked(move || {
|
|
let app = app_weak.upgrade().unwrap();
|
|
app.as_ref().set_counter(app.as_ref().get_counter() + 1);
|
|
});
|
|
let app_weak = app.clone().as_weak();
|
|
app.as_ref().on_minus_clicked(move || {
|
|
let app = app_weak.upgrade().unwrap();
|
|
app.as_ref().set_counter(app.as_ref().get_counter() - 1);
|
|
});
|
|
app.run();
|
|
}
|