Lines Matching full:address
45 \qmltype Address
49 \brief The Address QML type represents a specific location as a street address.
51 An Address is used as a unit of data for queries such as (Reverse) Geocoding
52 or Places searches -- many of these operations either accept an Address
55 Not all properties of an Address are necessarily available or relevant
60 The Address has a \l text property which holds a formatted string. It
61 is the recommended way to display an address to the user and typically
62 takes the format of an address as found on an envelope, but this is not always
64 address properties such as \l street, \l city and and so on, but can also
69 The following code snippet shows the declaration of an Address object.
72 Address {
73 id: address
82 to get an exact longitude and latitude for the address.
92 QDeclarativeGeoAddress::QDeclarativeGeoAddress(const QGeoAddress &address, QObject *parent) : in QDeclarativeGeoAddress() argument
93 QObject(parent), m_address(address) in QDeclarativeGeoAddress()
98 \qmlproperty QGeoAddress QtPositioning::Address::address
101 "\l {Address - QGeoAddress} {Interfaces between C++ and QML Code}".
103 QGeoAddress QDeclarativeGeoAddress::address() const in address() function in QDeclarativeGeoAddress
108 void QDeclarativeGeoAddress::setAddress(const QGeoAddress &address) in setAddress() argument
111 setText(address.text()); in setAddress()
112 setCountry(address.country()); in setAddress()
113 setCountryCode(address.countryCode()); in setAddress()
114 setState(address.state()); in setAddress()
115 setCounty(address.county()); in setAddress()
116 setCity(address.city()); in setAddress()
117 setDistrict(address.district()); in setAddress()
118 setStreet(address.street()); in setAddress()
119 setPostalCode(address.postalCode()); in setAddress()
120 m_address = address; in setAddress()
124 \qmlproperty string QtPositioning::Address::text
126 This property holds the address as a single formatted string. It is the recommended
127 string to use to display the address to the user. It typically takes the format of
128 an address as found on an envelope, but this is not always necessarily the case.
130 The address \c text is either automatically generated or explicitly assigned,
135 \l countryCode and based on the properties of the address. Modifying the address
141 Modifying address properties will not affect the \c text property.
148 void QDeclarativeGeoAddress::setText(const QString &address) in setText() argument
152 m_address.setText(address); in setText()
161 \qmlproperty string QtPositioning::Address::country
163 This property holds the country of the address as a single formatted string.
183 \qmlproperty string QtPositioning::Address::countryCode
185 This property holds the country code of the address as a single formatted string.
205 \qmlproperty string QtPositioning::Address::state
207 This property holds the state of the address as a single formatted string.
227 \qmlproperty string QtPositioning::Address::county
229 This property holds the county of the address as a single formatted string.
249 \qmlproperty string QtPositioning::Address::city
251 This property holds the city of the address as a single formatted string.
271 \qmlproperty string QtPositioning::Address::district
273 This property holds the district of the address as a single formatted string.
293 \qmlproperty string QtPositioning::Address::street
295 This property holds the street of the address but
298 distinguish one address from another.
318 \qmlproperty string QtPositioning::Address::postalCode
320 This property holds the postal code of the address as a single formatted string.
340 \qmlproperty bool QtPositioning::Address::isTextGenerated
343 generated from address properties. If false, it indicates that the \l text has been