cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
109 lines
3.1 KiB
QML
109 lines
3.1 KiB
QML
/*
|
|
* SPDX-FileCopyrightText: 2018 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
|
|
* SPDX-FileCopyrightText: 2023 ivan tkachenko <me@ratijas.tk>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
//TODO KF6: move somewhere else? kirigami addons?
|
|
/**
|
|
* @brief An "About" page that is ready to integrate in a Kirigami app.
|
|
*
|
|
* Allows to have a page that will show the copyright notice of the application
|
|
* together with the contributors and some information of which platform it's
|
|
* running on.
|
|
*
|
|
* @since 5.52
|
|
* @since org.kde.kirigami 2.6
|
|
* @inherit org::kde::kirigami::ScrollablePage
|
|
*/
|
|
Kirigami.ScrollablePage {
|
|
id: page
|
|
|
|
//BEGIN properties
|
|
/**
|
|
* @brief This property holds an object with the same shape as KAboutData.
|
|
*
|
|
* For example:
|
|
* @code{json}
|
|
* aboutData: {
|
|
"displayName" : "KirigamiApp",
|
|
"productName" : "kirigami/app",
|
|
"componentName" : "kirigamiapp",
|
|
"shortDescription" : "A Kirigami example",
|
|
"homepage" : "",
|
|
"bugAddress" : "submit@bugs.kde.org",
|
|
"version" : "5.14.80",
|
|
"otherText" : "",
|
|
"authors" : [
|
|
{
|
|
"name" : "...",
|
|
"task" : "",
|
|
"emailAddress" : "somebody@kde.org",
|
|
"webAddress" : "",
|
|
"ocsUsername" : ""
|
|
}
|
|
],
|
|
"credits" : [],
|
|
"translators" : [],
|
|
"licenses" : [
|
|
{
|
|
"name" : "GPL v2",
|
|
"text" : "long, boring, license text",
|
|
"spdx" : "GPL-2.0"
|
|
}
|
|
],
|
|
"copyrightStatement" : "© 2010-2018 Plasma Development Team",
|
|
"desktopFileName" : "org.kde.kirigamiapp"
|
|
}
|
|
@endcode
|
|
*
|
|
* @see KAboutData
|
|
* @see org::kde::kirigami::AboutItem::aboutData
|
|
* @property KAboutData aboutData
|
|
*/
|
|
property alias aboutData: aboutItem.aboutData
|
|
|
|
/**
|
|
* @brief This property holds a link to a "Get Involved" page.
|
|
*
|
|
* default: `"https://community.kde.org/Get_Involved" when your application id starts with "org.kde.", otherwise is empty`
|
|
*
|
|
* @property url getInvolvedUrl
|
|
*/
|
|
property alias getInvolvedUrl: aboutItem.getInvolvedUrl
|
|
|
|
/**
|
|
* @brief This property holds a link to a "Donate" page.
|
|
* @since 5.101
|
|
*
|
|
* default: `"https://kde.org/community/donations" when application id starts with "org.kde.", otherwise it is empty.`
|
|
*/
|
|
property alias donateUrl: aboutItem.donateUrl
|
|
|
|
/**
|
|
* @brief This property controls whether to load avatars by URL.
|
|
*
|
|
* If set to false, a fallback "user" icon will be displayed.
|
|
*
|
|
* default: ``false``
|
|
*/
|
|
property alias loadAvatars: aboutItem.loadAvatars
|
|
|
|
/** @internal */
|
|
default property alias _content: aboutItem._content
|
|
//END properties
|
|
|
|
title: qsTr("About %1").arg(page.aboutData.displayName)
|
|
|
|
Kirigami.AboutItem {
|
|
id: aboutItem
|
|
wideMode: page.width >= aboutItem.implicitWidth
|
|
|
|
_usePageStack: applicationWindow().pageStack ? true : false
|
|
}
|
|
}
|