mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 14:48:15 +00:00
18 lines
614 B
JavaScript
18 lines
614 B
JavaScript
// ===================================================================
|
|
// Contains many common helpers.
|
|
// ===================================================================
|
|
|
|
function openWindow (windowName, parent) {
|
|
var component = Qt.createComponent(
|
|
'qrc:/ui/views/' + windowName + '.qml'
|
|
);
|
|
|
|
if (component.status !== Component.Ready) {
|
|
console.debug('Window ' + windowName + ' not ready.')
|
|
if(component.status === Component.Error) {
|
|
console.debug('Error:' + component.errorString())
|
|
}
|
|
} else {
|
|
component.createObject(parent).show()
|
|
}
|
|
}
|