mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-19 04:18:08 +00:00
- Process GUI events before accepting a call in order to be synchronized with Call objects - Revert window variable naming - Change open window order when receive call Fix : Show Notifications while in fullscreen Fix : show settings in fullscreen QuickFix: - Set Minimum Width on Tooltips - Show full path on log folder selection - Add Conference participant filter to show only users that are in conference - Add test on Player to avoid crash if it cannot be instanciated before - Window position when opening in fullscreen
45 lines
1,017 B
QML
45 lines
1,017 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
|
|
import 'Window.js' as Logic
|
|
|
|
// =============================================================================
|
|
|
|
ApplicationWindow {
|
|
id: window
|
|
|
|
default property alias _content: content.data
|
|
|
|
readonly property bool virtualWindowVisible: virtualWindow.active
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
signal attachedVirtualWindow
|
|
signal detachedVirtualWindow
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
function attachVirtualWindow (component, properties, exitStatusHandler) {
|
|
Logic.attachVirtualWindow.call(this, component, properties, exitStatusHandler)
|
|
}
|
|
|
|
function detachVirtualWindow () {
|
|
Logic.detachVirtualWindow()
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
Item {
|
|
anchors.fill: parent
|
|
|
|
Rectangle {
|
|
id: content
|
|
|
|
anchors.fill: parent
|
|
}
|
|
|
|
VirtualWindow {
|
|
id: virtualWindow
|
|
}
|
|
}
|
|
}
|