import QtGraphicalEffects 1.0 import QtQuick 2.7 import QtQuick.Controls 2.4 import QtQuick.Controls.Material 2.0 import QtQuick.Layouts 1.3 import "../widgets" import "../overlays" ColumnLayout { Layout.fillWidth: true property alias title: toolbar.text id: overlay property string name property bool accepted StackToolbar { id: toolbar //text: "open privacy exec" aux.onClicked: { if (gcd.currentOpenConversation.length == 32) { theStack.pane = theStack.groupProfilePane gcd.requestGroupSettings(gcd.currentOpenConversation) } else { theStack.pane = theStack.userProfilePane gcd.requestPeerSettings() } } back.visible: false } RowLayout { visible:!overlay.accepted && (gcd.currentOpenConversation.length == 32) Text { text: "Do you want to accept the invitation to " + overlay.name + "?" } SimpleButton { text: "Accept" icon: "regular/heart" onClicked: { gcd.acceptGroup(gcd.currentOpenConversation) gcd.requestGroupSettings(gcd.currentOpenConversation) } } SimpleButton { text: "Reject" icon: "regular/trash-alt" onClicked: { gcd.leaveGroup(gcd.currentOpenConversation) theStack.pane = theStack.emptyPane } } } RowLayout { id: switcher SimpleButton { text: "Chat" onClicked: overlayStack.overlay = overlayStack.chatOverlay } SimpleButton { text: "Lists" onClicked: overlayStack.overlay = overlayStack.listOverlay } SimpleButton { text: "Bulletins" onClicked: overlayStack.overlay = overlayStack.bulletinOverlay } SimpleButton { text: "Puzzle Game" onClicked: overlayStack.overlay = overlayStack.game1Overlay } } StackLayout { id: overlayStack anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom anchors.top: switcher.bottom currentIndex: 0 property alias overlay: overlayStack.currentIndex readonly property int chatOverlay: 0 readonly property int listOverlay: 1 readonly property int bulletinOverlay: 2 readonly property int game1Overlay: 3 ChatOverlay {} //0 ListOverlay{} //1 BulletinOverlay{} //2 Game1Overlay{} //3 } Connections { target: gcd onSupplyGroupSettings: function(gid, name, server, invite, accepted, addrbooknames, addrbookaddrs) { console.log("Supplied " + gid + " " + name + "Accepted " + accepted) overlay.name = name overlay.accepted = accepted } } }