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
|
<?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::StreamedMediaChannel 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_1StreamedMediaChannel.html">StreamedMediaChannel</a>
</div>
<div class="contents">
<h1>Tp::StreamedMediaChannel Class Reference<br/>
<small>
[<a class="el" href="group__clientchannel.html">Channel proxies</a>]</small>
</h1><!-- doxytag: class="Tp::StreamedMediaChannel" --><!-- doxytag: inherits="Tp::Channel" -->
<p>The <a class="el" href="classTp_1_1StreamedMediaChannel.html" title="The StreamedMediaChannel class provides an object representing a Telepathy channel...">StreamedMediaChannel</a> class provides an object representing a Telepathy channel of type StreamedMedia or Call.
<a href="#_details">More...</a></p>
<p><code>#include <<a class="el" href="streamed-media-channel_8h_source.html">TelepathyQt4/StreamedMediaChannel</a>></code></p>
<p>Inherits <a class="el" href="classTp_1_1Channel.html">Tp::Channel</a>.</p>
<p><a href="classTp_1_1StreamedMediaChannel-members.html">List of all members.</a></p>
<h2>Public Types</h2>
<ul>
<li>enum <a class="el" href="classTp_1_1StreamedMediaChannel.html#aa00cbebc4b282db3e254dd6205a05138">StateChangeReason</a> { <a class="el" href="classTp_1_1StreamedMediaChannel.html#aa00cbebc4b282db3e254dd6205a05138a1bd74716f24d551a68c8e2592fdcd16f">StateChangeReasonUnknown</a>,
<a class="el" href="classTp_1_1StreamedMediaChannel.html#aa00cbebc4b282db3e254dd6205a05138af76d70cf9e98db8aff3fbf4c05a22710">StateChangeReasonUserRequested</a>
}
</ul>
<h2>Signals</h2>
<ul>
<li>void <a class="el" href="classTp_1_1StreamedMediaChannel.html#a279c77ff9f995c650ba3ee1092b4732d">contentAdded</a> (const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaContentPtr</a> &content)
<li>void <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae12085106980f418b9b15b9b4f525f9b">contentRemoved</a> (const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaContentPtr</a> &content)
<li>void <a class="el" href="classTp_1_1StreamedMediaChannel.html#afbb31315a1800e65b4963b68419b74fe">streamAdded</a> (const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaStreamPtr</a> &stream)
<li>void <a class="el" href="classTp_1_1StreamedMediaChannel.html#a7578700596a3b3c4364f2e39461972c7">streamRemoved</a> (const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaStreamPtr</a> &stream)
<li>void <a class="el" href="classTp_1_1StreamedMediaChannel.html#a35f554631da58f4c74de73a56bdc6537">streamDirectionChanged</a> (const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaStreamPtr</a> &stream, Tp::MediaStreamDirection direction, Tp::MediaStreamPendingSend pendingSend)
<li>void <a class="el" href="classTp_1_1StreamedMediaChannel.html#ad1e36f5fba84fb1994b5890eb48aa950">streamStateChanged</a> (const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaStreamPtr</a> &stream, Tp::MediaStreamState state)
<li>void <a class="el" href="classTp_1_1StreamedMediaChannel.html#a9b778b43bcc6d08c63b16c6a68b55d60">streamError</a> (const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaStreamPtr</a> &stream, Tp::MediaStreamError errorCode, const QString &errorMessage)
<li>void <a class="el" href="classTp_1_1StreamedMediaChannel.html#af6f78729302c09cdd2699f9a3499f8ca">localHoldStateChanged</a> (Tp::LocalHoldState state, Tp::LocalHoldStateReason reason)
</ul>
<h2>Public Member Functions</h2>
<ul>
<li>virtual <a class="el" href="classTp_1_1StreamedMediaChannel.html#a0a3395a2c8a2afc9a195da07becf26b4">~StreamedMediaChannel</a> ()
<li>bool <a class="el" href="classTp_1_1StreamedMediaChannel.html#af93d70055440857f9a6e463328c060c9">awaitingLocalAnswer</a> () const
<li>bool <a class="el" href="classTp_1_1StreamedMediaChannel.html#a1a7108ee579639c70aafdbd9e6fff85a">awaitingRemoteAnswer</a> () const
<li><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * <a class="el" href="classTp_1_1StreamedMediaChannel.html#a2748ea78b7d17ab8cfcaae51cac315a8">acceptCall</a> ()
<li><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * <a class="el" href="classTp_1_1StreamedMediaChannel.html#aacd5236ead3a3bba9e7c8870e481e5ec">hangupCall</a> (<a class="el" href="classTp_1_1StreamedMediaChannel.html#aa00cbebc4b282db3e254dd6205a05138">StateChangeReason</a> reason, const QString &detailedReason, const QString &message)
<li><a class="el" href="namespaceTp.html#a9ea34229ba4d453572044c570f697b9a">MediaContents</a> <a class="el" href="classTp_1_1StreamedMediaChannel.html#a27f92e95219edf0615339e7e67e064e8">contents</a> () const
<li><a class="el" href="namespaceTp.html#a9ea34229ba4d453572044c570f697b9a">MediaContents</a> <a class="el" href="classTp_1_1StreamedMediaChannel.html#a6f1e92d8cca1968ae89600214fc9ce86">contentsForType</a> (MediaStreamType type) const
<li>TELEPATHY_QT4_DEPRECATED <br class="typebreak"/>
<a class="el" href="namespaceTp.html#ada4348f180c7aaf752c9cdd3beb42a54">MediaStreams</a> <a class="el" href="classTp_1_1StreamedMediaChannel.html#a0a4c7f21e7570912469445d41459681f">streams</a> () const
<li>TELEPATHY_QT4_DEPRECATED <br class="typebreak"/>
<a class="el" href="namespaceTp.html#ada4348f180c7aaf752c9cdd3beb42a54">MediaStreams</a> <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae6cecd8bb21a5fb708dcfd7a1f13d978">streamsForType</a> (MediaStreamType type) const
<li><a class="el" href="classTp_1_1PendingMediaContent.html">PendingMediaContent</a> * <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae56db53e1c08752528cda7a3e336ee03">requestContent</a> (const QString &name, MediaStreamType type)
<li>TELEPATHY_QT4_DEPRECATED <br class="typebreak"/>
<a class="el" href="classTp_1_1PendingMediaStreams.html">PendingMediaStreams</a> * <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae264186a6c3e51cf6af6df967883bab8">requestStream</a> (const <a class="el" href="namespaceTp.html#a8851d7a4827022bfff3c1b15320a0289">ContactPtr</a> &contact, MediaStreamType type)
<li>TELEPATHY_QT4_DEPRECATED <br class="typebreak"/>
<a class="el" href="classTp_1_1PendingMediaStreams.html">PendingMediaStreams</a> * <a class="el" href="classTp_1_1StreamedMediaChannel.html#a6134a50b8f17bcacc096d3e36b0b2df7">requestStreams</a> (const <a class="el" href="namespaceTp.html#a8851d7a4827022bfff3c1b15320a0289">ContactPtr</a> &contact, QList< MediaStreamType > types)
<li><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * <a class="el" href="classTp_1_1StreamedMediaChannel.html#a02749b703248586314f7aa166945b5c7">removeContent</a> (const <a class="el" href="classTp_1_1SharedPtr.html">MediaContentPtr</a> &content)
<li>TELEPATHY_QT4_DEPRECATED <br class="typebreak"/>
<a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * <a class="el" href="classTp_1_1StreamedMediaChannel.html#ac49253fecb4132b423fdde9c8fbf882d">removeStream</a> (const <a class="el" href="classTp_1_1SharedPtr.html">MediaStreamPtr</a> &stream)
<li>TELEPATHY_QT4_DEPRECATED <br class="typebreak"/>
<a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * <a class="el" href="classTp_1_1StreamedMediaChannel.html#aeff0091ed81936519e92ad176cf085b7">removeStreams</a> (const <a class="el" href="namespaceTp.html#ada4348f180c7aaf752c9cdd3beb42a54">MediaStreams</a> &streams)
<li>bool <a class="el" href="classTp_1_1StreamedMediaChannel.html#a0e4aa7c70d7dd8cb5e3cb623ce02784f">handlerStreamingRequired</a> () const
<li>LocalHoldState <a class="el" href="classTp_1_1StreamedMediaChannel.html#abd40156b29d1a68d40671f6634258ccb">localHoldState</a> () const
<li>LocalHoldStateReason <a class="el" href="classTp_1_1StreamedMediaChannel.html#a312c441b51660ea639c0f0efd276f2f0">localHoldStateReason</a> () const
<li><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * <a class="el" href="classTp_1_1StreamedMediaChannel.html#a45d96c82ea5d919509f974545638a6df">requestHold</a> (bool hold)
</ul>
<h2>Static Public Member Functions</h2>
<ul>
<li>static <a class="el" href="classTp_1_1SharedPtr.html">StreamedMediaChannelPtr</a> <a class="el" href="classTp_1_1StreamedMediaChannel.html#a24183d8e5ab9322678ba5f516ceb0bed">create</a> (const <a class="el" href="classTp_1_1SharedPtr.html">ConnectionPtr</a> &connection, const QString &objectPath, const QVariantMap &immutableProperties)
</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_1StreamedMediaChannel.html#a568beb675158ed1deeffab27cc0cf38e">FeatureContents</a>
<li>static const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1StreamedMediaChannel.html#ac8c70ed52e765cd287a69c9bf2a06016">FeatureLocalHoldState</a>
<li>static const <a class="el" href="classTp_1_1Feature.html">Feature</a> <a class="el" href="classTp_1_1StreamedMediaChannel.html#adf0c6a0013b3f2bf3bca15dbeefe8b3b">FeatureStreams</a>
</ul>
<h2>Protected Member Functions</h2>
<ul>
<li><a class="el" href="classTp_1_1StreamedMediaChannel.html#a93d99ce9180f91b24c4c928b1f2e9bb5">StreamedMediaChannel</a> (const <a class="el" href="classTp_1_1SharedPtr.html">ConnectionPtr</a> &connection, const QString &objectPath, const QVariantMap &immutableProperties)
</ul>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<p>The <a class="el" href="classTp_1_1StreamedMediaChannel.html" title="The StreamedMediaChannel class provides an object representing a Telepathy channel...">StreamedMediaChannel</a> class provides an object representing a Telepathy channel of type StreamedMedia or Call. </p>
<hr/><h2>Member Enumeration Documentation</h2>
<a class="anchor" id="aa00cbebc4b282db3e254dd6205a05138"></a><!-- doxytag: member="Tp::StreamedMediaChannel::StateChangeReason" ref="aa00cbebc4b282db3e254dd6205a05138" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classTp_1_1StreamedMediaChannel.html#aa00cbebc4b282db3e254dd6205a05138">Tp::StreamedMediaChannel::StateChangeReason</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="aa00cbebc4b282db3e254dd6205a05138a1bd74716f24d551a68c8e2592fdcd16f"></a><!-- doxytag: member="StateChangeReasonUnknown" ref="aa00cbebc4b282db3e254dd6205a05138a1bd74716f24d551a68c8e2592fdcd16f" args="" -->StateChangeReasonUnknown</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="aa00cbebc4b282db3e254dd6205a05138af76d70cf9e98db8aff3fbf4c05a22710"></a><!-- doxytag: member="StateChangeReasonUserRequested" ref="aa00cbebc4b282db3e254dd6205a05138af76d70cf9e98db8aff3fbf4c05a22710" args="" -->StateChangeReasonUserRequested</em> </td><td>
</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" id="a0a3395a2c8a2afc9a195da07becf26b4"></a><!-- doxytag: member="Tp::StreamedMediaChannel::~StreamedMediaChannel" ref="a0a3395a2c8a2afc9a195da07becf26b4" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Tp::StreamedMediaChannel::~StreamedMediaChannel </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="a93d99ce9180f91b24c4c928b1f2e9bb5"></a><!-- doxytag: member="Tp::StreamedMediaChannel::StreamedMediaChannel" ref="a93d99ce9180f91b24c4c928b1f2e9bb5" args="(const ConnectionPtr &connection, const QString &objectPath, const QVariantMap &immutableProperties)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Tp::StreamedMediaChannel::StreamedMediaChannel </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1SharedPtr.html">ConnectionPtr</a> & </td>
<td class="paramname"> <em>connection</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>objectPath</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QVariantMap & </td>
<td class="paramname"> <em>immutableProperties</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 <a class="el" href="classTp_1_1StreamedMediaChannel.html" title="The StreamedMediaChannel class provides an object representing a Telepathy channel...">StreamedMediaChannel</a> associated with the given object on the same service as the given connection.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>connection</em> </td><td><a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> owning this channel, and specifying the service. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>objectPath</em> </td><td>The object path of this channel. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>immutableProperties</em> </td><td>The immutable properties of this channel. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a24183d8e5ab9322678ba5f516ceb0bed"></a><!-- doxytag: member="Tp::StreamedMediaChannel::create" ref="a24183d8e5ab9322678ba5f516ceb0bed" args="(const ConnectionPtr &connection, const QString &objectPath, const QVariantMap &immutableProperties)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1SharedPtr.html">StreamedMediaChannelPtr</a> Tp::StreamedMediaChannel::create </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1SharedPtr.html">ConnectionPtr</a> & </td>
<td class="paramname"> <em>connection</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>objectPath</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QVariantMap & </td>
<td class="paramname"> <em>immutableProperties</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 <a class="el" href="classTp_1_1StreamedMediaChannel.html" title="The StreamedMediaChannel class provides an object representing a Telepathy channel...">StreamedMediaChannel</a> object.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>connection</em> </td><td><a class="el" href="classTp_1_1Connection.html" title="The Connection class provides an object representing a Telepathy connection.">Connection</a> owning this channel, and specifying the service. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>objectPath</em> </td><td>The object path of this channel. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>immutableProperties</em> </td><td>The immutable properties of this channel. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A StreamedMediaChannelPtr object pointing to the newly created <a class="el" href="classTp_1_1StreamedMediaChannel.html" title="The StreamedMediaChannel class provides an object representing a Telepathy channel...">StreamedMediaChannel</a> object. </dd></dl>
<p>Reimplemented from <a class="el" href="classTp_1_1Channel.html#ab9e80e6c7d574f9f853cf6c47801da72">Tp::Channel</a>.</p>
</div>
</div>
<a class="anchor" id="af93d70055440857f9a6e463328c060c9"></a><!-- doxytag: member="Tp::StreamedMediaChannel::awaitingLocalAnswer" ref="af93d70055440857f9a6e463328c060c9" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Tp::StreamedMediaChannel::awaitingLocalAnswer </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether this channel is awaiting local answer.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if awaiting local answer, <code>false</code> otherwise. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#a1a7108ee579639c70aafdbd9e6fff85a">awaitingRemoteAnswer()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a1a7108ee579639c70aafdbd9e6fff85a"></a><!-- doxytag: member="Tp::StreamedMediaChannel::awaitingRemoteAnswer" ref="a1a7108ee579639c70aafdbd9e6fff85a" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Tp::StreamedMediaChannel::awaitingRemoteAnswer </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether this channel is awaiting remote answer.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if awaiting remote answer, <code>false</code> otherwise. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#af93d70055440857f9a6e463328c060c9">awaitingLocalAnswer()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a2748ea78b7d17ab8cfcaae51cac315a8"></a><!-- doxytag: member="Tp::StreamedMediaChannel::acceptCall" ref="a2748ea78b7d17ab8cfcaae51cac315a8" 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::StreamedMediaChannel::acceptCall </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Accept an incoming call.</p>
<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>
</div>
</div>
<a class="anchor" id="aacd5236ead3a3bba9e7c8870e481e5ec"></a><!-- doxytag: member="Tp::StreamedMediaChannel::hangupCall" ref="aacd5236ead3a3bba9e7c8870e481e5ec" args="(StateChangeReason reason, const QString &detailedReason, const QString &message)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * Tp::StreamedMediaChannel::hangupCall </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classTp_1_1StreamedMediaChannel.html#aa00cbebc4b282db3e254dd6205a05138">StateChangeReason</a> </td>
<td class="paramname"> <em>reason</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>detailedReason</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>message</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Request that the call is ended.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>reason</em> </td><td>A generic hangup reason. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>detailedReason</em> </td><td>A more specific reason for the call hangup, if one is available, or an empty string otherwise. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>message</em> </td><td>A human-readable message to be sent to the remote contact(s). </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>
</div>
</div>
<a class="anchor" id="a27f92e95219edf0615339e7e67e064e8"></a><!-- doxytag: member="Tp::StreamedMediaChannel::contents" ref="a27f92e95219edf0615339e7e67e064e8" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespaceTp.html#a9ea34229ba4d453572044c570f697b9a">MediaContents</a> Tp::StreamedMediaChannel::contents </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a list of media contents in this channel.</p>
<p>This methods requires <a class="el" href="classTp_1_1StreamedMediaChannel.html#a568beb675158ed1deeffab27cc0cf38e">StreamedMediaChannel::FeatureContents</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The contents in this channel. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#a279c77ff9f995c650ba3ee1092b4732d">contentAdded()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae12085106980f418b9b15b9b4f525f9b">contentRemoved()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a6f1e92d8cca1968ae89600214fc9ce86">contentsForType()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae56db53e1c08752528cda7a3e336ee03">requestContent()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a6f1e92d8cca1968ae89600214fc9ce86"></a><!-- doxytag: member="Tp::StreamedMediaChannel::contentsForType" ref="a6f1e92d8cca1968ae89600214fc9ce86" args="(MediaStreamType type) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespaceTp.html#a9ea34229ba4d453572044c570f697b9a">MediaContents</a> Tp::StreamedMediaChannel::contentsForType </td>
<td>(</td>
<td class="paramtype">MediaStreamType </td>
<td class="paramname"> <em>type</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a list of media contents in this channel for the given type <em>type</em>.</p>
<p>This methods requires <a class="el" href="classTp_1_1StreamedMediaChannel.html#a568beb675158ed1deeffab27cc0cf38e">StreamedMediaChannel::FeatureContents</a> to be enabled.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>type</em> </td><td>The interested type. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A list of media contents in this channel for the given type <em>type</em>. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#a279c77ff9f995c650ba3ee1092b4732d">contentAdded()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae12085106980f418b9b15b9b4f525f9b">contentRemoved()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a27f92e95219edf0615339e7e67e064e8">contents()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae56db53e1c08752528cda7a3e336ee03">requestContent()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a0a4c7f21e7570912469445d41459681f"></a><!-- doxytag: member="Tp::StreamedMediaChannel::streams" ref="a0a4c7f21e7570912469445d41459681f" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespaceTp.html#ada4348f180c7aaf752c9cdd3beb42a54">MediaStreams</a> Tp::StreamedMediaChannel::streams </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a list of media streams in this channel.</p>
<p>This methods requires <a class="el" href="classTp_1_1StreamedMediaChannel.html#adf0c6a0013b3f2bf3bca15dbeefe8b3b">StreamedMediaChannel::FeatureStreams</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The media streams in this channel. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#afbb31315a1800e65b4963b68419b74fe">streamAdded()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a7578700596a3b3c4364f2e39461972c7">streamRemoved()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae6cecd8bb21a5fb708dcfd7a1f13d978">streamsForType()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a6134a50b8f17bcacc096d3e36b0b2df7">requestStreams()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ae6cecd8bb21a5fb708dcfd7a1f13d978"></a><!-- doxytag: member="Tp::StreamedMediaChannel::streamsForType" ref="ae6cecd8bb21a5fb708dcfd7a1f13d978" args="(MediaStreamType type) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespaceTp.html#ada4348f180c7aaf752c9cdd3beb42a54">MediaStreams</a> Tp::StreamedMediaChannel::streamsForType </td>
<td>(</td>
<td class="paramtype">MediaStreamType </td>
<td class="paramname"> <em>type</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a list of media streams in this channel for the given type <em>type</em>.</p>
<p>This methods requires <a class="el" href="classTp_1_1StreamedMediaChannel.html#adf0c6a0013b3f2bf3bca15dbeefe8b3b">StreamedMediaChannel::FeatureStreams</a> to be enabled.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>type</em> </td><td>The interested type. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A list of media streams in this channel for the given type <em>type</em>. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#afbb31315a1800e65b4963b68419b74fe">streamAdded()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a7578700596a3b3c4364f2e39461972c7">streamRemoved()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a0a4c7f21e7570912469445d41459681f">streams()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a6134a50b8f17bcacc096d3e36b0b2df7">requestStreams()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ae56db53e1c08752528cda7a3e336ee03"></a><!-- doxytag: member="Tp::StreamedMediaChannel::requestContent" ref="ae56db53e1c08752528cda7a3e336ee03" args="(const QString &name, MediaStreamType type)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingMediaContent.html">PendingMediaContent</a> * Tp::StreamedMediaChannel::requestContent </td>
<td>(</td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>name</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">MediaStreamType </td>
<td class="paramname"> <em>type</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Request that media content be established to exchange the given type <em>type</em> of media.</p>
<p>This methods requires <a class="el" href="classTp_1_1StreamedMediaChannel.html#a568beb675158ed1deeffab27cc0cf38e">StreamedMediaChannel::FeatureContents</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classTp_1_1PendingMediaContent.html">PendingMediaContent</a> which will emit <a class="el" href="classTp_1_1PendingOperation.html#addbb8c4462019ffdf19095a31da0cc7a">PendingMediaContent::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_1StreamedMediaChannel.html#a279c77ff9f995c650ba3ee1092b4732d">contentAdded()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a27f92e95219edf0615339e7e67e064e8">contents()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a6f1e92d8cca1968ae89600214fc9ce86">contentsForType()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ae264186a6c3e51cf6af6df967883bab8"></a><!-- doxytag: member="Tp::StreamedMediaChannel::requestStream" ref="ae264186a6c3e51cf6af6df967883bab8" args="(const ContactPtr &contact, MediaStreamType type)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingMediaStreams.html">PendingMediaStreams</a> * Tp::StreamedMediaChannel::requestStream </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="namespaceTp.html#a8851d7a4827022bfff3c1b15320a0289">ContactPtr</a> & </td>
<td class="paramname"> <em>contact</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">MediaStreamType </td>
<td class="paramname"> <em>type</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Request that media streams be established to exchange the given type <em>type</em> of media with the given contact <em>contact</em>.</p>
<p>This methods requires <a class="el" href="classTp_1_1StreamedMediaChannel.html#adf0c6a0013b3f2bf3bca15dbeefe8b3b">StreamedMediaChannel::FeatureStreams</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classTp_1_1PendingMediaStreams.html" title="Class containing the result of an asynchronous media stream creation request.">PendingMediaStreams</a> which will emit <a class="el" href="classTp_1_1PendingOperation.html#addbb8c4462019ffdf19095a31da0cc7a">PendingMediaStreams::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_1StreamedMediaChannel.html#afbb31315a1800e65b4963b68419b74fe">streamAdded()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a0a4c7f21e7570912469445d41459681f">streams()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae6cecd8bb21a5fb708dcfd7a1f13d978">streamsForType()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a6134a50b8f17bcacc096d3e36b0b2df7"></a><!-- doxytag: member="Tp::StreamedMediaChannel::requestStreams" ref="a6134a50b8f17bcacc096d3e36b0b2df7" args="(const ContactPtr &contact, QList< MediaStreamType > types)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingMediaStreams.html">PendingMediaStreams</a> * Tp::StreamedMediaChannel::requestStreams </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="namespaceTp.html#a8851d7a4827022bfff3c1b15320a0289">ContactPtr</a> & </td>
<td class="paramname"> <em>contact</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">QList< MediaStreamType > </td>
<td class="paramname"> <em>types</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Request that media streams be established to exchange the given types <em>types</em> of media with the given contact <em>contact</em>.</p>
<p>This methods requires <a class="el" href="classTp_1_1StreamedMediaChannel.html#adf0c6a0013b3f2bf3bca15dbeefe8b3b">StreamedMediaChannel::FeatureStreams</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A <a class="el" href="classTp_1_1PendingMediaStreams.html" title="Class containing the result of an asynchronous media stream creation request.">PendingMediaStreams</a> which will emit <a class="el" href="classTp_1_1PendingOperation.html#addbb8c4462019ffdf19095a31da0cc7a">PendingMediaStreams::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_1StreamedMediaChannel.html#afbb31315a1800e65b4963b68419b74fe">streamAdded()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a0a4c7f21e7570912469445d41459681f">streams()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae6cecd8bb21a5fb708dcfd7a1f13d978">streamsForType()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a02749b703248586314f7aa166945b5c7"></a><!-- doxytag: member="Tp::StreamedMediaChannel::removeContent" ref="a02749b703248586314f7aa166945b5c7" args="(const MediaContentPtr &content)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * Tp::StreamedMediaChannel::removeContent </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1SharedPtr.html">MediaContentPtr</a> & </td>
<td class="paramname"> <em>content</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Remove the specified media content from this channel.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>content</em> </td><td>Media content to remove. </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_1StreamedMediaChannel.html#ae12085106980f418b9b15b9b4f525f9b">contentRemoved()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a27f92e95219edf0615339e7e67e064e8">contents()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a6f1e92d8cca1968ae89600214fc9ce86">contentsForType()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ac49253fecb4132b423fdde9c8fbf882d"></a><!-- doxytag: member="Tp::StreamedMediaChannel::removeStream" ref="ac49253fecb4132b423fdde9c8fbf882d" args="(const MediaStreamPtr &stream)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * Tp::StreamedMediaChannel::removeStream </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1SharedPtr.html">MediaStreamPtr</a> & </td>
<td class="paramname"> <em>stream</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Remove the specified media stream from this channel.</p>
<p>Note that removing a stream from a call will also remove the content the stream belongs to.</p>
<p>This methods requires <a class="el" href="classTp_1_1StreamedMediaChannel.html#adf0c6a0013b3f2bf3bca15dbeefe8b3b">StreamedMediaChannel::FeatureStreams</a> to be enabled.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>stream</em> </td><td>Media stream to remove. </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_1StreamedMediaChannel.html#a7578700596a3b3c4364f2e39461972c7">streamRemoved()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a0a4c7f21e7570912469445d41459681f">streams()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae6cecd8bb21a5fb708dcfd7a1f13d978">streamsForType()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="aeff0091ed81936519e92ad176cf085b7"></a><!-- doxytag: member="Tp::StreamedMediaChannel::removeStreams" ref="aeff0091ed81936519e92ad176cf085b7" args="(const MediaStreams &streams)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * Tp::StreamedMediaChannel::removeStreams </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="namespaceTp.html#ada4348f180c7aaf752c9cdd3beb42a54">MediaStreams</a> & </td>
<td class="paramname"> <em>streams</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Remove the specified media streams from this channel.</p>
<p>Note that removing a stream from a call will also remove the content the stream belongs to.</p>
<p>This methods requires <a class="el" href="classTp_1_1StreamedMediaChannel.html#adf0c6a0013b3f2bf3bca15dbeefe8b3b">StreamedMediaChannel::FeatureStreams</a> to be enabled.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>streams</em> </td><td>List of media streams to remove. </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_1StreamedMediaChannel.html#a7578700596a3b3c4364f2e39461972c7">streamRemoved()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a0a4c7f21e7570912469445d41459681f">streams()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae6cecd8bb21a5fb708dcfd7a1f13d978">streamsForType()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a0e4aa7c70d7dd8cb5e3cb623ce02784f"></a><!-- doxytag: member="Tp::StreamedMediaChannel::handlerStreamingRequired" ref="a0e4aa7c70d7dd8cb5e3cb623ce02784f" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Tp::StreamedMediaChannel::handlerStreamingRequired </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Check whether media streaming by the handler is required for this channel.</p>
<p>For channels with the MediaSignalling interface, the main handler of the channel is responsible for doing the actual streaming, for instance by calling createFarsightChannel(channel) from TelepathyQt4-Farsight library and using the telepathy-farsight API on the resulting TfChannel.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if required, <code>false</code> otherwise. </dd></dl>
</div>
</div>
<a class="anchor" id="abd40156b29d1a68d40671f6634258ccb"></a><!-- doxytag: member="Tp::StreamedMediaChannel::localHoldState" ref="abd40156b29d1a68d40671f6634258ccb" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">LocalHoldState Tp::StreamedMediaChannel::localHoldState </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the local user has placed this channel on hold.</p>
<p>This method requires StreamedMediaChannel::FeatureHoldState to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The channel local hold state. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#a45d96c82ea5d919509f974545638a6df">requestHold()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#af6f78729302c09cdd2699f9a3499f8ca">localHoldStateChanged()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a312c441b51660ea639c0f0efd276f2f0"></a><!-- doxytag: member="Tp::StreamedMediaChannel::localHoldStateReason" ref="a312c441b51660ea639c0f0efd276f2f0" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">LocalHoldStateReason Tp::StreamedMediaChannel::localHoldStateReason </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the reason why <a class="el" href="classTp_1_1StreamedMediaChannel.html#abd40156b29d1a68d40671f6634258ccb">localHoldState()</a> changed to its current value.</p>
<p>This method requires <a class="el" href="classTp_1_1StreamedMediaChannel.html#ac8c70ed52e765cd287a69c9bf2a06016">StreamedMediaChannel::FeatureLocalHoldState</a> to be enabled.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The channel local hold state reason. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#a45d96c82ea5d919509f974545638a6df">requestHold()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#af6f78729302c09cdd2699f9a3499f8ca">localHoldStateChanged()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a45d96c82ea5d919509f974545638a6df"></a><!-- doxytag: member="Tp::StreamedMediaChannel::requestHold" ref="a45d96c82ea5d919509f974545638a6df" args="(bool hold)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTp_1_1PendingOperation.html">PendingOperation</a> * Tp::StreamedMediaChannel::requestHold </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>hold</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Request that the channel be put on hold (be instructed not to send any media streams to you) or be taken off hold.</p>
<p>If the connection manager can immediately tell that the requested state change could not possibly succeed, the resulting <a class="el" href="classTp_1_1PendingOperation.html" title="Abstract base class for pending asynchronous operations.">PendingOperation</a> will fail with error code TELEPATHY_ERROR_NOT_AVAILABLE. If the requested state is the same as the current state, the resulting <a class="el" href="classTp_1_1PendingOperation.html" title="Abstract base class for pending asynchronous operations.">PendingOperation</a> will finish successfully.</p>
<p>Otherwise, the channel's local hold state will change to Tp::LocalHoldStatePendingHold or Tp::LocalHoldStatePendingUnhold (as appropriate), then the resulting <a class="el" href="classTp_1_1PendingOperation.html" title="Abstract base class for pending asynchronous operations.">PendingOperation</a> will finish successfully.</p>
<p>The eventual success or failure of the request is indicated by a subsequent <a class="el" href="classTp_1_1StreamedMediaChannel.html#af6f78729302c09cdd2699f9a3499f8ca">localHoldStateChanged()</a> signal, changing the local hold state to Tp::LocalHoldStateHeld or Tp::LocalHoldStateUnheld.</p>
<p>If the channel has multiple streams, and the connection manager succeeds in changing the hold state of one stream but fails to change the hold state of another, it will attempt to revert all streams to their previous hold states.</p>
<p>If the channel does not support the TELEPATHY_INTERFACE_CHANNEL_INTERFACE_HOLD interface, the <a class="el" href="classTp_1_1PendingOperation.html" title="Abstract base class for pending asynchronous operations.">PendingOperation</a> will fail with error code TELEPATHY_ERROR_NOT_IMPLEMENTED.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>hold</em> </td><td>A boolean indicating whether or not the channel should be on hold </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PendingOperation, which will emit <a class="el" href="classTp_1_1PendingOperation.html#addbb8c4462019ffdf19095a31da0cc7a">PendingOperation::finished</a> when the request finishes. </dd></dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#abd40156b29d1a68d40671f6634258ccb">localHoldState()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a312c441b51660ea639c0f0efd276f2f0">localHoldStateReason()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#af6f78729302c09cdd2699f9a3499f8ca">localHoldStateChanged()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a279c77ff9f995c650ba3ee1092b4732d"></a><!-- doxytag: member="Tp::StreamedMediaChannel::contentAdded" ref="a279c77ff9f995c650ba3ee1092b4732d" args="(const Tp::MediaContentPtr &content)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::StreamedMediaChannel::contentAdded </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaContentPtr</a> & </td>
<td class="paramname"> <em>content</em></td>
<td> ) </td>
<td><code> [signal]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>This signal is emitted when a media content is added to this channel.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>content</em> </td><td>The media content that was added. </td></tr>
</table>
</dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#a27f92e95219edf0615339e7e67e064e8">contents()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a6f1e92d8cca1968ae89600214fc9ce86">contentsForType()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ae12085106980f418b9b15b9b4f525f9b"></a><!-- doxytag: member="Tp::StreamedMediaChannel::contentRemoved" ref="ae12085106980f418b9b15b9b4f525f9b" args="(const Tp::MediaContentPtr &content)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::StreamedMediaChannel::contentRemoved </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaContentPtr</a> & </td>
<td class="paramname"> <em>content</em></td>
<td> ) </td>
<td><code> [signal]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>This signal is emitted when a media content is removed from this channel.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>content</em> </td><td>The media content that was removed. </td></tr>
</table>
</dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#a27f92e95219edf0615339e7e67e064e8">contents()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a6f1e92d8cca1968ae89600214fc9ce86">contentsForType()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="afbb31315a1800e65b4963b68419b74fe"></a><!-- doxytag: member="Tp::StreamedMediaChannel::streamAdded" ref="afbb31315a1800e65b4963b68419b74fe" args="(const Tp::MediaStreamPtr &stream)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::StreamedMediaChannel::streamAdded </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaStreamPtr</a> & </td>
<td class="paramname"> <em>stream</em></td>
<td> ) </td>
<td><code> [signal]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>This signal is emitted when a media stream is added to this channel.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>stream</em> </td><td>The media stream that was added. </td></tr>
</table>
</dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#a0a4c7f21e7570912469445d41459681f">streams()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae6cecd8bb21a5fb708dcfd7a1f13d978">streamsForType()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a7578700596a3b3c4364f2e39461972c7"></a><!-- doxytag: member="Tp::StreamedMediaChannel::streamRemoved" ref="a7578700596a3b3c4364f2e39461972c7" args="(const Tp::MediaStreamPtr &stream)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::StreamedMediaChannel::streamRemoved </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaStreamPtr</a> & </td>
<td class="paramname"> <em>stream</em></td>
<td> ) </td>
<td><code> [signal]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>This signal is emitted when a media stream is removed from this channel.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>content</em> </td><td>The media stream that was removed. </td></tr>
</table>
</dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#a0a4c7f21e7570912469445d41459681f">streams()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#ae6cecd8bb21a5fb708dcfd7a1f13d978">streamsForType()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a35f554631da58f4c74de73a56bdc6537"></a><!-- doxytag: member="Tp::StreamedMediaChannel::streamDirectionChanged" ref="a35f554631da58f4c74de73a56bdc6537" args="(const Tp::MediaStreamPtr &stream, Tp::MediaStreamDirection direction, Tp::MediaStreamPendingSend pendingSend)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::StreamedMediaChannel::streamDirectionChanged </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaStreamPtr</a> & </td>
<td class="paramname"> <em>stream</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">Tp::MediaStreamDirection </td>
<td class="paramname"> <em>direction</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">Tp::MediaStreamPendingSend </td>
<td class="paramname"> <em>pendingSend</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">
<p>This signal is emitted when a media stream direction changes.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>stream</em> </td><td>The media stream which the direction changed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>direction</em> </td><td>The new direction of the stream that changed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>pendingSend</em> </td><td>the new pending send flags of the stream that changed. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ad1e36f5fba84fb1994b5890eb48aa950"></a><!-- doxytag: member="Tp::StreamedMediaChannel::streamStateChanged" ref="ad1e36f5fba84fb1994b5890eb48aa950" args="(const Tp::MediaStreamPtr &stream, Tp::MediaStreamState state)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::StreamedMediaChannel::streamStateChanged </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaStreamPtr</a> & </td>
<td class="paramname"> <em>stream</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">Tp::MediaStreamState </td>
<td class="paramname"> <em>state</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">
<p>This signal is emitted when a media stream state changes.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>stream</em> </td><td>The media stream which the state changed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>state</em> </td><td>The new state of the stream that changed. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a9b778b43bcc6d08c63b16c6a68b55d60"></a><!-- doxytag: member="Tp::StreamedMediaChannel::streamError" ref="a9b778b43bcc6d08c63b16c6a68b55d60" args="(const Tp::MediaStreamPtr &stream, Tp::MediaStreamError errorCode, const QString &errorMessage)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::StreamedMediaChannel::streamError </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTp_1_1SharedPtr.html">Tp::MediaStreamPtr</a> & </td>
<td class="paramname"> <em>stream</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">Tp::MediaStreamError </td>
<td class="paramname"> <em>errorCode</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const QString & </td>
<td class="paramname"> <em>errorMessage</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">
<p>This signal is emitted when an error occurs on a media stream.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>stream</em> </td><td>The media stream which the error occurred. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>errorCode</em> </td><td>The error code. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>errorMessage</em> </td><td>The error message. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="af6f78729302c09cdd2699f9a3499f8ca"></a><!-- doxytag: member="Tp::StreamedMediaChannel::localHoldStateChanged" ref="af6f78729302c09cdd2699f9a3499f8ca" args="(Tp::LocalHoldState state, Tp::LocalHoldStateReason reason)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Tp::StreamedMediaChannel::localHoldStateChanged </td>
<td>(</td>
<td class="paramtype">Tp::LocalHoldState </td>
<td class="paramname"> <em>state</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">Tp::LocalHoldStateReason </td>
<td class="paramname"> <em>reason</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">
<p>This signal is emitted when the local hold state of this channel changes.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>state</em> </td><td>The new local hold state of this channel. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>reason</em> </td><td>The reason why the change occurred. </td></tr>
</table>
</dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classTp_1_1StreamedMediaChannel.html#abd40156b29d1a68d40671f6634258ccb">localHoldState()</a>, <a class="el" href="classTp_1_1StreamedMediaChannel.html#a312c441b51660ea639c0f0efd276f2f0">localHoldStateReason()</a> </dd></dl>
</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="a568beb675158ed1deeffab27cc0cf38e"></a><!-- doxytag: member="Tp::StreamedMediaChannel::FeatureContents" ref="a568beb675158ed1deeffab27cc0cf38e" 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_1StreamedMediaChannel.html#a568beb675158ed1deeffab27cc0cf38e">Tp::StreamedMediaChannel::FeatureContents</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classTp_1_1Feature.html">Feature</a> used in order to access media content specific methods.</p>
<p>See media content specific methods' documentation for more details. </p>
</div>
</div>
<a class="anchor" id="ac8c70ed52e765cd287a69c9bf2a06016"></a><!-- doxytag: member="Tp::StreamedMediaChannel::FeatureLocalHoldState" ref="ac8c70ed52e765cd287a69c9bf2a06016" 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_1StreamedMediaChannel.html#ac8c70ed52e765cd287a69c9bf2a06016">Tp::StreamedMediaChannel::FeatureLocalHoldState</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classTp_1_1Feature.html">Feature</a> used in order to access local hold state info.</p>
<p>See local hold state specific methods' documentation for more details. </p>
</div>
</div>
<a class="anchor" id="adf0c6a0013b3f2bf3bca15dbeefe8b3b"></a><!-- doxytag: member="Tp::StreamedMediaChannel::FeatureStreams" ref="adf0c6a0013b3f2bf3bca15dbeefe8b3b" 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_1StreamedMediaChannel.html#adf0c6a0013b3f2bf3bca15dbeefe8b3b">Tp::StreamedMediaChannel::FeatureStreams</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classTp_1_1Feature.html">Feature</a> used in order to access media stream specific methods.</p>
<p>See media stream 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>
|