summaryrefslogtreecommitdiffstats
path: root/src/imports/contacts/qdeclarativecontactdetail.cpp
blob: c55223778cd01335b061dadc762db51df6fda495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtQml module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include "qdeclarativecontactdetail_p.h"

#include "qdeclarativecontactdetails_p.h"
#include "qdeclarativecontact_p.h"

#include <QtQml/QJSValue>

QTCONTACTS_USE_NAMESPACE

QT_BEGIN_NAMESPACE

/* ==================== QDeclarativeContactDetail ======================= */

/*!
   \qmltype ContactDetail
    \instantiates QDeclarativeContactDetail
   \brief The ContactDetail element represents a single, complete detail about a contact.
   \ingroup qml-contacts-main
   \inqmlmodule QtContacts

   \sa QContactDetail

    The ContactDetail element is part of the \b{QtContacts} module.
*/

QDeclarativeContactDetail::QDeclarativeContactDetail(QObject* parent)
    :QObject(parent)
{
    QDeclarativeContact* c = qobject_cast<QDeclarativeContact*>(parent);
    if (c)
        connect(this, SIGNAL(detailChanged()), c, SIGNAL(contactChanged()));
}

QDeclarativeContactDetail::~QDeclarativeContactDetail()
{
}

QContactDetail& QDeclarativeContactDetail::detail()
{
    return m_detail;
}

const QContactDetail& QDeclarativeContactDetail::detail() const
{
    return m_detail;
}

void QDeclarativeContactDetail::setDetail(const QContactDetail& detail)
{
    m_detail = detail;
    emit detailChanged();
}

/*!
  \qmlproperty list<int> ContactDetail::contexts
  This property holds one or more contexts that this detail is associated with.
*/
QList<int> QDeclarativeContactDetail::contexts() const
{
    return m_detail.contexts();
}
void QDeclarativeContactDetail::setContexts(const QList<int>& contexts)
{
    m_detail.setContexts(contexts);
}

/*!
  \qmlproperty bool ContactDetail::readOnly

  This property indicates whether or not this detail is writable.
  This property is read only.
*/
bool QDeclarativeContactDetail::readOnly() const
{
    return m_detail.accessConstraints().testFlag(QContactDetail::ReadOnly);
}

/*!
  \qmlproperty bool ContactDetail::removable

  This property indicates whether or not this detail is removale.
  This property is read only.
*/
bool QDeclarativeContactDetail::removable() const
{
    return !m_detail.accessConstraints().testFlag(QContactDetail::Irremovable);
}

/*!
  \qmlproperty string ContactDetail::detailUri

  This property holds the unique URI of the detail if one exists.
*/
QString QDeclarativeContactDetail::detailUri() const
{
    return m_detail.detailUri();
}
void QDeclarativeContactDetail::setDetailUri(const QString& detailUri)
{
    m_detail.setDetailUri(detailUri);
}

/*!
  \qmlproperty list<string> ContactDetail::linkedDetailUris

  This property holds a list of detail URIs to which this detail is linked.
*/
QStringList QDeclarativeContactDetail::linkedDetailUris() const
{
    return m_detail.linkedDetailUris();
}
void QDeclarativeContactDetail::setLinkedDetailUris(const QStringList& linkedDetailUris)
{
    m_detail.setLinkedDetailUris(linkedDetailUris);
}

/*!
    \qmlproperty enumeration ContactDetail::type

    This property holds the type of the detail.

    \list
    \li ContactDetail.Address
    \li ContactDetail.Anniversary
    \li ContactDetail.Avatar
    \li ContactDetail.Birthday
    \li ContactDetail.DisplayLabel
    \li ContactDetail.Email
    \li ContactDetail.ExtendedDetail
    \li ContactDetail.Family
    \li ContactDetail.Favorite
    \li ContactDetail.Gender
    \li ContactDetail.Geolocation
    \li ContactDetail.GlobalPresence
    \li ContactDetail.Guid
    \li ContactDetail.Hobby
    \li ContactDetail.Name
    \li ContactDetail.NickName
    \li ContactDetail.Note
    \li ContactDetail.OnlineAccount
    \li ContactDetail.Organization
    \li ContactDetail.PhoneNumber
    \li ContactDetail.Presence
    \li ContactDetail.Ringtone
    \li ContactDetail.SyncTarget
    \li ContactDetail.Tag
    \li ContactDetail.Timestamp
    \li ContactDetail.Url
    \li ContactDetail.Version
    \li ContactDetail.Unknown
    \endlist

    This property is read only.
*/
QDeclarativeContactDetail::DetailType QDeclarativeContactDetail::detailType() const
{
    return Unknown;
}

