mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-30 23:27:22 +00:00
Rename the sixtyfps C++ namespaces
This commit is contained in:
parent
5226feab01
commit
7d297da2fc
96 changed files with 747 additions and 753 deletions
|
@ -7,19 +7,15 @@ int main()
|
|||
{
|
||||
auto demo = MainWindow::create();
|
||||
|
||||
auto todo_model = std::make_shared<sixtyfps::VectorModel<TodoItem>>(std::vector {
|
||||
TodoItem { true, "Implement the .slint file" },
|
||||
TodoItem { false, "Do the Rust part" },
|
||||
TodoItem { true, "Make the C++ code" },
|
||||
TodoItem { false, "Write some JavaScript code" },
|
||||
TodoItem { false, "Test the application" },
|
||||
TodoItem { false, "Ship to customer" },
|
||||
TodoItem { false, "???" },
|
||||
TodoItem { false, "Profit" }
|
||||
});
|
||||
auto todo_model = std::make_shared<slint::VectorModel<TodoItem>>(std::vector {
|
||||
TodoItem { true, "Implement the .slint file" }, TodoItem { false, "Do the Rust part" },
|
||||
TodoItem { true, "Make the C++ code" },
|
||||
TodoItem { false, "Write some JavaScript code" },
|
||||
TodoItem { false, "Test the application" }, TodoItem { false, "Ship to customer" },
|
||||
TodoItem { false, "???" }, TodoItem { false, "Profit" } });
|
||||
demo->set_todo_model(todo_model);
|
||||
|
||||
demo->on_todo_added([todo_model](const sixtyfps::SharedString &s) {
|
||||
demo->on_todo_added([todo_model](const slint::SharedString &s) {
|
||||
todo_model->push_back(TodoItem { false, s });
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue