__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/*
* SPDX-FileCopyrightText: 2019 Rituka Patwal <ritukapatwal21@gmail.com>
* SPDX-FileCopyrightText: 2015 Martin Klapetek <mklapetek@kde.org>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.2
import QtQuick.Layouts 1.12
import QtQuick.Controls 2.5
import org.kde.kirigami 2.5 as Kirigami
import org.kde.kaccounts.nextcloud 1.0
Kirigami.ApplicationWindow {
id: ncAccountRoot
// Minimum size at which the web login UI looks okay
minimumWidth: Kirigami.Units.gridUnit * 20 // matches the width of the PinePhone
minimumHeight: Kirigami.Units.gridUnit * 35
width: Kirigami.Units.gridUnit * 24 // making it a bit larger if available to make it more pleasant
height: minimumHeight
pageStack.initialPage: Qt.resolvedUrl("Server.qml");
onClosing: {
helper.cancel()
}
Connections {
target: helper
function onStateChanged() {
if (helper.state === NextcloudController.WebLogin) {
ncAccountRoot.pageStack.replace(Qt.resolvedUrl("WebLogin.qml"))
} else if (helper.state === NextcloudController.Services) {
ncAccountRoot.pageStack.replace(Qt.resolvedUrl("Services.qml"))
}
}
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Server.qml | File | 1.81 KB | 0644 |
|
| Services.qml | File | 2.58 KB | 0644 |
|
| WebLogin.qml | File | 626 B | 0644 |
|
| main.qml | File | 1.21 KB | 0644 |
|