/*!
  \qmlproperty list<int> ContactDetail::fields

  This property holds the list of all fields which this detail supports.

  This property is read only.
*/
QList<int> QDeclarativeContactDetail::fields() const
{
    return m_detail.values().keys();
}

QVariant QDeclarativeContactDetail::value(int field) const
{
    return m_detail.value(field);
}

bool QDeclarativeContactDetail::setValue(int field, const QVariant& v)
{
    bool changed = false;

    if (value(field) != v)
         changed = m_detail.setValue(field, v);

    if (changed)
        emit detailChanged();

    return changed;
}

/*!
    \qmlmethod bool Detail::removeValue(field)

    Removes the value stored in this detail for the given \a field. Returns true if a value was stored for
    the given field and the operation succeeded, and false otherwise.
*/
bool QDeclarativeContactDetail::removeValue(int field)
{
    bool ok = m_detail.removeValue(field);
    if (ok)
        emit detailChanged();
    return ok;
}

QDeclarativeContactDetail *QDeclarativeContactDetailFactory::createContactDetail(QDeclarativeContactDetail::DetailType type)
{
    QDeclarativeContactDetail *contactDetail;
    if (type == QDeclarativeContactDetail::Address)
        contactDetail = new QDeclarativeContactAddress;
    else if (type == QDeclarativeContactDetail::Anniversary)
        contactDetail = new QDeclarativeContactAnniversary;
    else if (type == QDeclarativeContactDetail::Avatar)
        contactDetail = new QDeclarativeContactAvatar;
    else if (type == QDeclarativeContactDetail::Birthday)
        contactDetail = new QDeclarativeContactBirthday;
    else if (type == QDeclarativeContactDetail::DisplayLabel)
        contactDetail = new QDeclarativeContactDisplayLabel;
    else if (type == QDeclarativeContactDetail::Email)
        contactDetail = new QDeclarativeContactEmailAddress;
    else if (type == QDeclarativeContactDetail::ExtendedDetail)
        contactDetail = new QDeclarativeContactExtendedDetail;
    else if (type == QDeclarativeContactDetail::Family)
        contactDetail = new QDeclarativeContactFamily;
    else if (type == QDeclarativeContactDetail::Favorite)
        contactDetail = new QDeclarativeContactFavorite;
    else if (type == QDeclarativeContactDetail::Gender)
        contactDetail = new QDeclarativeContactGender;
    else if (type == QDeclarativeContactDetail::Geolocation)
        contactDetail = new QDeclarativeContactGeoLocation;
    else if (type == QDeclarativeContactDetail::GlobalPresence)
        contactDetail = new QDeclarativeContactGlobalPresence;
    else if (type == QDeclarativeContactDetail::Guid)
        contactDetail = new QDeclarativeContactGuid;
    else if (type == QDeclarativeContactDetail::Hobby)
        contactDetail = new QDeclarativeContactHobby;
    else if (type == QDeclarativeContactDetail::Name)
        contactDetail = new QDeclarativeContactName;
    else if (type == QDeclarativeContactDetail::NickName)
        contactDetail = new QDeclarativeContactNickname;
    else if (type == QDeclarativeContactDetail::Note)
        contactDetail = new QDeclarativeContactNote;
    else if (type == QDeclarativeContactDetail::OnlineAccount)
        contactDetail = new QDeclarativeContactOnlineAccount;
    else if (type == QDeclarativeContactDetail::Organization)
        contactDetail = new QDeclarativeContactOrganization;
    else if (type == QDeclarativeContactDetail::PhoneNumber)
        contactDetail = new QDeclarativeContactPhoneNumber;
    else if (type == QDeclarativeContactDetail::Presence)
        contactDetail = new QDeclarativeContactPresence;
    else if (type == QDeclarativeContactDetail::Ringtone)
        contactDetail = new QDeclarativeContactRingtone;
    else if (type == QDeclarativeContactDetail::SyncTarget)
        contactDetail = new QDeclarativeContactSyncTarget;
    else if (type == QDeclarativeContactDetail::Tag)
        contactDetail = new QDeclarativeContactTag;
    else if (type == QDeclarativeContactDetail::Timestamp)
        contactDetail = new QDeclarativeContactTimestamp;
    else if (type == QDeclarativeContactDetail::Type)
        contactDetail = new QDeclarativeContactType;
    else if (type == QDeclarativeContactDetail::Url)
        contactDetail = new QDeclarativeContactUrl;
    else if (type == QDeclarativeContactDetail::Version)
        contactDetail = new QDeclarativeContactVersion;
    else
        contactDetail = new QDeclarativeContactDetail;
    return contactDetail;
}

