MauiKit Controls

moduleinfo.cpp
1#include "moduleinfo.h"
2#include "../mauikit_version.h"
3
4QString MauiKitCore::versionString()
5{
6 return QStringLiteral(MAUIKIT_VERSION_STRING);
7}
8
9QString MauiKitCore::buildVersion()
10{
11 return GIT_BRANCH+QStringLiteral("/")+GIT_COMMIT_HASH;
12}
13
14KAboutComponent MauiKitCore::aboutData()
15{
16 return KAboutComponent(QStringLiteral("MauiKit Core"),
17 QStringLiteral("Maui convergent controls."),
18 QStringLiteral(MAUIKIT_VERSION_STRING),
19 QStringLiteral("http://mauikit.org"),
20 KAboutLicense::LicenseKey::LGPL_V3);
21}
22
23KAboutComponent MauiKitCore::aboutLuv()
24{
25 return KAboutComponent(QStringLiteral("Lüv Icon Theme"),
26 QStringLiteral("Lüv is the spiritual successor to Flattr, a flat but complex icon theme for freedesktop environments."),
27 QStringLiteral("1.0"),
28 QStringLiteral("https://github.com/Nitrux/luv-icon-theme"),
29 KAboutLicense::LicenseKey::Artistic);
30}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 17 2024 11:56:16 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.