This file is indexed.

/usr/share/gtk-doc/html/libebook/libebook-EDestination.html is in libebook1.2-dev 3.2.3-0ubuntu6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>EDestination</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="index.html" title="Evolution-Data-Server Manual: Address Book Client (libebook)">
<link rel="up" href="ch01.html" title="Evolution-Data-Server Manual: Address Book Client (libebook)">
<link rel="prev" href="libebook-EContact.html" title="EContact">
<link rel="next" href="libebook-EAddressWestern.html" title="EAddressWestern">
<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="libebook-EContact.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">Evolution-Data-Server Manual: Address Book Client (libebook)</th>
<td><a accesskey="n" href="libebook-EAddressWestern.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts">
<a href="#libebook-EDestination.synopsis" class="shortcut">Top</a>
                   | 
                  <a href="#libebook-EDestination.description" class="shortcut">Description</a>
</td></tr>
</table>
<div class="refentry">
<a name="libebook-EDestination"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="libebook-EDestination.top_of_page"></a>EDestination</span></h2>
<p>EDestination</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv">
<a name="libebook-EDestination.synopsis"></a><h2>Synopsis</h2>
<pre class="synopsis">struct              <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination">EDestination</a>;
<a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="returnvalue">EDestination</span></a> *      <a class="link" href="libebook-EDestination.html#e-destination-new" title="e_destination_new ()">e_destination_new</a>                   (<em class="parameter"><code><span class="type">void</span></code></em>);
<a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="returnvalue">EDestination</span></a> *      <a class="link" href="libebook-EDestination.html#e-destination-copy" title="e_destination_copy ()">e_destination_copy</a>                  (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="libebook-EDestination.html#e-destination-empty" title="e_destination_empty ()">e_destination_empty</a>                 (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="libebook-EDestination.html#e-destination-equal" title="e_destination_equal ()">e_destination_equal</a>                 (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *a</code></em>,
                                                         <em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *b</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-set-contact" title="e_destination_set_contact ()">e_destination_set_contact</a>           (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><a class="link" href="libebook-EContact.html#EContact" title="struct EContact"><span class="type">EContact</span></a> *contact</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> email_num</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-set-contact-uid" title="e_destination_set_contact_uid ()">e_destination_set_contact_uid</a>       (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code>const <span class="type">gchar</span> *uid</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> email_num</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-set-client" title="e_destination_set_client ()">e_destination_set_client</a>            (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><a class="link" href="libebook-EBookClient.html#EBookClient" title="struct EBookClient"><span class="type">EBookClient</span></a> *client</code></em>);
<a class="link" href="libebook-EContact.html#EContact" title="struct EContact"><span class="returnvalue">EContact</span></a> *          <a class="link" href="libebook-EDestination.html#e-destination-get-contact" title="e_destination_get_contact ()">e_destination_get_contact</a>           (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
const <span class="returnvalue">gchar</span> *       <a class="link" href="libebook-EDestination.html#e-destination-get-source-uid" title="e_destination_get_source_uid ()">e_destination_get_source_uid</a>        (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
const <span class="returnvalue">gchar</span> *       <a class="link" href="libebook-EDestination.html#e-destination-get-contact-uid" title="e_destination_get_contact_uid ()">e_destination_get_contact_uid</a>       (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
<span class="returnvalue">gint</span>                <a class="link" href="libebook-EDestination.html#e-destination-get-email-num" title="e_destination_get_email_num ()">e_destination_get_email_num</a>         (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-set-name" title="e_destination_set_name ()">e_destination_set_name</a>              (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-set-email" title="e_destination_set_email ()">e_destination_set_email</a>             (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code>const <span class="type">gchar</span> *email</code></em>);
const <span class="returnvalue">gchar</span> *       <a class="link" href="libebook-EDestination.html#e-destination-get-name" title="e_destination_get_name ()">e_destination_get_name</a>              (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
const <span class="returnvalue">gchar</span> *       <a class="link" href="libebook-EDestination.html#e-destination-get-email" title="e_destination_get_email ()">e_destination_get_email</a>             (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
const <span class="returnvalue">gchar</span> *       <a class="link" href="libebook-EDestination.html#e-destination-get-address" title="e_destination_get_address ()">e_destination_get_address</a>           (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="libebook-EDestination.html#e-destination-is-evolution-list" title="e_destination_is_evolution_list ()">e_destination_is_evolution_list</a>     (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="libebook-EDestination.html#e-destination-list-show-addresses" title="e_destination_list_show_addresses ()">e_destination_list_show_addresses</a>   (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
const <span class="returnvalue">GList</span> *       <a class="link" href="libebook-EDestination.html#e-destination-list-get-dests" title="e_destination_list_get_dests ()">e_destination_list_get_dests</a>        (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
const <span class="returnvalue">GList</span> *       <a class="link" href="libebook-EDestination.html#e-destination-list-get-root-dests" title="e_destination_list_get_root_dests ()">e_destination_list_get_root_dests</a>   (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="libebook-EDestination.html#e-destination-is-ignored" title="e_destination_is_ignored ()">e_destination_is_ignored</a>            (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-set-ignored" title="e_destination_set_ignored ()">e_destination_set_ignored</a>           (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> ignored</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-set-html-mail-pref" title="e_destination_set_html_mail_pref ()">e_destination_set_html_mail_pref</a>    (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> flag</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="libebook-EDestination.html#e-destination-get-html-mail-pref" title="e_destination_get_html_mail_pref ()">e_destination_get_html_mail_pref</a>    (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
<span class="returnvalue">gboolean</span>            <a class="link" href="libebook-EDestination.html#e-destination-is-auto-recipient" title="e_destination_is_auto_recipient ()">e_destination_is_auto_recipient</a>     (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-set-auto-recipient" title="e_destination_set_auto_recipient ()">e_destination_set_auto_recipient</a>    (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> value</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-set-raw" title="e_destination_set_raw ()">e_destination_set_raw</a>               (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code>const <span class="type">gchar</span> *raw</code></em>);
const <span class="returnvalue">gchar</span> *       <a class="link" href="libebook-EDestination.html#e-destination-get-textrep" title="e_destination_get_textrep ()">e_destination_get_textrep</a>           (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> include_email</code></em>);
<span class="returnvalue">gchar</span> *             <a class="link" href="libebook-EDestination.html#e-destination-get-textrepv" title="e_destination_get_textrepv ()">e_destination_get_textrepv</a>          (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> **destv</code></em>);
<span class="returnvalue">gchar</span> *             <a class="link" href="libebook-EDestination.html#e-destination-export" title="e_destination_export ()">e_destination_export</a>                (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);
<span class="returnvalue">gchar</span> *             <a class="link" href="libebook-EDestination.html#e-destination-exportv" title="e_destination_exportv ()">e_destination_exportv</a>               (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> **destv</code></em>);
<a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="returnvalue">EDestination</span></a> *      <a class="link" href="libebook-EDestination.html#e-destination-import" title="e_destination_import ()">e_destination_import</a>                (<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);
<a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="returnvalue">EDestination</span></a> **     <a class="link" href="libebook-EDestination.html#e-destination-importv" title="e_destination_importv ()">e_destination_importv</a>               (<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-export-to-vcard-attribute" title="e_destination_export_to_vcard_attribute ()">e_destination_export_to_vcard_attribute</a>
                                                        (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><a class="link" href="libebook-EVCard.html#EVCardAttribute" title="EVCardAttribute"><span class="type">EVCardAttribute</span></a> *attr</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-freev" title="e_destination_freev ()">e_destination_freev</a>                 (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> **destv</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="libebook-EDestination.html#e-destination-set-book" title="e_destination_set_book ()">e_destination_set_book</a>              (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><a class="link" href="libebook-EBook.html#EBook" title="struct EBook"><span class="type">EBook</span></a> *book</code></em>);
</pre>
</div>
<div class="refsect1">
<a name="libebook-EDestination.description"></a><h2>Description</h2>
<p>
</p>
</div>
<div class="refsect1">
<a name="libebook-EDestination.details"></a><h2>Details</h2>
<div class="refsect2">
<a name="EDestination"></a><h3>struct EDestination</h3>
<pre class="programlisting">struct EDestination {
	GObject object;

	struct _EDestinationPrivate *priv;
};
</pre>
<p>
</p>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-new"></a><h3>e_destination_new ()</h3>
<pre class="programlisting"><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="returnvalue">EDestination</span></a> *      e_destination_new                   (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<p>
Creates a new <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> with blank values.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A newly created <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>.</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-copy"></a><h3>e_destination_copy ()</h3>
<pre class="programlisting"><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="returnvalue">EDestination</span></a> *      e_destination_copy                  (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Creates a new <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> identical to <em class="parameter"><code>dest</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A newly created <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>, identical to <em class="parameter"><code>dest</code></em>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-empty"></a><h3>e_destination_empty ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            e_destination_empty                 (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Checks if <em class="parameter"><code>dest</code></em> is blank.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<code class="literal">TRUE</code> if <em class="parameter"><code>dest</code></em> is empty, <code class="literal">FALSE</code> otherwise.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-equal"></a><h3>e_destination_equal ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            e_destination_equal                 (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *a</code></em>,
                                                         <em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *b</code></em>);</pre>
<p>
Checks if <em class="parameter"><code>a</code></em> and <em class="parameter"><code>b</code></em> are equal.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>a</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>b</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<code class="literal">TRUE</code> if the destinations are equal, <code class="literal">FALSE</code> otherwise.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-set-contact"></a><h3>e_destination_set_contact ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_set_contact           (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><a class="link" href="libebook-EContact.html#EContact" title="struct EContact"><span class="type">EContact</span></a> *contact</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> email_num</code></em>);</pre>
<p>
Sets <em class="parameter"><code>dest</code></em> to point to one of <em class="parameter"><code>contact</code></em>'s e-mail addresses
indicated by <em class="parameter"><code>email_num</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>contact</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EContact.html#EContact" title="struct EContact"><span class="type">EContact</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>email_num</code></em> :</span></p></td>
<td>an email index</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-set-contact-uid"></a><h3>e_destination_set_contact_uid ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_set_contact_uid       (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code>const <span class="type">gchar</span> *uid</code></em>,
                                                         <em class="parameter"><code><span class="type">gint</span> email_num</code></em>);</pre>
<p>
Sets <em class="parameter"><code>dest</code></em> to point to one of the contact specified by <em class="parameter"><code>uid</code></em>'s e-mail
addresses indicated by <em class="parameter"><code>email_num</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>uid</code></em> :</span></p></td>
<td>a unique contact ID</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>email_num</code></em> :</span></p></td>
<td>an email index</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-set-client"></a><h3>e_destination_set_client ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_set_client            (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><a class="link" href="libebook-EBookClient.html#EBookClient" title="struct EBookClient"><span class="type">EBookClient</span></a> *client</code></em>);</pre>
<p>
Specify the source <em class="parameter"><code>dest</code></em>'s contact comes from. This is useful
if you need to update the contact later.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>client</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EBookClient.html#EBookClient" title="struct EBookClient"><span class="type">EBookClient</span></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.2</p>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-get-contact"></a><h3>e_destination_get_contact ()</h3>
<pre class="programlisting"><a class="link" href="libebook-EContact.html#EContact" title="struct EContact"><span class="returnvalue">EContact</span></a> *          e_destination_get_contact           (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Gets the contact <em class="parameter"><code>dest</code></em> is pointing to, if any.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>An <a class="link" href="libebook-EContact.html#EContact" title="struct EContact"><span class="type">EContact</span></a>, or <code class="literal">NULL</code> if none was set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-get-source-uid"></a><h3>e_destination_get_source_uid ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> *       e_destination_get_source_uid        (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Gets the unique source ID <em class="parameter"><code>dest</code></em> is pointing to, if any. The source
ID specifies which address book <em class="parameter"><code>dest</code></em>'s contact came from.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A unique source ID, or <code class="literal">NULL</code> if none was set.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-get-contact-uid"></a><h3>e_destination_get_contact_uid ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> *       e_destination_get_contact_uid       (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Gets the unique contact ID <em class="parameter"><code>dest</code></em> is pointing to, if any.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A unique contact ID, or <code class="literal">NULL</code> if none was set.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-get-email-num"></a><h3>e_destination_get_email_num ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>                e_destination_get_email_num         (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Gets the index of the e-mail address of the contact that
<em class="parameter"><code>dest</code></em> is pointing to, if any.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>The e-mail index, or -1 if none was set.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-set-name"></a><h3>e_destination_set_name ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_set_name              (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
<p>
Sets the full name of <em class="parameter"><code>dest</code></em>'s addressee.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
<td>the destination's full name</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-set-email"></a><h3>e_destination_set_email ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_set_email             (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code>const <span class="type">gchar</span> *email</code></em>);</pre>
<p>
Sets the e-mail address of <em class="parameter"><code>dest</code></em>'s addressee.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>email</code></em> :</span></p></td>
<td>the destination's e-mail address</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-get-name"></a><h3>e_destination_get_name ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> *       e_destination_get_name              (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Gets the full name of <em class="parameter"><code>dest</code></em>'s addressee, or if the addressee is
a contact list, the name the list was filed under.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>The full name of the addressee, or <code class="literal">NULL</code> if none was set.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-get-email"></a><h3>e_destination_get_email ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> *       e_destination_get_email             (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Gets the e-mail address of <em class="parameter"><code>dest</code></em>'s addressee.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>An e-mail address, or an empty string if none was set.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-get-address"></a><h3>e_destination_get_address ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> *       e_destination_get_address           (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Gets the encoded name and email address, or in the case of lists, the
encoded list of email addresses, from <em class="parameter"><code>dest</code></em>.  The returned string is
suitable for use in an email header, but not for displaying to users.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>an encoded destination string suitable for use in an
email header, or <code class="literal">NULL</code> if the destination was empty</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-is-evolution-list"></a><h3>e_destination_is_evolution_list ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            e_destination_is_evolution_list     (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Checks if <em class="parameter"><code>dest</code></em> is a list of addresses.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<code class="literal">TRUE</code> if destination is a list, <code class="literal">FALSE</code> if it is an individual.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-list-show-addresses"></a><h3>e_destination_list_show_addresses ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            e_destination_list_show_addresses   (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
If <em class="parameter"><code>dest</code></em> is a list, checks if the addresses in the list
should be presented to the user during interaction.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<code class="literal">TRUE</code> if addresses should be shown, <code class="literal">FALSE</code> otherwise.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-list-get-dests"></a><h3>e_destination_list_get_dests ()</h3>
<pre class="programlisting">const <span class="returnvalue">GList</span> *       e_destination_list_get_dests        (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
If <em class="parameter"><code>dest</code></em> is a list, gets recursively list of all destinations.
Everything returned from this function belongs to <em class="parameter"><code>dest</code></em> and
thus should not be freed.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A list of elements of type <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>, or <code class="literal">NULL</code>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> EDestination][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.2</p>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-list-get-root-dests"></a><h3>e_destination_list_get_root_dests ()</h3>
<pre class="programlisting">const <span class="returnvalue">GList</span> *       e_destination_list_get_root_dests   (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
If <em class="parameter"><code>dest</code></em> is a list, gets the list of EDestinations assigned directly
to <em class="parameter"><code>dest</code></em>.
The list and its elements belong to <em class="parameter"><code>dest</code></em>, and should not be freed.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A list of elements of type <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>, or <code class="literal">NULL</code>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> EDestination][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.2</p>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-is-ignored"></a><h3>e_destination_is_ignored ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            e_destination_is_ignored            (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Check if <em class="parameter"><code>dest</code></em> is to be ignored.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<span class="type">TRUE</span> if this destination should be ignored, else <span class="type">FALSE</span>.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-set-ignored"></a><h3>e_destination_set_ignored ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_set_ignored           (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> ignored</code></em>);</pre>
<p>
Set the ignore flag on a <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>ignored</code></em> :</span></p></td>
<td>
<span class="type">TRUE</span> if this <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> should be ignored.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-set-html-mail-pref"></a><h3>e_destination_set_html_mail_pref ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_set_html_mail_pref    (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> flag</code></em>);</pre>
<p>
Specifies whether <em class="parameter"><code>dest</code></em> wants to get mail formatted as HTML.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>flag</code></em> :</span></p></td>
<td>whether the destination wants HTML mail</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-get-html-mail-pref"></a><h3>e_destination_get_html_mail_pref ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            e_destination_get_html_mail_pref    (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Check if <em class="parameter"><code>dest</code></em> wants to get mail formatted as HTML.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<code class="literal">TRUE</code> if destination wants HTML, <code class="literal">FALSE</code> if not.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-is-auto-recipient"></a><h3>e_destination_is_auto_recipient ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>            e_destination_is_auto_recipient     (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Checks if <em class="parameter"><code>dest</code></em> is flagged as an automatic recipient, meaning
it was not explicitly specified by the user. This can be used
to hide it from some UI elements.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<code class="literal">TRUE</code> if destination is an auto recipient, <code class="literal">FALSE</code> otherwise.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-set-auto-recipient"></a><h3>e_destination_set_auto_recipient ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_set_auto_recipient    (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> value</code></em>);</pre>
<p>
Sets the flag indicating if <em class="parameter"><code>dest</code></em> is an automatic recipient, meaning
it was not explicitly specified by the user. This can be used
to hide it from some UI elements.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
<td>the auto recipient flag</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-set-raw"></a><h3>e_destination_set_raw ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_set_raw               (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code>const <span class="type">gchar</span> *raw</code></em>);</pre>
<p>
Sets <em class="parameter"><code>dest</code></em> to point to the name and e-mail address resulting from
parsing the supplied string. Useful for user input.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>raw</code></em> :</span></p></td>
<td>an unparsed string</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-get-textrep"></a><h3>e_destination_get_textrep ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> *       e_destination_get_textrep           (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><span class="type">gboolean</span> include_email</code></em>);</pre>
<p>
Generates a textual representation of <em class="parameter"><code>dest</code></em>, suitable for referring
to the destination during user interaction.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>include_email</code></em> :</span></p></td>
<td>whether to include the e-mail address</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A textual representation of the destination.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-get-textrepv"></a><h3>e_destination_get_textrepv ()</h3>
<pre class="programlisting"><span class="returnvalue">gchar</span> *             e_destination_get_textrepv          (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> **destv</code></em>);</pre>
<p>
Generates a joint text representation of all the <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
elements in <em class="parameter"><code>destv</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>destv</code></em> :</span></p></td>
<td>
<code class="literal">NULL</code>-terminated array of pointers to <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>The text representation of <em class="parameter"><code>destv</code></em>.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-export"></a><h3>e_destination_export ()</h3>
<pre class="programlisting"><span class="returnvalue">gchar</span> *             e_destination_export                (<em class="parameter"><code>const <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>);</pre>
<p>
Exports a destination to an XML document.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>An XML string, allocated with g_malloc.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-exportv"></a><h3>e_destination_exportv ()</h3>
<pre class="programlisting"><span class="returnvalue">gchar</span> *             e_destination_exportv               (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> **destv</code></em>);</pre>
<p>
Exports multiple <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> elements to a single XML document.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>destv</code></em> :</span></p></td>
<td>a <code class="literal">NULL</code>-terminated array of pointers to <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>An XML string, allocated with g_malloc.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-import"></a><h3>e_destination_import ()</h3>
<pre class="programlisting"><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="returnvalue">EDestination</span></a> *      e_destination_import                (<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);</pre>
<p>
Creates an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> from an XML document.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
<td>an XML string</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>An <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>, or <code class="literal">NULL</code> if the document was not
well-formed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-importv"></a><h3>e_destination_importv ()</h3>
<pre class="programlisting"><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="returnvalue">EDestination</span></a> **     e_destination_importv               (<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);</pre>
<p>
Creates an array of pointers to <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> elements
from an XML document.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
<td>an XML string</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A <code class="literal">NULL</code>-terminated array of pointers to
<a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> elements. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-export-to-vcard-attribute"></a><h3>e_destination_export_to_vcard_attribute ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_export_to_vcard_attribute
                                                        (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><a class="link" href="libebook-EVCard.html#EVCardAttribute" title="EVCardAttribute"><span class="type">EVCardAttribute</span></a> *attr</code></em>);</pre>
<p>
Exports the contact information from <em class="parameter"><code>dest</code></em> to parameters
and values in <em class="parameter"><code>attr</code></em>, suitable for an address book.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>attr</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EVCard.html#EVCardAttribute" title="EVCardAttribute"><span class="type">EVCardAttribute</span></a>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-freev"></a><h3>e_destination_freev ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_freev                 (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> **destv</code></em>);</pre>
<p>
Unrefs the elements of <em class="parameter"><code>destv</code></em> and frees <em class="parameter"><code>destv</code></em> itself.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>destv</code></em> :</span></p></td>
<td>a <code class="literal">NULL</code>-terminated array of pointers to <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="e-destination-set-book"></a><h3>e_destination_set_book ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                e_destination_set_book              (<em class="parameter"><code><a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a> *dest</code></em>,
                                                         <em class="parameter"><code><a class="link" href="libebook-EBook.html#EBook" title="struct EBook"><span class="type">EBook</span></a> *book</code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">e_destination_set_book</code> has been deprecated since version 3.2 and should not be used in newly-written code. Use <a class="link" href="libebook-EDestination.html#e-destination-set-client" title="e_destination_set_client ()"><code class="function">e_destination_set_client()</code></a> instead.</p>
</div>
<p>
Specify the source <em class="parameter"><code>dest</code></em>'s contact comes from. This is useful
if you need to update the contact later.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EDestination.html#EDestination" title="struct EDestination"><span class="type">EDestination</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>book</code></em> :</span></p></td>
<td>an <a class="link" href="libebook-EBook.html#EBook" title="struct EBook"><span class="type">EBook</span></a>
</td>
</tr>
</tbody>
</table></div>
</div>
</div>
</div>
<div class="footer">
<hr>
          Generated by GTK-Doc V1.18</div>
</body>
</html>