/* ==================== QDeclarativeContactAddress ======================= */

/*!
   \qmltype Address
    \instantiates QDeclarativeContactAddress
   \brief The Address element contains an address of a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   The fields in the Address element are based on the segments
   of the ADR property of a Versit vCard file.

   Address element contains the following field types:
   \list
   \li Address.Street
   \li Address.Locality
   \li Address.Region
   \li Address.PostCode
   \li Address.Country
   \li Address.SubTypes
   \li Address.PostOfficeBox
   \endlist

   Versit \reg is a trademark of the Internet Mail Consortium.
   This element is part of the \b{QtContacts} module.
*/
/*!
  \qmlproperty string Address::street

  This property holds the street number and street name of the address.
*/
/*!
  \qmlproperty string Address::locality

  This property holds the name of the city, town or suburb of the address.
*/
/*!
  \qmlproperty string Address::region

  This property holds the name or identifier of the state, province or region of the address.
*/
/*!
  \qmlproperty string Address::postcode

  This property holds the postal code for the address.
*/
/*!
  \qmlproperty string Address::country

  This property holds the name of the country of the address.
*/
/*!
  \qmlproperty list<variant> Address::subTypes

  This property stores the sub types of the address.

  \list
  \li Address.Parcel - An address for parcel delivery.
  \li Address.Postal - An address for postal delivery.
  \li Address.Domestic - An address for domestic mail delivery.
  \li Address.International - An address for international mail delivery.
  \endlist
*/
/*!
  \qmlproperty string Address::postOfficeBox

  This property holds the post office box identifier of the mailing address.
*/

/* ==================== QDeclarativeContactAnniversary ======================= */

/*!
   \qmltype Anniversary
    \instantiates QDeclarativeContactAnniversary
   \brief The Anniversary element contains an anniversary of a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts


   Anniversary element contains the following field types:
   \list
   \li Anniversary.CalendarId
   \li Anniversary.OriginalDate
   \li Anniversary.Event
   \li Anniversary.SubType
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string Anniversary::calendarId

  This property holds the id of the calendar event.
*/
/*!
  \qmlproperty date Anniversary::originalDate

  This property holds the original anniversary date value.
  This property is either a date, or a date and time.
*/
/*!
  \qmlproperty string Anniversary::event

  This property holds the name of the event value.
*/
/*!
  \qmlproperty enumeration Anniversary::subType

  This property holds the sub type of an Anniversary.

  \list
  \li Unknown - Unknown sub type (default).
  \li Wedding - A wedding anniversary.
  \li Engagement - An engagement anniversary.
  \li House - A new residence anniversary.
  \li Employment - A start of employment anniversary.
  \li Memorial - An event of sentimental significance.
  \endlist
*/

