Changeset View
Changeset View
Standalone View
Standalone View
src/contents/ui/main.qml
| Show First 20 Lines • Show All 209 Lines • ▼ Show 20 Lines | Kirigami.ApplicationWindow { | ||||
| } | } | ||||
| function activateRoomSettingsPage(room) { | function activateRoomSettingsPage(room) { | ||||
| pageStack.push(Qt.resolvedUrl("room-settings/RoomSettingsPage.qml"), { | pageStack.push(Qt.resolvedUrl("room-settings/RoomSettingsPage.qml"), { | ||||
| room | room | ||||
| }); | }); | ||||
| } | } | ||||
| function activateRoomPinnedEventsPage(room) { | |||||
| pageStack.push(Qt.resolvedUrl('RoomPinnedEventsPage.qml'), { | |||||
| room | |||||
| }); | |||||
| } | |||||
| function activateRoomInvitePage(room) { | function activateRoomInvitePage(room) { | ||||
| pageStack.push(Qt.resolvedUrl("room-settings/RoomInvitePage.qml"), { | pageStack.push(Qt.resolvedUrl("room-settings/RoomInvitePage.qml"), { | ||||
| room | room | ||||
| }); | }); | ||||
| } | } | ||||
| function activateUserPage(user, room, userId) { | function activateUserPage(user, room, userId) { | ||||
| pageStack.push(Qt.resolvedUrl("qrc:///UserPage.qml"), { | pageStack.push(Qt.resolvedUrl("qrc:///UserPage.qml"), { | ||||
| ▲ Show 20 Lines • Show All 115 Lines • Show Last 20 Lines | |||||