__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/*
* SPDX-FileCopyrightText: 2020 Nicolas Fella <nicolas.fella@gmx.de>
* 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.owncloud 1.0
Kirigami.ApplicationWindow {
id: ocAccountRoot
// Minimum size at which the 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 === OwncloudController.Services) {
ocAccountRoot.pageStack.replace(Qt.resolvedUrl("Services.qml"))
}
}
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Server.qml | File | 2.23 KB | 0644 |
|
| Services.qml | File | 2.65 KB | 0644 |
|
| main.qml | File | 1.12 KB | 0644 |
|