/* ==================== QDeclarativeContactAvatar ======================= */
/*!
   \qmltype Avatar
    \instantiates QDeclarativeContactAvatar
   \brief The Avatar element contains avatar URLs of a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Avatar element contains the following field types:
   \list
   \li Avatar.ImageUrl
   \li Avatar.VideoUrl
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string Avatar::imageUrl

  This property holds the URL of the avatar image.
*/
/*!
  \qmlproperty string Avatar::videoUrl

  This property holds the URL of a video avatar.
*/


/* ==================== QDeclarativeContactBirthday ======================= */
/*!
   \qmltype Birthday
    \instantiates QDeclarativeContactBirthday
   \brief The Birthday element contains a birthday of a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Birthday element contains the following field types:
   \list
   \li Birthday.Birthday
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty date Birthday::birthday

  This property holds the birthday date. The property value is either a date, or a date and time.
*/

/* ==================== QDeclarativeContactDisplayLabel ======================= */
/*!
   \qmltype DisplayLabel
    \instantiates QDeclarativeContactDisplayLabel
   \brief The DisplayLabel element contains a label that can be used by clients when displaying a contact, for example in a list.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   DisplayLabel element contains the following field types:
   \list
   \li DisplayLabel.Label
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string DisplayLabel::label

  This property holds the value of the display label.
*/

/* ==================== QDeclarativeContactEmailAddress ======================= */
/*!
   \qmltype EmailAddress
    \instantiates QDeclarativeContactEmailAddress
   \brief The EmailAddress element contains an email address of a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   EmailAddress element contains the following field types:
   \list
   \li EmailAddress.EmailAddress
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string EmailAddress::emailAddress

  This property holds the email address value.
*/


/* ==================== QDeclarativeContactExtendedDetail ======================= */
/*!
    \qmltype ExtendedDetail
    \instantiates QDeclarativeContactExtendedDetail
    \brief The ExtendedDetail element contains an extended detail of a contact.
    \ingroup qml-contacts-details
    \inqmlmodule QtContacts

    ExtendedDetail element contains the following field types:
    \list
    \li ExtendedDetail.Name
    \li ExtendedDetail.Data
    \endlist

    This element is part of the \b{QtContacts} module.

    \sa QContactExtendedDetail
*/

/*!
    \qmlproperty string ExtendedDetail::name

    This property holds the name of the extended detail.
*/

/*!
    \qmlproperty variant ExtendedDetail::data

    This property holds the data of the extended detail.
*/

void QDeclarativeContactExtendedDetail::setData(const QVariant &newData)
{
    QVariant unboxedData(newData);
    if (newData.userType() == qMetaTypeId<QJSValue>()) {
        unboxedData = newData.value<QJSValue>().toVariant();
    }

    if (unboxedData != data() && !readOnly()) {
        detail().setValue(QContactExtendedDetail::FieldData, unboxedData);
        emit valueChanged();
    }
}

/* ==================== QDeclarativeContactFamily ======================= */
/*!
   \qmltype Family
    \instantiates QDeclarativeContactFamily
   \brief The Family element contains names of family members of a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts


   Family element contains the following field types:
   \list
   \li Family.Spouse
   \li Family.Children
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string Family::spouse

  This property holds the name of a spouse.
*/

/*!
  \qmlproperty list<string> Family::children

  This property holds the the names of children.
*/

/* ==================== QDeclarativeContactFavorite ======================= */
/*!
   \qmltype Favorite
    \instantiates QDeclarativeContactFavorite
   \brief The Favorite element indicates if a contact is a favorite contact as well as the
   position it should appear in an ordered list of favorites.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Favorite element contains the following field types:
   \list
   \li Favorite.Favorite
   \li Favorite.Index
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty bool Favorite::favorite

  This property holds the value that indicates whether a contact is a favorite.
*/

/*!
  \qmlproperty int Favorite::index

  This property holds the index of the favorite contact (which determines the order they appear).
*/


