20 #ifndef EABOUTPERSON_H
21 #define EABOUTPERSON_H
48 Q_DECLARE_FLAGS(Categories, Category)
51 EAboutPerson(QString name, QString givenName, Categories categories, QObject *parent = 0);
52 EAboutPerson(QString name, QString givenName, QString email, Categories categories, QObject *parent = 0);
53 void setName(QString name);
55 void setGivenName(QString givenName);
56 QString givenName() const;
57 void setEmail(QString address);
58 QString email() const;
59 void setCategories(Categories categories);
60 Categories categories() const;
63 QString myName, myGivenName, myMail;
69 #endif // EABOUTPERSON_H
Mostly the same as EWidget but for QObject as base class.
Definition: eobject.h:42
Category
Identifies, what the person has done.
Definition: eaboutperson.h:41
#define E_CORE_EXPORT
Definition: eglobal.h:107
A person, which should be mentioned at the EAboutDialog.
Definition: eaboutperson.h:30