mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-26 13:24:08 +00:00
88 lines
2.8 KiB
Rust
88 lines
2.8 KiB
Rust
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
use slint::{Model, ModelExt, SharedString, StandardListViewItem, VecModel};
|
|
use std::cell::RefCell;
|
|
use std::rc::Rc;
|
|
|
|
slint::slint!(export { MainWindow } from "crud.slint";);
|
|
|
|
#[derive(Clone)]
|
|
struct Name {
|
|
first: String,
|
|
last: String,
|
|
}
|
|
pub fn main() {
|
|
let main_window = MainWindow::new().unwrap();
|
|
|
|
let prefix = Rc::new(RefCell::new(SharedString::from("")));
|
|
let prefix_for_wrapper = prefix.clone();
|
|
|
|
let model = Rc::new(VecModel::from(vec![
|
|
Name { first: "Hans".to_string(), last: "Emil".to_string() },
|
|
Name { first: "Max".to_string(), last: "Mustermann".to_string() },
|
|
Name { first: "Roman".to_string(), last: "Tisch".to_string() },
|
|
]));
|
|
|
|
let filtered_model = Rc::new(
|
|
model
|
|
.clone()
|
|
.map(|n| StandardListViewItem::from(slint::format!("{}, {}", n.last, n.first)))
|
|
.filter(move |e| e.text.starts_with(prefix_for_wrapper.borrow().as_str())),
|
|
);
|
|
|
|
main_window.set_names_list(filtered_model.clone().into());
|
|
|
|
{
|
|
let main_window_weak = main_window.as_weak();
|
|
let model = model.clone();
|
|
main_window.on_createClicked(move || {
|
|
let main_window = main_window_weak.unwrap();
|
|
let new_entry = Name {
|
|
first: main_window.get_name().to_string(),
|
|
last: main_window.get_surname().to_string(),
|
|
};
|
|
model.push(new_entry);
|
|
});
|
|
}
|
|
|
|
{
|
|
let main_window_weak = main_window.as_weak();
|
|
let model = model.clone();
|
|
let filtered_model = filtered_model.clone();
|
|
main_window.on_updateClicked(move || {
|
|
let main_window = main_window_weak.unwrap();
|
|
|
|
let updated_entry = Name {
|
|
first: main_window.get_name().to_string(),
|
|
last: main_window.get_surname().to_string(),
|
|
};
|
|
|
|
let row = filtered_model.unfiltered_row(main_window.get_current_item() as usize);
|
|
model.set_row_data(row, updated_entry);
|
|
});
|
|
}
|
|
|
|
{
|
|
let main_window_weak = main_window.as_weak();
|
|
let model = model.clone();
|
|
let filtered_model = filtered_model.clone();
|
|
main_window.on_deleteClicked(move || {
|
|
let main_window = main_window_weak.unwrap();
|
|
|
|
let index = filtered_model.unfiltered_row(main_window.get_current_item() as usize);
|
|
model.remove(index);
|
|
});
|
|
}
|
|
|
|
{
|
|
let main_window_weak = main_window.as_weak();
|
|
let filtered_model = filtered_model.clone();
|
|
main_window.on_prefixEdited(move || {
|
|
let main_window = main_window_weak.unwrap();
|
|
*prefix.borrow_mut() = main_window.get_prefix();
|
|
filtered_model.reset();
|
|
});
|
|
}
|
|
|
|
main_window.run().unwrap();
|
|
}
|