X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Faboutdata.h;h=00cb14e34fa52220e480442f0da6fda8e2c0deaf;hb=db00831bca59a012242d1ad5fac52a20c6cd2956;hp=bfbe39c370a412e00da54e71e9552f0f74a2938d;hpb=68878dc8366f2f4a0afe132847aad9a51a80cdbf;p=quassel.git diff --git a/src/uisupport/aboutdata.h b/src/uisupport/aboutdata.h index bfbe39c3..00cb14e3 100644 --- a/src/uisupport/aboutdata.h +++ b/src/uisupport/aboutdata.h @@ -20,21 +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: /** @@ -46,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. @@ -91,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. * @@ -106,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: @@ -115,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. @@ -125,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. @@ -136,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. @@ -144,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. @@ -155,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. @@ -188,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