linphone-desktop/linphone-app/ui/modules/Common/Window/Window.qml
Julien Wadel d7dfe986c0 - Forward messages to a contact, a sip address or directly to a timeline.
- Fix CI on Qt5_DIR.
- Hide reply message preview after sending message.
- Fix binding loop on sub-messages.
- Reduce spacing size in message.
2021-11-10 01:50:28 +01:00

45 lines
1,022 B
QML

import QtQuick 2.7
import QtQuick.Window 2.2
import 'Window.js' as Logic
// =============================================================================
Window {
id: window
default property alias _content: content.data
readonly property bool virtualWindowVisible: virtualWindow.active //visible
// ---------------------------------------------------------------------------
signal attachedVirtualWindow
signal detachedVirtualWindow
// ---------------------------------------------------------------------------
function attachVirtualWindow (component, properties, exitStatusHandler) {
return Logic.attachVirtualWindow.call(this, component, properties, exitStatusHandler)
}
function detachVirtualWindow () {
Logic.detachVirtualWindow()
}
// ---------------------------------------------------------------------------
Item {
anchors.fill: parent
Rectangle {
id: content
anchors.fill: parent
}
VirtualWindow {
id: virtualWindow
}
}
}