blob: 23a51d7b7b15b26b7f34d023cedd6a10493f6cc9 [file] [log] [blame]
/*
* Copyright (C) 2020 by Savoir-faire Linux
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/*
* Global video call full screen window container, object variable for creation.
*/
var videoCallFullScreenWindowContainerComponent
var videoCallFullScreenWindowContainerObject
function createvideoCallFullScreenWindowContainerObject() {
if (videoCallFullScreenWindowContainerObject)
return
videoCallFullScreenWindowContainerComponent = Qt.createComponent(
"../components/VideoCallFullScreenWindowContainer.qml")
if (videoCallFullScreenWindowContainerComponent.status === Component.Ready)
finishCreation()
else if (videoCallFullScreenWindowContainerComponent.status === Component.Error)
console.log("Error loading component:",
videoCallFullScreenWindowContainerComponent.errorString())
}
function finishCreation() {
videoCallFullScreenWindowContainerObject
= videoCallFullScreenWindowContainerComponent.createObject()
if (videoCallFullScreenWindowContainerObject === null) {
/*
* Error Handling.
*/
console.log("Error creating video call full screen window container object")
}
/*
* Signal connection.
*/
videoCallFullScreenWindowContainerObject.onClosing.connect(
destoryVideoCallFullScreenWindowContainer)
}
function checkIfVisible() {
if (!videoCallFullScreenWindowContainerObject)
return false
return videoCallFullScreenWindowContainerObject.visible
}
function setAsContainerChild(obj) {
if (videoCallFullScreenWindowContainerObject)
videoCallFullScreenWindowContainerObject.setAsChild(obj)
}
/*
* Destroy and reset videoCallFullScreenWindowContainerObject when window is closed.
*/
function destoryVideoCallFullScreenWindowContainer() {
if (!videoCallFullScreenWindowContainerObject)
return
videoCallFullScreenWindowContainerObject.destroy()
videoCallFullScreenWindowContainerObject = false
}
function showVideoCallFullScreenWindowContainer() {
if (videoCallFullScreenWindowContainerObject) {
/*
* Hack: show first, then showFullScreen to make sure that the showFullScreen
* display on the correct screen.
*/
videoCallFullScreenWindowContainerObject.show()
videoCallFullScreenWindowContainerObject.showFullScreen()
}
}
function closeVideoCallFullScreenWindowContainer() {
if (videoCallFullScreenWindowContainerObject)
videoCallFullScreenWindowContainerObject.close()
}