/* ==================== QDeclarativeContactGender ======================= */
/*!
   \qmltype Gender
    \instantiates QDeclarativeContactGender
   \brief The Gender element contains the gender of a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Gender element contains the following field types:
   \list
   \li Gender.Gender
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty enumeration Gender::gender

  This property holds the value of the gender.

  \list
  \li Gender.Male
  \li Gender.Female
  \endlist
*/


/* ==================== QDeclarativeContactGeoLocation ======================= */
/*!
   \qmltype GeoLocation
    \instantiates QDeclarativeContactGeoLocation
   \brief The GeoLocation element contains a global location coordinate associated with a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   GeoLocation element contains the following field types:
   \list
   \li GeoLocation.Label
   \li GeoLocation.Latitude
   \li GeoLocation.Longitude
   \li GeoLocation.Accuracy
   \li GeoLocation.Altitude
   \li GeoLocation.AltitudeAccuracy
   \li GeoLocation.Heading
   \li GeoLocation.Speed
   \li GeoLocation.Timestamp
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string GeoLocation::label

  This property holds the location label.
*/
/*!
  \qmlproperty double GeoLocation::latitude

  This property holds the value of the latitude.
*/
/*!
  \qmlproperty double GeoLocation::longitude

  This property holds the value of the longitude.
*/
/*!
  \qmlproperty double GeoLocation::accuracy

  This property holds the value of the location (latitude/longitude) accuracy.
*/
/*!
  \qmlproperty double GeoLocation::altitude

  This property holds the value of the altitude.
*/
/*!
  \qmlproperty double GeoLocation::altitudeAccuracy

  This property holds the value of the accuracy of the altitude.
*/
/*!
  \qmlproperty double GeoLocation::heading

  This property holds the value of the heading.
*/
/*!
  \qmlproperty double GeoLocation::speed

  This property holds the value of the speed.
*/
/*!
  \qmlproperty date GeoLocation::timestamp

  This property holds the value of the timestamp of the location information.
*/


/* ==================== QDeclarativeContactGlobalPresence ======================= */
/*!
   \qmltype GlobalPresence
    \instantiates QDeclarativeContactGlobalPresence
   \brief The GlobalPresence element provides aggregated presence information
   for a contact, synthesized or supplied by the backend.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   GlobalPresence element contains the following field types:
   \list
   \li GlobalPresence.Timestamp
   \li GlobalPresence.Nickname
   \li GlobalPresence.State
   \li GlobalPresence.StateText
   \li GlobalPresence.ImageUrl
   \li GlobalPresence.CustomMessage
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty date GlobalPresence::timestamp

  This property holds the timestamp value of the GlobalPresence.
*/
/*!
  \qmlproperty string GlobalPresence::nickname

  This property holds the nickname value of the GlobalPresence.
*/
/*!
  \qmlproperty enumeration GlobalPresence::state

  This property holds the presence state enumeration value.

  \list
  \li Presence.Unknown -  Signifies that the presence state of the contact is not currently known (default).
  \li Presence.Available - Signifies that the contact is available.
  \li Presence.Hidden - Signifies that the contact is hidden.
  \li Presence.Busy - Signifies that the contact is busy.
  \li Presence.Away - Signifies that the contact is away.
  \li Presence.ExtendedAway - Signifies that the contact is away for an extended period of time.
  \li Presence.Offline - Signifies that the contact is offline.
  \endlist
*/
/*!
  \qmlproperty string GlobalPresence::stateText

  This property holds the text corresponding to the current presence state.
*/
/*!
  \qmlproperty url GlobalPresence::imageUrl

  This property holds the last-known status image url of the contact for the online account
   about which this detail stores presence information.
*/
/*!
  \qmlproperty string GlobalPresence::customMessage

  This property holds the custom status message from the contact for the online account
   about which this detail stores presence information.
*/

/* ==================== QDeclarativeContactGuid ======================= */
/*!
   \qmltype Guid
    \instantiates QDeclarativeContactGuid
   \brief The Guid element contains a globally unique Id of a contact, for use in synchronization with other datastores.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Guid element contains the following field types:
   \list
   \li Guid.Guid
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string Guid::guid

  This property holds the value of the GUID.
*/

