updates to build system

This commit is contained in:
Chris Cochrun 2022-12-08 15:21:08 -06:00
parent b5911d6ed4
commit 02c3e84cb6
8 changed files with 97 additions and 36 deletions

View file

@ -180,6 +180,12 @@ Kirigami.ApplicationWindow {
/* print(loaded[0].audio); */
}
MyObject {
id: myObject
number: 7
string: "HI from rust in my proj: " + myObject.number
}
Component.onCompleted: {
/* showPassiveNotification(Kirigami.Settings.style); */
/* Kirigami.Settings.style = "Plasma"; */

View file

@ -50,11 +50,13 @@ FocusScope {
text: "Grid"
icon.name: "view-app-grid-symbolic"
hoverEnabled: true
onClicked: myObject.sayHi(myObject.string, myObject.number);
}
Controls.ToolButton {
text: "Details"
icon.name: "view-list-details"
hoverEnabled: true
onClicked: showPassiveNotification(myObject.string);
}
Controls.ToolSeparator {}
Item { Layout.fillWidth: true }