|
|
This structure is used to store information about a person or developer. It can store the person's name, a task, an email address and a link to a home page. This class is intended for use in the KAboutData class, but it can be used elsewhere as well. Normally you should at least define the person's name.
KAboutPerson ( const char *name, const char *task,
const char *emailAddress, const char *webAddress )
| KAboutPerson |
Convenience constructor
Parameters:
name | The name of the person. |
task | The task of this person. This string should be marked for translation, e.g. I18N_NOOP("Task description....") |
emailAddress | The email address of the person. |
webAddress | Home page of the person. |
KAboutPerson ()
| KAboutPerson |
QString name ()
| name |
[const]
The person's name
Returns: the person's name (can be QString::null, if it has been constructed with a null name)
QString task ()
| task |
[const]
The person's task
Returns: the person's task (can be QString::null, if it has been constructed with a null task)
QString emailAddress ()
| emailAddress |
[const]
The person's email address
Returns: the person's email address (can be QString::null, if it has been constructed with a null email)
QString webAddress ()
| webAddress |
[const]
The home page or a relevant link
Returns: the persons home page (can be QString::null, if it has been constructed with a null home page)
Generated by: caleb on tcdevel on Tue Jan 28 12:54:04 2003, using kdoc $. |