/* ==================== QDeclarativeContactHobby ======================= */
/*!
   \qmltype Hobby
    \instantiates QDeclarativeContactHobby
   \brief The Hobby element contains a hobby of the contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Hobby element contains the following field types:
   \list
   \li Hobby.Hobby
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string Hobby::hobby

  This property holds the name of the hobby.
*/

/* ==================== QDeclarativeContactName ======================= */
/*!
   \qmltype Name
    \instantiates QDeclarativeContactName
   \brief The Name element contains a name of a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts


   Name element contains the following field types:
   \list
   \li Name.Prefix
   \li Name.FirstName
   \li Name.MiddleName
   \li Name.LastName
   \li Name.Suffix
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string Name::prefix

  This property holds the prefix name part of the name.
*/
/*!
  \qmlproperty string Name::firstName

  This property holds the first name part of the name.
*/
/*!
  \qmlproperty string Name::middleName

  This property holds the middle name part of the name.
*/
/*!
  \qmlproperty string Name::lastName

  This property holds the last name part of the name.
*/
/*!
  \qmlproperty string Name::suffix

  This property holds the suffix part of the name.
*/


/* ==================== QDeclarativeContactNickname ======================= */
/*!
   \qmltype Nickname
    \instantiates QDeclarativeContactNickname
   \brief The Nickname element contains a nickname of a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts


   Nickname element contains the following field types:
   \list
   \li Nickname.Nickname
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string Nickname::nickname

  This property holds the value of the nickname.
*/


/* ==================== QDeclarativeContactNote ======================= */
/*!
   \qmltype Note
    \instantiates QDeclarativeContactNote
   \brief The Note element contains a note associated with a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Note element contains the following field types:
   \list
   \li Note.Note
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string Note::note

  This property holds the value of the note.
*/


/* ==================== QDeclarativeContactOnlineAccount ======================= */
/*!
   \qmltype OnlineAccount
    \instantiates QDeclarativeContactOnlineAccount
   \brief The OnlineAccount element contains a note associated with a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   OnlineAccount element contains the following field types:
   \list
   \li OnlineAccount.AccountUri - the account uri value.
   \li OnlineAccount.ServiceProvider - the account service provider name.
   \li OnlineAccount.Protocol - the account protocol value.
   \li OnlineAccount.Capabilities - the account capabilities value.
   \li OnlineAccount.SubTypes - the sub types of an online account.
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string OnlineAccount::accountUri

  This property holds the value of the account uri.
*/
/*!
  \qmlproperty string OnlineAccount::serviceProvider

  This property holds the value of the account service provider name.
*/
/*!
  \qmlproperty list<string> OnlineAccount::capabilities

  This property holds the value of the account capabilities.
*/
/*!
  \qmlproperty list<variant> OnlineAccount::subTypes

  This property holds the value of the sub types of an online account.

  \list
  \li OnlineAccount.Unknown (default)
  \li OnlineAccount.Sip - indicating this online account supports SIP.
  \li OnlineAccount.SipVoip - indicating this online account supports SIP based VOIP.
  \li OnlineAccount.Impp - indicating this online account supports IMPP.
  \li OnlineAccount.VideoShare - indicating this online account supports VideoShare.
  \endlist
*/
/*!
  \qmlproperty enumeration OnlineAccount::protocol

  This property holds the protocol enumeration value.

  \list
  \li OnlineAccount.Unknown - indicates this online account is for one unsupported protocol.
  \li OnlineAccount.Aim - indicates this online account is for the AIM protocol.
  \li OnlineAccount.Icq - indicates this online account is for the ICQ protocol.
  \li OnlineAccount.Irc - indicates this online account is for the IRC protocol.
  \li OnlineAccount.Jabber - indicates this online account is for the jabber protocol.
  \li OnlineAccount.Msn - indicates this online account is for the MSN protocol.
  \li OnlineAccount.Qq - indicates this online account is for the QQ protocol.
  \li OnlineAccount.Skype - indicates this online account is for the Skype protocol.
  \li OnlineAccount.Yahoo - indicates this online account is for the Yahoo protocol.
  \endlist
*/

