Changeset View
Changeset View
Standalone View
Standalone View
src/contents/ui/Main.qml
| Show First 20 Lines • Show All 233 Lines • ▼ Show 20 Lines | Kirigami.ApplicationWindow { | ||||
| } | } | ||||
| function activateRoomStickerPacksPage(room) { | function activateRoomStickerPacksPage(room) { | ||||
| pageStack.push(Qt.resolvedUrl("room-settings/RoomStickerPacksPage.qml"), { | pageStack.push(Qt.resolvedUrl("room-settings/RoomStickerPacksPage.qml"), { | ||||
| room | room | ||||
| }); | }); | ||||
| } | } | ||||
| function activateRoomStatePage(room) { | |||||
| pageStack.push(Qt.resolvedUrl("room-settings/RoomStatePage.qml"), { | |||||
| room | |||||
| }); | |||||
| } | |||||
| function activateUserPage(user, room, userId) { | function activateUserPage(user, room, userId) { | ||||
| pageStack.push(Qt.resolvedUrl("UserPage.qml"), { | pageStack.push(Qt.resolvedUrl("UserPage.qml"), { | ||||
| userId: userId || user.userId, | userId: userId || user.userId, | ||||
| user, | user, | ||||
| room | room | ||||
| }); | }); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 109 Lines • Show Last 20 Lines | |||||