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 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>TelepathyQt4: Tp::Connection Class Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="1"> </td>
<td class="postheader" valign="center">
<a href="index.html">
<font color="#004faf">Home</font></a> ·
<a href="classes.html">
<font color="#004faf">All Classes</font></a> ·
<a href="namespaces.html">
<font color="#004faf">All Namespaces</font></a> ·
<a href="modules.html">
<font color="#004faf">Modules</font></a> ·
<a href="functions.html">
<font color="#004faf">Functions</font></a> ·
<a href="files.html">
<font color="#004faf">Files</font></a>
</td>
</tr>
</table>
</body>
</html>
<!-- Generated by Doxygen 1.6.3 -->
<div class="navpath"><a class="el" href="namespaceTp.html">Tp</a>::<a class="el" href="classTp_1_1Connection.html">Connection</a>
</div>
<div class="contents">
<h1>Tp::Connection Class Reference<br/>
<small>
[<a class="el" href="group__clientconn.html">Connection proxies</a>]</small>
</h1><!-- doxytag: class="Tp::Connection" --><!-- doxytag: inherits="Tp::StatefulDBusProxy,OptionalInterfaceFactory< Connection >,Tp::ReadyObject,Tp::RefCounted" -->
<p>The <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> class provides an object representing a Telepathy connection.
<a href="#_details">More...</a></p>
<p><code>#include <<a class="el" href="connection_8h_source.html">TelepathyQt4/Connection</a>></code></p>
<p>Inherits <a class="el" href="classTp_1_1StatefulDBusProxy.html">Tp::StatefulDBusProxy</a>, <a class="el" href="classTp_1_1OptionalInterfaceFactory.html">OptionalInterfaceFactory< Connection ></a>, <a class="el" href="classTp_1_1ReadyObject.html">Tp::ReadyObject</a>, and <a class="el" href="classTp_1_1RefCounted.html">Tp::RefCounted</a>.</p>
<p><a href="classTp_1_1Connection-members.html">List of all members.</a></p>
<h2>Public Types</h2>
<ul>
<li>enum <a class="el" href="classTp_1_1Connection.html#a958c482d2d9b189175c8733bc3503814">Status</a> { <a class="el" href="classTp_1_1Connection.html#a958c482d2d9b189175c8733bc3503814a4529d8c6605f9323262d9e2fb7496bfc">StatusDisconnected</a>,
<a class="el" href="classTp_1_1Connection.html#a958c482d2d9b189175c8733bc3503814a43e26091d27974ffc1449db9612537f0">StatusConnecting</a>,
<a class="el" href="classTp_1_1Connection.html#a958c482d2d9b189175c8733bc3503814a7bca759a3f8cb2b49345fe52035dfe6e">StatusConnected</a>,
<a class="el" href="classTp_1_1Connection.html#a958c482d2d9b189175c8733bc3503814a48b212c22b26ac3936eb424ca00237f8">StatusUnknown</a>
}
</ul>
<h2>Signals</h2>
<ul>
<li>void <a class="el" href="classTp_1_1Connection.html#a922ff28f2780d01b7dcdfdd6bb03c08a">statusChanged</a> (<a class="el" href="classTp_1_1Connection.html#a958c482d2d9b189175c8733bc3503814">Tp::Connection::Status</a> newStatus, Tp::ConnectionStatusReason newStatusReason)
<li>void <a class="el" href="classTp_1_1Connection.html#a410f3768d95dce2efa21bca2e500673a">selfHandleChanged</a> (uint newHandle)
<li>void <a class="el" href="classTp_1_1Connection.html#ae4abf99523e737b183858b525410461b">selfContactChanged</a> ()
<li>void <a class="el" href="classTp_1_1Connection.html#ab050d0607f1d1cd1a826aa7d9cf349a0">accountBalanceChanged</a> (const Tp::CurrencyAmount &accountBalance)
</ul>
<h2>Public Member Functions</h2>
<ul>
<li>virtual <a class="el" href="classTp_1_1Connection.html#ac0926851c142146c0bd1cd3b95b76cfb">~Connection</a> ()
<li><a class="el" href="classTp_1_1Connection.html#a958c482d2d9b189175c8733bc3503814">Status</a> <a class="el" href="classTp_1_1Connection.html#a9c218b158efd42875e3988aa88e434c0">status</a> () const
<li>ConnectionStatusReason <a class="el" href="classTp_1_1Connection.html#aca21b3cfa48fade2023c37165fb2de79">statusReason</a> () const
<li>uint <a class="el" href="classTp_1_1Connection.html#a8712aa8d00be6dd5d5e897147fb7bd2e">selfHandle</a> () const
<li><a class="el" href="namespaceTp.html#a8851d7a4827022bfff3c1b15320a0289">ContactPtr</a> <a class="el" href="classTp_1_1Connection.html#a359f35737ac7afac5b6575de3059c5be">selfContact</a> () const
<li>SimpleStatusSpecMap <a class="el" href="classTp_1_1Connection.html#aebdba929feed5353f8abef182ea77dba">allowedPresenceStatuses</a> () const
<li><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * <a class="el" href="classTp_1_1Connection.html#a7e7318545604e4acfb5b11a25e9388f0">setSelfPresence</a> (const QString &status, const QString &statusMessage)
<li>CurrencyAmount <a class="el" href="classTp_1_1Connection.html#aaf468455c540234631a358715b24acf7">accountBalance</a> () const
<li><a class="el" href="classTp_1_1ConnectionCapabilities.html">ConnectionCapabilities</a> * <a class="el" href="classTp_1_1Connection.html#abc5fd9063c8e6c8c3124189ae841cbd5">capabilities</a> () const
<li><a class="el" href="classTp_1_1PendingChannel.html">PendingChannel</a> * <a class="el" href="classTp_1_1Connection.html#a31c5ad4304cbfffe526d65cfed818f84">createChannel</a> (const QVariantMap &request)
<li><a class="el" href="classTp_1_1PendingChannel.html">PendingChannel</a> * <a class="el" href="classTp_1_1Connection.html#aa9dca10748879825cb2fadad56075d90">ensureChannel</a> (const QVariantMap &request)
<li><a class="el" href="classTp_1_1PendingReady.html">PendingReady</a> * <a class="el" href="classTp_1_1Connection.html#ab087a0300b906d1c0f6a0be1a04fd5cf">requestConnect</a> (const <a class="el" href="classTp_1_1Features.html">Features</a> &requestedFeatures=<a class="el" href="classTp_1_1Features.html">Features</a>())
<li><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * <a class="el" href="classTp_1_1Connection.html#a4b1fbedfc7250e8b43b4c7c2398e4a34">requestDisconnect</a> ()
<li><a class="el" href="classTp_1_1PendingHandles.html">PendingHandles</a> * <a class="el" href="classTp_1_1Connection.html#ace52d32457f85c93d5836873b98d90f7">requestHandles</a> (uint handleType, const QStringList &names)
<li><a class="el" href="classTp_1_1PendingHandles.html">PendingHandles</a> * <a class="el" href="classTp_1_1Connection.html#a66b465f855d0094bb9077fe56c3bb74b">referenceHandles</a> (uint handleType, const UIntList &handles)
<li><a class="el" href="classTp_1_1PendingContactAttributes.html">PendingContactAttributes</a> * <a class="el" href="classTp_1_1Connection.html#a8e1f5c9531963e0ee38a8ed6915d0b05">contactAttributes</a> (const UIntList &handles, const QStringList &interfaces, bool reference=true)
<li>QStringList <a class="el" href="classTp_1_1Connection.html#a0e0d94cc74ef1f57a4c044e375931d16">contactAttributeInterfaces</a> () const
<li><a class="el" href="classTp_1_1ContactManager.html">ContactManager</a> * <a class="el" href="classTp_1_1Connection.html#a6fc48b83692cef002a22f1df3ea7bea5">contactManager</a> () const
<li>Client::DBus::PropertiesInterface * <a class="el" href="classTp_1_1Connection.html#a66ebe758c14cf625ca7e0abf3fca1a92">propertiesInterface</a> () const
<li>Client::ConnectionInterfaceAliasingInterface * <a class="el" href="classTp_1_1Connection.html#ae0dcd286575763e1a2ee8e73a08a1938">aliasingInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfaceAnonymityInterface * <a class="el" href="classTp_1_1Connection.html#ad543cacee4dacfdc1ba7bd84e109ee87">anonymityInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfaceAvatarsInterface * <a class="el" href="classTp_1_1Connection.html#a94e07c2a20a05e8d069bac8bb8cb70e1">avatarsInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfaceCapabilitiesInterface * <a class="el" href="classTp_1_1Connection.html#af03e6a30750680358efef31e96abc7ea">capabilitiesInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfaceContactCapabilitiesInterface * <a class="el" href="classTp_1_1Connection.html#abcfbe4cd2f4c5a0ee19ff28e8768ebe2">contactCapabilitiesInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfaceLocationInterface * <a class="el" href="classTp_1_1Connection.html#a62e46a08aa6e6a0a13f0391a1d83efe2">locationInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfaceContactInfoInterface * <a class="el" href="classTp_1_1Connection.html#a2beb4d289a4e79f43200c793c0a1631e">contactInfoInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfacePresenceInterface * <a class="el" href="classTp_1_1Connection.html#a2a8bc7a30eced75ee9e347aaee4178ec">presenceInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfaceServicePointInterface * <a class="el" href="classTp_1_1Connection.html#a30b72213bfedf0fb88547d20e06bd9b9">servicePointInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfaceSimplePresenceInterface * <a class="el" href="classTp_1_1Connection.html#a53b93529527de43a56b4d9083a896a94">simplePresenceInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfaceRequestsInterface * <a class="el" href="classTp_1_1Connection.html#a75180ddefce1c5f79250b4915b2eb841">requestsInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfaceBalanceInterface * <a class="el" href="classTp_1_1Connection.html#acda16e8e2f549ab7fa48038da765d6e4">balanceInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
<li>Client::ConnectionInterfaceCellularInterface * <a class="el" href="classTp_1_1Connection.html#a09deddf741648a6a682ebe0f693f91cd">cellularInterface</a> (<a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> check=CheckInterfaceSupported) const
</ul>
<h2>Static Public Member Functions</h2>
<ul>
<li>static <a class="el" href="classTp_1_1SharedPtr.html">ConnectionPtr</a> <a class="el" href="classTp_1_1Connection.html#a7be5ccb81d012e8c17d30ca88aac5b1c">create</a> (const QString &busName, const QString &objectPath)
<li>static <a class="el" href="classTp_1_1SharedPtr.html">ConnectionPtr</a> <a class="el" href="classTp_1_1Connection.html#a3a0ffcbb3470cbfde460011d2bd14416">create</a> (const QDBusConnection &bus, const QString &busName, const QString &objectPath)
</ul>
<h2>Static Public Attributes</h2>
<ul>
<li>static const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#abc270e079265fcbec7e422d002523298">FeatureCore</a>
<li>static const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#af1a6dedc304a3b68d04dc191e20203c6">FeatureSelfContact</a>
<li>static const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#af832a6ba64e4811a2ff364c755493afb">FeatureSimplePresence</a>
<li>static const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#a3dac123c3d7845db5ecd423fcd733323">FeatureRoster</a>
<li>static const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#adf6eab299cb7a0186ded6074e57fb5d0">FeatureRosterGroups</a>
<li>static const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#a6053a35e135d08ed9b7f28ea7a86558e">FeatureAccountBalance</a>
</ul>
<h2>Protected Member Functions</h2>
<ul>
<li><a class="el" href="classTp_1_1Connection.html#a5bfc4388eeba5f8b1afe9439300e18b1">Connection</a> (const QString &busName, const QString &objectPath)
<li><a class="el" href="classTp_1_1Connection.html#ab6a3305d42a501a647cb8129dba42d41">Connection</a> (const QDBusConnection &bus, const QString &busName, const QString &objectPath)
<li>Client::ConnectionInterface * <a class="el" href="classTp_1_1Connection.html#a414d50a08898a3f52642f37ae50c202e">baseInterface</a> () const
</ul>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<p>The <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> class provides an object representing a Telepathy connection. </p>
<p><a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> adds the following features compared to using Client::ConnectionInterface directly: </p>
<ul>
<li>
Status tracking </li>
<li>
Getting the list of supported interfaces automatically </li>
<li>
Getting the valid presence statuses automatically </li>
</ul>
<p>This models a connection to a single user account on a communication service. Its basic capability is to provide the facility to request and receive channels of differing types (such as text channels or streaming media channels) which are used to carry out further communication.</p>
<p>Contacts, and server-stored lists (such as subscribed contacts, block lists, or allow lists) on a service are all represented using the <a class="el" href="classTp_1_1ContactManager.html" title="The ContactManager class is responsible for managing contacts.">ContactManager</a> object on the connection, which is valid only for the lifetime of the connection object.</p>
<p>The remote object state accessor functions on this object (<a class="el" href="classTp_1_1Connection.html#a9c218b158efd42875e3988aa88e434c0">status()</a>, <a class="el" href="classTp_1_1Connection.html#aca21b3cfa48fade2023c37165fb2de79">statusReason()</a>, and so on) don't make any DBus calls; instead, they return values cached from a previous introspection run. The introspection process populates their values in the most efficient way possible based on what the service implements. Their return value is mostly undefined until the introspection process is completed, i.e. <a class="el" href="classTp_1_1ReadyObject.html#a344fc63eaef5278cbf938eaa1ed4c635">isReady()</a> returns true. See the individual accessor descriptions for more details. A status change to StatusConnected indicates that the introspection process is finished</p>
<p>Signals are emitted to indicate that properties have changed for example <a class="el" href="classTp_1_1Connection.html#a922ff28f2780d01b7dcdfdd6bb03c08a">statusChanged()</a>(), <a class="el" href="classTp_1_1Connection.html#ae4abf99523e737b183858b525410461b">selfContactChanged()</a>, etc.</p>
<h2><a class="anchor" id="conn_usage_sec">
Usage</a></h2>
<h3><a class="anchor" id="conn_create_sec">
Creating a connection object</a></h3>
<p>The easiest way to create connection objects is through <a class="el" href="classTp_1_1Account.html" title="The Account class provides an object representing a Telepathy account.">Account</a>. One can just use the <a class="el" href="classTp_1_1Account.html#af2a055b749ac0d96b0153d3a0cf35fd9">Account::connection</a> method to get an account active connection.</p>
<p>If you already know the object path, you can just call <a class="el" href="classTp_1_1Connection.html#a7be5ccb81d012e8c17d30ca88aac5b1c">create()</a>. For example:</p>
<div class="fragment"><pre class="fragment"> <a class="code" href="namespaceTp.html#a225af181e21bd9c2fb5ab3394d4fc4ef">ConnectionPtr</a> conn = <a class="code" href="classTp_1_1Connection.html#a7be5ccb81d012e8c17d30ca88aac5b1c">Connection::create</a>(busName, objectPath);
</pre></div><p>A ConnectionPtr object is returned, which will automatically keep track of object lifetime.</p>
<p>You can also provide a D-Bus connection as a QDBusConnection:</p>
<div class="fragment"><pre class="fragment"> <a class="code" href="namespaceTp.html#a225af181e21bd9c2fb5ab3394d4fc4ef">ConnectionPtr</a> conn = <a class="code" href="classTp_1_1Connection.html#a7be5ccb81d012e8c17d30ca88aac5b1c">Connection::create</a>(QDBusConnection::sessionBus(),
busName, objectPath);
</pre></div><h3><a class="anchor" id="conn_ready_sec">
Making connection ready to use</a></h3>
<p>A <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> object needs to become ready before usage, meaning that the introspection process finished and the object accessors can be used.</p>
<p>To make the object ready, use <a class="el" href="classTp_1_1ReadyObject.html#ac02393f99a46725a4ffee32caaec13cc">becomeReady()</a> and wait for the <a class="el" href="classTp_1_1PendingOperation.html#addbb8c4462019ffdf19095a31da0cc7a">PendingOperation::finished()</a> signal to be emitted.</p>
<div class="fragment"><pre class="fragment"> <span class="keyword">class </span>MyClass : <span class="keyword">public</span> QObject
{
QOBJECT
<span class="keyword">public</span>:
MyClass(QObject *parent = 0);
~MyClass() { }
<span class="keyword">private</span> Q_SLOTS:
<span class="keywordtype">void</span> onConnectionReady(<a class="code" href="classTp_1_1PendingOperation.html" title="Abstract base class for pending asynchronous operations.">Tp::PendingOperation</a>*);
<span class="keyword">private</span>:
<a class="code" href="namespaceTp.html#a225af181e21bd9c2fb5ab3394d4fc4ef">ConnectionPtr</a> conn;
};
MyClass::MyClass(<span class="keyword">const</span> QString &busName, <span class="keyword">const</span> QString &objectPath,
QObject *parent)
: QObject(parent)
conn(<a class="code" href="classTp_1_1Connection.html#a5bfc4388eeba5f8b1afe9439300e18b1">Connection</a>::<a class="code" href="classTp_1_1Connection.html#a7be5ccb81d012e8c17d30ca88aac5b1c">create</a>(busName, objectPath))
{
<span class="comment">// connect and become ready</span>
connect(conn->requestConnect(),
SIGNAL(finished(<a class="code" href="classTp_1_1PendingOperation.html" title="Abstract base class for pending asynchronous operations.">Tp::PendingOperation</a>*)),
SLOT(onConnectionReady(<a class="code" href="classTp_1_1PendingOperation.html" title="Abstract base class for pending asynchronous operations.">Tp::PendingOperation</a>*)));
}
<span class="keywordtype">void</span> MyClass::onConnectionReady(<a class="code" href="classTp_1_1PendingOperation.html" title="Abstract base class for pending asynchronous operations.">Tp::PendingOperation</a> *op)
{
<span class="keywordflow">if</span> (op-><a class="code" href="classTp_1_1PendingOperation.html#a24440bb6d849af38b6e439cdca9e0707">isError</a>()) {
qWarning() << <span class="stringliteral">"Account cannot become ready:"</span> <<
op-><a class="code" href="classTp_1_1PendingOperation.html#a59a70ec4857b40d3355c2f336229216a">errorName</a>() << <span class="stringliteral">"-"</span> << op-><a class="code" href="classTp_1_1PendingOperation.html#ab17664ef188c153aed9fdac478ee8c76">errorMessage</a>();
<span class="keywordflow">return</span>;
}
<span class="comment">// Connection is now ready</span>
}
</pre></div><p>See <a class="el" href="async__model.html">Asynchronous Object Model</a>, <a class="el" href="shared__ptr.html">Shared Pointer Usage</a> </p>
<hr/><h2>Member Enumeration Documentation</h2>
<a class="anchor" id="a958c482d2d9b189175c8733bc3503814"></a><!-- doxytag: member="Tp::Connection::Status" ref="a958c482d2d9b189175c8733bc3503814" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classTp_1_1Connection.html#a958c482d2d9b189175c8733bc3503814">Tp::Connection::Status</a></td>
</tr>
</table>
</div>
<div class="memdoc">
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="a958c482d2d9b189175c8733bc3503814a4529d8c6605f9323262d9e2fb7496bfc"></a><!-- doxytag: member="StatusDisconnected" ref="a958c482d2d9b189175c8733bc3503814a4529d8c6605f9323262d9e2fb7496bfc" args="" -->StatusDisconnected</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a958c482d2d9b189175c8733bc3503814a43e26091d27974ffc1449db9612537f0"></a><!-- doxytag: member="StatusConnecting" ref="a958c482d2d9b189175c8733bc3503814a43e26091d27974ffc1449db9612537f0" args="" -->StatusConnecting</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a958c482d2d9b189175c8733bc3503814a7bca759a3f8cb2b49345fe52035dfe6e"></a><!-- doxytag: member="StatusConnected" ref="a958c482d2d9b189175c8733bc3503814a7bca759a3f8cb2b49345fe52035dfe6e" args="" -->StatusConnected</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="a958c482d2d9b189175c8733bc3503814a48b212c22b26ac3936eb424ca00237f8"></a><!-- doxytag: member="StatusUnknown" ref="a958c482d2d9b189175c8733bc3503814a48b212c22b26ac3936eb424ca00237f8" args="" -->StatusUnknown</em> </td><td>
</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" id="ac0926851c142146c0bd1cd3b95b76cfb"></a><!-- doxytag: member="Tp::Connection::~Connection" ref="ac0926851c142146c0bd1cd3b95b76cfb" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Tp::Connection::~Connection </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Class destructor. </p>
</div>
</div>
<a class="anchor" id="a5bfc4388eeba5f8b1afe9439300e18b1"></a><!-- doxytag: member="Tp::Connection::Connection" ref="a5bfc4388eeba5f8b1afe9439300e18b1" args="(const QString &busName, const QString &objectPath)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Tp::Connection::Connection </td>
<td>(</td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>busName</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>objectPath</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Construct a new connection object using QDBusConnection::sessionBus().</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>busName</em> </td><td>The connection's well-known bus name (sometimes called a "service name"). </td></tr>
<tr><td valign="top"></td><td valign="top"><em>objectPath</em> </td><td>The connection object path. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab6a3305d42a501a647cb8129dba42d41"></a><!-- doxytag: member="Tp::Connection::Connection" ref="ab6a3305d42a501a647cb8129dba42d41" args="(const QDBusConnection &bus, const QString &busName, const QString &objectPath)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Tp::Connection::Connection </td>
<td>(</td>
<td class="paramtype">const QDBusConnection & </td>
<td class="paramname"> <em>bus</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>busName</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>objectPath</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Construct a new connection object using the given .</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>bus</em> </td><td>QDBusConnection to use. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>busName</em> </td><td>The connection's well-known bus name (sometimes called a "service name"). </td></tr>
<tr><td valign="top"></td><td valign="top"><em>objectPath</em> </td><td>The connection object path. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a7be5ccb81d012e8c17d30ca88aac5b1c"></a><!-- doxytag: member="Tp::Connection::create" ref="a7be5ccb81d012e8c17d30ca88aac5b1c" args="(const QString &busName, const QString &objectPath)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1SharedPtr.html">ConnectionPtr</a> Tp::Connection::create </td>
<td>(</td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>busName</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>objectPath</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create a new connection object using QDBusConnection::sessionBus().</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>busName</em> </td><td>The connection well-known bus name (sometimes called a "service name"). </td></tr>
<tr><td valign="top"></td><td valign="top"><em>objectPath</em> </td><td>The connection object path. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A ConnectionPtr pointing to the newly created <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a3a0ffcbb3470cbfde460011d2bd14416"></a><!-- doxytag: member="Tp::Connection::create" ref="a3a0ffcbb3470cbfde460011d2bd14416" args="(const QDBusConnection &bus, const QString &busName, const QString &objectPath)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1SharedPtr.html">ConnectionPtr</a> Tp::Connection::create </td>
<td>(</td>
<td class="paramtype">const QDBusConnection & </td>
<td class="paramname"> <em>bus</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>busName</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>objectPath</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create a new connection object using the given <em>bus</em>.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>bus</em> </td><td>QDBusConnection to use. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>busName</em> </td><td>The connection well-known bus name (sometimes called a "service name"). </td></tr>
<tr><td valign="top"></td><td valign="top"><em>objectPath</em> </td><td>The connection object path. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A ConnectionPtr pointing to the newly created <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a9c218b158efd42875e3988aa88e434c0"></a><!-- doxytag: member="Tp::Connection::status" ref="a9c218b158efd42875e3988aa88e434c0" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1Connection.html#a958c482d2d9b189175c8733bc3503814">Connection::Status</a> Tp::Connection::status </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the status of this connection.</p>
<p>This method requires <a class="el" href="classTp_1_1Connection.html#abc270e079265fcbec7e422d002523298">Connection::FeatureCore</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The status of this connection, as defined in <a class="el" href="classTp_1_1Connection.html#a958c482d2d9b189175c8733bc3503814">Connection::Status</a>. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1Connection.html#a922ff28f2780d01b7dcdfdd6bb03c08a">statusChanged()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="aca21b3cfa48fade2023c37165fb2de79"></a><!-- doxytag: member="Tp::Connection::statusReason" ref="aca21b3cfa48fade2023c37165fb2de79" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">ConnectionStatusReason Tp::Connection::statusReason </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the reason for this connection's status (which is returned by <a class="el" href="classTp_1_1Connection.html#a9c218b158efd42875e3988aa88e434c0">status()</a>). The validity and change rules are the same as for <a class="el" href="classTp_1_1Connection.html#a9c218b158efd42875e3988aa88e434c0">status()</a>.</p>
<p>This method requires <a class="el" href="classTp_1_1Connection.html#abc270e079265fcbec7e422d002523298">Connection::FeatureCore</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The reason, as defined in ConnectionStatusReason. </dd></dl>
</div>
</div>
<a class="anchor" id="a8712aa8d00be6dd5d5e897147fb7bd2e"></a><!-- doxytag: member="Tp::Connection::selfHandle" ref="a8712aa8d00be6dd5d5e897147fb7bd2e" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">uint Tp::Connection::selfHandle </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the handle which represents the user on this connection, which will remain valid for the lifetime of this connection, or until a change in the user's identifier is signalled by the <a class="el" href="classTp_1_1Connection.html#a410f3768d95dce2efa21bca2e500673a">selfHandleChanged()</a> signal. If the connection is not yet in the StatusConnected state, the value of this property may be zero.</p>
<p>This method requires <a class="el" href="classTp_1_1Connection.html#abc270e079265fcbec7e422d002523298">Connection::FeatureCore</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Self handle. </dd></dl>
</div>
</div>
<a class="anchor" id="a359f35737ac7afac5b6575de3059c5be"></a><!-- doxytag: member="Tp::Connection::selfContact" ref="a359f35737ac7afac5b6575de3059c5be" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespaceTp.html#a8851d7a4827022bfff3c1b15320a0289">ContactPtr</a> Tp::Connection::selfContact </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the object that represents the contact of this connection.</p>
<p>This method requires <a class="el" href="classTp_1_1Connection.html#af1a6dedc304a3b68d04dc191e20203c6">Connection::FeatureSelfContact</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The connection self contact. </dd></dl>
</div>
</div>
<a class="anchor" id="aebdba929feed5353f8abef182ea77dba"></a><!-- doxytag: member="Tp::Connection::allowedPresenceStatuses" ref="aebdba929feed5353f8abef182ea77dba" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">SimpleStatusSpecMap Tp::Connection::allowedPresenceStatuses </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a dictionary of presence statuses valid for use in this connection.</p>
<p>The value may have changed arbitrarily during the time the <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> spends in status StatusConnecting, again staying fixed for the entire time in StatusConnected.</p>
<p>This method requires <a class="el" href="classTp_1_1Connection.html#af832a6ba64e4811a2ff364c755493afb">Connection::FeatureSimplePresence</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Dictionary from string identifiers to structs for each valid status. </dd></dl>
</div>
</div>
<a class="anchor" id="a7e7318545604e4acfb5b11a25e9388f0"></a><!-- doxytag: member="Tp::Connection::setSelfPresence" ref="a7e7318545604e4acfb5b11a25e9388f0" args="(const QString &status, const QString &statusMessage)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * Tp::Connection::setSelfPresence </td>
<td>(</td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>status</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>statusMessage</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the self presence status.</p>
<p><em>status</em> must be one of the allowed statuses returned by <a class="el" href="classTp_1_1Connection.html#aebdba929feed5353f8abef182ea77dba">allowedPresenceStatuses()</a>.</p>
<p>Note that clients SHOULD set the status message for the local user to the empty string, unless the user has actually provided a specific message (i.e. one that conveys more information than the Status).</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>status</em> </td><td>The desired status. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>statusMessage</em> </td><td>The desired status message. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classTp_1_1PendingOperation.html" title="Abstract base class for pending asynchronous operations.">PendingOperation</a> which will emit <a class="el" href="classTp_1_1PendingOperation.html#addbb8c4462019ffdf19095a31da0cc7a">PendingOperation::finished</a> when the call has finished.</dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1Connection.html#aebdba929feed5353f8abef182ea77dba">allowedPresenceStatuses()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="aaf468455c540234631a358715b24acf7"></a><!-- doxytag: member="Tp::Connection::accountBalance" ref="aaf468455c540234631a358715b24acf7" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">CurrencyAmount Tp::Connection::accountBalance </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the user's balance on the account corresponding to this connection. A negative amount may be possible on some services, and indicates that the user owes money to the service provider.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The user's balance. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1Connection.html#ab050d0607f1d1cd1a826aa7d9cf349a0">accountBalanceChanged()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="abc5fd9063c8e6c8c3124189ae841cbd5"></a><!-- doxytag: member="Tp::Connection::capabilities" ref="abc5fd9063c8e6c8c3124189ae841cbd5" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1ConnectionCapabilities.html">ConnectionCapabilities</a> * Tp::Connection::capabilities </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the capabilities that are expected to be available on this connection, i.e. those for which <a class="el" href="classTp_1_1Connection.html#a31c5ad4304cbfffe526d65cfed818f84">createChannel()</a> can reasonably be expected to succeed. User interfaces can use this information to show or hide UI components.</p>
<p>This property cannot change after the connection has gone to state() TpConnection_Status_Connected, so there is no change notification.</p>
<p>This method requires <a class="el" href="classTp_1_1Connection.html#abc270e079265fcbec7e422d002523298">Connection::FeatureCore</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>An object representing the connection capabilities or 0 if FeatureCore is not ready. </dd></dl>
</div>
</div>
<a class="anchor" id="a31c5ad4304cbfffe526d65cfed818f84"></a><!-- doxytag: member="Tp::Connection::createChannel" ref="a31c5ad4304cbfffe526d65cfed818f84" args="(const QVariantMap &request)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingChannel.html">PendingChannel</a> * Tp::Connection::createChannel </td>
<td>(</td>
<td class="paramtype">const QVariantMap & </td>
<td class="paramname"> <em>request</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Asynchronously creates a channel satisfying the given request.</p>
<p>The request MUST contain the following keys: org.freedesktop.Telepathy.Channel.ChannelType org.freedesktop.Telepathy.Channel.TargetHandleType</p>
<p>Upon completion, the reply to the request can be retrieved through the returned <a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a> object. The object also provides access to the parameters with which the call was made and a signal to connect to get notification of the request finishing processing. See the documentation for that class for more info.</p>
<p>The returned <a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a> object should be freed using its QObject::deleteLater() method after it is no longer used. However, all <a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a> objects resulting from requests to a particular <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> will be freed when the <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> itself is freed. Conversely, this means that the <a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a> object should not be used after the <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> is destroyed.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>request</em> </td><td>A dictionary containing the desirable properties. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a newly constructed <a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a> object, tracking the progress of the request. </dd></dl>
</div>
</div>
<a class="anchor" id="aa9dca10748879825cb2fadad56075d90"></a><!-- doxytag: member="Tp::Connection::ensureChannel" ref="aa9dca10748879825cb2fadad56075d90" args="(const QVariantMap &request)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingChannel.html">PendingChannel</a> * Tp::Connection::ensureChannel </td>
<td>(</td>
<td class="paramtype">const QVariantMap & </td>
<td class="paramname"> <em>request</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Asynchronously ensures a channel exists satisfying the given request.</p>
<p>The request MUST contain the following keys: org.freedesktop.Telepathy.Channel.ChannelType org.freedesktop.Telepathy.Channel.TargetHandleType</p>
<p>Upon completion, the reply to the request can be retrieved through the returned <a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a> object. The object also provides access to the parameters with which the call was made and a signal to connect to get notification of the request finishing processing. See the documentation for that class for more info.</p>
<p>The returned <a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a> object should be freed using its QObject::deleteLater() method after it is no longer used. However, all <a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a> objects resulting from requests to a particular <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> will be freed when the <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> itself is freed. Conversely, this means that the <a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a> object should not be used after the <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> is destroyed.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>request</em> </td><td>A dictionary containing the desirable properties. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a newly constructed <a class="el" href="classTp_1_1PendingChannel.html" title="Class containing the parameters of and the reply to an asynchronous channel request...">PendingChannel</a> object, tracking the progress of the request. </dd></dl>
</div>
</div>
<a class="anchor" id="ab087a0300b906d1c0f6a0be1a04fd5cf"></a><!-- doxytag: member="Tp::Connection::requestConnect" ref="ab087a0300b906d1c0f6a0be1a04fd5cf" args="(const Features &requestedFeatures=Features())" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingReady.html">PendingReady</a> * Tp::Connection::requestConnect </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1Features.html">Features</a> & </td>
<td class="paramname"> <em>requestedFeatures</em> = <code><a class="el" href="classTp_1_1Features.html">Features</a>()</code></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Start an asynchronous request that the connection be connected.</p>
<p>The returned <a class="el" href="classTp_1_1PendingOperation.html" title="Abstract base class for pending asynchronous operations.">PendingOperation</a> will finish successfully when the connection has reached StatusConnected and the requested <em>features</em> are all ready, or finish with an error if a fatal error occurs during that process.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>requestedFeatures</em> </td><td>The features which should be enabled </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classTp_1_1PendingReady.html" title="Class containing the features requested and the reply to a request for an object...">PendingReady</a> object which will emit finished when the <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> has reached StatusConnected, and initial setup for basic functionality, plus the given features, has succeeded or failed </dd></dl>
</div>
</div>
<a class="anchor" id="a4b1fbedfc7250e8b43b4c7c2398e4a34"></a><!-- doxytag: member="Tp::Connection::requestDisconnect" ref="a4b1fbedfc7250e8b43b4c7c2398e4a34" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * Tp::Connection::requestDisconnect </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Start an asynchronous request that the connection be disconnected. The returned <a class="el" href="classTp_1_1PendingOperation.html" title="Abstract base class for pending asynchronous operations.">PendingOperation</a> object will signal the success or failure of this request; under normal circumstances, it can be expected to succeed.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PendingOperation, which will emit finished when the request finishes. </dd></dl>
</div>
</div>
<a class="anchor" id="ace52d32457f85c93d5836873b98d90f7"></a><!-- doxytag: member="Tp::Connection::requestHandles" ref="ace52d32457f85c93d5836873b98d90f7" args="(uint handleType, const QStringList &names)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingHandles.html">PendingHandles</a> * Tp::Connection::requestHandles </td>
<td>(</td>
<td class="paramtype">uint </td>
<td class="paramname"> <em>handleType</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QStringList & </td>
<td class="paramname"> <em>names</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Request handles of the given type for the given entities (contacts, rooms, lists, etc.).</p>
<p>Upon completion, the reply to the request can be retrieved through the returned <a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a> object. The object also provides access to the parameters with which the call was made and a signal to connect to to get notification of the request finishing processing. See the documentation for that class for more info.</p>
<p>The returned <a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a> object should be freed using its QObject::deleteLater() method after it is no longer used. However, all <a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a> objects resulting from requests to a particular <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> will be freed when the <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> itself is freed. Conversely, this means that the <a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a> object should not be used after the <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> is destroyed.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>handleType</em> </td><td>Type for the handles to request, as specified in HandleType. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>names</em> </td><td>Names of the entities to request handles for. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a newly constructed <a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a> object, tracking the progress of the request. </dd></dl>
</div>
</div>
<a class="anchor" id="a66b465f855d0094bb9077fe56c3bb74b"></a><!-- doxytag: member="Tp::Connection::referenceHandles" ref="a66b465f855d0094bb9077fe56c3bb74b" args="(uint handleType, const UIntList &handles)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingHandles.html">PendingHandles</a> * Tp::Connection::referenceHandles </td>
<td>(</td>
<td class="paramtype">uint </td>
<td class="paramname"> <em>handleType</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const UIntList & </td>
<td class="paramname"> <em>handles</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Request a reference to the given handles. Handles not explicitly requested (via <a class="el" href="classTp_1_1Connection.html#ace52d32457f85c93d5836873b98d90f7">requestHandles()</a>) but eg. observed in a signal need to be referenced to guarantee them staying valid.</p>
<p>Upon completion, the reply to the operation can be retrieved through the returned <a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a> object. The object also provides access to the parameters with which the call was made and a signal to connect to to get notification of the request finishing processing. See the documentation for that class for more info.</p>
<p>The returned <a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a> object should be freed using its QObject::deleteLater() method after it is no longer used. However, all <a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a> objects resulting from requests to a particular <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> will be freed when the <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> itself is freed. Conversely, this means that the <a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a> object should not be used after the <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> is destroyed.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>handleType</em> </td><td>Type of the handles given, as specified in HandleType. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>handles</em> </td><td>Handles to request a reference to. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a newly constructed <a class="el" href="classTp_1_1PendingHandles.html" title="Class containing the parameters of and the reply to an asynchronous handle request/hold...">PendingHandles</a> object, tracking the progress of the request. </dd></dl>
</div>
</div>
<a class="anchor" id="a8e1f5c9531963e0ee38a8ed6915d0b05"></a><!-- doxytag: member="Tp::Connection::contactAttributes" ref="a8e1f5c9531963e0ee38a8ed6915d0b05" args="(const UIntList &handles, const QStringList &interfaces, bool reference=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingContactAttributes.html">PendingContactAttributes</a> * Tp::Connection::contactAttributes </td>
<td>(</td>
<td class="paramtype">const UIntList & </td>
<td class="paramname"> <em>handles</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QStringList & </td>
<td class="paramname"> <em>interfaces</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>reference</em> = <code>true</code></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Requests attributes for contacts. Optionally, the handles of the contacts will be referenced automatically. Essentially, this method wraps ConnectionInterfaceContactsInterface::GetContactAttributes(), integrating it with the rest of the handle-referencing machinery.</p>
<p>Upon completion, the reply to the request can be retrieved through the returned <a class="el" href="classTp_1_1PendingContactAttributes.html" title="Class containing the parameters of and the reply to an asynchronous request for raw...">PendingContactAttributes</a> object. The object also provides access to the parameters with which the call was made and a signal to connect to to get notification of the request finishing processing. See the documentation for that class for more info.</p>
<p>If the remote object doesn't support the Contacts interface (as signified by the list returned by <a class="el" href="classTp_1_1OptionalInterfaceFactory.html#afa2877d62298299d006b46d77fecc09e">interfaces()</a> not containing TELEPATHY_INTERFACE_CONNECTION_INTERFACE_CONTACTS), the returned <a class="el" href="classTp_1_1PendingContactAttributes.html" title="Class containing the parameters of and the reply to an asynchronous request for raw...">PendingContactAttributes</a> instance will fail instantly with the error TELEPATHY_ERROR_NOT_IMPLEMENTED.</p>
<p>Similarly, if the connection isn't both connected and ready (<code><a class="el" href="classTp_1_1Connection.html#a9c218b158efd42875e3988aa88e434c0">status()</a> == StatusConnected && <a class="el" href="classTp_1_1ReadyObject.html#a344fc63eaef5278cbf938eaa1ed4c635">isReady()</a></code>), the returned <a class="el" href="classTp_1_1PendingContactAttributes.html" title="Class containing the parameters of and the reply to an asynchronous request for raw...">PendingContactAttributes</a> instance will fail instantly with the error TELEPATHY_ERROR_NOT_AVAILABLE.</p>
<p>This method requires <a class="el" href="classTp_1_1Connection.html#abc270e079265fcbec7e422d002523298">Connection::FeatureCore</a> to be enabled.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1PendingContactAttributes.html" title="Class containing the parameters of and the reply to an asynchronous request for raw...">PendingContactAttributes</a></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>handles</em> </td><td>A list of handles of type HandleTypeContact </td></tr>
<tr><td valign="top"></td><td valign="top"><em>interfaces</em> </td><td>D-Bus interfaces for which the client requires information </td></tr>
<tr><td valign="top"></td><td valign="top"><em>reference</em> </td><td>Whether the handles should additionally be referenced. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a newly constructed <a class="el" href="classTp_1_1PendingContactAttributes.html" title="Class containing the parameters of and the reply to an asynchronous request for raw...">PendingContactAttributes</a>, tracking the progress of the request. </dd></dl>
</div>
</div>
<a class="anchor" id="a0e0d94cc74ef1f57a4c044e375931d16"></a><!-- doxytag: member="Tp::Connection::contactAttributeInterfaces" ref="a0e0d94cc74ef1f57a4c044e375931d16" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">QStringList Tp::Connection::contactAttributeInterfaces </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a6fc48b83692cef002a22f1df3ea7bea5"></a><!-- doxytag: member="Tp::Connection::contactManager" ref="a6fc48b83692cef002a22f1df3ea7bea5" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1ContactManager.html">ContactManager</a> * Tp::Connection::contactManager </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the <a class="el" href="classTp_1_1ContactManager.html" title="The ContactManager class is responsible for managing contacts.">ContactManager</a> object for this connection.</p>
<p>The contact manager is responsible for all contact handling in this connection, including adding, removing, authorizing, etc.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A pointer to this connection <a class="el" href="classTp_1_1ContactManager.html" title="The ContactManager class is responsible for managing contacts.">ContactManager</a> object. The returned object is owned by this connection and should not be freed. </dd></dl>
</div>
</div>
<a class="anchor" id="a66ebe758c14cf625ca7e0abf3fca1a92"></a><!-- doxytag: member="Tp::Connection::propertiesInterface" ref="a66ebe758c14cf625ca7e0abf3fca1a92" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DBus::PropertiesInterface * Tp::Connection::propertiesInterface </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Convenience function for getting a Properties interface proxy. The Properties interface is not necessarily reported by the services, so a <code>check</code> parameter is not provided, and the interface is always assumed to be present.</p>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a50d2019f8aa967d6482d9fa9d34c66f4">optionalInterface()</a></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>optionalInterface<DBus::PropertiesInterface>(BypassInterfaceCheck)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="ae0dcd286575763e1a2ee8e73a08a1938"></a><!-- doxytag: member="Tp::Connection::aliasingInterface" ref="ae0dcd286575763e1a2ee8e73a08a1938" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">ConnectionInterfaceAliasingInterface * Tp::Connection::aliasingInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Convenience function for getting an Aliasing interface proxy.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>check</em> </td><td>Passed to <a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a50d2019f8aa967d6482d9fa9d34c66f4">optionalInterface()</a> </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>optionalInterface<ConnectionInterfaceAliasingInterface>(check)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="ad543cacee4dacfdc1ba7bd84e109ee87"></a><!-- doxytag: member="Tp::Connection::anonymityInterface" ref="ad543cacee4dacfdc1ba7bd84e109ee87" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Client::ConnectionInterfaceAnonymityInterface* Tp::Connection::anonymityInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a94e07c2a20a05e8d069bac8bb8cb70e1"></a><!-- doxytag: member="Tp::Connection::avatarsInterface" ref="a94e07c2a20a05e8d069bac8bb8cb70e1" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">ConnectionInterfaceAvatarsInterface * Tp::Connection::avatarsInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Convenience function for getting an Avatars interface proxy.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>check</em> </td><td>Passed to <a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a50d2019f8aa967d6482d9fa9d34c66f4">optionalInterface()</a> </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>optionalInterface<ConnectionInterfaceAvatarsInterface>(check)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="af03e6a30750680358efef31e96abc7ea"></a><!-- doxytag: member="Tp::Connection::capabilitiesInterface" ref="af03e6a30750680358efef31e96abc7ea" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">ConnectionInterfaceCapabilitiesInterface * Tp::Connection::capabilitiesInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Convenience function for getting a Capabilities interface proxy.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>check</em> </td><td>Passed to <a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a50d2019f8aa967d6482d9fa9d34c66f4">optionalInterface()</a> </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>optionalInterface<ConnectionInterfaceCapabilitiesInterface>(check)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="abcfbe4cd2f4c5a0ee19ff28e8768ebe2"></a><!-- doxytag: member="Tp::Connection::contactCapabilitiesInterface" ref="abcfbe4cd2f4c5a0ee19ff28e8768ebe2" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Client::ConnectionInterfaceContactCapabilitiesInterface* Tp::Connection::contactCapabilitiesInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a62e46a08aa6e6a0a13f0391a1d83efe2"></a><!-- doxytag: member="Tp::Connection::locationInterface" ref="a62e46a08aa6e6a0a13f0391a1d83efe2" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Client::ConnectionInterfaceLocationInterface* Tp::Connection::locationInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a2beb4d289a4e79f43200c793c0a1631e"></a><!-- doxytag: member="Tp::Connection::contactInfoInterface" ref="a2beb4d289a4e79f43200c793c0a1631e" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Client::ConnectionInterfaceContactInfoInterface* Tp::Connection::contactInfoInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a2a8bc7a30eced75ee9e347aaee4178ec"></a><!-- doxytag: member="Tp::Connection::presenceInterface" ref="a2a8bc7a30eced75ee9e347aaee4178ec" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">ConnectionInterfacePresenceInterface * Tp::Connection::presenceInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Convenience function for getting a Presence interface proxy.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>check</em> </td><td>Passed to <a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a50d2019f8aa967d6482d9fa9d34c66f4">optionalInterface()</a> </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>optionalInterface<ConnectionInterfacePresenceInterface>(check)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a30b72213bfedf0fb88547d20e06bd9b9"></a><!-- doxytag: member="Tp::Connection::servicePointInterface" ref="a30b72213bfedf0fb88547d20e06bd9b9" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Client::ConnectionInterfaceServicePointInterface* Tp::Connection::servicePointInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a53b93529527de43a56b4d9083a896a94"></a><!-- doxytag: member="Tp::Connection::simplePresenceInterface" ref="a53b93529527de43a56b4d9083a896a94" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">ConnectionInterfaceSimplePresenceInterface * Tp::Connection::simplePresenceInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Convenience function for getting a SimplePresence interface proxy.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>check</em> </td><td>Passed to <a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a50d2019f8aa967d6482d9fa9d34c66f4">optionalInterface()</a> </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>optionalInterface<ConnectionInterfaceSimplePresenceInterface>(check)</code> </dd></dl>
</div>
</div>
<a class="anchor" id="a75180ddefce1c5f79250b4915b2eb841"></a><!-- doxytag: member="Tp::Connection::requestsInterface" ref="a75180ddefce1c5f79250b4915b2eb841" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Client::ConnectionInterfaceRequestsInterface* Tp::Connection::requestsInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="acda16e8e2f549ab7fa48038da765d6e4"></a><!-- doxytag: member="Tp::Connection::balanceInterface" ref="acda16e8e2f549ab7fa48038da765d6e4" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Client::ConnectionInterfaceBalanceInterface* Tp::Connection::balanceInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a09deddf741648a6a682ebe0f693f91cd"></a><!-- doxytag: member="Tp::Connection::cellularInterface" ref="a09deddf741648a6a682ebe0f693f91cd" args="(InterfaceSupportedChecking check=CheckInterfaceSupported) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Client::ConnectionInterfaceCellularInterface* Tp::Connection::cellularInterface </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1OptionalInterfaceFactory.html#a7d7b4eec46ac3258e70177f6e3e4937f">InterfaceSupportedChecking</a> </td>
<td class="paramname"> <em>check</em> = <code>CheckInterfaceSupported</code></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a922ff28f2780d01b7dcdfdd6bb03c08a"></a><!-- doxytag: member="Tp::Connection::statusChanged" ref="a922ff28f2780d01b7dcdfdd6bb03c08a" args="(Tp::Connection::Status newStatus, Tp::ConnectionStatusReason newStatusReason)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::Connection::statusChanged </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1Connection.html#a958c482d2d9b189175c8733bc3503814">Tp::Connection::Status</a> </td>
<td class="paramname"> <em>newStatus</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">Tp::ConnectionStatusReason </td>
<td class="paramname"> <em>newStatusReason</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [signal]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a410f3768d95dce2efa21bca2e500673a"></a><!-- doxytag: member="Tp::Connection::selfHandleChanged" ref="a410f3768d95dce2efa21bca2e500673a" args="(uint newHandle)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::Connection::selfHandleChanged </td>
<td>(</td>
<td class="paramtype">uint </td>
<td class="paramname"> <em>newHandle</em></td>
<td> ) </td>
<td><code> [signal]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ae4abf99523e737b183858b525410461b"></a><!-- doxytag: member="Tp::Connection::selfContactChanged" ref="ae4abf99523e737b183858b525410461b" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::Connection::selfContactChanged </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [signal]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ab050d0607f1d1cd1a826aa7d9cf349a0"></a><!-- doxytag: member="Tp::Connection::accountBalanceChanged" ref="ab050d0607f1d1cd1a826aa7d9cf349a0" args="(const Tp::CurrencyAmount &accountBalance)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::Connection::accountBalanceChanged </td>
<td>(</td>
<td class="paramtype">const Tp::CurrencyAmount & </td>
<td class="paramname"> <em>accountBalance</em></td>
<td> ) </td>
<td><code> [signal]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a414d50a08898a3f52642f37ae50c202e"></a><!-- doxytag: member="Tp::Connection::baseInterface" ref="a414d50a08898a3f52642f37ae50c202e" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Client::ConnectionInterface * Tp::Connection::baseInterface </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const<code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the ConnectionInterface for this <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a>. This method is protected since the convenience methods provided by this class should generally be used instead of calling D-Bus methods directly.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A pointer to the existing ConnectionInterface for this <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a>. </dd></dl>
</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="abc270e079265fcbec7e422d002523298"></a><!-- doxytag: member="Tp::Connection::FeatureCore" ref="abc270e079265fcbec7e422d002523298" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#abc270e079265fcbec7e422d002523298">Tp::Connection::FeatureCore</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classTp_1_1Feature.html">Feature</a> representing the core that needs to become ready to make the <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> object usable.</p>
<p>Note that this feature must be enabled in order to use most <a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> methods. See specific methods documentation for more details.</p>
<p>When calling <a class="el" href="classTp_1_1ReadyObject.html#a344fc63eaef5278cbf938eaa1ed4c635">isReady()</a>, <a class="el" href="classTp_1_1ReadyObject.html#ac02393f99a46725a4ffee32caaec13cc">becomeReady()</a>, this feature is implicitly added to the requested features. </p>
</div>
</div>
<a class="anchor" id="af1a6dedc304a3b68d04dc191e20203c6"></a><!-- doxytag: member="Tp::Connection::FeatureSelfContact" ref="af1a6dedc304a3b68d04dc191e20203c6" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#af1a6dedc304a3b68d04dc191e20203c6">Tp::Connection::FeatureSelfContact</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classTp_1_1Feature.html">Feature</a> used to retrieve the connection self contact.</p>
<p>See self contact specific methods' documentation for more details. </p>
</div>
</div>
<a class="anchor" id="af832a6ba64e4811a2ff364c755493afb"></a><!-- doxytag: member="Tp::Connection::FeatureSimplePresence" ref="af832a6ba64e4811a2ff364c755493afb" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#af832a6ba64e4811a2ff364c755493afb">Tp::Connection::FeatureSimplePresence</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classTp_1_1Feature.html">Feature</a> used to retrieve/keep track of the connection self presence.</p>
<p>See simple presence specific methods' documentation for more details. </p>
</div>
</div>
<a class="anchor" id="a3dac123c3d7845db5ecd423fcd733323"></a><!-- doxytag: member="Tp::Connection::FeatureRoster" ref="a3dac123c3d7845db5ecd423fcd733323" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#a3dac123c3d7845db5ecd423fcd733323">Tp::Connection::FeatureRoster</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classTp_1_1Feature.html">Feature</a> used to enable roster support on <a class="el" href="classTp_1_1Connection.html#a6fc48b83692cef002a22f1df3ea7bea5">Connection::contactManager</a>.</p>
<p>See <a class="el" href="classTp_1_1ContactManager.html" title="The ContactManager class is responsible for managing contacts.">ContactManager</a> roster specific methods' documentation for more details. </p>
</div>
</div>
<a class="anchor" id="adf6eab299cb7a0186ded6074e57fb5d0"></a><!-- doxytag: member="Tp::Connection::FeatureRosterGroups" ref="adf6eab299cb7a0186ded6074e57fb5d0" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#adf6eab299cb7a0186ded6074e57fb5d0">Tp::Connection::FeatureRosterGroups</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classTp_1_1Feature.html">Feature</a> used to enable roster groups support on <a class="el" href="classTp_1_1Connection.html#a6fc48b83692cef002a22f1df3ea7bea5">Connection::contactManager</a>.</p>
<p>See <a class="el" href="classTp_1_1ContactManager.html" title="The ContactManager class is responsible for managing contacts.">ContactManager</a> roster groups specific methods' documentation for more details. </p>
</div>
</div>
<a class="anchor" id="a6053a35e135d08ed9b7f28ea7a86558e"></a><!-- doxytag: member="Tp::Connection::FeatureAccountBalance" ref="a6053a35e135d08ed9b7f28ea7a86558e" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1Connection.html#a6053a35e135d08ed9b7f28ea7a86558e">Tp::Connection::FeatureAccountBalance</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classTp_1_1Feature.html">Feature</a> used to retrieve/keep track of the connection account balance.</p>
<p>See account balance specific methods' documentation for more details. </p>
</div>
</div>
</div>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="30%">Copyright © 2008-2010 Collabora Ltd. and Nokia Corporation</td>
<td width="30%" align="right"><div align="right">Telepathy-Qt4 0.3.6</div></td>
</tr></table></div></address>
</body>
</html>
|