Warning, /multimedia/elisa/src/android/PlatformIntegration.qml is written in an unsupported language. File is not indexed.

0001 /*
0002    SPDX-FileCopyrightText: 2017 (c) Matthieu Gallien <matthieu_gallien@yahoo.fr>
0003 
0004    SPDX-License-Identifier: LGPL-3.0-or-later
0005  */
0006 
0007 import QtQuick 2.7
0008 import org.kde.elisa 1.0
0009 
0010 Item {
0011     id: rootItem
0012 
0013     property var playListModel
0014     property var audioPlayerManager
0015     property var player
0016     property var headerBarManager
0017     property var manageMediaPlayerControl
0018     property var showProgressOnTaskBar
0019     property bool showSystemTrayIcon
0020     property var elisaMainWindow
0021     property bool forceCloseWindow: false
0022 
0023     signal raisePlayer()
0024 
0025     Connections {
0026         target: elisaMainWindow
0027 
0028         function onClosing() {
0029             close.accepted = false
0030             elisaMainWindow.hide()
0031         }
0032     }
0033 
0034     Connections {
0035         target: ElisaApplication
0036 
0037         function onCommitDataRequest() {
0038             forceCloseWindow = true
0039         }
0040     }
0041 }