AboutItem QML Type
An about item that displays the about data. More...
Import Statement: | import org.kde.kirigami |
Since: | 5.87 |
Inherits: |
Properties
- aboutData : var
- donateUrl : url
- getInvolvedUrl : url
- loadAvatars : bool
- wideMode : bool
Detailed Description
Allows to show the copyright notice of the application together with the contributors and some information of which platform it's running on.
Property Documentation
aboutData : var |
This property holds an object with the same shape as KAboutData.
Example usage:
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" }
See also KAboutData.
donateUrl : url |
This property holds a link to a "Donate" page.
default: "https://kde.org/community/donations" when application id starts with "org.kde.", otherwise it is empty.
getInvolvedUrl : url |
This property holds a link to a "Get Involved" page.
default: "https://community.kde.org/Get_Involved" when application id starts with "org.kde.", otherwise it is empty.
loadAvatars : bool |
This property controls whether to load avatars by URL.
If set to false, a fallback "user" icon will be displayed.
default: false
wideMode : bool |
* *
See also FormLayout::wideMode.