/* ==================== QDeclarativeContactOrganization ======================= */
/*!
   \qmltype Organization
    \instantiates QDeclarativeContactOrganization
   \brief The Organization element provides details about an
   organization that the contact is either a part of, or stands for.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Organization element contains the following field types:
   \list
   \li Organization.Name
   \li Organization.LogoUrl
   \li Organization.Department
   \li Organization.Location
   \li Organization.Role
   \li Organization.Title
   \li Organization.AssistantName
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string Organization::name

  This property holds the value of the organization name.
*/
/*!
  \qmlproperty url Organization::logoUrl

  This property holds the URL of the organization logo image.
*/
/*!
  \qmlproperty list<string> Organization::department

  This property holds the value of the department name.
*/
/*!
  \qmlproperty string Organization::location

  This property holds the value of the location of the organization.
*/
/*!
  \qmlproperty string Organization::role

  This property holds the value of the contact's role in the organization.
*/
/*!
  \qmlproperty string Organization::title

  This property holds the value of the contact's title in the organization.
*/
/*!
  \qmlproperty string Organization::assistantName

  This property holds the value of the name of the contact's assistant.
*/

/* ==================== QDeclarativeContactPhoneNumber ======================= */
/*!
   \qmltype PhoneNumber
    \instantiates QDeclarativeContactPhoneNumber
   \brief The PhoneNumber element provides a phone number of a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   PhoneNumber element contains the following field types:
   \list
   \li PhoneNumber.Number
   \li PhoneNumber.SubTypes
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty string PhoneNumber::number

  This property holds the value of the phone number.
*/

/*!
  \qmlproperty list<variant> PhoneNumber::subTypes

  This property holds the sub types of a PhoneNumber.

  \list
  \li PhoneNumber.Unknown - indicating this phone number type is unknown(default).
  \li PhoneNumber.Landline - indicating this phone number is a landline number.
  \li PhoneNumber.Mobile - ndicating this phone number is a mobile (cellular) number.
  \li PhoneNumber.Fax - indicating this phone number is a fax number.
  \li PhoneNumber.Pager - indicating this phone number is a pager number.
  \li PhoneNumber.Voice - indicating this phone number supports voice transmission.
  \li PhoneNumber.Modem - indicating this phone number supports data transmission.
  \li PhoneNumber.Video - indicating this phone number supports video transmission.
  \li PhoneNumber.Car - indicating this phone number is a car phone.
  \li PhoneNumber.BulletinBoardSystem - indicating this phone number is a bulletin board system.
  \li PhoneNumber.MessagingCapable - indicating this phone number supports messaging services.
  \li PhoneNumber.Assistant - indicating this phone number is the number of an assistant.
  \li PhoneNumber.DtmfMenu - indicating this phone number supports DTMF-controlled voice menu navigation.
  \endlist
*/

/* ==================== QDeclarativeContactPresence ======================= */
/*!
   \qmltype Presence
    \instantiates QDeclarativeContactPresence
   \brief The Presence element provides presence information for an online account of a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Presence element contains the following field types:
   \list
   \li Presence.Timestamp
   \li Presence.Nickname
   \li Presence.State
   \li Presence.StateText
   \li Presence.ImageUrl
   \li Presence.CustomMessage
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty date Presence::timestamp

  This property holds the timestamp value of the Presence.
*/
/*!
  \qmlproperty string Presence::nickname

  This property holds the nickname value of the Presence.
*/
/*!
  \qmlproperty enumeration Presence::state

  This property holds the presence state enumeration value.

  \list
  \li Presence.Unknown -  Signifies that the presence state of the contact is not currently known (default).
  \li Presence.Available - Signifies that the contact is available.
  \li Presence.Hidden - Signifies that the contact is hidden.
  \li Presence.Busy - Signifies that the contact is busy.
  \li Presence.Away - Signifies that the contact is away.
  \li Presence.ExtendedAway - Signifies that the contact is away for an extended period of time.
  \li Presence.Offline - Signifies that the contact is offline.
  \endlist
*/
/*!
  \qmlproperty string Presence::stateText

  This property holds the text corresponding to the current presence state.
*/
/*!
  \qmlproperty url Presence::imageUrl

  This property holds the last-known status image url of the contact for the online account
   about which this detail stores presence information.
*/
/*!
  \qmlproperty string Presence::customMessage

  This property holds the custom status message from the contact for the online account
   about which this detail stores presence information.
*/



