Warning, /plasma/plasma-bigscreen/containments/homescreen/package/contents/ui/indicators/MycroftConnect.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2019 Marco Martin <mart@kde.org>
0003     SPDX-FileCopyrightText: 2019 Aditya Mehra <aix.m@outlook.com>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 import QtQuick 2.14
0009 import Mycroft 1.0 as Mycroft
0010 
0011 Item {
0012     function disconnectclose() {
0013         Mycroft.MycroftController.disconnectSocket();
0014         mycroftLoader.active = false;
0015     }
0016 
0017     function sendText(utterance) {
0018          Mycroft.MycroftController.sendText(utterance)
0019     }
0020 
0021     Component.onCompleted: Mycroft.MycroftController.start()
0022 }