Warning, /utilities/telly-skout/src/qml/main.qml is written in an unsupported language. File is not indexed.

0001 // SPDX-FileCopyrightText: 2022 Plata Hill <plata.hill@kdemail.net>
0002 // SPDX-License-Identifier: LGPL-2.1-or-later
0003 
0004 import QtQuick 2.14
0005 import QtQuick.Controls 2.14 as Controls
0006 import org.kde.TellySkout 1.0 as TellySkout
0007 import org.kde.kirigami 2.19 as Kirigami
0008 import org.kde.kirigamiaddons.formcard 1.0 as FormCard
0009 
0010 Kirigami.ApplicationWindow {
0011     id: root
0012 
0013     title: "Telly Skout"
0014     pageStack.initialPage: channelTable
0015 
0016     Component {
0017         id: aboutPage
0018 
0019         FormCard.AboutPage {
0020             aboutData: _aboutData
0021         }
0022 
0023     }
0024 
0025     ChannelTablePage {
0026         id: channelTable
0027 
0028         windowHeight: root.height
0029     }
0030 
0031     globalDrawer: TellySkoutGlobalDrawer {
0032     }
0033 
0034     contextDrawer: Kirigami.ContextDrawer {
0035         id: contextDrawer
0036     }
0037 
0038 }