File indexing completed on 2024-05-12 05:34:30

0001 /*
0002 This file is part of LightDM-KDE.
0003 
0004 Copyright 2011, 2012 David Edmundson <kde@davidedmundson.co.uk>
0005 
0006 LightDM-KDE is free software: you can redistribute it and/or modify
0007 it under the terms of the GNU General Public License as published by
0008 the Free Software Foundation, either version 3 of the License, or
0009 (at your option) any later version.
0010 
0011 LightDM-KDE is distributed in the hope that it will be useful,
0012 but WITHOUT ANY WARRANTY; without even the implied warranty of
0013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0014 GNU General Public License for more details.
0015 
0016 You should have received a copy of the GNU General Public License
0017 along with LightDM-KDE.  If not, see <http://www.gnu.org/licenses/>.
0018 */
0019 #ifndef ABOUT_H
0020 #define ABOUT_H
0021 
0022 #include <config.h>
0023 
0024 // Helper function to factorize common part s of KAboutData definition between
0025 // greeter and kcm
0026 static void initAboutData(KAboutData* aboutData)
0027 {
0028     aboutData->setVersion(LIGHTDM_KDE_VERSION);
0029 
0030     aboutData->setShortDescription(ki18n("Login screen using the LightDM framework"));
0031     aboutData->setLicense(KAboutData::License_GPL);
0032     aboutData->setCopyrightStatement(ki18n("(c) 2012 David Edmundson"));
0033     aboutData->setHomepage("https://projects.kde.org/projects/playground/base/lightdm");
0034 
0035     aboutData->addAuthor(ki18n("David Edmundson"), ki18n("Author"), "kde@davidedmundson.co.uk");
0036     aboutData->addAuthor(ki18n("Aurélien Gâteau"), ki18n("Developer"), "aurelien.gateau@canonical.com");
0037 }
0038 
0039 #endif /* ABOUT_H */