X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Faboutdata.h;h=b49fbf74cdb338f266a2c50dd2667a8c0aec8fa6;hp=6c306be910b9429fcf0dc03f06f9612452f68803;hb=cc6e7c08709c4e761e2fd9c2e322751015497003;hpb=d32f2fcafe3d3925cd64e332e0d02261a134af21 diff --git a/src/uisupport/aboutdata.h b/src/uisupport/aboutdata.h index 6c306be9..b49fbf74 100644 --- a/src/uisupport/aboutdata.h +++ b/src/uisupport/aboutdata.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -20,19 +20,22 @@ #pragma once +#include "uisupport-export.h" + +#include #include +#include #ifdef HAVE_KF5 -# include +# include #endif - /** * Represents a contributor or author for Quassel. * * This is used to show a list of contributors in the About Quassel dialog. */ -class AboutPerson +class UISUPPORT_EXPORT AboutPerson { public: /** @@ -44,7 +47,7 @@ public: * @param[in] emailAddress The person's email address, if applicable * @param[in] translatedLanguage The language the person helped translate (only applicable for translators) */ - AboutPerson(const QString &name, const QString &nick, const QString &task, const QString &emailAddress = QString(), QLocale::Language translatedLanguage = QLocale::C); + AboutPerson(QString name, QString nick, QString task, QString emailAddress = QString(), QLocale::Language translatedLanguage = QLocale::C); /** * Gets the person's name. @@ -89,14 +92,13 @@ public: QString prettyName() const; private: - QString _name; ///< The person's name - QString _nick; ///< The person's nick - QString _task; ///< The person's task - QString _emailAddress; ///< The person's email address - QLocale::Language _language; ///< The language the person helps translate + QString _name; ///< The person's name + QString _nick; ///< The person's nick + QString _task; ///< The person's task + QString _emailAddress; ///< The person's email address + QLocale::Language _language; ///< The language the person helps translate }; - /** * Holds a list of authors, contributors and translators. * @@ -104,7 +106,7 @@ private: * the About Quassel dialog. Additionally, this class can provide a KAboutData object to be shown * if KDE integration is enabled. */ -class AboutData : public QObject +class UISUPPORT_EXPORT AboutData : public QObject { Q_OBJECT public: @@ -113,7 +115,7 @@ public: * * @param[in] parent The parent object, if applicable */ - AboutData(QObject *parent = nullptr); + AboutData(QObject* parent = nullptr); /** * Adds an author to the list of contributors. @@ -123,7 +125,7 @@ public: * @param[in] author The author to add * @returns A reference to this AboutData instance */ - AboutData &addAuthor(const AboutPerson &author); + AboutData& addAuthor(const AboutPerson& author); /** * Adds a list of authors to the list of contributors. @@ -134,7 +136,7 @@ public: * @param[in] authors A list of authors to add * @returns A reference to this AboutData instance */ - AboutData &addAuthors(std::initializer_list authors); + AboutData& addAuthors(std::initializer_list authors); /** * Adds a contributor. @@ -142,7 +144,7 @@ public: * @param[in] author The contributor to add * @returns A reference to this AboutData instance */ - AboutData &addCredit(const AboutPerson &credit); + AboutData& addCredit(const AboutPerson& credit); /** * Adds a list of contributors. @@ -153,7 +155,7 @@ public: * @param[in] authors A list of contributors to add * @returns A reference to this AboutData instance */ - AboutData &addCredits(std::initializer_list credits); + AboutData& addCredits(std::initializer_list credits); /** * Gets the list of authors stored in this AboutData instance. @@ -186,7 +188,7 @@ public: * * @param[in,out] aboutData An existing AboutData instance to add Quassel's contributors to */ - static void setQuasselPersons(AboutData *aboutData); + static void setQuasselPersons(AboutData* aboutData); private: QList _authors; ///< The list of authors