QPlaceContactDetail Class

QPlaceContactDetail class represents a contact detail such as a phone number or website url. 更多...

头: #include <QPlaceContactDetail>
qmake: QT += location

公共函数

QPlaceContactDetail ()
QPlaceContactDetail (const QPlaceContactDetail & other )
virtual ~QPlaceContactDetail ()
void clear ()
QString label () const
void setLabel (const QString & label )
void setValue (const QString & value )
QString value () const
bool operator!= (const QPlaceContactDetail & other ) const
QPlaceContactDetail & operator= (const QPlaceContactDetail & other )
bool operator== (const QPlaceContactDetail & other ) const

静态公共成员

const QString Email
const QString Fax
const QString Phone
const QString Website

详细描述

QPlaceContactDetail class represents a contact detail such as a phone number or website url.

The detail consists of a label and value. The label is a localized string that can be presented to the end user that describes that detail value which is the actual phone number, email address and so on.

Contact Types

QPlaceContactDetail class defines some constant strings which characterize standard contact types .

These types are used to access and modify contact details in QPlace via:

contact type is intended to be a string type so that providers are able to introduce new contact types if necessary.

成员函数文档编制

QPlaceContactDetail:: QPlaceContactDetail ()

Constructs a contact detail.

QPlaceContactDetail:: QPlaceContactDetail (const QPlaceContactDetail & other )

Creates a copy of other .

[virtual] QPlaceContactDetail:: ~QPlaceContactDetail ()

Destroys the contact detail.

void QPlaceContactDetail:: clear ()

Clears the contact detail.

QString QPlaceContactDetail:: label () const

Returns a label describing the contact detail.

The label can potentially be localized. The language is dependent on the entity that sets it, typically this is the manager from which the places are sourced. The QPlaceManager::locales () field defines what language is used.

另请参阅 setLabel ().

void QPlaceContactDetail:: setLabel (const QString & label )

设置 label of the contact detail.

另请参阅 label ().

void QPlaceContactDetail:: setValue (const QString & value )

设置 value of this contact detail.

另请参阅 value ().

QString QPlaceContactDetail:: value () const

Returns the value of the contact detail.

另请参阅 setValue ().

bool QPlaceContactDetail:: operator!= (const QPlaceContactDetail & other ) const

返回 true 若 other is not equal to this contact detail, otherwise returns false.

QPlaceContactDetail &QPlaceContactDetail:: operator= (const QPlaceContactDetail & other )

赋值 other to this contact detail and returns a reference to this contact detail.

bool QPlaceContactDetail:: operator== (const QPlaceContactDetail & other ) const

返回 true 若 other is equal to this contact detail, otherwise returns false.

成员变量文档编制

const QString QPlaceContactDetail:: Email

The constant to specify email contact details.

const QString QPlaceContactDetail:: Fax

The constant used to specify fax contact details.

const QString QPlaceContactDetail:: Phone

The constant to specify phone contact details

const QString QPlaceContactDetail:: Website

The constant used to specify website contact details.