/* ==================== QDeclarativeContactRingtone ======================= */
/*!
   \qmltype Ringtone
    \instantiates QDeclarativeContactRingtone
   \brief The Ringtone element provides a ringtone associated with a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Ringtone element contains the following field types:
   \list
   \li Ringtone.AudioRingtoneUrl
   \li Ringtone.VideoRingtoneUrl
   \endlist

  This element is part of the \b{QtContacts} module.
*/

/*!
  \qmlproperty url Ringtone::audioRingtoneUrl

  This property holds the value of the URL for an audio ringtone.
*/
/*!
  \qmlproperty url Ringtone::videoRingtoneUrl

  This property holds the value of the URL for a video ringtone.
*/

// Not in use (note the missing ! below)
/*
  \qmlproperty url Ringtone::vibrationRingtoneUrl

  This property holds the value of the URL for a vibration ringtone.
*/

/* ==================== QDeclarativeContactSyncTarget ======================= */
/*!
   \qmltype SyncTarget
    \instantiates QDeclarativeContactSyncTarget
   \brief The SyncTarget element provides a sync target for a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   SyncTarget element contains the following field types:
   \list
   \li SyncTarget.SyncTarget
   \endlist

   \sa QContactSyncTarget

   This element is part of the \b{QtContacts} module.
*/
/*!
  \qmlproperty string SyncTarget::syncTarget

  This property holds the sync target value.
*/

/* ==================== QDeclarativeContactTag ======================= */
/*!
   \qmltype Tag
    \instantiates QDeclarativeContactTag
   \brief The Tag element provides a contains a tag associated with a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Tag element contains the following field types:
   \list
   \li Tag.Tag
   \endlist
   \sa QContactTag

   This element is part of the \b{QtContacts} module.
*/
/*!
  \qmlproperty string Tag::tag

  This property holds the value of the tag.
*/

/* ==================== QDeclarativeContactTimestamp ======================= */
/*!
   \qmltype Timestamp
    \instantiates QDeclarativeContactTimestamp
   \brief The Timestamp element contains the creation and last-modified timestamp associated with the contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Timestamp element contains the following field types:
   \list
   \li Timestamp.LastModified
   \li Timestamp.Created
   \endlist

  This element is part of the \b{QtContacts} module.
*/
/*!
  \qmlproperty date Timestamp::lastModified

  This property holds the value of the last modified timestamp.
*/
/*!
  \qmlproperty date Timestamp::created

  This property holds the value of the timestamp a contact was created.
*/

/* ==================== QDeclarativeContactUrl ======================= */
/*!
   \qmltype Url
    \instantiates QDeclarativeContactUrl
   \brief The Url element contains a url associated with a contact.
   \ingroup qml-contacts-details
   \inqmlmodule QtContacts

   Url element contains the following field types:
   \list
   \li Url.Url
   \li Url.SubType
   \endlist

  This element is part of the \b{QtContacts} module.
*/
/*!
  \qmlproperty string Url::url

  This property holds the value of the URL.
*/
/*!
  \qmlproperty enumeration Url::subType

  This property holds the sub type of a QContactUrl.

  \list
  \li Url.Unknown - indicating this url type is unknown (default).
  \li Url.HomePage - indicating this url is a contact's home page.
  \li Url.Favourite - indicating this url is one of the contact's favourite URLs (or bookmarks).
  \endlist
*/

QT_END_NAMESPACE

#include "moc_qdeclarativecontactdetail_p.cpp"